diff --git a/docs/1.0-dev/.buildinfo b/docs/1.0-dev/.buildinfo
index 555670851f..7b62cec386 100644
--- a/docs/1.0-dev/.buildinfo
+++ b/docs/1.0-dev/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 0004a5f6b965a26712178e2e59d11179
+config: 2073b8f3514aba16a52753d4c9e4e820
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/docs/1.0-dev/Coding/Changelog.html b/docs/1.0-dev/Coding/Changelog.html
index 7355206879..b703648a3c 100644
--- a/docs/1.0-dev/Coding/Changelog.html
+++ b/docs/1.0-dev/Coding/Changelog.html
@@ -17,7 +17,7 @@
-
+
This FAQ page is for users to share their solutions to coding problems. Keep it brief and link to
the docs if you can rather than too lengthy explanations. Don’t forget to check if an answer already
exists before answering - maybe you can clarify that answer rather than to make a new Q&A section.
Q: How does one remove (not replace) e.g. the default getCommand from the
-Character Command Set?
+
Q: How does one remove (not replace) e.g. the default getCommand from the Character Command Set?
A: Go to mygame/commands/default_cmdsets.py. Find the CharacterCmdSet class. It has one
method named at_cmdset_creation. At the end of that method, add the following line:
self.remove(default_cmds.CmdGet()). See the Adding Commands Tutorial
@@ -183,29 +160,6 @@ properties on this menu object:
Inside the menu you can now access the object through caller.ndb._evmenu.stored_obj.
Q: How do I add colors to the names of Evennia channels?
-
A: The Channel typeclass’ channel_prefix method decides what is shown at the beginning of a
-channel send. Edit mygame/typeclasses/channels.py (and then @reload):
-
# define our custom color names
-CHANNEL_COLORS={"public":"|015Public|n",
- "newbie":"|550N|n|551e|n|552w|n|553b|n|554i|n|555e|n",
- "staff":"|010S|n|020t|n|030a|n|040f|n|050f|n"}
-
-# Add to the Channel class
- # ...
- defchannel_prefix(self,msg,emit=False):
- ifself.keyinCOLORS:
- p_str=CHANNEL_COLORS.get(self.key.lower())
- else:
- p_str=self.key.capitalize()
- returnf"[{p_str}] "
-
-
-
Additional hint: To make colors easier to change from one place you could instead put the
-CHANNEL_COLORS dict in your settings file and import it as fromdjango.conf.settingsimportCHANNEL_COLORS.
Q: I want certain commands to turn off in a given room. They should still work normally for
@@ -239,18 +193,16 @@ is an example of a room where certain commands are disabled for non-staff:
self.locks.add("call:not perm(Builders)")
-
After @reload, make some BlockingRooms (or switch a room to it with @typeclass). Entering one
+
After reload, make some BlockingRooms (or switch a room to it with @typeclass). Entering one
will now replace the given commands for anyone that does not have the Builders or higher
permission. Note that the ‘call’ lock is special in that even the superuser will be affected by it
-(otherwise superusers would always see other player’s cmdsets and a game would be unplayable for
-superusers).
+(otherwise superusers would always see other player’s cmdsets and a game would be unplayable for superusers).
Q: I want a command to be available only based on a condition. For example I want the “werewolf”
command to only be available on a full moon, from midnight to three in-game time.
-
A: This is easiest accomplished by putting the “werewolf” command on the Character as normal,
-but to lock it with the “cmd” type lock. Only if the “cmd” lock type is passed will the
+
A: This is easiest accomplished by putting the “werewolf” command on the Character as normal, but to lock it with the “cmd” type lock. Only if the “cmd” lock type is passed will the
command be available.
# in mygame/commands/command.py
@@ -264,8 +216,7 @@ command be available.
# ...
# in mygame/server/conf/lockfuncs.pydefis_full_moon(accessing_obj,accessed_obj,
@@ -276,7 +227,7 @@ function does not yet exist. We must create that:
-
After a @reload, the werewolf command will be available only at the right time, that is when the
+
After a reload, the werewolf command will be available only at the right time, that is when the
is_full_moon lock function returns True.
@@ -299,43 +250,28 @@ you have your project in a configured Git environment, it’s a matter of automa
process=subprocess.call(["git","pull"],shell=False)
-
That’s all. We call subprocess to execute a shell command (that code works on Windows and Linux,
-assuming the current directory is your game directory, which is probably the case when you run
-Evennia). call waits for the process to complete, because otherwise, Evennia would reload on
-partially-modified code, which would be problematic.
-
Now, when you enter @reload on your development server, the game repository is updated from the
-configured remote repository (Github, for instance). Your development cycle could resemble
-something like:
+
That’s all. We call subprocess to execute a shell command (that code works on Windows and Linux, assuming the current directory is your game directory, which is probably the case when you run Evennia). call waits for the process to complete, because otherwise, Evennia would reload on partially-modified code, which would be problematic.
+
Now, when you enter reload on your development server, the game repository is updated from the configured remote repository (Github, for instance). Your development cycle could resemble something like:
Coding on the local machine.
Testing modifications.
-
Committing once, twice or more (being sure the code is still working, unittests are pretty useful
-here).
+
Committing once, twice or more (being sure the code is still working, unittests are pretty useful here).
When the time comes, login to the development server and run @reload.
-
The reloading might take one or two additional seconds, since Evennia will pull from your remote Git
-repository. But it will reload on it and you will have your modifications ready, without needing
+
The reloading might take one or two additional seconds, since Evennia will pull from your remote Git repository. But it will reload on it and you will have your modifications ready, without needing
connecting to your server using SSH or something similar.
Q: How can I change the default exit messages to something like “XXX leaves east” or “XXX
arrives from the west”?
-
A: the default exit messages are stored in two hooks, namely announce_move_from and
-announce_move_to, on the Character typeclass (if what you want to change is the message other
-characters will see when a character exits).
-
These two hooks provide some useful features to easily update the message to be displayed. They
-take both the default message and mapping as argument. You can easily call the parent hook with
-these information:
+
A: the default exit messages are stored in two hooks, namely announce_move_from and announce_move_to, on the Character typeclass (if what you want to change is the message other characters will see when a character exits).
+
These two hooks provide some useful features to easily update the message to be displayed. They take both the default message and mapping as argument. You can easily call the parent hook with these information:
-
The message represents the string of characters sent to characters in the room when a character
-leaves.
-
The mapping is a dictionary containing additional mappings (you will probably not need it for
-simple customization).
+
The message represents the string of characters sent to characters in the room when a character leaves.
+
The mapping is a dictionary containing additional mappings (you will probably not need it for simple customization).
-
It is advisable to look in the code of both
-hooks, and read the
-hooks’ documentation. The explanations on how to quickly update the message are shown below:
+
It is advisable to look in the code of both hooks, and read the hooks’ documentation. The explanations on how to quickly update the message are shown below:
# In typeclasses/characters.py"""Characters
@@ -394,16 +330,12 @@ hooks’ documentation. The explanations on how to quickly update the message a
super().announce_move_to(source_location,msg="{object} arrives from the {exit}.")
-
We override both hooks, but call the parent hook to display a different message. If you read the
-provided docstrings, you will better understand why and how we use mappings (information between
-braces). You can provide additional mappings as well, if you want to set a verb to move, for
-instance, or other, extra information.
+
We override both hooks, but call the parent hook to display a different message. If you read the provided docstrings, you will better understand why and how we use mappings (information between braces). You can provide additional mappings as well, if you want to set a verb to move, for instance, or other, extra information.
Do a @reload and all default commands will now use your new tweaked parent class. A copy of the
+
Do a reload and all default commands will now use your new tweaked parent class. A copy of the
MuxCommand class is also found commented-out in the mygame/commands/command.py file.
Q: If a user has already logged out of an Evennia account, their IP is no longer visible to
-staff that wants to ban-by-ip (instead of the user) with @ban/ip?
-
A: One approach is to write the IP from the last session onto the “account” account object.
Adding timestamp for login time and appending to a list to keep the last N login IP addresses and
-timestamps is possible, also. Additionally, if you don’t want the list to grow beyond a
-do_not_exceed length, conditionally pop a value after you’ve added it, if the length has grown too
-long.
-
NOTE: You’ll need to add importtime to generate the login timestamp.
-
defat_post_login(self,session=None,**kwargs):
- super().at_post_login(session=session,**kwargs)
- do_not_exceed=24# Keep the last two dozen entries
- session=self.sessions.all()[-1]# Most recent session
- ifnotself.db.lastsite:
- self.db.lastsite=[]
- self.db.lastsite.insert(0,(session.address,int(time.time())))
- iflen(self.db.lastsite)>do_not_exceed:
- self.db.lastsite.pop()
-
-
-
This only stores the data. You may want to interface the @ban command or make a menu-driven viewer
-for staff to browse the list and display how long ago the login occurred.
Q: When using e.g. Chinese characters in EvTable, some lines appear to be too wide, for example
@@ -461,11 +363,7 @@ for staff to browse the list and display how long ago the login occurred.
+~~~~~~+~~~~~~+
-
A: The reason for this is because certain non-latin characters are visually much wider than
-their len() suggests. There is little Evennia can (reliably) do about this. If you are using such
-characters, you need to make sure to use a suitable mono-spaced font where are width are equal. You
-can set this in your web client and need to recommend it for telnet-client users. See this
-discussion where some suitable fonts are suggested.
+
A: The reason for this is because certain non-latin characters are visually much wider than their len() suggests. There is little Evennia can (reliably) do about this. If you are using such characters, you need to make sure to use a suitable mono-spaced font where are width are equal. You can set this in your web client and need to recommend it for telnet-client users. See this discussion where some suitable fonts are suggested.
@@ -485,10 +383,10 @@ discussion where some suitable fonts are suggested.
modules |
Evennia allows for a lot of freedom when designing your game - but to code efficiently you still
-need to adopt some best practices as well as find a good place to start to learn.
It’s highly recommended that you jump in on the Starting Tutorial. Even if
-you only the beginning or some part of it, it covers much of the things needed to get started, including giving you are first introduction to Python.
You can also explore evennia interactively in a Jupyter notebook. This offers
-an in-browser view of your code similar to Matlab or similar programs. There are
-a few extra steps that must be taken in order for this to work:
-
# [open a new console/terminal]
-# [activate your evennia virtualenv in this console/terminal]
-cd evennia
-pip install -r requirements_extra.txt # if not done already above
-
-
-
Next, cd to your game folder. It’s important that you are in the root of this folder for the next command:
-
evennia shell_plus --notebook &
-
-
-
The & at the end starts the process as a background process on Linux/Unix.
-Skip it if your OS doesn’t support this syntax. Your browser should now open
-with the Jupyter interface. If not, open a browser to the link given on the
-command line.
-
In the window, open the new menu in the top right and start a DjangoShell-Plus notebook (or
-open an existing one if you had one from before). In the first cell you must initialize
-Evennia like so:
-
importevennia
-evennia._init()
-
-
-
Note that the above initialization must be run every time a new new notebook/kernel is started or restarted.
-
After this you can import and access all of the Evennia system, same as with evenniashell.
You can complement your exploration by peeking at the sections of the much more detailed
-Evennia Component overview. The Tutorials section also contains a growing collection
-of system- or implementation-specific help.
Evennia works by importing your own modules and running them as part of the server. Whereas Evennia
-should just gracefully tell you what errors it finds, it can nevertheless be a good idea for you to
-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
-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.
Before you start coding away at your dream game, take a look at our Game Planning
-page. It might hopefully help you avoid some common pitfalls and time sinks.
-
-
-
Code in your game folder, not in the evennia/ repository¶
-
As part of the Evennia setup you will create a game folder to host your game code. This is your
-home. You should never need to modify anything in the evennia library (anything you download
-from us, really). You import useful functionality from here and if you see code you like, copy&paste
-it out into your game folder and edit it there.
-
If you find that Evennia doesn’t support some functionality you need, make a Feature Request about it. Same goes for bugs. If you add features or fix bugs yourself, please consider Contributing your changes upstream!
Python is very good at reporting when and where things go wrong. A traceback shows everything you
-need to know about crashing code. The text can be pretty long, but you usually are only interested
-in the last bit, where it says what the error is and at which module and line number it happened -
-armed with this info you can resolve most problems.
-
Evennia will usually not show the full traceback in-game though. Instead the server outputs errors
-to the terminal/console from which you started Evennia in the first place. If you want more to show
-in-game you can add IN_GAME_ERRORS=True to your settings file. This will echo most (but not all)
-tracebacks both in-game as well as to the terminal/console. This is a potential security problem
-though, so don’t keep this active when your game goes into production.
-
-
A common confusing error is finding that objects in-game are suddenly of the type DefaultObject
-rather than your custom typeclass. This happens when you introduce a critical Syntax error to the
-module holding your custom class. Since such a module is not valid Python, Evennia can’t load it at
-all. Instead of crashing, Evennia will then print the full traceback to the terminal/console and
-temporarily fall back to the safe DefaultObject until you fix the problem and reload.
Some people find reading documentation extremely dull and shun it out of principle. That’s your
-call, but reading docs really 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
-chat are also there for you.
This documentation aims to help you set up a sane development environment to
make your game, also if you never coded before. If you are an experienced coder, much of this will be familiar to you, but some things may still be useful.
One of the advantages of Evennia over traditional MU* development systems is that Evennia can
-integrate into enterprise-level integration environments and source control.
Continuous Integration (CI) is a development
-practice that requires developers to integrate code into a shared repository.
-Each check-in is then verified by an automated build, allowing teams to detect problems early. This
-can be set up to safely deploy data to a production server only after tests have passed, for example.
One of the advantages of Evennia over traditional MU* development systems is that Evennia can integrate into enterprise-level integration environments and source control.
+
Continuous Integration (CI) is a development practice that requires developers to integrate code into a shared repository. Each check-in is then verified by an automated build, allowing teams to detect problems early. This can be set up to safely deploy data to a production server only after tests have passed, for example.
For Evennia, continuous integration allows an automated build process to:
Pull down a latest build from Source Control.
@@ -124,19 +117,16 @@ can be set up to safely deploy data to a production server only after tests have
Sometimes, an error is not trivial to resolve. A few simple print statements is not enough to find
-the cause of the issue. Running a debugger can then be very helpful and save a lot of time.
-Debugging
-means running Evennia under control of a special debugger program. This allows you to stop the
-action at a given point, view the current state and step forward through the program to see how its
-logic works.
+
Sometimes, an error is not trivial to resolve. A few simple print statements is not enough to find the cause of the issue. The traceback is not informative or even non-existing.
+
Running a debugger can then be very helpful and save a lot of time. Debugging means running Evennia under control of a special debugger program. This allows you to stop the action at a given point, view the current state and step forward through the program to see how its logic works.
Evennia natively supports these debuggers:
Pdb is a part of the Python distribution and
@@ -138,18 +133,14 @@ point.
-
(Re-)start Evennia in interactive (foreground) mode with evenniaistart. This is important -
-without this step the debugger will not start correctly - it will start in this interactive
-terminal.
-
Perform the steps that will trigger the line where you added the set_trace() call. The debugger
-will start in the terminal from which Evennia was interactively started.
+
(Re-)start Evennia in interactive (foreground) mode with evenniaistart. This is important - without this step the debugger will not start correctly - it will start in this interactive terminal.
+
Perform the steps that will trigger the line where you added the set_trace() call. The debugger will start in the terminal from which Evennia was interactively started.
The evennia.set_trace function takes the following arguments:
Here, debugger is one of pdb, pudb or auto. If auto, use pudb if available, otherwise
-use pdb. The term_size tuple sets the viewport size for pudb only (it’s ignored by pdb).
+
Here, debugger is one of pdb, pudb or auto. If auto, use pudb if available, otherwise use pdb. The term_size tuple sets the viewport size for pudb only (it’s ignored by pdb).
@@ -178,9 +169,7 @@ default cmdset. Then restart Evennia in interactive mode with test in your game, everything will freeze. You won’t get any feedback from the game,
-and you won’t be able to enter any command (nor anyone else). It’s because the debugger has started
-in your console, and you will find it here. Below is an example with pdb.
+
If you type test in your game, everything will freeze. You won’t get any feedback from the game, and you won’t be able to enter any command (nor anyone else). It’s because the debugger has started in your console, and you will find it here. Below is an example with pdb.
...>.../mygame/commands/command.py(79)func()->obj=self.search(self.args)
@@ -191,8 +180,7 @@ in your console, and you will find it here. Below is an example with pdb notes where it has stopped execution and, what line is about to be executed (in our case, obj=self.search(self.args)), and ask what you would like to do.
When you have the pdb prompt (Pdb), you can type in different commands to explore the code. The
-first one you should know is list (you can type l for short):
+
When you have the pdb prompt (Pdb), you can type in different commands to explore the code. The first one you should know is list (you can type l for short):
(Pdb)l4344key="test"
@@ -208,17 +196,12 @@ first one you should know is (Pdb)
-
Okay, this didn’t do anything spectacular, but when you become more confident with pdb and find
-yourself in lots of different files, you sometimes need to see what’s around in code. Notice that
-there is a little arrow (->) before the line that is about to be executed.
-
This is important: about to be, not has just been. You need to tell pdb to go on (we’ll
-soon see how).
+
Okay, this didn’t do anything spectacular, but when you become more confident with pdb and find yourself in lots of different files, you sometimes need to see what’s around in code. Notice that there is a little arrow (->) before the line that is about to be executed.
+
This is important: about to be, not has just been. You need to tell pdb to go on (we’ll soon see how).
pdb allows you to examine variables (or really, to run any Python instruction). It is very useful
-to know the values of variables at a specific line. To see a variable, just type its name (as if
-you were in the Python interpreter:
+
pdb allows you to examine variables (or really, to run any Python instruction). It is very useful to know the values of variables at a specific line. To see a variable, just type its name (as if you were in the Python interpreter:
(Pdb)self<commands.command.CmdTestobjectat0x045A0990>(Pdb)self.args
@@ -253,26 +236,19 @@ shorten it by just typing (Pdb)
-
Pdb is complaining that you try to call the search method on a command… whereas there’s no
-search method on commands. The character executing the command is in self.caller, so we might
-change our line:
+
Pdb is complaining that you try to call the search method on a command… whereas there’s no search method on commands. The character executing the command is in self.caller, so we might change our line:
pdb is waiting to execute the same instruction… it provoked an error but it’s ready to try
-again, just in case. We have fixed it in theory, but we need to reload, so we need to enter a
-command. To tell pdb to terminate and keep on running the program, use the continue (or c)
-command:
+
pdb is waiting to execute the same instruction… it provoked an error but it’s ready to try again, just in case. We have fixed it in theory, but we need to reload, so we need to enter a command. To tell pdb to terminate and keep on running the program, use the continue (or c) command:
(Pdb)c...
-
You see an error being caught, that’s the error we have fixed… or hope to have. Let’s reload the
-game and try again. You need to run evenniaistart again and then run test to get into the
-command again.
+
You see an error being caught, that’s the error we have fixed… or hope to have. Let’s reload the game and try again. You need to run evenniaistart again and then run test to get into the command again.
>.../mygame/commands/command.py(79)func()->obj=self.caller.search(self.args)(Pdb)
@@ -301,8 +277,7 @@ fix that bug too, it would be better):
...
-
Notice that you’ll have an error in the game this time. Let’s try with a valid parameter. I have
-another character, barkeep, in this room:
+
Notice that you’ll have an error in the game this time. Let’s try with a valid parameter. I have another character, barkeep, in this room:
testbarkeep
And again, the command freezes, and we have the debugger opened in the console.
Let’s execute this line right away:
@@ -324,32 +299,17 @@ another character, (Pdb)
-
As an exercise, fix this error, reload and run the debugger again. Nothing better than some
-experimenting!
+
As an exercise, fix this error, reload and run the debugger again. Nothing better than some experimenting!
Your debugging will often follow the same strategy:
Receive an error you don’t understand.
Put a breaking point BEFORE the error occurs.
+
Run evenniaistart
Run the code again and see the debugger open.
-
Run the program line by line,examining variables, checking the logic of instructions.
+
Run the program line by line, examining variables, checking the logic of instructions.
Continue and try again, each step a bit further toward the truth and the working feature.
n is useful, but it will avoid stepping inside of functions if it can. But most of the time, when
-we have an error we don’t understand, it’s because we use functions or methods in a way that wasn’t
-intended by the developer of the API. Perhaps using wrong arguments, or calling the function in a
-situation that would cause a bug. When we have a line in the debugger that calls a function or
-method, we can “step” to examine it further. For instance, in the previous example, when pdb was
-about to execute obj=self.caller.search(self.args), we may want to see what happens inside of
-the search method.
-
To do so, use the step (or s) command. This command will show you the definition of the
-function/method and you can then use n as before to see it line-by-line. In our little example,
-stepping through a function or method isn’t that useful, but when you have an impressive set of
-commands, functions and so on, it might really be handy to examine some feature and make sure they
-operate as planned.
All code submitted or committed to the Evennia project should aim to follow the
+guidelines outlined in Python PEP 8. Keeping the code style uniform
+makes it much easier for people to collaborate and read the code.
+
A good way to check if your code follows PEP8 is to use the PEP8 tool
+on your sources.
All non-global variable names and all function names are to be
+lowercase, words separated by underscores. Variable names should
+always be more than two letters long.
+
Module-level global variables (only) are to be in CAPITAL letters.
+
Imports should be done in this order:
+
+
Python modules (builtins and standard library)
+
Twisted modules
+
Django modules
+
Evennia library modules (evennia)
+
Evennia contrib modules (evennia.contrib)
+
+
+
All modules, classes, functions and methods should have doc strings formatted
+as outlined below.
+
All default commands should have a consistent docstring formatted as
+outlined below.
All modules, classes, functions and methods should have docstrings
+formatted with Google style -inspired indents, using
+Markdown formatting where needed. Evennia’s api2md
+parser will use this to create pretty API documentation.
Modules should all start with at least a few lines of docstring at
+their top describing the contents and purpose of the module.
+
Example of module docstring (top of file):
+
"""
+This module handles the creation of `Objects` that
+are useful in the game ...
+
+"""
+
+
+
Sectioning (#title, ##subtile etc) should not be used in
+freeform docstrings - this will confuse the sectioning of the auto
+documentation page and the auto-api will create this automatically.
+Write just the section name bolded on its own line to mark a section.
+Beyond sections markdown should be used as needed to format
+the text.
+
Code examples should use multi-line syntax highlighting
+to mark multi-line code blocks, using the “python” identifier. Just
+indenting code blocks (common in markdown) will not produce the
+desired look.
+
When using any code tags (inline or blocks) it’s recommended that you
+don’t let the code extend wider than about 70 characters or it will
+need to be scrolled horizontally in the wiki (this does not affect any
+other text, only code).
The root class docstring should describe the over-arching use of the
+class. It should usually not describe the exact call sequence nor list
+important methods, this tends to be hard to keep updated as the API
+develops. Don’t use section markers (#, ## etc).
+
Example of class docstring:
+
classMyClass(object):
+ """
+ This class describes the creation of `Objects`. It is useful
+ in many situations, such as ...
+
+ """
+
+deffuncname(a,b,c,d=False,**kwargs):
+ """
+ This is a brief introduction to the function/class/method
+
+ Args:
+ a (str): This is a string argument that we can talk about
+ over multiple lines.
+ b (int or str): Another argument.
+ c (list): A list argument.
+ d (bool, optional): An optional keyword argument.
+
+ Keyword Args:
+ test (list): A test keyword.
+
+ Returns:
+ str: The result of the function.
+
+ Raises:
+ RuntimeException: If there is a critical error,
+ this is raised.
+ IOError: This is only raised if there is a
+ problem with the database.
+
+ Notes:
+ This is an example function. If `d=True`, something
+ amazing will happen.
+
+ """
+
+
+
The syntax is very “loose” but the indentation matters. That is, you
+should end the block headers (like Args:) with a line break followed by
+an indent. When you need to break a line you should start the next line
+with another indent. For consistency with the code we recommend all
+indents to be 4 spaces wide (no tabs!).
Parts marked with “freeform” means that you can in principle put any
+text there using any formatting except for sections markers (#, ##
+etc). You must also keep indentation to mark which block you are part
+of. You should normally use the specified format rather than the
+freeform counterpart (this will produce nicer output) but in some
+cases the freeform may produce a more compact and readable result
+(such as when describing an *args or **kwargs statement in general
+terms). The first self argument of class methods should never be
+documented.
mean the same thing! Which one is used depends on the function or
+method documented, but there are no hard rules; If there is a large
+**kwargs block in the function, using the KeywordArgs: block may be a
+good idea, for a small number of arguments though, just using Args:
+and marking keywords as optional will shorten the docstring and make
+it easier to read.
These represent a special case since Commands in Evennia use their class
+docstrings to represent the in-game help entry for that command.
+
All the commands in the default command sets should have their doc-strings
+formatted on a similar form. For contribs, this is loosened, but if there is
+no particular reason to use a different form, one should aim to use the same
+style for contrib-command docstrings as well.
+
"""
+ Short header
+
+ Usage:
+ key[/switches, if any] <mandatory args> [optional] choice1||choice2||choice3
+
+ Switches:
+ switch1 - description
+ switch2 - description
+
+ Examples:
+ Usage example and output
+
+ Longer documentation detailing the command.
+
+ """
+
+
+
+
Two spaces are used for indentation in all default commands.
Angled brackets <> surround a description of what to write rather than the exact syntax.
+
Explicit choices are separated by |. To avoid this being parsed as a color code, use || (this
+will come out as a single |) or put spaces around the character (“|”) if there’s plenty of room.
+
The Switches and Examples blocks are optional and based on the Command.
+
+
Here is the nick command as an example:
+
"""
+ Define a personal alias/nick
+
+ Usage:
+ nick[/switches] <nickname> = [<string>]
+ alias ''
+
+ Switches:
+ object - alias an object
+ account - alias an account
+ clearall - clear all your aliases
+ list - show all defined aliases (also "nicks" works)
+
+ Examples:
+ nick hi = say Hello, I'm Sarah!
+ nick/object tom = the tall man
+
+ A 'nick' is a personal shortcut you create for your own use [...]
+
+ """
+
+
+
For commands that require arguments, the policy is for it to return a Usage:
+string if the command is entered without any arguments. So for such commands,
+the Command body should contain something to the effect of
The Python IDE Pycharm can auto-generate empty doc-string stubs. The
+default is to use reStructuredText form, however. To change to Evennia’s
+Google-style docstrings, follow this guide.
Sometimes it can be useful to try to determine just how efficient a particular
-piece of code is, or to figure out if one could speed up things more than they
-are. There are many ways to test the performance of Python and the running
-server.
-
Before digging into this section, remember Donald Knuth’s
-words of wisdom:
+
+
Important
+
This is considered an advanced topic. It’s mainly of interest to server developers.
+
+
Sometimes it can be useful to try to determine just how efficient a particular piece of code is, or to figure out if one could speed up things more than they are. There are many ways to test the performance of Python and the running server.
+
Before digging into this section, remember Donald Knuth’s words of wisdom:
[…]about 97% of the time: Premature optimization is the root of all evil.
-
That is, don’t start to try to optimize your code until you have actually
-identified a need to do so. This means your code must actually be working before
-you start to consider optimization. Optimization will also often make your code
-more complex and harder to read. Consider readability and maintainability and
-you may find that a small gain in speed is just not worth it.
-
+
That is, don’t start to try to optimize your code until you have actually identified a need to do so. This means your code must actually be working before you start to consider optimization. Optimization will also often make your code more complex and harder to read. Consider readability and maintainability and you may find that a small gain in speed is just not worth it.
Python’s timeit module is very good for testing small things. For example, in
@@ -147,46 +138,24 @@ could use the following code:
<<<5.358283996582031
-
The setup keyword is used to set up things that should not be included in the
-time measurement, like a=[] in the first call.
-
By default the timeit function will re-run the given test 1000000 times and
-returns the total time to do so (so not the average per test). A hint is to
-not use this default for testing something that includes database writes - for
-that you may want to use a lower number of repeats (say 100 or 1000) using the
-number=100 keyword.
+
The setup keyword is used to set up things that should not be included in the time measurement, like a=[] in the first call.
+
By default the timeit function will re-run the given test 1000000 times and returns the total time to do so (so not the average per test). A hint is to not use this default for testing something that includes database writes - for that you may want to use a lower number of repeats (say 100 or 1000) using the number=100 keyword.
+
In the example above, we see that this number of calls, using a list comprehension is about twice as fast as building a list using .append().
Python comes with its own profiler, named cProfile (this is for cPython, no
-tests have been done with pypy at this point). Due to the way Evennia’s
-processes are handled, there is no point in using the normal way to start the
-profiler (python-mcProfileevennia.py). Instead you start the profiler
-through the launcher:
+
Python comes with its own profiler, named cProfile (this is for cPython, no tests have been done with pypy at this point). Due to the way Evennia’s processes are handled, there is no point in using the normal way to start the profiler (python-mcProfileevennia.py). Instead you start the profiler through the launcher:
evennia --profiler start
-
This will start Evennia with the Server component running (in daemon mode) under
-cProfile. You could instead try --profile with the portal argument to
-profile the Portal (you would then need to
-start the Server separately).
-
Please note that while the profiler is running, your process will use a lot more
-memory than usual. Memory usage is even likely to climb over time. So don’t
-leave it running perpetually but monitor it carefully (for example using the
-top command on Linux or the Task Manager’s memory display on Windows).
-
Once you have run the server for a while, you need to stop it so the profiler
-can give its report. Do not kill the program from your task manager or by
-sending it a kill signal - this will most likely also mess with the profiler.
-Instead either use evennia.pystop or (which may be even better), use
-@shutdown from inside the game.
-
Once the server has fully shut down (this may be a lot slower than usual) you
-will find that profiler has created a new file mygame/server/logs/server.prof.
+
This will start Evennia with the Server component running (in daemon mode) under cProfile. You could instead try --profile with the portal argument to profile the Portal (you would then need to start the Server separately).
+
Please note that while the profiler is running, your process will use a lot more memory than usual. Memory usage is even likely to climb over time. So don’t leave it running perpetually but monitor it carefully (for example using the top command on Linux or the Task Manager’s memory display on Windows).
+
Once you have run the server for a while, you need to stop it so the profiler can give its report. Do not kill the program from your task manager or by sending it a kill signal - this will most likely also mess with the profiler. Instead either use evennia.pystop or (which may be even better), use @shutdown from inside the game.
+
Once the server has fully shut down (this may be a lot slower than usual) you will find that profiler has created a new file mygame/server/logs/server.prof.
The server.prof file is a binary file. There are many ways to analyze and
-display its contents, all of which has only been tested in Linux (If you are a
-Windows/Mac user, let us know what works).
-
You can look at the contents of the profile file with Python’s in-built pstats
-module in the evennia shell (it’s recommended you install ipython with pipinstallipython in your virtualenv first, for prettier output):
+
The server.prof file is a binary file. There are many ways to analyze and display its contents, all of which has only been tested in Linux (If you are a Windows/Mac user, let us know what works).
+
You can look at the contents of the profile file with Python’s in-built pstats module in the evennia shell (it’s recommended you install ipython with pipinstallipython in your virtualenv first, for prettier output):
evennia shell
@@ -199,9 +168,7 @@ module in the evennia shell (it’s recommended you install Python profiling documentation
-for more information.
+
Runsnake visualizes the profile to
@@ -214,21 +181,12 @@ KCachegrind work with Python profiles you also need the wrapper script
pyprof2calltree via pip whereas KCacheGrind is something you need to get
via your package manager or their homepage.
-
How to analyze and interpret profiling data is not a trivial issue and depends
-on what you are profiling for. Evennia being an asynchronous server can also
-confuse profiling. Ask on the mailing list if you need help and be ready to be
-able to supply your server.prof file for comparison, along with the exact
-conditions under which it was obtained.
+
How to analyze and interpret profiling data is not a trivial issue and depends on what you are profiling for. Evennia being an asynchronous server can also confuse profiling. Ask on the mailing list if you need help and be ready to be able to supply your server.prof file for comparison, along with the exact conditions under which it was obtained.
It is difficult to test “actual” game performance without having players in your
-game. For this reason Evennia comes with the Dummyrunner system. The
-Dummyrunner is a stress-testing system: a separate program that logs into your
-game with simulated players (aka “bots” or “dummies”). Once connected, these
-dummies will semi-randomly perform various tasks from a list of possible
-actions. Use Ctrl-C to stop the Dummyrunner.
+
It is difficult to test “actual” game performance without having players in your game. For this reason Evennia comes with the Dummyrunner system. The Dummyrunner is a stress-testing system: a separate program that logs into your game with simulated players (aka “bots” or “dummies”). Once connected, these dummies will semi-randomly perform various tasks from a list of possible actions. Use Ctrl-C to stop the Dummyrunner.
Warning
You should not run the Dummyrunner on a production database. It
@@ -243,9 +201,7 @@ will spawn many objects and also needs to run with general permissions.
from evennia.server.profiling.settings_mixin import *
-
This will override your settings and disable Evennia’s rate limiters and
-DoS-protections, which would otherwise block mass-connecting clients from
-one IP. Notably, it will also change to a different (faster) password hasher.
+
This will override your settings and disable Evennia’s rate limiters and DoS-protections, which would otherwise block mass-connecting clients from one IP. Notably, it will also change to a different (faster) password hasher.
(recommended): Build a new database. If you use default Sqlite3 and want to
keep your existing database, just rename mygame/server/evennia.db3 to
@@ -260,28 +216,16 @@ be able to connect with an existing user since the password hasher chan
Use Ctrl-C (or Cmd-C) to stop it.
-
If you want to see what the dummies are actually doing you can run with a single
-dummy:
+
If you want to see what the dummies are actually doing you can run with a single dummy:
evennia --dummyrunner 1
-
The inputs/outputs from the dummy will then be printed. By default the runner
-uses the ‘looker’ profile, which just logs in and sends the ‘look’ command
-over and over. To change the settings, copy the file
-evennia/server/profiling/dummyrunner_settings.py to your mygame/server/conf/
-directory, then add this line to your settings file to use it in the new
-location:
+
The inputs/outputs from the dummy will then be printed. By default the runner uses the ‘looker’ profile, which just logs in and sends the ‘look’ command over and over. To change the settings, copy the file evennia/server/profiling/dummyrunner_settings.py to your mygame/server/conf/ directory, then add this line to your settings file to use it in the new location:
The dummyrunner settings file is a python code module in its own right - it
-defines the actions available to the dummies. These are just tuples of command
-strings (like “look here”) for the dummy to send to the server along with a
-probability of them happening. The dummyrunner looks for a global variable
-ACTIONS, a list of tuples, where the first two elements define the
-commands for logging in/out of the server.
-
Below is a simplified minimal setup (the default settings file adds a lot more
-functionality and info):
+
The dummyrunner settings file is a python code module in its own right - it defines the actions available to the dummies. These are just tuples of command strings (like “look here”) for the dummy to send to the server along with a probability of them happening. The dummyrunner looks for a global variable ACTIONS, a list of tuples, where the first two elements define the commands for logging in/out of the server.
+
Below is a simplified minimal setup (the default settings file adds a lot more functionality and info):
# minimal dummyrunner setup file# Time between each dummyrunner "tick", in seconds. Each dummy will be called
@@ -325,8 +269,7 @@ functionality and info):
-
At the bottom of the default file are a few default profiles you can test out
-by just setting the PROFILE variable to one of the options.
+
At the bottom of the default file are a few default profiles you can test out by just setting the PROFILE variable to one of the options.
PyCharm is a Python developer’s IDE from Jetbrains available
-for Windows, Mac and Linux. It is a commercial product but offer free trials, a scaled-down
-community edition and also generous licenses for OSS projects like Evennia.
+
PyCharm is a Python developer’s IDE from Jetbrains available for Windows, Mac and Linux. It is a commercial product but offer free trials, a scaled-down community edition and also generous licenses for OSS projects like Evennia.
-
This page was originally tested on Windows (so use Windows-style path examples), but should work
-the same for all platforms.
+
This page was originally tested on Windows (so use Windows-style path examples), but should work the same for all platforms.
-
First, install Evennia on your local machine with [[Getting Started]]. If you’re new to PyCharm,
-loading your project is as easy as selecting the Open option when PyCharm starts, and browsing to
-your game folder (the one created with evennia--init). We refer to it as mygame here.
+
First, install Evennia on your local machine with [[Getting Started]]. If you’re new to PyCharm, loading your project is as easy as selecting the Open option when PyCharm starts, and browsing to your game folder (the one created with evennia--init). We refer to it as mygame here.
If you want to be able to examine evennia’s core code or the scripts inside your virtualenv, you’ll
need to add them to your project too:
@@ -148,63 +143,42 @@ project is already configured in PyCharm.
Of course you can attach to the portal process as well. If you want to debug the Evennia launcher
or runner for some reason (or just learn how they work!), see Run Configuration below.
-
NOTE: Whenever you reload Evennia, the old Server process will die and a new one start. So when
-you restart you have to detach from the old and then reattach to the new process that was created.
+
NOTE: Whenever you reload Evennia, the old Server process will die and a new one start. So when you restart you have to detach from the old and then reattach to the new process that was created.
-
To make the process less tedious you can apply a filter in settings to show only the server.py
-process in the list. To do that navigate to: Settings/Preferences|Build,Execution,Deployment|PythonDebugger and then in Attachtoprocess field put in: twistd.exe"--nodaemon. This is an
-example for windows, I don’t have a working mac/linux box.
-
+
To make the process less tedious you can apply a filter in settings to show only the server.py process in the list. To do that navigate to: Settings/Preferences|Build,Execution,Deployment|PythonDebugger and then in Attachtoprocess field put in: twistd.exe"--nodaemon. This is an example for windows, I don’t have a working mac/linux box.
This configuration allows you to launch Evennia from inside PyCharm. Besides convenience, it also
-allows suspending and debugging the evennia_launcher or evennia_runner at points earlier than you
-could by running them externally and attaching. In fact by the time the server and/or portal are
-running the launcher will have exited already.
+
This configuration allows you to launch Evennia from inside PyCharm. Besides convenience, it also allows suspending and debugging the evennia_launcher or evennia_runner at points earlier than you could by running them externally and attaching. In fact by the time the server and/or portal are running the launcher will have exited already.
Go to Run>EditConfigutations...
Click the plus-symbol to add a new configuration and choose Python
-
Add the script: \<yourrepo\>\evenv\Scripts\evennia_launcher.py (substitute your virtualenv if
-it’s not named evenv)
+
Add the script: \<yourrepo\>\evenv\Scripts\evennia_launcher.py (substitute your virtualenv if it’s not named evenv)
Set script parameters to: start-l (-l enables console logging)
Ensure the chosen interpreter is from your virtualenv
Set Working directory to your mygame folder (not evenv nor evennia)
-
You can refer to the PyCharm documentation for general info, but you’ll want to set at least a
-config name (like “MyMUD start” or similar).
+
You can refer to the PyCharm documentation for general info, but you’ll want to set at least a config name (like “MyMUD start” or similar).
-
Now set up a “stop” configuration by following the same steps as above, but set your Script
-parameters to: stop (and name the configuration appropriately).
-
A dropdown box holding your new configurations should appear next to your PyCharm run button.
-Select MyMUD start and press the debug icon to begin debugging. Depending on how far you let the
-program run, you may need to run your “MyMUD stop” config to actually stop the server, before you’ll
-be able start it again.
+
Now set up a “stop” configuration by following the same steps as above, but set your Script parameters to: stop (and name the configuration appropriately).
+
A dropdown box holding your new configurations should appear next to your PyCharm run button. Select MyMUD start and press the debug icon to begin debugging. Depending on how far you let the program run, you may need to run your “MyMUD stop” config to actually stop the server, before you’ll be able start it again.
-
-
Alternative run configuration - utilizing logfiles as source of data¶
-
This configuration takes a bit different approach as instead of focusing on getting the data back
-through logfiles. Reason for that is this way you can easily separate data streams, for example you
-rarely want to follow both server and portal at the same time, and this will allow it. This will
-also make sure to stop the evennia before starting it, essentially working as reload command (it
-will also include instructions how to disable that part of functionality). We will start by defining
-a configuration that will stop evennia. This assumes that upfire is your pycharm project name, and
-also the game name, hence the upfire/upfire path.
+
+
Alternative config - utilizing logfiles as source of data¶
+
This configuration takes a bit different approach as instead of focusing on getting the data back through logfiles. Reason for that is this way you can easily separate data streams, for example you rarely want to follow both server and portal at the same time, and this will allow it. This will also make sure to stop the evennia before starting it, essentially working as reload command (it will also include instructions how to disable that part of functionality). We will start by defining a configuration that will stop evennia. This assumes that upfire is your pycharm project name, and also the game name, hence the upfire/upfire path.
Go to Run>EditConfigutations...\
-
Click the plus-symbol to add a new configuration and choose the python interpreter to use (should
-be project default)
+
Click the plus-symbol to add a new configuration and choose the python interpreter to use (should be project default)
Name the configuration as “stop evennia” and fill rest of the fields accordingly to the image:
Press Apply
-
Now we will define the start/reload command that will make sure that evennia is not running already,
-and then start the server in one go.
+
Now we will define the start/reload command that will make sure that evennia is not running already, and then start the server in one go.
Go to Run>EditConfigutations...\
-
Click the plus-symbol to add a new configuration and choose the python interpreter to use (should
-be project default)
+
Click the plus-symbol to add a new configuration and choose the python interpreter to use (should be project default)
Name the configuration as “start evennia” and fill rest of the fields accordingly to the image:
Navigate to the Logs tab and add the log files you would like to follow. The picture shows
diff --git a/docs/1.0-dev/Coding/Unit-Testing.html b/docs/1.0-dev/Coding/Unit-Testing.html
index c35a77d7d2..cb5502af60 100644
--- a/docs/1.0-dev/Coding/Unit-Testing.html
+++ b/docs/1.0-dev/Coding/Unit-Testing.html
@@ -115,17 +115,9 @@
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).
-
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
-over the Evennia source code (called test suites) and runs them all in one go. Errors and
-tracebacks are reported.
-
By default Evennia only tests itself. But you can also add your own tests to your game code and have
-Evennia run those for you.
+
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).
+
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 over the Evennia source code (called test suites) and runs them all in one go. Errors and tracebacks are reported.
+
By default Evennia only tests itself. But you can also add your own tests to your game code and have Evennia run those for you.
Fortunately, it’s extremely easy to keep your Evennia server up-to-date. If you haven’t already, see
-the Getting Started guide and get everything running.
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
-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
-
-
-
assuming you’ve got the command line client. If you’re using a graphical client, you will probably
-want to navigate to the evennia directory and either right click and find your client’s pull
-function, or use one of the menus (if applicable).
-
You can review the latest changes with
-
git log
-
-
-
or the equivalent in the graphical client. You can also see the latest changes online
-here.
-
You will always need to do evenniareload (or reload from -in-game) from your game-dir to have
-the new code affect your game. If you want to be really sure you should run a full evenniareboot
-so that both Server and Portal can restart (this will disconnect everyone though, so if you know the
-Portal has had no updates you don’t have to do that).
On occasion we update the versions of third-party libraries Evennia depend on (or we may add a new
-dependency). This will be announced on the mailing list/forum. If you run into errors when starting
-Evennia, always make sure you have the latest versions of everything. In some cases, like for
-Django, starting the server may also give warning saying that you are using a working, but too-old
-version that should not be used in production.
-
Upgrading evennia will automatically fetch all the latest packages that it now need. First cd to
-your cloned evennia folder. Make sure your virtualenv is active and use
-
pip install --upgrade -e .
-
-
-
Remember the period (.) at the end - that applies the upgrade to the current location (your
-evennia dir).
-
-
The -e means that we are linking the evennia sources rather than copying them into the
-environment. This means we can most of the time just update the sources (with gitpull) and see
-those changes directly applied to our installed evennia package. Without installing/upgrading the
-package with -e, we would have to remember to upgrade the package every time we downloaded any new
-source-code changes.
-
-
Follow the upgrade output to make sure it finishes without errors. To check what packages are
-currently available in your python environment after the upgrade, use
-
pip list
-
-
-
This will show you the version of all installed packages. The evennia package will also show the
-location of its source code.
Whenever we change the database layout of Evennia upstream (such as when we add new features) you
-will need to migrate your existing database. When this happens it will be clearly noted in the
-gitlog (it will say something to the effect of “Run migrations”). Database changes will also be
-announced on the Evennia mailing list.
-
When the database schema changes, you just go to your game folder and run
-
evennia migrate
-
-
-
-
Hint: If the evennia command is not found, you most likely need to activate your
-virtualenv.
Should you ever want to start over completely from scratch, there is no need to re-download Evennia
-or anything like that. You just need to clear your database. Once you are done, you just rebuild it
-from scratch by running
-
evennia migrate
-
-
-
The first step in wiping your database is to stop Evennia completely with
-
evennia stop
-
-
-
If you run the default SQlite3 database (to change this you need to edit your settings.py file),
-the database is actually just a normal file in mygame/server/ called evennia.db3. Simply delete
-that file - that’s it. Now run evenniamigrate to recreate a new, fresh one.
-
If you run some other database system you can instead flush the database:
-
evennia flush
-
-
-
This will empty the database. However, it will not reset the internal counters of the database, so
-you will start with higher dbref values. If this is okay, this is all you need.
-
Django also offers an easy way to start the database’s own management should we want more direct
-control:
-
evennia dbshell
-
-
-
In e.g. MySQL you can then do something like this (assuming your MySQL database is named “Evennia”:
-
mysql> DROP DATABASE Evennia;
-mysql> exit
-
-
-
-
NOTE: Under Windows OS, in order to access SQLite dbshell you need to download the SQLite
-command-line shell program. It’s a single executable file
-(sqlite3.exe) that you should place in the root of either your MUD folder or Evennia’s (it’s the
-same, in both cases Django will find it).
If and when an Evennia update modifies the database schema (that is, the under-the-hood details as
-to how data is stored in the database), you must update your existing database correspondingly to
-match the change. If you don’t, the updated Evennia will complain that it cannot read the database
-properly. Whereas schema changes should become more and more rare as Evennia matures, it may still
-happen from time to time.
-
One way one could handle this is to apply the changes manually to your database using the database’s
-command line. This often means adding/removing new tables or fields as well as possibly convert
-existing data to match what the new Evennia version expects. It should be quite obvious that this
-quickly becomes cumbersome and error-prone. If your database doesn’t contain anything critical yet
-it’s probably easiest to simply reset it and start over rather than to bother converting.
-
Enter migrations. Migrations keeps track of changes in the database schema and applies them
-automatically for you. Basically, whenever the schema changes we distribute small files called
-“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 evenniamigrate to be up-to-date again.
-
-
-
\ No newline at end of file
diff --git a/docs/1.0-dev/Coding/Version-Control.html b/docs/1.0-dev/Coding/Version-Control.html
index cea255a0dd..c51b4ccf5f 100644
--- a/docs/1.0-dev/Coding/Version-Control.html
+++ b/docs/1.0-dev/Coding/Version-Control.html
@@ -6,7 +6,7 @@
- Version Control — Evennia 1.0-dev documentation
+ Coding using Version Control — Evennia 1.0-dev documentation
@@ -17,7 +17,7 @@
-
+
Version control software allows you to track the changes you make to your code, as well as being
-able to easily backtrack these changes, share your development efforts and more.
-
It’s strongly recommended that you put your game code under version control. Version
-control is also the way to contribue to Evennia itself.
-
For an introduction to the concept, start with the Wikipedia article
-here. Evennia uses the version
-control system Git and this is what will be covered
-henceforth. Note that this page primarily shows commands for Linux, but the
-syntax should be the same for Windows and Mac.
Version control allows you to track changes to your code. You can save ‘snapshots’ of your progress which means you can roll back undo things easily. Version control also allows you to easily back up your code to an online repository such as Github. It also allows you to collaborate with others on the same code without clashing or worry about who changed what.
+
+
Evennia uses the most commonly used version control system, Git . For additional help on using Git, please refer to the Official GitHub documentation.
To avoid a common issue later, you will need to set a couple of settings; first you will need to
-tell Git your username, followed by your e-mail address, so that when you commit code later you will
-be properly credited.
-
Note that your commit information will be visible to everyone if you ever contribute to Evennia or
-use an online service like github to host your code. So if you are not comfortable with using your
-real, full name online, put a nickname here.
+
You can find expanded instructions for installation here.
+
+
To avoid a common issue later, you will need to set a couple of settings; first you will need to tell Git your username, followed by your e-mail address, so that when you commit code later you will be properly credited.
Set the default name for git to use when you commit:
git config --global user.name "Your Name Here"
@@ -190,298 +170,290 @@ real, full name online, put a nickname here.
Note: The game folder’s version control is completely separate from Evennia’s repository.
+
To get a running start with Git, here’s a good YouTube talk about it. 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).
-
After you have set up your game you will have created a new folder to host your particular game
-(let’s call this folder mygame for now).
-
This folder is not under version control at this point.
Git can be controlled via a GUI. But it’s often easier to use the base terminal/console commands, since it makes it clear if something goes wrong.
+
All these actions need to be done from inside the git repository .
+
Git may seem daunting at first. But when working with git, you’ll be using the same 2-3 commands 99% of the time. And you can make git aliases to have them be even easier to remember.
This initializes a folder/directory on your drive as a ‘git repository’
+
git init .
-
Your mygame folder is now ready for version control! Add all the content and make a first
-commit:
-
cd mygame
+
The . means to apply to the current directory. If you are inside mygame, this makes your game dir into a git repository. That’s all there is to it, really. You only need to do this once.
This tells Git to start to track the file under version control. You need to do this when you create a new file. You can also add all files in your current directory:
+
git add .
+
+
+
Or
+
git add *
+
+
+
All files in the current directory are now tracked by Git. You only need to do this once for every file you want to track.
This commits your changes. It stores a snapshot of all (-a) your code at the current time, adding a message -m so you know what you did. Later you can check out your code the way it was at a given time. The message is mandatory and you will thank yourself later if write clear and descriptive log messages. If you don’t add -m, a text editor opens for you to write the message instead.
+
The gitcommit is something you’ll be using all the time, so it can be useful to make a git alias for it:
+
git config --global alias.cma 'commit -a -m'
+
+
+
After you’ve run this, you can commit much simpler, like this:
This gives a short (-s) of the files that changes since your last gitcommit.
+
git diff --word-diff`
+
+
+
This shows exactly what changed in each file since you last made a gitcommit. The --word-diff option means it will mark if a single word changed on a line.
+
git log
+
+
+
This shows the log of all commits done. Each log will show you who made the change, the commit-message and a unique hash (like ba214f12ab12e123...) that uniquely describes that commit.
+
You can make the log command more succinct with some more options:
Git allows you to work with branches. These are separate development paths your code may take, completely separate from each other. You can later merge the code from a branch back into another branch. Evennia’s master and develop branches are examples of this.
+
git branch -b branchaname
+
+
+
This creates a new branch, exactly identical to the branch you were on. It also moves you to that branch.
+
git branch -D branchname
+
+
+
Deletes a branch.
+
git branch
+
+
+
Shows all your branches, marking which one you are currently on.
+
git checkout branchname
+
+
+
This checks out another branch. As long as you are in a branch all gitcommits will commit the code to that branch only.
+
git checkout .
+
+
+
This checks out your current branch and has the effect of throwing away all your changes since your last commit. This is like undoing what you did since the last save point.
+
git checkout b2342bc21c124
+
+
+
This checks out a particular commit, identified by the hash you find with gitlog. This open a ‘temporary branch’ where the code is as it was when you made this commit. As an example, you can use this to check where a bug was introduced. Check out an existing branch to go back to your normal timeline, or use gitbranch-bnewbranch to break this code off into a new branch you can continue working from.
+
git merge branchname
+
+
+
This merges the code from branchname into the branch you are currently in. Doing so may lead to merge conflicts if the same code changed in different ways in the two branches. See how to resolve merge conflicts in git for more help.
All of these other commands have dealt with code only sitting in your local repository-folder. These commands instead allows you to exchange code with a remote repository - usually one that is online (like on github).
+
+
How you actually set up a remote repository is described in the next section.
+
+
git clone repository/path
+
+
+
This copies the remote repository to your current location. If you used the Git installation instructions to install Evennia, this is what you used to get your local copy of the Evennia repository.
+
git pull
+
+
+
Once you cloned or otherwise set up a remote repository, using gitpull will re-sync the remote with what you have locally. If what you download clashes with local changes, git will force you to gitcommit your changes before you can continue with gitpull.
+
git push
+
+
+
This uploads your local changes of your current branch to the same-named branch on the remote repository. To be able to do this you must have write-permissions to the remote repository.
This makes use of the git commands listed in the previous section.
+
+
cd mygame
+git init .
git add *
git commit -a -m "Initial commit"
-
In turn these commands:
-
-
Move us into the mygame folder
-
Tell git that everything * means everything) in this folder should be put
-under version control.
-
Commit all (-a) those newly added files to git and add a message -m so you remember
-what you did at this point. Doing a commit is like saving a snapshot of the
-current state of everything.
When working on your code or fix bugs in your local branches you may end up creating new files. If
-you do you must tell Git to track them by using the add command.
-
git add <filename>
-
-
-
You only need to do this once per file.
-
git status
-
-
-
will show if you have any modified, added or otherwise changed files. Some
-files, like database files, logs and temporary PID files are usually not
-tracked in version control. These should either not show up or have a question
-mark in front of them.
-
-
Note
-
You will notice that some files are not covered by your git version control,
-notably your settings file (mygame/server/conf/settings.py) and your sqlite3
-database file mygame/server/evennia.db3. What is auto-ignored by is controlled
-by the hidden file mygame/.gitignore. Evennia creates this file as part of
-the creation of your game directory. Everything matched in this file will be
-ignored by git. If you want to, for example, include your settings file for
-collaborators to access, remove that entry in .gitignore.
-
+
Your game-dir is now tracked by git.
+
You will notice that some files are not covered by your git version control, notably your secret-settings file (mygame/server/conf/secret_settings.py) and your sqlite3 database file mygame/server/evennia.db3. This is intentional and controlled from the file mygame/.gitignore.
Warning
You should never put your sqlite3 database file into git by removing its entry
in .gitignore. GIT is for backing up your code, not your database. That way
-lies madness and a good chance you’ll confuse yourself so that after a few
-commits and reverts don’t know what is in your database or not. If you want to
-backup your database, do so by simply copying the file on your hard drive to a
-backup-name.
+lies madness and a good chance you’ll confuse yourself. Make one mistake or local change and after a few commits and reverts you will have lost track of what is in your database or not. If you want to backup your SQlite3 database, do so by simply copying the database file to a safe location.
Committing your code means storing the current snapshot of your code within
-git. This creates a “save point” or “history” of your development process. You
-can later jump back and forth in your history, for example to figure out just
-when a bug was introduced or see what results the code used to produce compared
-to now. Or just wiping everything since the last commit, if you did something
-stupid.
-
It’s usually a good idea to commit your changes often. Committing is fast and
-local only - you will never commit anything online at this point. To commit your
-changes, use
-
git commit --all
-
-
-
Also -a works. This will open a text editor for you to describe your change.
-Be brief but informative in your message - you’ll appreciate it later. When you
-save and close the editor, the commit will be saved. You can create the message
-directly with
-
git commit -a -m "This fixes a bug in the combat code."
-
If you have non-committed changes that you realize you want to throw away, you
-‘check out’ the file you want - this will re-load it from the last committed
-state:
So far your code is only located on your private machine. A good idea is to back
-it up online. The easiest way to do this is to push it to your own remote
-repository on GitHub.
-
-
Important
-
Just to avoid confusion, be aware that Github’s documentation has changed to
-calling the primary branch ‘main’ rather than ‘master’. While Evennia still
-uses ‘master’ branch (and this is what we refer to below), you can use either
-name for your personal primary branch - they are equivalent.
+
So far your code is only located on your private machine. A good idea is to back it up online. The easiest way to do this is to gitpush it to your own remote repository on GitHub. So for this you need a (free) Github account.
+
If you don’t want your code to be publicly visible, Github also allows you set up a private repository, only visible to you.
+
+
Note
+
Github’s defaults have changed to calling the primary branch ‘main’ rather than ‘master’. While Evennia still uses ‘master’ branch (and this is what we refer to below), you can use either name for your personal primary branch - they are equivalent.
-
-
Make sure you have your game directory setup under git version control as
-described in the previous section. Make sure to commit any changes you did.
-
Create a new, empty repository on Github. Github explains how
-here (do not “Initialize
-the repository with a README” or else you’ll create unrelated histories).
-
From your local game dir, do gitremoteaddorigin<githubURL> where
-<githubURL> is the URL to your online repo. This tells your game dir that
-it should be pushing to the remote online dir.
-
gitremote-v to verify the online dir.
-
gitpushoriginmaster (or gitpushoriginmain) now pushes your game dir
-online so you can see it on github.com.
-
-
You can commit your work locally (gitcommit--all-m"Makeachangethat...") as many times as you want. When you want to push those changes to your
-online repo, you do gitpush. You can also gitclone<url_to_online_repo>
-from your online repo to somewhere else (like your production server) and
-henceforth do gitpull to update that to the latest thing you pushed.
-
Note that GitHub’s repos are, by default publicly visible by all. Creating a
-publicly visible online clone might not be what you want for all parts of your
-development process - you may prefer a more private venue when sharing your
-revolutionary work with your team. If that’s the case you can change your
-repository to “Private” in the github settings. Then your code will only be
-visible to those you specifically grant access.
This helps you set up an online fork of the main Evennia repository so you can
-easily commit fixes and help with upstream development. You can do this step
-also if you didn’t put your game dir under version control like in the
-previous section - the evennia repo and your game dir repo are completely
-separate.
Before proceeding with the following step, make sure you have registered and
-created an account on GitHub.com. This is necessary in order to create a fork
-of Evennia’s master repository, and to push your commits to your fork either for
-yourself or for contributing to
-Evennia.
-
-
A fork is a clone of the master repository that you can make your own commits
-and changes to. At the top of this page,
-click the “Fork” button, as it appears below.
-
The fork only exists online as of yet. In a terminal, change your directory to
-the folder you wish to develop in. From this directory run the following
-command:
Create a new, empty repository on Github. Github explains how here . Don’t allow it to add a README, license etc, that will just clash with what we upload later.
+
+
Make sure you are in your local game dir (previously initialized as a git repo).
+
git remote add origin <github URL>
-
This will download your fork to your computer. It creates a new folder
-evennia/ at your current location.
+
This tells Git that there is a remote repository at <githubURL>. See the github docs as to which URL to use. Verify that the remote works with gitremote-v
+
Now we push to the remote (labeled ‘origin’ which is the default):
+
git push
+
+
+
Depending on how you set up your authentication with github, you may be asked to enter your github username and password. If you set up SSH authentication, this command will just work.
+
You use gitpush to upload your local changes so the remote repository is in sync with your local one. If you edited a file online using the Github editor (or a collaborator pushed code), you use gitpull to sync in the other direction.
Your Evennia-fork is now separate from upstream, ‘official’ Evennia. You will
-want to set it up so that you can easily sync our updates and changes to your
-fork.
-
We do this by setting up a new remote. We actually already have one remote,
-that is our own github form of Evennia. This got created when you cloned the
-repo and defaults to being called origin.
If you want to help contributing to Evennia you must do so by forking - making your own remote copy of the Evennia repository on Github. So for this, you need a (free) Github account. Doing so is a completely separate process from putting your game dir under version control (which you should also do!).
This will create a new online fork Evennia under your github account.
+
The fork only exists online as of yet. In a terminal, cd to the folder you wish to develop in. This folder should not be your game dir, nor the place you cloned Evennia into if you used the Git installation.
This will download your fork to your computer. It creates a new folder evennia/ at your current location. If you installed Evennia using the Git installation, this folder will be identical in content to the evennia folder you cloned during that installation. The difference is that this repo is connected to your remote fork and not to the ‘original’ upstream Evennia.
+
When we cloned our fork, git automatically set up a ‘remote repository’ labeled origin pointing to it. So if we do gitpull and gitpush, we’ll push to our fork.
+
We now want to add a second remote repository linked to the original Evennia repo. We will label this remote repository upstream:
cd evennia
git remote add upstream https://github.com/evennia/evennia.git
-
This adds a remote to the main evennia repo.
-
If you also want to access Evennia’s develop branch (the bleeding edge
-development) do the following:
+
If you also want to access Evennia’s develop branch (the bleeding edge development) do the following:
git fetch upstream develop
git checkout develop
-
Use
-git checkout master
-git checkout develop
-
to switch between the branches. If you want to contribute a fix, ask first which
-branch to use. Normally master is for bug fixes and develop is for new
-features, but late in the development of a new Evennia version, all changes
-often go into develop.
Branches are stand-alone editions of the same code. You make a commit to a
-branch. Switching to a branch will change the code on-disk. You can easily
-make a new branch off a parent branch, and then merge it back into the same
-branch later (or throw it away). This is a very common way to work on new
-features in safety and isolation.
Or, if you are working against Evennia’s development branch:
-
git checkout develop
-git pull upstream develop
+
to switch between the branches.
+
To pull the latest from upstream Evennia, just checkout the branch you want and do
+
git pull upstream
-
The pull command will fetch all the changes from the “upstream” remote and
-merge it into your local master/develop branch. It should now be a perfect copy
-of the latest Evennia changes.
As a rule of thumb you should never work directly in Evennia’s master or
-develop branches. Instead you make a new branch off the branch you want
-and change that.
You now have a new branch strange_bug that is an exact replica of the branch you
-had checked out when you created it. Here you can now make your own
-modifications.
-
git branches
-
-
-
will show you which branches are available and which one you are currently
-using. Use gitcheckout<branch> to move between them, but remember to commit
-your changes before you do.
-
You often want to make sure also your work-branch has the latest upstream
-changes. To do this, you need to first update your copy of the
-master/develop branch and then merge those changes into your work branch.
-Make sure you have committed everything first!
-
git commit -a -m "My latest changes ..." # on your strange_bug branch
-git checkout master (or develop)
-git pull upstream develop
-git checkout strange_bug
+
Now fix whatever needs fixing. Abide by the Evennia code style. You can gitcommit commit your changes along the way as normal.
+
Upstream Evennia is not standing still, so you want to make sure that your work is up-to-date with upstream changes. Make sure to first commit your myfixbranch changes, then
Up to this point your strange_bug branch only exists on your local computer. No
-one else can see it. If you want a copy of this branch to also appear in your
-online fork on GitHub, make sure to have checked out your “myfixes” branch and
-then run the following:
-
git push -u origin strange_bug
-
-
-
You only need to do this once, the -u makes this the default push-location. In
-the future, you can just push things online like this:
+
Up to this point your myfixbranch branch only exists on your local computer. No
+one else can see it.
git push
+
This will automatically create a matching myfixbranch in your forked version of Evennia and push to it. On github you will be able to see appear it in the branches dropdown. You can keep pushing to your remote myfixbranch as much as you like.
+
Once you feel you have something to share, you need to create a pull request (PR):
+This is a formal request for upstream Evennia to adopt and pull your code into the main repository.
+
+
Click Newpullrequest
+
Choose compareacrossforks
+
Select your fork from dropdown list of headrepository repos. Pick the right branch to compare.
+
On the Evennia side (to the left) make sure to pick the right base branch: If you want to contribute a change to the develop branch, you must pick develop as the base.
+
Then click Createpullrequest and fill in as much information as you can in the form.
+
Optional: Once you saved your PR, you can go into your code (on github) and add some per-line comments; this can help reviewers by explaining complex code or decisions you made.
+
+
Now you just need to wait for your code to be reviewed. Expect to get feedback and be asked to make changes, add more documentation etc. Getting as PR merged can take a few iterations.
If you hadn’t setup a public key on GitHub or aren’t asked for a
-username/password, you might get an error 403:ForbiddenAccess at this stage.
-In that case, some users have reported that the workaround is to create a file
-.netrc under your home directory and add your github credentials there:
If you think that the fixes you did in your strange_bug branch should be a
-part of the regular Evennia, you should create a Pull Request (PR). This is a
-call for the Evennia maintainer to pull your change into an upstream branch.
-
-
It is wise to make separate branches for every fix or series of fixes you want
-to contribute.
-
-
Assuming you have followed the instructions above and have pushed your changes
-online, create a pull request and
-follow the instructions. Make sure to specifically select your strange_bug
-branch to be the source of the merge and use the branch you based that branch
-off (master or develop) as the target.
-
Evennia developers will then be able to examine your request and merge it if
-it’s deemed suitable. They may also come back with feedback and request you do
-some changes.
-
Once approved and merged, your change will now be available in the upstream
-branch:
Some of the GIT commands can feel a little long and clunky if you need to do them often. Luckily you
-can create aliases for those. Here are some useful commands to run:
-
# git st
-# - view brief status info
-gitconfig--globalalias.st'status -s'
-
-
-
Above, you only need to ever enter the gitconfig... command once - you have then added the new
-alias. Afterwards, just do gitst to get status info. All the examples below follow the same
-template.
-
# git cl
-# - clone a repository
-gitconfig--globalalias.clclone
-
-
-
# git cma "commit message"
-# - commit all changes without opening editor for message
-gitconfig--globalalias.cma'commit -a -m'
-
-
-
# git ca
-# - amend text to your latest commit message
-gitconfig--globalalias.ca'commit --amend'
-
-
-
# git fl
-# - file log; shows diffs of files in latest commits
-gitconfig--globalalias.fl'log -u'
-
-
-
# git co [branchname]
-# - checkout
-gitconfig--globalalias.cocheckout
-
# git ls
-# - view log tree
-gitconfig--globalalias.ls'log --pretty=format:"%C(green)%h\ %C(yellow)[%ad]%Cred%d\
-%Creset%s%Cblue\ [%cn]" --decorate --date=relative --graph'
-
-
-
# git diff
-# - show current uncommitted changes
-gitconfig--globalalias.diff'diff --word-diff'
-
-
-
# git grep <query>
-# - search (grep) codebase for a search criterion
-gitconfig--globalalias.grep'grep -Ii'
-
-
-
To get a further feel for GIT there is also a good YouTube talk about it - 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).
diff --git a/docs/1.0-dev/Components/Connection-Screen.html b/docs/1.0-dev/Components/Connection-Screen.html
index d58c6d8202..f4e13702ad 100644
--- a/docs/1.0-dev/Components/Connection-Screen.html
+++ b/docs/1.0-dev/Components/Connection-Screen.html
@@ -124,7 +124,7 @@
your game. This is simple:
Evennia will look into this module and locate all globally defined strings in it. These strings
are used as the text in your connection screen and are shown to the user at startup. If more than
diff --git a/docs/1.0-dev/Components/Portal-And-Server.html b/docs/1.0-dev/Components/Portal-And-Server.html
index f3729acb7b..7108075523 100644
--- a/docs/1.0-dev/Components/Portal-And-Server.html
+++ b/docs/1.0-dev/Components/Portal-And-Server.html
@@ -99,7 +99,7 @@
Evennia consists of two processes, known as Portal and Server. They can be controlled from
-inside the game or from the command line as described here.
+inside the game or from the command line as described here.
If you are new to the concept, the main purpose of separating the two is to have accounts connect to the Portal but keep the MUD running on the Server. This way one can restart/reload the game (the Server part) without Accounts getting disconnected.
The Server and Portal are glued together via an AMP (Asynchronous Messaging Protocol) connection. This allows the two programs to communicate seamlessly.
@@ -113,69 +105,6 @@ deliberately lacks an online softcode language (a policy explained on our ). Evennia also does not shy from using its own syntax when deemed appropriate: the
MUX syntax has grown organically over a long time and is, frankly, rather arcane in places. All in
all the default command syntax should at most be referred to as “MUX-like” or “MUX-inspired”.
-
-
Angled brackets <> surround a description of what to write rather than the exact syntax.
-
*Explicit choices are separated by |. To avoid this being parsed as a color code, use || (this
-will come out as a single |) or put spaces around the character (“|”) if there’s plenty of
-room.
-
The Switches and Examples blocks are optional based on the Command.
-
-
Here is the nick command as an example:
-
"""
- Define a personal alias/nick
-
- Usage:
- nick[/switches] <nickname> = [<string>]
- alias ''
-
- Switches:
- object - alias an object
- account - alias an account
- clearall - clear all your aliases
- list - show all defined aliases (also "nicks" works)
-
- Examples:
- nick hi = say Hello, I'm Sarah!
- nick/object tom = the tall man
-
- A 'nick' is a personal shortcut you create for your own use [...]
-
- """
-
-
-
For commands that require arguments, the policy is for it to return a Usage: string if the
-command is entered without any arguments. So for such commands, the Command body should contain
-something to the effect of
In general, you can contribute anything that you think may be useful to another developer. Unlike the ‘core’ Evennia, contribs can also be highly game-type-specific.
+
Very small or incomplete snippets of code (e.g. meant to paste into some other code) are better shared as a post in the Community Contribs & Snippets discussion forum category.
+
If your code is intended primarily as an example or to show a concept/principle rather than a working system, consider if it may be better to instead contribute to the documentation by writing a new tutorial or howto.
+
If possible, try to make your contribution as genre-agnostic as possible and assume
+your code will be applied to a very different game than you had in mind when creating it.
+
The contribution should preferably work in isolation from other contribs (only make use of core Evennia) so it can easily be dropped into use. If it does depend on other contribs or third-party modules, these must be clearly documented and part of the installation instructions.
+
If you are unsure about if your contrib idea is suitable or sound, ask in discussions or chat before putting any work into it. We are, for example, unlikely to accept contribs that require large modifications of the game directory structure.
The contrib must be contained only within a single folder under one of the contrib categories below. Ask if you are unsure which category fits best for your contrib.
+
+
+
+
+
+
+
+
+
base_systems/
+
Systems that are not necessarily tied to a specific in-game mechanic but which are useful for the game as a whole. Examples include login systems, new command syntaxes, and build helpers.
+
+
full_systems/
+
‘Complete’ game engines that can be used directly to start creating content without no further additions (unless you want to).
+
+
game_systems/
+
In-game gameplay systems like crafting, mail, combat and more. Each system is meant to be adopted piecemeal and adopted for your game. This does not include roleplaying-specific systems, those are found in the rpg category.
+
+
grid/
+
Systems related to the game world’s topology and structure. Contribs related to rooms, exits and map building.
+
+
rpg/
+
Systems specifically related to roleplaying and rule implementation like character traits, dice rolling and emoting.
+
+
tutorials/
+
Helper resources specifically meant to teach a development concept or to exemplify an Evennia system. Any extra resources tied to documentation tutorials are found here. Also the home of the Tutorial-World and Evadventure demo codes.
+
+
tools/
+
Miscellaneous tools for manipulating text, security auditing, and more.
+
+
+
+
+
The folder (package) should be on the following form:
It’s often a good idea to import useful resources in __init__.py to make it easier to import them.
+
+
Your code should abide by the Evennia Style Guide. Write it to be easy to read.
+
Your contribution must be covered by unit tests. Put your tests in a module tests.py under your contrib folder (as seen above) - Evennia will find them automatically.
+
The README.md file will be parsed and converted into a document linked from the contrib overview page. It needs to be on the following form:
+
# MyContribName
+
+Contribution by <yourname>, <year>
+
+A paragraph (can be multi-line)
+summarizing the contrib (required)
+
+Optional other text
+
+## Installation
+
+Detailed installation instructions for using the contrib (required)
+
+## Usage
+
+## Examples
+
+etc.
+
+
+
+
+
+
The credit and first paragraph-summary will be automatically included on the Contrib overview page index for each contribution, so it needs to be just on this form.
PRs are reviewed so don’t be surprised (or disheartened) if you are asked to modify or change your code before it can be merged. Your code can end up going through several iterations before it is accepted.
+
To make the licensing situation clear we assume all contributions are released with the same license as Evennia. If this is not possible for some reason, talk to us and we’ll handle it on a case-by-case basis.
@@ -192,7 +192,7 @@ with the Evennia distribution.
Each contrib contains installation instructions for how to integrate it
with your other code. If you want to tweak the code of a contrib, just
copy its entire folder to your game directory and modify/use it from there.
@@ -296,6 +296,8 @@ copy its entire folder to your game directory and modify/use it from there.
in-game mechanic but which are useful for the game as a whole. Examples include
login systems, new command syntaxes, and build helpers.
@@ -436,6 +440,8 @@ Each system is meant to be adopted piecemeal and adopted for your game.
This does not include roleplaying-specific systems, those are found in
the rpg category.
@@ -691,6 +701,8 @@ to exemplify an Evennia system. Any extra resources tied to documentation
tutorials are found here. Also the home of the Tutorial-World and Evadventure
demo codes.
If you cannot find what you are looking for in the documentation, here’s where to go next:
-
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 forum.
-
If you want more direct discussions with developers and other users, drop
-into our very friendly Discord channel.
-
If you think the documentation is not clear enough, create a documentation issue.
-
If you have trouble with a missing feature or a problem you think is a bug,
-request, or report it.
+
The Discussions forums are great for getting help, starting longer-form discussions, showing off your work or get some input on what you are working on. This is also the place to follow Evennia development.
+
The Discord server has a very helpful #getting-help channel for both big and small Evennia problems. It allows for more direct discussion. You can also track both the evennia code changes and the discussion forum from discord.
Consider writing about Evennia on your blog or in your favorite (relevant)
-forum. Write a review somewhere (good or bad, we like feedback either way). Rate
-it on listings. Talk about it to your friends … that kind of thing.
If you want to spread the word, consider writing about Evennia on your blog or in your favorite (relevant) forum. Write a review somewhere (good or bad, we like feedback either way). Rate it on listings. Talk about it to your friends … that kind of thing.
Evennia depends heavily on good documentation and we are always looking for
-extra eyes and hands to improve it. Even small things such as fixing typos are a
-great help!
Evennia is highly dependent on good-quality documentation!
-
Easiest is to just report documentation issues as you find them. If
-we don’t know about them, we can’t fix them!
-
If you want to help editing the docs directly, check here on how to do it.
-
If you have knowledge to share, how about writing a new Tutorial?
+
Reporting a Documentation issue is the easiest way to help out. The more eyes we get on things, the better - if we don’t know about the problems, we can’t fix them! Even reporting typos is a great help.
If you find bugs, or have a feature-request, make an issue for it. If
-it’s not in an issue, the issue will most likely be forgotten.
-
Even if you don’t feel confident with tackling a bug or feature, just
-correcting typos, adjusting formatting or simply using the thing and reporting
-when stuff doesn’t make sense helps us a lot.
Even if you don’t feel confident with tackling a bug or feature, just correcting typos, adjusting formatting or simply using the thing and reporting when stuff doesn’t make sense helps us a lot!
-
The code itself should follow Evennia’s Code style guidelines both
-for code and documentation. You should write code for that others can read an understand.
-
Before merging, your code will be reviewed. Merging of your code into Evennia
-is not guaranteed. Be ready to receive feedback and to be asked to make
-corrections or fix bugs or any documentation issues and possibly tests (this
-is normal and nothing to worry about).
+
Reporting a code issue or bug is the easiest way to help out. Don’t assume we are aware of a problem - if it’s not written down in an issue, the problem will most likely be forgotten. Do this even if you plan to make a Pull Request and fix the issue yourself.
+
Make a feature request if you want to see a new Evennia feature. You can also bring it up with the community first so you are sure it’s something that would be interesting to be included with Evennia core.
The most elegant way to contribute code to Evennia is to use GitHub to create a
-fork of the Evennia repository and make your changes to that. Refer to the
-Forking Evennia version control instructions for detailed instructions.
-
Once you have a fork set up, you can not only work on your own game in a
-separate branch, you can also commit your fixes to Evennia itself.
Evennia is a free and open-source project. Any monetary donations you want to offer are completely voluntary. While highly appreciated, we don’t expect you to donate and don’t hide any secret features behind a donation-paywall. Just see it as a way of showing appreciation by dropping a few coins in the cup.
-
Make separate branches for all Evennia additions you do - don’t edit your
-local master or develop branches directly. It will make your life a lot easier.
-
If you have a change that you think is suitable for the main Evennia
-repository, issue a Pull Request. This will let Evennia devs know you have stuff to share.
-
Bug fixes should generally be done against the master branch of Evennia,
-while new features/contribs should go into the develop branch. If you are
-unsure, just pick one and we’ll figure it out.
+
Become an Evennia patron which donates a (usually small) sum every month to show continued support.
+
Make a one-time donation if a monthly donation is not your thing. This is a PayPal link but you don’t need PayPal yourself to use it.
To help with Evennia development it’s strongly recommended to do so using a
-forked repository as described above. But for small, well isolated fixes you are
-also welcome to submit your suggested Evennia fixes/addendums as a
-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 just supply the link.
Evennia has a contrib directory which contains
-user-shared code organized by category. You can contribute anything that you
-think may be useful to another dev, also highly game-specific code. A contrib
-must always be added via a forked repository.
If you are unsure about if your contrib idea is suitable or sound, ask in
-discussions or chat before putting any work into it. We are, for example,
-unlikely to accept contribs that require large modifications of the game
-directory structure.
-
If your code is intended primarily as an example or to show a
-concept/principle rather than a working system, you can add to the
-contribs/tutorials/ subfolder, but consider if it may be better to instead
-write a new tutorial doc page.
-
The contribution should preferably work in isolation from other contribs (only
-make use of core Evennia) so it can easily be dropped into use. If it does
-depend on other contribs or third-party modules, these must be clearly
-documented and part of the installation instructions.
-
The contrib must be contained within a separate folder under one of the
-contrib categories (game_systems, rpg, utils etc). Ask if you are
-unsure which category to put your contrib under.
-
The folder (package) should be on the following form:
It’s often a good idea to import useful resources in __init__.py to make
-it easier to access them (this may vary though).
-
The README.md will be parsed and converted into a document linked from
-the contrib overview page. It should follow
-the following structure:
-
# MyContribName
-
-Contribution by <yourname>, <year>
-
-A paragraph (can be multi-line)
-summarizing the contrib (required)
-
-Optional other text
-
-## Installation
-
-Detailed installation instructions for using the contrib (required)
-
-## Usage
-
-## Examples
-
-etc.
-
-
-
The credit and first paragraph-summary will be used on the index page. Every
-contrib’s readme must contain an installation instruction. See existing contribs
-for help.
-
-
If possible, try to make contribution as genre-agnostic as possible and assume
-your code will be applied to a very different game than you had in mind when creating it.
-
To make the licensing situation clear we assume all contributions are released
-with the same license as Evennia. If this is not possible
-for some reason, talk to us and we’ll handle it on a case-by-case basis.
-
Your contribution must be covered by unit tests. Put
-your tests in a module tests.py under your contrib folder - Evennia will
-find them automatically.
-
In addition to the normal review process, it’s worth noting that merging a
-contrib means the Evennia project takes on the responsibility of maintaining
-and supporting it. For various reasons this may be deemed beyond our manpower.
-
If your code were to not be accepted for some reason, you can ask us to
-instead link to your repo from our link page so people can find your code that
-way.
Evennia is a free, open-source project and any monetary donations you want to
-offer are completely voluntary. See it as a way of showing appreciation by
-dropping a few coins in the cup.
-
-
You can support Evennia as an Evennia patreon. A patreon donates a
-(usually small) sum every month to show continued support.
-
If a monthly donation is not your thing, you can also show your appreciation
-by doing a one-time donation (this is a PayPal link but you don’t need
-PayPal yourself to use it).
virtualenv if you get a warning that the evennia
-command is not available). See also Updating your game for more details.
+command is not available). See also Updating your game for more details.
Technically, migrations are shipped as little Python snippets of code that explains which database
actions must be taken to upgrade from one version of the schema to the next. When you run the
diff --git a/docs/1.0-dev/Setup/Choosing-a-Database.html b/docs/1.0-dev/Setup/Choosing-a-Database.html
index aaca13a3d5..bd19289e74 100644
--- a/docs/1.0-dev/Setup/Choosing-a-Database.html
+++ b/docs/1.0-dev/Setup/Choosing-a-Database.html
@@ -63,23 +63,25 @@
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
Databases page.
SQLite3 is a light weight single-file database. It is our default database
-and Evennia will set this up for you automatically if you give no other options. SQLite stores the
-database in a single file (mygame/server/evennia.db3). This means it’s very easy to reset this
-database - just delete (or move) that evennia.db3 file and run evenniamigrate again! No server process is needed and the administrative overhead and resource consumption is tiny. It is also very fast since it’s run in-memory. For the vast majority of Evennia installs it will probably be all
-that’s ever needed.
SQLite3 is a light weight single-file database. It is our default database and Evennia will set this up for you automatically if you give no other options.
+
SQLite stores the database in a single file (mygame/server/evennia.db3). This means it’s very easy to reset this database - just delete (or move) that evennia.db3 file and run evenniamigrate again! No server process is needed and the administrative overhead and resource consumption is tiny. It is also very fast since it’s run in-memory. For the vast majority of Evennia installs it will probably be all that’s ever needed.
SQLite will generally be much faster than MySQL/PostgreSQL but its performance comes with two
drawbacks:
@@ -160,13 +159,9 @@ evennia database is This will bring you into the sqlite command line. Use .help for instructions and .quit to exit.
See here for a cheat-sheet of commands.
If you want to reset your SQLite3 database, see here.
@@ -176,11 +171,9 @@ While not as fast as SQLite for normal usage, it will scale better than SQLite,
game has an very large database and/or extensive web presence through a separate server process.
First, install the posgresql server. Version 9.6 is tested with Evennia. Packages are readily
-available for all distributions. You need to also get the psql client (this is called postgresql-client on debian-derived systems). Windows/Mac users can find what they need on the postgresql
-download page. You should be setting up a password for your
-database-superuser (always called postgres) when you install.
-
For interaction with Evennia you need to also install psycopg2 to your Evennia install (pipinstallpsycopg2-binary in your virtualenv). This acts as the python bridge to the database server.
+
First, install the posgresql server. Version 9.6 is tested with Evennia. Packages are readily available for all distributions. You need to also get the psql client (this is called postgresql-client on debian-derived systems). Windows/Mac users can find what they need on the postgresql download page. You should be setting up a password for your database-superuser (always called postgres) when you install.
+
For interaction with Evennia you need to also install psycopg2 to your Evennia install
+(pipinstallpsycopg2-binary in your virtualenv). This acts as the python bridge to the database server.
Next, start the postgres client:
psql -U postgres --password
@@ -209,12 +202,7 @@ have to since the resulting command, and your password, will be logged in the sh
We create a database user ‘evennia’ and a new database named evennia (you can call them whatever
-you want though). We then grant the ‘evennia’ user full privileges to the new database so it can
-read/write etc to it.
-If you in the future wanted to completely wipe the database, an easy way to do is to log in as the
-postgres superuser again, then do DROPDATABASEevennia;, then CREATE and GRANT steps above
-again to recreate the database and grant privileges.
+
We create a database user ‘evennia’ and a new database named evennia (you can call them whatever you want though). We then grant the ‘evennia’ user full privileges to the new database so it can read/write etc to it. If you in the future wanted to completely wipe the database, an easy way to do is to log in as the postgres superuser again, then do DROPDATABASEevennia;, then CREATE and GRANT steps above again to recreate the database and grant privileges.
The example below is for a server within a private network that is not open to
the Internet. Be sure to understand the details before making any changes to
an Internet-accessible server.
-
The above discussion is for hosting a local server. In certain configurations
-it may make sense host the database on a server remote to the one Evennia is
-running on. One example case is where code development may be done on multiple
-machines by multiple users. In this configuration, a local data base (such as
-SQLite3) is not feasible since all the machines and developers do not have
-access to the file.
-
Choose a remote machine to host the database and PostgreSQl server. Follow the
-instructions above on that server to set up the database.
-Depending on distribution, PostgreSQL will only accept connections on the local
-machine (localhost). In order to enable remote access, two files need to be
-changed.
+
The above discussion is for hosting a local server. In certain configurations it may make sense host the database on a server remote to the one Evennia is running on. One example case is where code development may be done on multiple machines by multiple users. In this configuration, a local data base (such as SQLite3) is not feasible since all the machines and developers do not have access to the file.
+
Choose a remote machine to host the database and PostgreSQl server. Follow the instructions above on that server to set up the database. Depending on distribution, PostgreSQL will only accept connections on the local machine (localhost). In order to enable remote access, two files need to be changed.
First, determine which cluster is running your database. Use pg_lscluster:
$ pg_lsclusters
Ver Cluster Port Status Owner Data directory Log file
12 main 5432 online postgres /var/lib/postgresql/12/main /var/log/postgresql/postgresql-12-main.log
-
Next, edit the database’s postgresql.conf. This is found on Ubuntu systems
-in /etc/postgresql/<ver>/<cluster>, where <ver> and <cluster> are
-what are reported in the pg_lscluster output. So, for the above example,
-the file is /etc/postgresql/12/main/postgresql.conf.
+
Next, edit the database’s postgresql.conf. This is found on Ubuntu systems in /etc/postgresql/<ver>/<cluster>, where <ver> and <cluster> are what are reported in the pg_lscluster output. So, for the above example, the file is /etc/postgresql/12/main/postgresql.conf.
In this file, look for the line with listen_addresses. For example:
listen_address='localhost'# What IP address(es) to listen on;# comma-separated list of addresses;
@@ -297,8 +276,7 @@ appropriately to limit access to this port as necessary. (You may also list
explicit addresses and subnets to listen. See the postgresql documentation
for more details.)
-
Finally, modify the pg_hba.conf (in the same directory as postgresql.conf).
-Look for a line with:
+
Finally, modify the pg_hba.conf (in the same directory as postgresql.conf). Look for a line with:
# IPv4 local connections:hostallall127.0.0.1/32md5
@@ -316,28 +294,17 @@ the PosgreSQL documentation on how to limit this.
$ pg_ctlcluster 12 main restart
-
Finally, update the database settings in your Evennia secret_settings.py (as
-described above modifying SERVER and
-PORT to match your server.
-
Now your Evennia installation should be able to connect and talk with a remote
-server.
+
Finally, update the database settings in your Evennia secret_settings.py (as described above modifying SERVER and PORT to match your server.
+
Now your Evennia installation should be able to connect and talk with a remote server.
MySQL is a commonly used proprietary database system, on par with
-PostgreSQL. There is an open-source alternative called MariaDB that mimics
-all functionality and command syntax of the former. So this section covers both.
+
MySQL is a commonly used proprietary database system, on par with PostgreSQL. There is an open-source alternative called MariaDB that mimics all functionality and command syntax of the former. So this section covers both.
First, install and setup MariaDB or MySQL for your specific server. Linux users should look for the
-mysql-server or mariadb-server packages for their respective distributions. Windows/Mac users
-will find what they need from the MySQL downloads or MariaDB
-downloads pages. You also need the respective database clients
-(mysql, mariadb-client), so you can setup the database itself. When you install the server you
-should usually be asked to set up the database root user and password.
-
You will finally also need a Python interface to allow Evennia to talk to the database. Django
-recommends the mysqlclient one. Install this into the evennia virtualenv with pipinstallmysqlclient.
+
First, install and setup MariaDB or MySQL for your specific server. Linux users should look for the mysql-server or mariadb-server packages for their respective distributions. Windows/Mac users will find what they need from the MySQL downloads or MariaDB downloads pages. You also need the respective database clients (mysql, mariadb-client), so you can setup the database itself. When you install the server you should usually be asked to set up the database root user and password.
+
You will finally also need a Python interface to allow Evennia to talk to the database. Django recommends the mysqlclient one. Install this into the evennia virtualenv with pipinstallmysqlclient.
Start the database client (this is named the same for both mysql and mariadb):
Above we created a new local user and database (we called both ‘evennia’ here, you can name them
-what you prefer). We set the character set to utf8 to avoid an issue with prefix character length
-that can pop up on some installs otherwise. Next we grant the ‘evennia’ user all privileges on the
-evennia database and make sure the privileges are applied. Exiting the client brings us back to
-the normal terminal/console.
+
Above we created a new local user and database (we called both ‘evennia’ here, you can name them what you prefer). We set the character set to utf8 to avoid an issue with prefix character length that can pop up on some installs otherwise. Next we grant the ‘evennia’ user all privileges on the evennia database and make sure the privileges are applied. Exiting the client brings us back to the normal terminal/console.
-
Note: If you are not using MySQL for anything else you might consider granting the ‘evennia’ user
-full privileges with GRANTALLPRIVILEGESON*.*TO'evennia'@'localhost';. If you do, it means
-you can use evenniadbshell later to connect to mysql, drop your database and re-create it as a
-way of easy reset. Without this extra privilege you will be able to drop the database but not re-
-create it without first switching to the database-root user.
+
If you are not using MySQL for anything else you might consider granting the ‘evennia’ user full privileges with GRANTALLPRIVILEGESON*.*TO'evennia'@'localhost';. If you do, it means you can use evenniadbshell later to connect to mysql, drop your database and re-create it as a way of easy reset. Without this extra privilege you will be able to drop the database but not re create it without first switching to the database-root user.
To tell Evennia to use your new database you need to edit mygame/server/conf/settings.py (or
-secret_settings.py if you don’t want your db info passed around on git repositories).
To tell Evennia to use your new database you need to edit mygame/server/conf/settings.py (or secret_settings.py if you don’t want your db info passed around on git repositories).
-
Note: The Django documentation suggests using an external db.cnf or other external conf-
-formatted file. Evennia users have however found that this leads to problems (see e.g. issue
-#1184). To avoid trouble we recommend you simply put the configuration in
-your settings as below.
+
The Django documentation suggests using an external db.cnf or other external conf- formatted file. Evennia users have however found that this leads to problems (see e.g. issue #1184). To avoid trouble we recommend you simply put the configuration in your settings as below.
## MySQL Database Configuration
@@ -394,24 +348,26 @@ your settings as below.
}
+
The mysql backend is used by MariaDB as well.
Change this to fit your database setup. Next, run:
evennia migrate
-
to populate your database. Should you ever want to inspect the database directly you can from now on
-also use
+
to populate your database. Should you ever want to inspect the database directly you can from now on also use
evennia dbshell
as a shortcut to get into the postgres command line for the right database and user.
-
With the database setup you should now be able to start start Evennia normally with your new
-database.
+
With the database setup you should now be able to start start Evennia normally with your new database.
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
-others. If you try other databases out, consider expanding this page with instructions.
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 others. If you try other databases out, consider contributing to this page with instructions.
Evennia requires Python 3.9, 3.10 or 3.11 (recommended)
+
Evennia requires Python 3.9, 3.10 or 3.11 (recommended). Any OS that supports Python should work.
Windows: In the installer, make sure you select addpythontopath. If you have multiple versions of Python installed, use py command instead of python to have Windows automatically use the latest.
When Evennia is updated to a new version you will usually see it announced in the Discussion forum and in the dev blog. You can also see the changes on github or through one of our other linked pages.
This applies if you followed the git-install instructions. Before Evennia 1.0, this was the only way to install Evennia.
+
At any time, development is either happening in the master branch (latest stable) or develop (experimental). Which one is active and ‘latest’ at a given time depends - after a release, master will see most updates, close to a new release, develop will usually be the fastest changing.
+
+
Read the changelog to see what changed and if it means you need to make any changes to your game code.
+
If you use a virtualenv, make sure it’s active.
+
cd to your game dir (e.g. mygame)
+
evenniastop
+
cd to the evennia repo folder you cloned during the git installation process.
+
gitpull
+
pipinstall--upgrade-e. (remember the . at the end!)
+
cd back to your game dir
+
evenniamigrate (ignore any warnings about running makemigrations , it should not be done)
If and when an Evennia update modifies the database schema (that is, the under-the-hood details as to how data is stored in the database), you must update your existing database correspondingly to match the change. If you don’t, the updated Evennia will complain that it cannot read the database properly. Whereas schema changes should become more and more rare as Evennia matures, it may still happen from time to time.
+
One way one could handle this is to apply the changes manually to your database using the database’s command line. This often means adding/removing new tables or fields as well as possibly convert existing data to match what the new Evennia version expects. It should be quite obvious that this quickly becomes cumbersome and error-prone. If your database doesn’t contain anything critical yet it’s probably easiest to simply reset it and start over rather than to bother converting.
+
Enter migrations. Migrations keeps track of changes in the database schema and applies them automatically for you. Basically, whenever the schema changes we distribute small files called “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 evenniamigrate to be up-to-date again.
+
+
+
\ No newline at end of file
diff --git a/docs/1.0-dev/_images/fork_button.png b/docs/1.0-dev/_images/fork_button.png
new file mode 100644
index 0000000000..c1e48a0087
Binary files /dev/null and b/docs/1.0-dev/_images/fork_button.png differ
diff --git a/docs/1.0-dev/_sources/Coding/Coding-FAQ.md.txt b/docs/1.0-dev/_sources/Coding/Coding-FAQ.md.txt
index 99b225d8fd..174dcfb7c3 100644
--- a/docs/1.0-dev/_sources/Coding/Coding-FAQ.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Coding-FAQ.md.txt
@@ -4,27 +4,8 @@
the docs if you can rather than too lengthy explanations. Don't forget to check if an answer already
exists before answering - maybe you can clarify that answer rather than to make a new Q&A section.*
-
-## Table of Contents
-
-- [Removing default commands](./Coding-FAQ.md#removing-default-commands)
-- [Preventing character from moving based on a condition](./Coding-FAQ.md#preventing-character-from-
-moving-based-on-a-condition)
-- [Reference initiating object in an EvMenu command](./Coding-FAQ.md#reference-initiating-object-in-an-
-evmenu-command)
-- [Adding color to default Evennia Channels](./Coding-FAQ.md#adding-color-to-default-evennia-channels)
-- [Selectively turn off commands in a room](./Coding-FAQ.md#selectively-turn-off-commands-in-a-room)
-- [Select Command based on a condition](./Coding-FAQ.md#select-command-based-on-a-condition)
-- [Automatically updating code when reloading](./Coding-FAQ.md#automatically-updating-code-when-
-reloading)
-- [Changing all exit messages](./Coding-FAQ.md#changing-all-exit-messages)
-- [Add parsing with the "to" delimiter](./Coding-FAQ.md#add-parsing-with-the-to-delimiter)
-- [Store last used session IP address](./Coding-FAQ.md#store-last-used-session-ip-address)
-- [Use wide characters with EvTable](./Coding-FAQ.md#non-latin-characters-in-evtable)
-
## Removing default commands
-**Q:** How does one *remove* (not replace) e.g. the default `get` [Command](../Components/Commands.md) from the
-Character [Command Set](../Components/Command-Sets.md)?
+**Q:** How does one *remove* (not replace) e.g. the default `get` [Command](../Components/Commands.md) from the Character [Command Set](../Components/Command-Sets.md)?
**A:** Go to `mygame/commands/default_cmdsets.py`. Find the `CharacterCmdSet` class. It has one
method named `at_cmdset_creation`. At the end of that method, add the following line:
@@ -70,32 +51,6 @@ class MyObjectCommand(Command):
Inside the menu you can now access the object through `caller.ndb._evmenu.stored_obj`.
-## Adding color to default Evennia Channels
-**Q:** How do I add colors to the names of Evennia channels?
-
-**A:** The Channel typeclass' `channel_prefix` method decides what is shown at the beginning of a
-channel send. Edit `mygame/typeclasses/channels.py` (and then `@reload`):
-
-```python
-# define our custom color names
-CHANNEL_COLORS = {"public": "|015Public|n",
- "newbie": "|550N|n|551e|n|552w|n|553b|n|554i|n|555e|n",
- "staff": "|010S|n|020t|n|030a|n|040f|n|050f|n"}
-
-# Add to the Channel class
- # ...
- def channel_prefix(self, msg, emit=False):
- if self.key in COLORS:
- p_str = CHANNEL_COLORS.get(self.key.lower())
- else:
- p_str = self.key.capitalize()
- return f"[{p_str}] "
-```
-Additional hint: To make colors easier to change from one place you could instead put the
-`CHANNEL_COLORS` dict in your settings file and import it as `from django.conf.settings import
-CHANNEL_COLORS`.
-
-
## Selectively turn off commands in a room
**Q:** I want certain commands to turn off in a given room. They should still work normally for
staff.
@@ -130,18 +85,16 @@ class BlockingRoom(Room):
# are NOT Builders or higher
self.locks.add("call:not perm(Builders)")
```
-After `@reload`, make some `BlockingRooms` (or switch a room to it with `@typeclass`). Entering one
+After `reload`, make some `BlockingRooms` (or switch a room to it with `@typeclass`). Entering one
will now replace the given commands for anyone that does not have the `Builders` or higher
permission. Note that the 'call' lock is special in that even the superuser will be affected by it
-(otherwise superusers would always see other player's cmdsets and a game would be unplayable for
-superusers).
+(otherwise superusers would always see other player's cmdsets and a game would be unplayable for superusers).
## Select Command based on a condition
**Q:** I want a command to be available only based on a condition. For example I want the "werewolf"
command to only be available on a full moon, from midnight to three in-game time.
-**A:** This is easiest accomplished by putting the "werewolf" command on the Character as normal,
-but to [lock](../Components/Locks.md) it with the "cmd" type lock. Only if the "cmd" lock type is passed will the
+**A:** This is easiest accomplished by putting the "werewolf" command on the Character as normal, but to [lock](../Components/Locks.md) it with the "cmd" type lock. Only if the "cmd" lock type is passed will the
command be available.
```python
@@ -156,8 +109,7 @@ class CmdWerewolf(Command):
def func(self):
# ...
```
-Add this to the [default cmdset as usual](../Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands.md). The `is_full_moon` [lock
-function](../Components/Locks.md#lock-functions) does not yet exist. We must create that:
+Add this to the [default cmdset as usual](../Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands.md). The `is_full_moon` [lock function](../Components/Locks.md#lock-functions) does not yet exist. We must create that:
```python
# in mygame/server/conf/lockfuncs.py
@@ -169,17 +121,17 @@ def is_full_moon(accessing_obj, accessed_obj,
# return True or False
```
-After a `@reload`, the `werewolf` command will be available only at the right time, that is when the
+After a `reload`, the `werewolf` command will be available only at the right time, that is when the
`is_full_moon` lock function returns True.
## Automatically updating code when reloading
+
**Q:** I have a development server running Evennia. Can I have the server update its code-base when
I reload?
**A:** Having a development server that pulls updated code whenever you reload it can be really
useful if you have limited shell access to your server, or want to have it done automatically. If
-you have your project in a configured Git environment, it's a matter of automatically calling `git
-pull` when you reload. And that's pretty straightforward:
+you have your project in a configured Git environment, it's a matter of automatically calling `git pull` when you reload. And that's pretty straightforward:
In `/server/conf/at_server_startstop.py`:
@@ -196,45 +148,30 @@ def at_server_reload_stop():
process = subprocess.call(["git", "pull"], shell=False)
```
-That's all. We call `subprocess` to execute a shell command (that code works on Windows and Linux,
-assuming the current directory is your game directory, which is probably the case when you run
-Evennia). `call` waits for the process to complete, because otherwise, Evennia would reload on
-partially-modified code, which would be problematic.
+That's all. We call `subprocess` to execute a shell command (that code works on Windows and Linux, assuming the current directory is your game directory, which is probably the case when you run Evennia). `call` waits for the process to complete, because otherwise, Evennia would reload on partially-modified code, which would be problematic.
-Now, when you enter `@reload` on your development server, the game repository is updated from the
-configured remote repository (Github, for instance). Your development cycle could resemble
-something like:
+Now, when you enter `reload` on your development server, the game repository is updated from the configured remote repository (Github, for instance). Your development cycle could resemble something like:
1. Coding on the local machine.
2. Testing modifications.
-3. Committing once, twice or more (being sure the code is still working, unittests are pretty useful
-here).
+3. Committing once, twice or more (being sure the code is still working, unittests are pretty useful here).
4. When the time comes, login to the development server and run `@reload`.
-The reloading might take one or two additional seconds, since Evennia will pull from your remote Git
-repository. But it will reload on it and you will have your modifications ready, without needing
+The reloading might take one or two additional seconds, since Evennia will pull from your remote Git repository. But it will reload on it and you will have your modifications ready, without needing
connecting to your server using SSH or something similar.
## Changing all exit messages
**Q:** How can I change the default exit messages to something like "XXX leaves east" or "XXX
arrives from the west"?
-**A:** the default exit messages are stored in two hooks, namely `announce_move_from` and
-`announce_move_to`, on the `Character` typeclass (if what you want to change is the message other
-characters will see when a character exits).
+**A:** the default exit messages are stored in two hooks, namely `announce_move_from` and `announce_move_to`, on the `Character` typeclass (if what you want to change is the message other characters will see when a character exits).
-These two hooks provide some useful features to easily update the message to be displayed. They
-take both the default message and mapping as argument. You can easily call the parent hook with
-these information:
+These two hooks provide some useful features to easily update the message to be displayed. They take both the default message and mapping as argument. You can easily call the parent hook with these information:
-* The message represents the string of characters sent to characters in the room when a character
-leaves.
-* The mapping is a dictionary containing additional mappings (you will probably not need it for
-simple customization).
+* The message represents the string of characters sent to characters in the room when a character leaves.
+* The mapping is a dictionary containing additional mappings (you will probably not need it for simple customization).
-It is advisable to look in the [code of both
-hooks](https://github.com/evennia/evennia/tree/master/evennia/objects/objects.py), and read the
-hooks' documentation. The explanations on how to quickly update the message are shown below:
+It is advisable to look in the [code of both hooks](evennia.objects.objects.DefaultCharacter), and read the hooks' documentation. The explanations on how to quickly update the message are shown below:
```python
# In typeclasses/characters.py
@@ -295,18 +232,13 @@ class Character(DefaultCharacter):
super().announce_move_to(source_location, msg="{object} arrives from the {exit}.")
```
-We override both hooks, but call the parent hook to display a different message. If you read the
-provided docstrings, you will better understand why and how we use mappings (information between
-braces). You can provide additional mappings as well, if you want to set a verb to move, for
-instance, or other, extra information.
+We override both hooks, but call the parent hook to display a different message. If you read the provided docstrings, you will better understand why and how we use mappings (information between braces). You can provide additional mappings as well, if you want to set a verb to move, for instance, or other, extra information.
## Add parsing with the "to" delimiter
-**Q:** How do I change commands to undestand say `give obj to target` as well as the default `give
-obj = target`?
+**Q:** How do I change commands to undestand say `give obj to target` as well as the default `give obj = target`?
-**A:** You can make change the default `MuxCommand` parent with your own class making a small change
-in its `parse` method:
+**A:** You can make change the default `MuxCommand` parent with your own class making a small change in its `parse` method:
```python
# in mygame/commands/command.py
@@ -324,42 +256,9 @@ Next you change the parent of the default commands in settings:
COMMAND_DEFAULT_CLASS = "commands.command.MuxCommand"
```
-Do a `@reload` and all default commands will now use your new tweaked parent class. A copy of the
+Do a `reload` and all default commands will now use your new tweaked parent class. A copy of the
MuxCommand class is also found commented-out in the `mygame/commands/command.py` file.
-## Store last used session IP address
-
-**Q:** If a user has already logged out of an Evennia account, their IP is no longer visible to
-staff that wants to ban-by-ip (instead of the user) with `@ban/ip`?
-
-**A:** One approach is to write the IP from the last session onto the "account" account object.
-
-`typeclasses/accounts.py`
-```python
- def at_post_login(self, session=None, **kwargs):
- super().at_post_login(session=session, **kwargs)
- self.db.lastsite = self.sessions.all()[-1].address
-```
-Adding timestamp for login time and appending to a list to keep the last N login IP addresses and
-timestamps is possible, also. Additionally, if you don't want the list to grow beyond a
-`do_not_exceed` length, conditionally pop a value after you've added it, if the length has grown too
-long.
-
-**NOTE:** You'll need to add `import time` to generate the login timestamp.
-```python
- def at_post_login(self, session=None, **kwargs):
- super().at_post_login(session=session, **kwargs)
- do_not_exceed = 24 # Keep the last two dozen entries
- session = self.sessions.all()[-1] # Most recent session
- if not self.db.lastsite:
- self.db.lastsite = []
- self.db.lastsite.insert(0, (session.address, int(time.time())))
- if len(self.db.lastsite) > do_not_exceed:
- self.db.lastsite.pop()
-```
-This only stores the data. You may want to interface the `@ban` command or make a menu-driven viewer
-for staff to browse the list and display how long ago the login occurred.
-
## Non-latin characters in EvTable
**Q:** When using e.g. Chinese characters in EvTable, some lines appear to be too wide, for example
@@ -370,8 +269,4 @@ for staff to browse the list and display how long ago the login occurred.
| | |
+~~~~~~+~~~~~~+
```
-**A:** The reason for this is because certain non-latin characters are *visually* much wider than
-their len() suggests. There is little Evennia can (reliably) do about this. If you are using such
-characters, you need to make sure to use a suitable mono-spaced font where are width are equal. You
-can set this in your web client and need to recommend it for telnet-client users. See [this
-discussion](https://github.com/evennia/evennia/issues/1522) where some suitable fonts are suggested.
+**A:** The reason for this is because certain non-latin characters are *visually* much wider than their len() suggests. There is little Evennia can (reliably) do about this. If you are using such characters, you need to make sure to use a suitable mono-spaced font where are width are equal. You can set this in your web client and need to recommend it for telnet-client users. See [this discussion](https://github.com/evennia/evennia/issues/1522) where some suitable fonts are suggested.
diff --git a/docs/1.0-dev/_sources/Coding/Coding-Introduction.md.txt b/docs/1.0-dev/_sources/Coding/Coding-Introduction.md.txt
deleted file mode 100644
index fe3652075f..0000000000
--- a/docs/1.0-dev/_sources/Coding/Coding-Introduction.md.txt
+++ /dev/null
@@ -1,121 +0,0 @@
-# Coding Introduction
-
-Evennia allows for a lot of freedom when designing your game - but to code efficiently you still
-need to adopt some best practices as well as find a good place to start to learn.
-
-Here are some pointers to get you going.
-
-## Start with the tutorial
-
-It's highly recommended that you jump in on the [Starting Tutorial](../Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Part1-Overview.md). Even if
-you only the beginning or some part of it, it covers much of the things needed to get started, including giving you are first introduction to Python.
-
-## Explore Evennia interactively
-
-As mentioned in the Starting tutorial, it's a good idea to use [ipython](https://ipython.org/) to explore things using a python shell:
-
- # [open a new console/terminal]
- cd mygame
- evennia shell
-
-This will open an Evennia-aware python shell (using ipython). From within this shell, try
-
- import evennia
- evennia.
-
-### Jupyter Notebook Support
-
-You can also explore evennia interactively in a [Jupyter notebook](https://jupyter.readthedocs.io/en/latest/index.html#). This offers
-an in-browser view of your code similar to Matlab or similar programs. There are
-a few extra steps that must be taken in order for this to work:
-
- # [open a new console/terminal]
- # [activate your evennia virtualenv in this console/terminal]
- cd evennia
- pip install -r requirements_extra.txt # if not done already above
-
-Next, `cd` to your game folder. _It's important that you are in the _root_ of this folder for the next command_:
-
- evennia shell_plus --notebook &
-
-The `&` at the end starts the process as a background process on Linux/Unix.
-Skip it if your OS doesn't support this syntax. Your browser should now open
-with the Jupyter interface. If not, open a browser to the link given on the
-command line.
-
-In the window, open the `new` menu in the top right and start a `Django Shell-Plus` notebook (or
-open an existing one if you had one from before). In the first cell you must initialize
-Evennia like so:
-
-```python
-import evennia
-evennia._init()
-```
-
-_Note that the above initialization must be run every time a new new notebook/kernel is started or restarted._
-
-After this you can import and access all of the Evennia system, same as with `evennia shell`.
-
-### More exploration
-
-You can complement your exploration by peeking at the sections of the much more detailed
-[Evennia Component overview](../Components/Components-Overview.md). The [Tutorials](../Howtos/Howtos-Overview.md) section also contains a growing collection
-of system- or implementation-specific help.
-
-## Use a python syntax checker
-
-Evennia works by importing your own modules and running them as part of the server. Whereas Evennia
-should just gracefully tell you what errors it finds, it can nevertheless be a good idea for you to
-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](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.
-
-## Plan before you code
-
-Before you start coding away at your dream game, take a look at our [Game Planning](../Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Game-Planning.md)
-page. It might hopefully help you avoid some common pitfalls and time sinks.
-
-## Code in your game folder, not in the evennia/ repository
-
-As part of the Evennia setup you will create a game folder to host your game code. This is your
-home. You should *never* need to modify anything in the `evennia` library (anything you download
-from us, really). You import useful functionality from here and if you see code you like, copy&paste
-it out into your game folder and edit it there.
-
-If you find that Evennia doesn't support some functionality you need, make a Feature Request about it. Same goes for bugs. If you add features or fix bugs yourself, please consider [Contributing](../Contributing.md) your changes upstream!
-
-## Learn to read tracebacks
-
-Python is very good at reporting when and where things go wrong. A *traceback* shows everything you
-need to know about crashing code. The text can be pretty long, but you usually are only interested
-in the last bit, where it says what the error is and at which module and line number it happened -
-armed with this info you can resolve most problems.
-
-Evennia will usually not show the full traceback in-game though. Instead the server outputs errors
-to the terminal/console from which you started Evennia in the first place. If you want more to show
-in-game you can add `IN_GAME_ERRORS = True` to your settings file. This will echo most (but not all)
-tracebacks both in-game as well as to the terminal/console. This is a potential security problem
-though, so don't keep this active when your game goes into production.
-
-> A common confusing error is finding that objects in-game are suddenly of the type `DefaultObject`
-rather than your custom typeclass. This happens when you introduce a critical Syntax error to the
-module holding your custom class. Since such a module is not valid Python, Evennia can't load it at
-all. Instead of crashing, Evennia will then print the full traceback to the terminal/console and
-temporarily fall back to the safe `DefaultObject` until you fix the problem and reload.
-
-## Docs are here to help you
-
-Some people find reading documentation extremely dull and shun it out of principle. That's your
-call, but reading docs really *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](https://sites.google.com/site/evenniaserver/discussions) and the [irc
-chat](https://webchat.freenode.net/?channels=evennia) are also there for you.
-
-## The most important point
-
-And finally, of course, have fun!
\ No newline at end of file
diff --git a/docs/1.0-dev/_sources/Coding/Coding-Overview.md.txt b/docs/1.0-dev/_sources/Coding/Coding-Overview.md.txt
index 57d23f04b0..c4e04972c5 100644
--- a/docs/1.0-dev/_sources/Coding/Coding-Overview.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Coding-Overview.md.txt
@@ -3,29 +3,17 @@
This documentation aims to help you set up a sane development environment to
make your game, also if you never coded before. If you are an experienced coder, much of this will be familiar to you, but some things may still be useful.
-
-## Setting up a workflow
-
See also the [Beginner Tutorial](../Howtos/Beginner-Tutorial/Beginner-Tutorial-Overview.md).
```{toctree}
:maxdepth: 2
Version-Control.md
-Updating-Your-Game.md
-
-```
-
-## Coding away
-
-```{toctree}
-:maxdepth: 2
-
-Coding-Introduction.md
-Coding-FAQ.md
Debugging.md
Unit-Testing.md
Profiling.md
+Evennia-Code-Style.md
+Coding-FAQ.md
Quirks.md
```
@@ -40,7 +28,7 @@ Changelog.md
## Third-party integrations
```{toctree}
-:maxdepth: 2
+:maxdepth: 1
Continuous-Integration.md
Setting-up-PyCharm.md
diff --git a/docs/1.0-dev/_sources/Coding/Continuous-Integration.md.txt b/docs/1.0-dev/_sources/Coding/Continuous-Integration.md.txt
index d13a2dc3cd..6d627139be 100644
--- a/docs/1.0-dev/_sources/Coding/Continuous-Integration.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Continuous-Integration.md.txt
@@ -1,14 +1,8 @@
-# Continuous Integration
+# Continuous Integration (CI)
-One of the advantages of Evennia over traditional MU* development systems is that Evennia can
-integrate into enterprise-level integration environments and source control.
+One of the advantages of Evennia over traditional MU* development systems is that Evennia can integrate into enterprise-level integration environments and source control.
-## What is Continuous Integration (CI)?
-
-[Continuous Integration (CI)](https://www.thoughtworks.com/continuous-integration) is a development
-practice that requires developers to integrate code into a shared repository.
-Each check-in is then verified by an automated build, allowing teams to detect problems early. This
-can be set up to safely deploy data to a production server only after tests have passed, for example.
+[Continuous Integration (CI)](https://www.thoughtworks.com/continuous-integration) is a development practice that requires developers to integrate code into a shared repository. Each check-in is then verified by an automated build, allowing teams to detect problems early. This can be set up to safely deploy data to a production server only after tests have passed, for example.
For Evennia, continuous integration allows an automated build process to:
@@ -19,10 +13,9 @@ For Evennia, continuous integration allows an automated build process to:
* Publish those files to the server directory
* Reload the game.
-## List of continuous integration tools
+## List of CI Evennia tutorials
-There are a lot of tools and services providing CI functionality. Here are a few that people have used
-with Evennia:
+There are a lot of tools and services providing CI functionality. Here are a few that people have used with Evennia:
```{toctree}
:maxdepth: 1
@@ -32,5 +25,4 @@ Continuous-Integration-TeamCity.md
```
-[This is an overview of other tools](https://www.atlassian.com/continuous-delivery/continuous-integration/tools)
-(external link).
\ No newline at end of file
+[This is an overview of other tools](https://www.atlassian.com/continuous-delivery/continuous-integration/tools) (external link).
\ No newline at end of file
diff --git a/docs/1.0-dev/_sources/Coding/Debugging.md.txt b/docs/1.0-dev/_sources/Coding/Debugging.md.txt
index 0ca64c45bf..7fc291e471 100644
--- a/docs/1.0-dev/_sources/Coding/Debugging.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Debugging.md.txt
@@ -1,12 +1,8 @@
# Debugging
+Sometimes, an error is not trivial to resolve. A few simple `print` statements is not enough to find the cause of the issue. The traceback is not informative or even non-existing.
-Sometimes, an error is not trivial to resolve. A few simple `print` statements is not enough to find
-the cause of the issue. Running a *debugger* can then be very helpful and save a lot of time.
-Debugging
-means running Evennia under control of a special *debugger* program. This allows you to stop the
-action at a given point, view the current state and step forward through the program to see how its
-logic works.
+Running a *debugger* can then be very helpful and save a lot of time. Debugging means running Evennia under control of a special *debugger* program. This allows you to stop the action at a given point, view the current state and step forward through the program to see how its logic works.
Evennia natively supports these debuggers:
@@ -24,11 +20,8 @@ To run Evennia with the debugger, follow these steps:
```python
from evennia import set_trace;set_trace()
```
-2. (Re-)start Evennia in interactive (foreground) mode with `evennia istart`. This is important -
- without this step the debugger will not start correctly - it will start in this interactive
- terminal.
-3. Perform the steps that will trigger the line where you added the `set_trace()` call. The debugger
- will start in the terminal from which Evennia was interactively started.
+2. (Re-)start Evennia in interactive (foreground) mode with `evennia istart`. This is important - without this step the debugger will not start correctly - it will start in this interactive terminal.
+3. Perform the steps that will trigger the line where you added the `set_trace()` call. The debugger will start in the terminal from which Evennia was interactively started.
The `evennia.set_trace` function takes the following arguments:
@@ -37,8 +30,7 @@ The `evennia.set_trace` function takes the following arguments:
evennia.set_trace(debugger='auto', term_size=(140, 40))
```
-Here, `debugger` is one of `pdb`, `pudb` or `auto`. If `auto`, use `pudb` if available, otherwise
-use `pdb`. The `term_size` tuple sets the viewport size for `pudb` only (it's ignored by `pdb`).
+Here, `debugger` is one of `pdb`, `pudb` or `auto`. If `auto`, use `pudb` if available, otherwise use `pdb`. The `term_size` tuple sets the viewport size for `pudb` only (it's ignored by `pdb`).
## A simple example using pdb
@@ -71,9 +63,7 @@ class CmdTest(Command):
```
-If you type `test` in your game, everything will freeze. You won't get any feedback from the game,
-and you won't be able to enter any command (nor anyone else). It's because the debugger has started
-in your console, and you will find it here. Below is an example with `pdb`.
+If you type `test` in your game, everything will freeze. You won't get any feedback from the game, and you won't be able to enter any command (nor anyone else). It's because the debugger has started in your console, and you will find it here. Below is an example with `pdb`.
```
...
@@ -83,13 +73,11 @@ in your console, and you will find it here. Below is an example with `pdb`.
```
-`pdb` notes where it has stopped execution and, what line is about to be executed (in our case, `obj
-= self.search(self.args)`), and ask what you would like to do.
+`pdb` notes where it has stopped execution and, what line is about to be executed (in our case, `obj = self.search(self.args)`), and ask what you would like to do.
### Listing surrounding lines of code
-When you have the `pdb` prompt `(Pdb)`, you can type in different commands to explore the code. The
-first one you should know is `list` (you can type `l` for short):
+When you have the `pdb` prompt `(Pdb)`, you can type in different commands to explore the code. The first one you should know is `list` (you can type `l` for short):
```
(Pdb) l
@@ -107,18 +95,13 @@ first one you should know is `list` (you can type `l` for short):
(Pdb)
```
-Okay, this didn't do anything spectacular, but when you become more confident with `pdb` and find
-yourself in lots of different files, you sometimes need to see what's around in code. Notice that
-there is a little arrow (`->`) before the line that is about to be executed.
+Okay, this didn't do anything spectacular, but when you become more confident with `pdb` and find yourself in lots of different files, you sometimes need to see what's around in code. Notice that there is a little arrow (`->`) before the line that is about to be executed.
-This is important: **about to be**, not **has just been**. You need to tell `pdb` to go on (we'll
-soon see how).
+This is important: **about to be**, not **has just been**. You need to tell `pdb` to go on (we'll soon see how).
### Examining variables
-`pdb` allows you to examine variables (or really, to run any Python instruction). It is very useful
-to know the values of variables at a specific line. To see a variable, just type its name (as if
-you were in the Python interpreter:
+`pdb` allows you to examine variables (or really, to run any Python instruction). It is very useful to know the values of variables at a specific line. To see a variable, just type its name (as if you were in the Python interpreter:
```
(Pdb) self
@@ -158,9 +141,7 @@ AttributeError: "'CmdTest' object has no attribute 'search'"
(Pdb)
```
-`Pdb` is complaining that you try to call the `search` method on a command... whereas there's no
-`search` method on commands. The character executing the command is in `self.caller`, so we might
-change our line:
+`Pdb` is complaining that you try to call the `search` method on a command... whereas there's no `search` method on commands. The character executing the command is in `self.caller`, so we might change our line:
```python
obj = self.caller.search(self.args)
@@ -168,19 +149,14 @@ obj = self.caller.search(self.args)
### Letting the program run
-`pdb` is waiting to execute the same instruction... it provoked an error but it's ready to try
-again, just in case. We have fixed it in theory, but we need to reload, so we need to enter a
-command. To tell `pdb` to terminate and keep on running the program, use the `continue` (or `c`)
-command:
+`pdb` is waiting to execute the same instruction... it provoked an error but it's ready to try again, just in case. We have fixed it in theory, but we need to reload, so we need to enter a command. To tell `pdb` to terminate and keep on running the program, use the `continue` (or `c`) command:
```
(Pdb) c
...
```
-You see an error being caught, that's the error we have fixed... or hope to have. Let's reload the
-game and try again. You need to run `evennia istart` again and then run `test` to get into the
-command again.
+You see an error being caught, that's the error we have fixed... or hope to have. Let's reload the game and try again. You need to run `evennia istart` again and then run `test` to get into the command again.
```
> .../mygame/commands/command.py(79)func()
@@ -218,12 +194,11 @@ fix that bug too, it would be better):
...
```
-Notice that you'll have an error in the game this time. Let's try with a valid parameter. I have
-another character, `barkeep`, in this room:
+Notice that you'll have an error in the game this time. Let's try with a valid parameter. I have another character, `barkeep`, in this room:
```test barkeep```
-And again, the command freezes, and we have the debugger opened in the console.
+And again, the command freezes, and we have the debugger opened in the console.
Let's execute this line right away:
@@ -248,32 +223,16 @@ TypeError: 'get_display_name() takes exactly 2 arguments (1 given)'
(Pdb)
```
-As an exercise, fix this error, reload and run the debugger again. Nothing better than some
-experimenting!
+As an exercise, fix this error, reload and run the debugger again. Nothing better than some experimenting!
Your debugging will often follow the same strategy:
1. Receive an error you don't understand.
2. Put a breaking point **BEFORE** the error occurs.
-3. Run the code again and see the debugger open.
-4. Run the program line by line,examining variables, checking the logic of instructions.
-5. Continue and try again, each step a bit further toward the truth and the working feature.
-
-### Stepping through a function
-
-`n` is useful, but it will avoid stepping inside of functions if it can. But most of the time, when
-we have an error we don't understand, it's because we use functions or methods in a way that wasn't
-intended by the developer of the API. Perhaps using wrong arguments, or calling the function in a
-situation that would cause a bug. When we have a line in the debugger that calls a function or
-method, we can "step" to examine it further. For instance, in the previous example, when `pdb` was
-about to execute `obj = self.caller.search(self.args)`, we may want to see what happens inside of
-the `search` method.
-
-To do so, use the `step` (or `s`) command. This command will show you the definition of the
-function/method and you can then use `n` as before to see it line-by-line. In our little example,
-stepping through a function or method isn't that useful, but when you have an impressive set of
-commands, functions and so on, it might really be handy to examine some feature and make sure they
-operate as planned.
+3. Run `evennia istart`
+4. Run the code again and see the debugger open.
+5. Run the program line by line, examining variables, checking the logic of instructions.
+6. Continue and try again, each step a bit further toward the truth and the working feature.
## Cheat-sheet of pdb/pudb commands
@@ -292,5 +251,4 @@ this directly). |
| `` | Repeat the last command (don't type `n` repeatedly, just type it once and then press
`` to repeat it). |
-If you want to learn more about debugging with Pdb, you will find an [interesting tutorial on that
-topic here](https://pymotw.com/3/pdb/).
\ No newline at end of file
+If you want to learn more about debugging with Pdb, you will find an [interesting tutorial on that topic here](https://pymotw.com/3/pdb/).
\ No newline at end of file
diff --git a/docs/1.0-dev/_sources/Coding/Evennia-Code-Style.md.txt b/docs/1.0-dev/_sources/Coding/Evennia-Code-Style.md.txt
new file mode 100644
index 0000000000..52b6bcfb6a
--- /dev/null
+++ b/docs/1.0-dev/_sources/Coding/Evennia-Code-Style.md.txt
@@ -0,0 +1,278 @@
+# Evennia Code Style
+
+All code submitted or committed to the Evennia project should aim to follow the
+guidelines outlined in [Python PEP 8][pep8]. Keeping the code style uniform
+makes it much easier for people to collaborate and read the code.
+
+A good way to check if your code follows PEP8 is to use the [PEP8 tool][pep8tool]
+on your sources.
+
+## Main code style specification
+
+ * 4-space indentation, NO TABS!
+ * Unix line endings.
+ * 100 character line widths
+ * CamelCase is only used for classes, nothing else.
+ * All non-global variable names and all function names are to be
+ lowercase, words separated by underscores. Variable names should
+ always be more than two letters long.
+ * Module-level global variables (only) are to be in CAPITAL letters.
+ * Imports should be done in this order:
+ - Python modules (builtins and standard library)
+ - Twisted modules
+ - Django modules
+ - Evennia library modules (`evennia`)
+ - Evennia contrib modules (`evennia.contrib`)
+ * All modules, classes, functions and methods should have doc strings formatted
+ as outlined below.
+ * All default commands should have a consistent docstring formatted as
+ outlined below.
+
+## Code Docstrings
+
+All modules, classes, functions and methods should have docstrings
+formatted with [Google style][googlestyle] -inspired indents, using
+[Markdown][githubmarkdown] formatting where needed. Evennia's `api2md`
+parser will use this to create pretty API documentation.
+
+
+### Module docstrings
+
+Modules should all start with at least a few lines of docstring at
+their top describing the contents and purpose of the module.
+
+Example of module docstring (top of file):
+
+```python
+"""
+This module handles the creation of `Objects` that
+are useful in the game ...
+
+"""
+```
+
+Sectioning (`# title`, `## subtile` etc) should not be used in
+freeform docstrings - this will confuse the sectioning of the auto
+documentation page and the auto-api will create this automatically.
+Write just the section name bolded on its own line to mark a section.
+Beyond sections markdown should be used as needed to format
+the text.
+
+Code examples should use [multi-line syntax highlighting][markdown-hilight]
+to mark multi-line code blocks, using the "python" identifier. Just
+indenting code blocks (common in markdown) will not produce the
+desired look.
+
+When using any code tags (inline or blocks) it's recommended that you
+don't let the code extend wider than about 70 characters or it will
+need to be scrolled horizontally in the wiki (this does not affect any
+other text, only code).
+
+### Class docstrings
+
+The root class docstring should describe the over-arching use of the
+class. It should usually not describe the exact call sequence nor list
+important methods, this tends to be hard to keep updated as the API
+develops. Don't use section markers (`#`, `##` etc).
+
+Example of class docstring:
+
+```python
+class MyClass(object):
+ """
+ This class describes the creation of `Objects`. It is useful
+ in many situations, such as ...
+
+ """
+```
+
+### Function / method docstrings
+
+Example of function or method docstring:
+
+```python
+
+def funcname(a, b, c, d=False, **kwargs):
+ """
+ This is a brief introduction to the function/class/method
+
+ Args:
+ a (str): This is a string argument that we can talk about
+ over multiple lines.
+ b (int or str): Another argument.
+ c (list): A list argument.
+ d (bool, optional): An optional keyword argument.
+
+ Keyword Args:
+ test (list): A test keyword.
+
+ Returns:
+ str: The result of the function.
+
+ Raises:
+ RuntimeException: If there is a critical error,
+ this is raised.
+ IOError: This is only raised if there is a
+ problem with the database.
+
+ Notes:
+ This is an example function. If `d=True`, something
+ amazing will happen.
+
+ """
+```
+
+The syntax is very "loose" but the indentation matters. That is, you
+should end the block headers (like `Args:`) with a line break followed by
+an indent. When you need to break a line you should start the next line
+with another indent. For consistency with the code we recommend all
+indents to be 4 spaces wide (no tabs!).
+
+Here are all the supported block headers:
+
+```
+ """
+ Args
+ argname (freeform type): Description endind with period.
+ Keyword Args:
+ argname (freeform type): Description.
+ Returns/Yields:
+ type: Description.
+ Raises:
+ Exceptiontype: Description.
+ Notes/Note/Examples/Example:
+ Freeform text.
+ """
+```
+
+Parts marked with "freeform" means that you can in principle put any
+text there using any formatting except for sections markers (`#`, `##`
+etc). You must also keep indentation to mark which block you are part
+of. You should normally use the specified format rather than the
+freeform counterpart (this will produce nicer output) but in some
+cases the freeform may produce a more compact and readable result
+(such as when describing an `*args` or `**kwargs` statement in general
+terms). The first `self` argument of class methods should never be
+documented.
+
+Note that
+
+```
+"""
+Args:
+ argname (type, optional): Description.
+"""
+```
+
+and
+
+```
+"""
+Keyword Args:
+ sargname (type): Description.
+"""
+```
+
+mean the same thing! Which one is used depends on the function or
+method documented, but there are no hard rules; If there is a large
+`**kwargs` block in the function, using the `Keyword Args:` block may be a
+good idea, for a small number of arguments though, just using `Args:`
+and marking keywords as `optional` will shorten the docstring and make
+it easier to read.
+
+## Default Command Docstrings
+
+These represent a special case since Commands in Evennia use their class
+docstrings to represent the in-game help entry for that command.
+
+All the commands in the _default command_ sets should have their doc-strings
+formatted on a similar form. For contribs, this is loosened, but if there is
+no particular reason to use a different form, one should aim to use the same
+style for contrib-command docstrings as well.
+
+```python
+ """
+ Short header
+
+ Usage:
+ key[/switches, if any] [optional] choice1||choice2||choice3
+
+ Switches:
+ switch1 - description
+ switch2 - description
+
+ Examples:
+ Usage example and output
+
+ Longer documentation detailing the command.
+
+ """
+```
+
+- Two spaces are used for *indentation* in all default commands.
+- Square brackets `[ ]` surround *optional, skippable arguments*.
+- Angled brackets `< >` surround a _description_ of what to write rather than the exact syntax.
+- Explicit choices are separated by `|`. To avoid this being parsed as a color code, use `||` (this
+will come out as a single `|`) or put spaces around the character ("` | `") if there's plenty of room.
+- The `Switches` and `Examples` blocks are optional and based on the Command.
+
+Here is the `nick` command as an example:
+
+```python
+ """
+ Define a personal alias/nick
+
+ Usage:
+ nick[/switches] = []
+ alias ''
+
+ Switches:
+ object - alias an object
+ account - alias an account
+ clearall - clear all your aliases
+ list - show all defined aliases (also "nicks" works)
+
+ Examples:
+ nick hi = say Hello, I'm Sarah!
+ nick/object tom = the tall man
+
+ A 'nick' is a personal shortcut you create for your own use [...]
+
+ """
+```
+
+For commands that *require arguments*, the policy is for it to return a `Usage:`
+string if the command is entered without any arguments. So for such commands,
+the Command body should contain something to the effect of
+
+```python
+ if not self.args:
+ self.caller.msg("Usage: nick[/switches] = []")
+ return
+```
+
+## Tools for auto-linting
+
+### black
+
+Automatic pep8 compliant formatting and linting can be performed using the
+`black` formatter:
+
+ black --line-length 100
+
+### PyCharm
+
+The Python IDE [Pycharm][pycharm] can auto-generate empty doc-string stubs. The
+default is to use `reStructuredText` form, however. To change to Evennia's
+Google-style docstrings, follow [this guide][pycharm-guide].
+
+
+
+[pep8]: http://www.python.org/dev/peps/pep-0008
+[pep8tool]: https://pypi.python.org/pypi/pep8
+[googlestyle]: https://www.sphinx-doc.org/en/master/usage/extensions/example_google.html
+[githubmarkdown]: https://help.github.com/articles/github-flavored-markdown/
+[markdown-hilight]: https://help.github.com/articles/github-flavored-markdown/#syntax-highlighting
+[command-docstrings]: https://github.com/evennia/evennia/wiki/Using%20MUX%20As%20a%20Standard#documentation-policy
+[pycharm]: https://www.jetbrains.com/pycharm/
+[pycharm-guide]: https://www.jetbrains.com/help/pycharm/2016.3/python-integrated-tools.html
diff --git a/docs/1.0-dev/_sources/Coding/Profiling.md.txt b/docs/1.0-dev/_sources/Coding/Profiling.md.txt
index 51716a1051..fe10513921 100644
--- a/docs/1.0-dev/_sources/Coding/Profiling.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Profiling.md.txt
@@ -1,24 +1,16 @@
# Profiling
-*This is considered an advanced topic mainly of interest to server developers.*
+```{important}
+This is considered an advanced topic. It's mainly of interest to server developers.
+```
-## Introduction
+Sometimes it can be useful to try to determine just how efficient a particular piece of code is, or to figure out if one could speed up things more than they are. There are many ways to test the performance of Python and the running server.
-Sometimes it can be useful to try to determine just how efficient a particular
-piece of code is, or to figure out if one could speed up things more than they
-are. There are many ways to test the performance of Python and the running
-server.
-
-Before digging into this section, remember Donald Knuth's
-[words of wisdom](https://en.wikipedia.org/wiki/Program_optimization#When_to_optimize):
+Before digging into this section, remember Donald Knuth's [words of wisdom](https://en.wikipedia.org/wiki/Program_optimization#When_to_optimize):
> *[...]about 97% of the time: Premature optimization is the root of all evil*.
-That is, don't start to try to optimize your code until you have actually
-identified a need to do so. This means your code must actually be working before
-you start to consider optimization. Optimization will also often make your code
-more complex and harder to read. Consider readability and maintainability and
-you may find that a small gain in speed is just not worth it.
+That is, don't start to try to optimize your code until you have actually identified a need to do so. This means your code must actually be working before you start to consider optimization. Optimization will also often make your code more complex and harder to read. Consider readability and maintainability and you may find that a small gain in speed is just not worth it.
## Simple timer tests
@@ -36,53 +28,31 @@ could use the following code:
<<< 5.358283996582031
```
-The `setup` keyword is used to set up things that should not be included in the
-time measurement, like `a = []` in the first call.
+The `setup` keyword is used to set up things that should not be included in the time measurement, like `a = []` in the first call.
-By default the `timeit` function will re-run the given test 1000000 times and
-returns the *total time* to do so (so *not* the average per test). A hint is to
-not use this default for testing something that includes database writes - for
-that you may want to use a lower number of repeats (say 100 or 1000) using the
-`number=100` keyword.
+By default the `timeit` function will re-run the given test 1000000 times and returns the *total time* to do so (so *not* the average per test). A hint is to not use this default for testing something that includes database writes - for that you may want to use a lower number of repeats (say 100 or 1000) using the `number=100` keyword.
+
+In the example above, we see that this number of calls, using a list comprehension is about twice as fast as building a list using `.append()`.
## Using cProfile
-Python comes with its own profiler, named cProfile (this is for cPython, no
-tests have been done with `pypy` at this point). Due to the way Evennia's
-processes are handled, there is no point in using the normal way to start the
-profiler (`python -m cProfile evennia.py`). Instead you start the profiler
-through the launcher:
+Python comes with its own profiler, named cProfile (this is for cPython, no tests have been done with `pypy` at this point). Due to the way Evennia's processes are handled, there is no point in using the normal way to start the profiler (`python -m cProfile evennia.py`). Instead you start the profiler through the launcher:
evennia --profiler start
-This will start Evennia with the Server component running (in daemon mode) under
-cProfile. You could instead try `--profile` with the `portal` argument to
-profile the Portal (you would then need to
-[start the Server separately](../Setup/Start-Stop-Reload.md)).
+This will start Evennia with the Server component running (in daemon mode) under cProfile. You could instead try `--profile` with the `portal` argument to profile the Portal (you would then need to [start the Server separately](../Setup/Running-Evennia.md)).
-Please note that while the profiler is running, your process will use a lot more
-memory than usual. Memory usage is even likely to climb over time. So don't
-leave it running perpetually but monitor it carefully (for example using the
-`top` command on Linux or the Task Manager's memory display on Windows).
+Please note that while the profiler is running, your process will use a lot more memory than usual. Memory usage is even likely to climb over time. So don't leave it running perpetually but monitor it carefully (for example using the `top` command on Linux or the Task Manager's memory display on Windows).
-Once you have run the server for a while, you need to stop it so the profiler
-can give its report. Do *not* kill the program from your task manager or by
-sending it a kill signal - this will most likely also mess with the profiler.
-Instead either use `evennia.py stop` or (which may be even better), use
-`@shutdown` from inside the game.
+Once you have run the server for a while, you need to stop it so the profiler can give its report. Do *not* kill the program from your task manager or by sending it a kill signal - this will most likely also mess with the profiler. Instead either use `evennia.py stop` or (which may be even better), use `@shutdown` from inside the game.
-Once the server has fully shut down (this may be a lot slower than usual) you
-will find that profiler has created a new file `mygame/server/logs/server.prof`.
+Once the server has fully shut down (this may be a lot slower than usual) you will find that profiler has created a new file `mygame/server/logs/server.prof`.
### Analyzing the profile
-The `server.prof` file is a binary file. There are many ways to analyze and
-display its contents, all of which has only been tested in Linux (If you are a
-Windows/Mac user, let us know what works).
+The `server.prof` file is a binary file. There are many ways to analyze and display its contents, all of which has only been tested in Linux (If you are a Windows/Mac user, let us know what works).
-You can look at the contents of the profile file with Python's in-built `pstats`
-module in the evennia shell (it's recommended you install `ipython` with `pip
-install ipython` in your virtualenv first, for prettier output):
+You can look at the contents of the profile file with Python's in-built `pstats` module in the evennia shell (it's recommended you install `ipython` with `pip install ipython` in your virtualenv first, for prettier output):
evennia shell
@@ -97,9 +67,7 @@ p.strip_dirs().sort_stats(-1).print_stats()
```
-See the
-[Python profiling documentation](https://docs.python.org/3/library/profile.html#instant-user-s-manual)
-for more information.
+See the [Python profiling documentation](https://docs.python.org/3/library/profile.html#instant-user-s-manual) for more information.
You can also visualize the data in various ways.
- [Runsnake](https://pypi.org/project/RunSnakeRun/) visualizes the profile to
@@ -112,20 +80,11 @@ You can also visualize the data in various ways.
`pyprof2calltree` via `pip` whereas KCacheGrind is something you need to get
via your package manager or their homepage.
-How to analyze and interpret profiling data is not a trivial issue and depends
-on what you are profiling for. Evennia being an asynchronous server can also
-confuse profiling. Ask on the mailing list if you need help and be ready to be
-able to supply your `server.prof` file for comparison, along with the exact
-conditions under which it was obtained.
+How to analyze and interpret profiling data is not a trivial issue and depends on what you are profiling for. Evennia being an asynchronous server can also confuse profiling. Ask on the mailing list if you need help and be ready to be able to supply your `server.prof` file for comparison, along with the exact conditions under which it was obtained.
## The Dummyrunner
-It is difficult to test "actual" game performance without having players in your
-game. For this reason Evennia comes with the *Dummyrunner* system. The
-Dummyrunner is a stress-testing system: a separate program that logs into your
-game with simulated players (aka "bots" or "dummies"). Once connected, these
-dummies will semi-randomly perform various tasks from a list of possible
-actions. Use `Ctrl-C` to stop the Dummyrunner.
+It is difficult to test "actual" game performance without having players in your game. For this reason Evennia comes with the *Dummyrunner* system. The Dummyrunner is a stress-testing system: a separate program that logs into your game with simulated players (aka "bots" or "dummies"). Once connected, these dummies will semi-randomly perform various tasks from a list of possible actions. Use `Ctrl-C` to stop the Dummyrunner.
```{warning}
@@ -140,9 +99,7 @@ This is the recommended process for using the dummy runner:
from evennia.server.profiling.settings_mixin import *
- This will override your settings and disable Evennia's rate limiters and
- DoS-protections, which would otherwise block mass-connecting clients from
- one IP. Notably, it will also change to a different (faster) password hasher.
+ This will override your settings and disable Evennia's rate limiters and DoS-protections, which would otherwise block mass-connecting clients from one IP. Notably, it will also change to a different (faster) password hasher.
1. (recommended): Build a new database. If you use default Sqlite3 and want to
keep your existing database, just rename `mygame/server/evennia.db3` to
`mygame/server/evennia.db3_backup` and run `evennia migrate` and `evennia
@@ -156,29 +113,17 @@ This is the recommended process for using the dummy runner:
Use `Ctrl-C` (or `Cmd-C`) to stop it.
-If you want to see what the dummies are actually doing you can run with a single
-dummy:
+If you want to see what the dummies are actually doing you can run with a single dummy:
evennia --dummyrunner 1
-The inputs/outputs from the dummy will then be printed. By default the runner
-uses the 'looker' profile, which just logs in and sends the 'look' command
-over and over. To change the settings, copy the file
-`evennia/server/profiling/dummyrunner_settings.py` to your `mygame/server/conf/`
-directory, then add this line to your settings file to use it in the new
-location:
+The inputs/outputs from the dummy will then be printed. By default the runner uses the 'looker' profile, which just logs in and sends the 'look' command over and over. To change the settings, copy the file `evennia/server/profiling/dummyrunner_settings.py` to your `mygame/server/conf/` directory, then add this line to your settings file to use it in the new location:
DUMMYRUNNER_SETTINGS_MODULE = "server/conf/dummyrunner_settings.py"
-The dummyrunner settings file is a python code module in its own right - it
-defines the actions available to the dummies. These are just tuples of command
-strings (like "look here") for the dummy to send to the server along with a
-probability of them happening. The dummyrunner looks for a global variable
-`ACTIONS`, a list of tuples, where the first two elements define the
-commands for logging in/out of the server.
+The dummyrunner settings file is a python code module in its own right - it defines the actions available to the dummies. These are just tuples of command strings (like "look here") for the dummy to send to the server along with a probability of them happening. The dummyrunner looks for a global variable `ACTIONS`, a list of tuples, where the first two elements define the commands for logging in/out of the server.
-Below is a simplified minimal setup (the default settings file adds a lot more
-functionality and info):
+Below is a simplified minimal setup (the default settings file adds a lot more functionality and info):
```python
# minimal dummyrunner setup file
@@ -224,8 +169,7 @@ ACTIONS = (
```
-At the bottom of the default file are a few default profiles you can test out
-by just setting the `PROFILE` variable to one of the options.
+At the bottom of the default file are a few default profiles you can test out by just setting the `PROFILE` variable to one of the options.
### Dummyrunner hints
diff --git a/docs/1.0-dev/_sources/Coding/Setting-up-PyCharm.md.txt b/docs/1.0-dev/_sources/Coding/Setting-up-PyCharm.md.txt
index 971aec6618..e72026faf9 100644
--- a/docs/1.0-dev/_sources/Coding/Setting-up-PyCharm.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Setting-up-PyCharm.md.txt
@@ -1,18 +1,14 @@
# Setting up PyCharm with Evennia
-[PyCharm](https://www.jetbrains.com/pycharm/) is a Python developer's IDE from Jetbrains available
-for Windows, Mac and Linux. It is a commercial product but offer free trials, a scaled-down
-community edition and also generous licenses for OSS projects like Evennia.
+[PyCharm](https://www.jetbrains.com/pycharm/) is a Python developer's IDE from Jetbrains available for Windows, Mac and Linux. It is a commercial product but offer free trials, a scaled-down community edition and also generous licenses for OSS projects like Evennia.
-> This page was originally tested on Windows (so use Windows-style path examples), but should work
-the same for all platforms.
+> This page was originally tested on Windows (so use Windows-style path examples), but should work the same for all platforms.
-First, install Evennia on your local machine with [[Getting Started]]. If you're new to PyCharm,
-loading your project is as easy as selecting the `Open` option when PyCharm starts, and browsing to
-your game folder (the one created with `evennia --init`). We refer to it as `mygame` here.
+First, install Evennia on your local machine with [[Getting Started]]. If you're new to PyCharm, loading your project is as easy as selecting the `Open` option when PyCharm starts, and browsing to your game folder (the one created with `evennia --init`). We refer to it as `mygame` here.
If you want to be able to examine evennia's core code or the scripts inside your virtualenv, you'll
need to add them to your project too:
+
1. Go to `File > Open...`
1. Select the folder (i.e. the `evennia` root)
1. Select "Open in current window" and "Add to currently opened projects"
@@ -33,69 +29,46 @@ Enjoy seeing all your imports checked properly, setting breakpoints, and live va
1. Launch Evennia in your preferred way (usually from a console/terminal)
1. Open your project in PyCharm
1. In the PyCharm menu, select `Run > Attach to Local Process...`
-1. From the list, pick the `twistd` process with the `server.py` parameter (Example: `twistd.exe
---nodaemon --logfile=\\server\logs\server.log --python=\\evennia\server\server.py`)
+1. From the list, pick the `twistd` process with the `server.py` parameter (Example: `twistd.exe --nodaemon --logfile=\\server\logs\server.log --python=\\evennia\server\server.py`)
Of course you can attach to the `portal` process as well. If you want to debug the Evennia launcher
or runner for some reason (or just learn how they work!), see Run Configuration below.
-> NOTE: Whenever you reload Evennia, the old Server process will die and a new one start. So when
-you restart you have to detach from the old and then reattach to the new process that was created.
+> NOTE: Whenever you reload Evennia, the old Server process will die and a new one start. So when you restart you have to detach from the old and then reattach to the new process that was created.
+
+> To make the process less tedious you can apply a filter in settings to show only the server.py process in the list. To do that navigate to: `Settings/Preferences | Build, Execution, Deployment | Python Debugger` and then in `Attach to process` field put in: `twistd.exe" --nodaemon`. This is an example for windows, I don't have a working mac/linux box.
-> To make the process less tedious you can apply a filter in settings to show only the server.py
-process in the list. To do that navigate to: `Settings/Preferences | Build, Execution, Deployment |
-Python Debugger` and then in `Attach to process` field put in: `twistd.exe" --nodaemon`. This is an
-example for windows, I don't have a working mac/linux box.

## Setting up an Evennia run configuration
-This configuration allows you to launch Evennia from inside PyCharm. Besides convenience, it also
-allows suspending and debugging the evennia_launcher or evennia_runner at points earlier than you
-could by running them externally and attaching. In fact by the time the server and/or portal are
-running the launcher will have exited already.
+This configuration allows you to launch Evennia from inside PyCharm. Besides convenience, it also allows suspending and debugging the evennia_launcher or evennia_runner at points earlier than you could by running them externally and attaching. In fact by the time the server and/or portal are running the launcher will have exited already.
1. Go to `Run > Edit Configutations...`
1. Click the plus-symbol to add a new configuration and choose Python
-1. Add the script: `\\evenv\Scripts\evennia_launcher.py` (substitute your virtualenv if
-it's not named `evenv`)
+1. Add the script: `\\evenv\Scripts\evennia_launcher.py` (substitute your virtualenv if it's not named `evenv`)
1. Set script parameters to: `start -l` (-l enables console logging)
1. Ensure the chosen interpreter is from your virtualenv
1. Set Working directory to your `mygame` folder (not evenv nor evennia)
-1. You can refer to the PyCharm documentation for general info, but you'll want to set at least a
-config name (like "MyMUD start" or similar).
+1. You can refer to the PyCharm documentation for general info, but you'll want to set at least a config name (like "MyMUD start" or similar).
-Now set up a "stop" configuration by following the same steps as above, but set your Script
-parameters to: stop (and name the configuration appropriately).
+Now set up a "stop" configuration by following the same steps as above, but set your Script parameters to: stop (and name the configuration appropriately).
-A dropdown box holding your new configurations should appear next to your PyCharm run button.
-Select MyMUD start and press the debug icon to begin debugging. Depending on how far you let the
-program run, you may need to run your "MyMUD stop" config to actually stop the server, before you'll
-be able start it again.
+A dropdown box holding your new configurations should appear next to your PyCharm run button. Select MyMUD start and press the debug icon to begin debugging. Depending on how far you let the program run, you may need to run your "MyMUD stop" config to actually stop the server, before you'll be able start it again.
-## Alternative run configuration - utilizing logfiles as source of data
+## Alternative config - utilizing logfiles as source of data
-This configuration takes a bit different approach as instead of focusing on getting the data back
-through logfiles. Reason for that is this way you can easily separate data streams, for example you
-rarely want to follow both server and portal at the same time, and this will allow it. This will
-also make sure to stop the evennia before starting it, essentially working as reload command (it
-will also include instructions how to disable that part of functionality). We will start by defining
-a configuration that will stop evennia. This assumes that `upfire` is your pycharm project name, and
-also the game name, hence the `upfire/upfire` path.
+This configuration takes a bit different approach as instead of focusing on getting the data back through logfiles. Reason for that is this way you can easily separate data streams, for example you rarely want to follow both server and portal at the same time, and this will allow it. This will also make sure to stop the evennia before starting it, essentially working as reload command (it will also include instructions how to disable that part of functionality). We will start by defining a configuration that will stop evennia. This assumes that `upfire` is your pycharm project name, and also the game name, hence the `upfire/upfire` path.
1. Go to `Run > Edit Configutations...`\
-1. Click the plus-symbol to add a new configuration and choose the python interpreter to use (should
-be project default)
+1. Click the plus-symbol to add a new configuration and choose the python interpreter to use (should be project default)
1. Name the configuration as "stop evennia" and fill rest of the fields accordingly to the image:

1. Press `Apply`
-Now we will define the start/reload command that will make sure that evennia is not running already,
-and then start the server in one go.
+Now we will define the start/reload command that will make sure that evennia is not running already, and then start the server in one go.
1. Go to `Run > Edit Configutations...`\
-1. Click the plus-symbol to add a new configuration and choose the python interpreter to use (should
-be project default)
+1. Click the plus-symbol to add a new configuration and choose the python interpreter to use (should be project default)
1. Name the configuration as "start evennia" and fill rest of the fields accordingly to the image:

1. Navigate to the `Logs` tab and add the log files you would like to follow. The picture shows
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 d4b29f0efb..ee4af0a490 100644
--- a/docs/1.0-dev/_sources/Coding/Unit-Testing.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Unit-Testing.md.txt
@@ -1,19 +1,11 @@
# Unit Testing
-*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](https://en.wikipedia.org/wiki/Unit_test)).
+*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](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,
-Evennia makes use of a central *test runner*. This is a program that gathers all available tests all
-over the Evennia source code (called *test suites*) and runs them all in one go. Errors and
-tracebacks are reported.
-
-By default Evennia only tests itself. But you can also add your own tests to your game code and have
-Evennia run those for you.
+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 over the Evennia source code (called *test suites*) and runs them all in one go. Errors and tracebacks are reported.
+ By default Evennia only tests itself. But you can also add your own tests to your game code and have Evennia run those for you.
+
## Running the Evennia test suite
To run the full Evennia test suite, go to your game folder and issue the command
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
deleted file mode 100644
index 6805a1ab77..0000000000
--- a/docs/1.0-dev/_sources/Coding/Updating-Your-Game.md.txt
+++ /dev/null
@@ -1,134 +0,0 @@
-# Updating Your Game
-
-
-Fortunately, it's extremely easy to keep your Evennia server up-to-date. If you haven't already, see
-the [Getting Started guide](../Setup/Installation.md) and get everything running.
-
-## Updating with the latest Evennia code changes
-
-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
-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
-
-assuming you've got the command line client. If you're using a graphical client, you will probably
-want to navigate to the `evennia` directory and either right click and find your client's pull
-function, or use one of the menus (if applicable).
-
-You can review the latest changes with
-
- git log
-
-or the equivalent in the graphical client. You can also see the latest changes online
-[here](https://github.com/evennia/evennia/blob/master/CHANGELOG.md).
-
-You will always need to do `evennia reload` (or `reload` from -in-game) from your game-dir to have
-the new code affect your game. If you want to be really sure you should run a full `evennia reboot`
-so that both Server and Portal can restart (this will disconnect everyone though, so if you know the
-Portal has had no updates you don't have to do that).
-
-## Upgrading Evennia dependencies
-
-On occasion we update the versions of third-party libraries Evennia depend on (or we may add a new
-dependency). This will be announced on the mailing list/forum. If you run into errors when starting
-Evennia, always make sure you have the latest versions of everything. In some cases, like for
-Django, starting the server may also give warning saying that you are using a working, but too-old
-version that should not be used in production.
-
-Upgrading `evennia` will automatically fetch all the latest packages that it now need. First `cd` to
-your cloned `evennia` folder. Make sure your `virtualenv` is active and use
-
- pip install --upgrade -e .
-
-Remember the period (`.`) at the end - that applies the upgrade to the current location (your
-`evennia` dir).
-
-> The `-e` means that we are _linking_ the evennia sources rather than copying them into the
-environment. This means we can most of the time just update the sources (with `git pull`) and see
-those changes directly applied to our installed `evennia` package. Without installing/upgrading the
-package with `-e`, we would have to remember to upgrade the package every time we downloaded any new
-source-code changes.
-
-Follow the upgrade output to make sure it finishes without errors. To check what packages are
-currently available in your python environment after the upgrade, use
-
- pip list
-
-This will show you the version of all installed packages. The `evennia` package will also show the
-location of its source code.
-
-## Migrating the Database Schema
-
-Whenever we change the database layout of Evennia upstream (such as when we add new features) you
-will need to *migrate* your existing database. When this happens it will be clearly noted in the
-`git log` (it will say something to the effect of "Run migrations"). Database changes will also be
-announced on the Evennia [mailing list](https://groups.google.com/forum/#!forum/evennia).
-
-When the database schema changes, you just go to your game folder and run
-
- evennia migrate
-
-> Hint: If the `evennia` command is not found, you most likely need to activate your
-[virtualenv](../Glossary.md#virtualenv).
-
-## Resetting your database
-
-Should you ever want to start over completely from scratch, there is no need to re-download Evennia
-or anything like that. You just need to clear your database. Once you are done, you just rebuild it
-from scratch by running
-
- evennia migrate
-
-The first step in wiping your database is to stop Evennia completely with
-
- evennia stop
-
-If you run the default `SQlite3` database (to change this you need to edit your `settings.py` file),
-the database is actually just a normal file in `mygame/server/` called `evennia.db3`. *Simply delete
-that file* - that's it. Now run `evennia migrate` to recreate a new, fresh one.
-
-If you run some other database system you can instead flush the database:
-
- evennia flush
-
-This will empty the database. However, it will not reset the internal counters of the database, so
-you will start with higher dbref values. If this is okay, this is all you need.
-
-Django also offers an easy way to start the database's own management should we want more direct
-control:
-
- evennia dbshell
-
-In e.g. MySQL you can then do something like this (assuming your MySQL database is named "Evennia":
-
- mysql> DROP DATABASE Evennia;
- mysql> exit
-
-> NOTE: Under Windows OS, in order to access SQLite dbshell you need to [download the SQLite
-command-line shell program](https://www.sqlite.org/download.html). It's a single executable file
-(sqlite3.exe) that you should place in the root of either your MUD folder or Evennia's (it's the
-same, in both cases Django will find it).
-
-## More about schema migrations
-
-If and when an Evennia update modifies the database *schema* (that is, the under-the-hood details as
-to how data is stored in the database), you must update your existing database correspondingly to
-match the change. If you don't, the updated Evennia will complain that it cannot read the database
-properly. Whereas schema changes should become more and more rare as Evennia matures, it may still
-happen from time to time.
-
-One way one could handle this is to apply the changes manually to your database using the database's
-command line. This often means adding/removing new tables or fields as well as possibly convert
-existing data to match what the new Evennia version expects. It should be quite obvious that this
-quickly becomes cumbersome and error-prone. If your database doesn't contain anything critical yet
-it's probably easiest to simply reset it and start over rather than to bother converting.
-
-Enter *migrations*. Migrations keeps track of changes in the database schema and applies them
-automatically for you. Basically, whenever the schema changes we distribute small files called
-"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.
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 9639608957..614fe986f6 100644
--- a/docs/1.0-dev/_sources/Coding/Version-Control.md.txt
+++ b/docs/1.0-dev/_sources/Coding/Version-Control.md.txt
@@ -1,27 +1,15 @@
-# Version Control
+# Coding using Version Control
-Version control software allows you to track the changes you make to your code, as well as being
-able to easily backtrack these changes, share your development efforts and more.
+[Version control](https://en.wikipedia.org/wiki/Version_control) allows you to track changes to your code. You can save 'snapshots' of your progress which means you can roll back undo things easily. Version control also allows you to easily back up your code to an online _repository_ such as Github. It also allows you to collaborate with others on the same code without clashing or worry about who changed what.
-It's strongly recommended that you put your game code under version control. Version
-control is also the way to contribue to Evennia itself.
+```{sidebar} Do it!
+It's _strongly_ recommended that you [put your game folder under version control](#putting-your-game-dir-under-version-control). Using git is is also the way to contribue to Evennia itself.
+```
-For an introduction to the concept, start with the Wikipedia article
-[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 primarily shows commands for Linux, but the
-syntax should be the same for Windows and Mac.
-
-For more help on using Git, please refer to the [Official GitHub
-documentation](https://help.github.com/articles/set-up-git#platform-all).
+Evennia uses the most commonly used version control system, [Git](https://git-scm.com/) . For additional help on using Git, please refer to the [Official GitHub documentation](https://help.github.com/articles/set-up-git#platform-all).
## Setting up Git
-You can find expanded instructions for
-installation [here](https://git-scm.com/book/en/Getting-Started-Installing-Git).
-
-### Step 1: Install Git
-
- **Fedora Linux**
yum install git-core
@@ -31,19 +19,15 @@ installation [here](https://git-scm.com/book/en/Getting-Started-Installing-Git).
apt-get install git
- **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](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/).
+- **Mac**: Mac platforms offer two methods for installation, one via MacPorts, which you can find 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
+> You can find expanded instructions for installation [here](https://git-scm.com/book/en/Getting-Started-Installing-Git).
-To avoid a common issue later, you will need to set a couple of settings; first you will need to
-tell Git your username, followed by your e-mail address, so that when you commit code later you will
-be properly credited.
+```{sidebar} Git user nickname
+If you ever make your code available online (or contribute to Evennia), your name will be visible to those reading the code-commit history. So if you are not comfortable with using your real, full name online, put a nickname (or your github handler) here.
+```
+To avoid a common issue later, you will need to set a couple of settings; first you will need to tell Git your username, followed by your e-mail address, so that when you commit code later you will be properly credited.
-> Note that your commit information will be visible to everyone if you ever contribute to Evennia or
-use an online service like github to host your code. So if you are not comfortable with using your
-real, full name online, put a nickname here.
1. Set the default name for git to use when you commit:
@@ -53,417 +37,313 @@ real, full name online, put a nickname here.
git config --global user.email "your_email@example.com"
+> To get a running start with Git, here's [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).
-## Putting your game folder under version control
+## Common Git commands
-> Note: The game folder's version control is completely separate from Evennia's repository.
+```{sidebar} Git repository
+This is just a fancy name for the folder you have designated to be under version control. We will make your `mygame` game folder into such a repository. The Evennia code is also in a (separate) git repository.
+```
+Git can be controlled via a GUI. But it's often easier to use the base terminal/console commands, since it makes it clear if something goes wrong.
-After you have set up your game you will have created a new folder to host your particular game
-(let's call this folder `mygame` for now).
+All these actions need to be done from inside the _git repository_ .
-This folder is *not* under version control at this point.
+Git may seem daunting at first. But when working with git, you'll be using the same 2-3 commands 99% of the time. And you can make git _aliases_ to have them be even easier to remember.
- git init mygame
-Your mygame folder is now ready for version control! Add all the content and make a first
-commit:
+### `git init`
- cd mygame
+This initializes a folder/directory on your drive as a 'git repository'
+
+ git init .
+
+The `.` means to apply to the current directory. If you are inside `mygame`, this makes your game dir into a git repository. That's all there is to it, really. You only need to do this once.
+
+### `git add`
+
+ git add
+
+This tells Git to start to _track_ the file under version control. You need to do this when you create a new file. You can also add all files in your current directory:
+
+ git add .
+
+Or
+
+ git add *
+
+All files in the current directory are now tracked by Git. You only need to do this once for every file you want to track.
+
+### `git commit`
+
+ git commit -a -m "This is the initial commit"
+
+This _commits_ your changes. It stores a snapshot of all (`-a`) your code at the current time, adding a message `-m` so you know what you did. Later you can _check out_ your code the way it was at a given time. The message is mandatory and you will thank yourself later if write clear and descriptive log messages. If you don't add `-m`, a text editor opens for you to write the message instead.
+
+The `git commit` is something you'll be using all the time, so it can be useful to make a _git alias_ for it:
+
+ git config --global alias.cma 'commit -a -m'
+
+After you've run this, you can commit much simpler, like this:
+
+ git cma "This is the initial commit"
+
+Much easier to remember!
+
+### `git status`, `git diff` and `git log`
+
+
+ git status -s
+
+This gives a short (`-s`) of the files that changes since your last `git commit`.
+
+ git diff --word-diff`
+
+This shows exactly what changed in each file since you last made a `git commit`. The `--word-diff` option means it will mark if a single word changed on a line.
+
+ git log
+
+This shows the log of all `commits` done. Each log will show you who made the change, the commit-message and a unique _hash_ (like `ba214f12ab12e123...`) that uniquely describes that commit.
+
+You can make the `log` command more succinct with some more options:
+
+ ls=log --pretty=format:%C(green)%h\ %C(yellow)[%ad]%Cred%d\ %Creset%s%Cblue\ [%an] --decorate --date=relative
+
+This adds coloration and another fancy effects (use `git help log` to see what they mean).
+
+Let's add aliases:
+
+ git config --global alias.st 'status -s'
+ git config --global alias.df 'diff --word-diff'
+ git config --global alias.ls 'log --pretty=format:%C(green)%h\ %C(yellow)[%ad]%Cred%d\ %Creset%s%Cblue\ [%an] --decorate --date=relative'
+
+You can now use the much shorter
+
+ git st # short status
+ git dif # diff with word-marking
+ git ls # log with pretty formatting
+
+for these useful functions.
+
+### `git branch`, `checkout` and `merge`
+
+Git allows you to work with _branches_. These are separate development paths your code may take, completely separate from each other. You can later _merge_ the code from a branch back into another branch. Evennia's `master` and `develop` branches are examples of this.
+
+ git branch -b branchaname
+
+This creates a new branch, exactly identical to the branch you were on. It also moves you to that branch.
+
+ git branch -D branchname
+
+Deletes a branch.
+
+ git branch
+
+Shows all your branches, marking which one you are currently on.
+
+ git checkout branchname
+
+This checks out another branch. As long as you are in a branch all `git commit`s will commit the code to that branch only.
+
+ git checkout .
+
+This checks out your _current branch_ and has the effect of throwing away all your changes since your last commit. This is like undoing what you did since the last save point.
+
+ git checkout b2342bc21c124
+
+This checks out a particular _commit_, identified by the hash you find with `git log`. This open a 'temporary branch' where the code is as it was when you made this commit. As an example, you can use this to check where a bug was introduced. Check out an existing branch to go back to your normal timeline, or use `git branch -b newbranch` to break this code off into a new branch you can continue working from.
+
+ git merge branchname
+
+This _merges_ the code from `branchname` into the branch you are currently in. Doing so may lead to _merge conflicts_ if the same code changed in different ways in the two branches. See [how to resolve merge conflicts in git](https://phoenixnap.com/kb/how-to-resolve-merge-conflicts-in-git) for more help.
+
+### `git glone`, `git push` and `git pull`
+
+All of these other commands have dealt with code only sitting in your local repository-folder. These commands instead allows you to exchange code with a _remote_ repository - usually one that is online (like on github).
+
+> How you actually set up a remote repository is described [in the next section](#pushing-your-code-online).
+
+ git clone repository/path
+
+This copies the remote repository to your current location. If you used the [Git installation instructions](../Setup/Installation-Git.md) to install Evennia, this is what you used to get your local copy of the Evennia repository.
+
+ git pull
+
+Once you cloned or otherwise set up a remote repository, using `git pull` will re-sync the remote with what you have locally. If what you download clashes with local changes, git will force you to `git commit` your changes before you can continue with `git pull`.
+
+ git push
+
+This uploads your local changes _of your current branch_ to the same-named branch on the remote repository. To be able to do this you must have write-permissions to the remote repository.
+
+### Other git commands
+
+There are _many_ other git commands. Read up on them online:
+
+ git reflog
+
+Shows hashes of individual git actions. This allows you to go back in the git event history itself.
+
+
+ git reset
+
+Force reset a branch to an earlier commit. This could throw away some history, so be careful.
+
+ git grep -n -I -i
+
+Quickly search for a phrase/text in all files tracked by git. Very useful to quickly find where things are. Set up an alias `git gr` with
+
+```
+git config --global alias.gr 'grep -n -I -i'
+```
+
+## Putting your game dir under version control
+
+This makes use of the git commands listed in the previous section.
+
+```{sidebar} git aliases
+If you set up the git aliases for commands suggested in the previous section, you can use them instead!
+```
+
+ cd mygame
+ git init .
git add *
git commit -a -m "Initial commit"
-In turn these commands:
-- Move us into the `mygame` folder
-- Tell `git` that everything `*` means everything) in this folder should be put
- under version control.
-- _Commit_ all (`-a`) those newly added files to git and add a message `-m` so you remember
- what you did at this point. Doing a commit is like saving a snapshot of the
- current state of everything.
+
+Your game-dir is now tracked by git.
-Read on for details!
-
-### Tracking files
-
-When working on your code or fix bugs in your local branches you may end up creating new files. If
-you do you must tell Git to track them by using the add command.
-
- git add
-
-You only need to do this once per file.
-
- git status
-
-will show if you have any modified, added or otherwise changed files. Some
-files, like database files, logs and temporary PID files are usually *not*
-tracked in version control. These should either not show up or have a question
-mark in front of them.
-
-```{note}
-You will notice that some files are not covered by your git version control,
-notably your settings file (`mygame/server/conf/settings.py`) and your sqlite3
-database file `mygame/server/evennia.db3`. What is auto-ignored by is controlled
-by the hidden file `mygame/.gitignore`. Evennia creates this file as part of
-the creation of your game directory. Everything matched in this file will be
-ignored by git. If you want to, for example, include your settings file for
-collaborators to access, remove that entry in `.gitignore`.
-```
+You will notice that some files are not covered by your git version control, notably your secret-settings file (`mygame/server/conf/secret_settings.py`) and your sqlite3 database file `mygame/server/evennia.db3`. This is intentional and controlled from the file `mygame/.gitignore`.
```{warning}
You should *never* put your sqlite3 database file into git by removing its entry
in `.gitignore`. GIT is for backing up your code, not your database. That way
-lies madness and a good chance you'll confuse yourself so that after a few
-commits and reverts don't know what is in your database or not. If you want to
-backup your database, do so by simply copying the file on your hard drive to a
-backup-name.
+lies madness and a good chance you'll confuse yourself. Make one mistake or local change and after a few commits and reverts you will have lost track of what is in your database or not. If you want to backup your SQlite3 database, do so by simply copying the database file to a safe location.
```
-### Committing your Code
-
-_Committing_ your code means storing the current snapshot of your code within
-git. This creates a "save point" or "history" of your development process. You
-can later jump back and forth in your history, for example to figure out just
-when a bug was introduced or see what results the code used to produce compared
-to now. Or just wiping everything since the last commit, if you did something
-stupid.
-
-It's usually a good idea to commit your changes often. Committing is fast and
-local only - you will never commit anything online at this point. To commit your
-changes, use
-
- git commit --all
-
-Also `-a` works. This will open a text editor for you to describe your change.
-Be brief but informative in your message - you'll appreciate it later. When you
-save and close the editor, the commit will be saved. You can create the message
-directly with
-
- git commit -a -m "This fixes a bug in the combat code."
-
-
-### Changing your mind
-
-If you have non-committed changes that you realize you want to throw away, you
-'check out' the file you want - this will re-load it from the last committed
-state:
-
- git checkout
- git checkout foo/bar/dummy.py
-
-If you want to revert _all_ changes you did since last commit, do
-
- git checkout .
-
-(that is, add a single `.` at the end).
-
### Pushing your code online
-So far your code is only located on your private machine. A good idea is to back
-it up online. The easiest way to do this is to push it to your own remote
-repository on GitHub.
+So far your code is only located on your private machine. A good idea is to back it up online. The easiest way to do this is to `git push` it to your own remote repository on GitHub. So for this you need a (free) Github account.
-```{important}
-Just to avoid confusion, be aware that Github's documentation has changed to
-calling the primary branch 'main' rather than 'master'. While Evennia still
-uses 'master' branch (and this is what we refer to below), you can use either
-name for your personal primary branch - they are equivalent.
+If you don't want your code to be publicly visible, Github also allows you set up a _private_ repository, only visible to you.
+
+
+```{note}
+Github's defaults have changed to calling the primary branch 'main' rather than 'master'. While Evennia still uses 'master' branch (and this is what we refer to below), you can use either name for your personal primary branch - they are equivalent.
```
-1. Make sure you have your game directory setup under git version control as
- described in the previous section. Make sure to commit any changes you did.
-2. Create a new, empty repository on Github. Github explains how
- [here](https://help.github.com/articles/create-a-repo/) (do *not* "Initialize
- the repository with a README" or else you'll create unrelated histories).
-3. From your local game dir, do `git remote add origin ` where
- `` is the URL to your online repo. This tells your game dir that
- it should be pushing to the remote online dir.
-4. `git remote -v` to verify the online dir.
-5. `git push origin master` (or `git push origin main`) now pushes your game dir
- online so you can see it on github.com.
+Create a new, empty repository on Github. [Github explains how here](https://help.github.com/articles/create-a-repo/) . _Don't_ allow it to add a README, license etc, that will just clash with what we upload later.
-You can commit your work locally (`git commit --all -m "Make a change that
-..."`) as many times as you want. When you want to push those changes to your
-online repo, you do `git push`. You can also `git clone `
-from your online repo to somewhere else (like your production server) and
-henceforth do `git pull` to update that to the latest thing you pushed.
+```{sidebar} Origin
+We label the remote repository 'origin'. This is the git default and means we won't need to specify it explicitly later.
+```
-Note that GitHub's repos are, by default publicly visible by all. Creating a
-publicly visible online clone might not be what you want for all parts of your
-development process - you may prefer a more private venue when sharing your
-revolutionary work with your team. If that's the case you can change your
-repository to "Private" in the github settings. Then your code will only be
-visible to those you specifically grant access.
+Make sure you are in your local game dir (previously initialized as a git repo).
+ git remote add origin
-## Forking Evennia
+This tells Git that there is a remote repository at ``. See the github docs as to which URL to use. Verify that the remote works with `git remote -v`
-This helps you set up an online *fork* of the main Evennia repository so you can
-easily commit fixes and help with upstream development. You can do this step
-also if you _didn't_ put your game dir under version control like in the
-previous section - the evennia repo and your game dir repo are completely
-separate.
+Now we push to the remote (labeled 'origin' which is the default):
-### Step 1: Fork the evennia/master repository
+ git push
-> Before proceeding with the following step, make sure you have registered and
-> created an account on [GitHub.com](https://github.com/). This is necessary in order to create a fork
-of Evennia's master repository, and to push your commits to your fork either for
-yourself or for contributing to
-Evennia.
+Depending on how you set up your authentication with github, you may be asked to enter your github username and password. If you set up SSH authentication, this command will just work.
-A _fork_ is a clone of the master repository that you can make your own commits
-and changes to. At the top of [this page](https://github.com/evennia/evennia),
-click the "Fork" button, as it appears below.
-
+You use `git push` to upload your local changes so the remote repository is in sync with your local one. If you edited a file online using the Github editor (or a collaborator pushed code), you use `git pull` to sync in the other direction.
-### Step 2: Clone your online fork of Evennia
+## Contributing to Evennia
-The fork only exists online as of yet. In a terminal, change your directory to
-the folder you wish to develop in. From this directory run the following
-command:
+If you want to help contributing to Evennia you must do so by _forking_ - making your own remote copy of the Evennia repository on Github. So for this, you need a (free) Github account. Doing so is a completely separate process from [putting your game dir under version control](#putting-your-game-dir-under-version-control) (which you should also do!).
- git clone https://github.com/yourusername/evennia.git
+At the top right of [the evennia github page](https://github.com/evennia/evennia), click the "Fork" button:
-This will download your fork to your computer. It creates a new folder
-`evennia/` at your current location.
+
-### Step 3: Configure remotes
+This will create a new online fork Evennia under your github account.
-Your Evennia-fork is now separate from upstream, 'official' Evennia. You will
-want to set it up so that you can easily sync our updates and changes to your
-fork.
+The fork only exists online as of yet. In a terminal, `cd` to the folder you wish to develop in. This folder should _not_ be your game dir, nor the place you cloned Evennia into if you used the [Git installation](../Setup/Installation-Git.md).
-We do this by setting up a new _remote_. We actually already have one remote,
-that is our own github form of Evennia. This got created when you cloned the
-repo and defaults to being called `origin`.
+From this directory run the following command:
-We will now create a new remote called `upstream`.
+ git clone https://github.com/yourusername/evennia.git evennia
+
+This will download your fork to your computer. It creates a new folder `evennia/` at your current location. If you installed Evennia using the [Git installation](../Setup/Installation-Git.md), this folder will be identical in content to the `evennia` folder you cloned during that installation. The difference is that this repo is connected to your remote fork and not to the 'original' _upstream_ Evennia.
+
+When we cloned our fork, git automatically set up a 'remote repository' labeled `origin` pointing to it. So if we do `git pull` and `git push`, we'll push to our fork.
+
+We now want to add a second remote repository linked to the original Evennia repo. We will label this remote repository `upstream`:
cd evennia
git remote add upstream https://github.com/evennia/evennia.git
-This adds a remote to the main evennia repo.
-
-If you also want to access Evennia's `develop` branch (the bleeding edge
-development) do the following:
+If you also want to access Evennia's `develop` branch (the bleeding edge development) do the following:
git fetch upstream develop
git checkout develop
Use
+
git checkout master
git checkout develop
-to switch between the branches. If you want to contribute a fix, ask first which
-branch to use. Normally `master` is for bug fixes and `develop` is for new
-features, but late in the development of a new Evennia version, all changes
-often go into `develop`.
+to switch between the branches.
+To pull the latest from upstream Evennia, just checkout the branch you want and do
-## Working with your Evennia fork
+ git pull upstream
-_Branches_ are stand-alone editions of the same code. You make a commit to a
-branch. Switching to a branch will change the code on-disk. You can easily
-make a new branch off a parent branch, and then merge it back into the same
-branch later (or throw it away). This is a very common way to work on new
-features in safety and isolation.
+```{sidebar} Pushing to upstream
+You can't do `git push upstream` unless you have write-access to the upstream Evennia repository. So there is no risk of you accidentally pushing your own code into the main, public repository.
+```
-### Updating to latest Evennia
+### Fixing an Evennia bug or feature
-When Evennia's official repository updates, first make sure to commit all your
-changes to your branch and then checkout the "clean" master branch:
-
- git checkout master
- git pull upstream master
-
-Or, if you are working against Evennia's development branch:
-
- git checkout develop
- git pull upstream develop
-
-The `pull` command will fetch all the changes from the "upstream" remote and
-merge it into your local master/develop branch. It should now be a perfect copy
-of the latest Evennia changes.
-
-### Making changes
-
-As a rule of thumb you should _never_ work directly in Evennia's `master` or
-`develop` branches. Instead you make a _new_ branch off the branch you want
-and change _that_.
+This should be done in your fork of Evennia. You should _always_ do this in a _separate git branch_ based off the Evennia branch you want to improve.
git checkout master (or develop)
- check checkout -b strange_bug
+ git branch - b myfixbranch
-You now have a new branch `strange_bug` that is an exact replica of the branch you
-had checked out when you created it. Here you can now make your own
-modifications.
+Now fix whatever needs fixing. Abide by the [Evennia code style](./Evennia-Code-Style.md). You can `git commit` commit your changes along the way as normal.
- git branches
+Upstream Evennia is not standing still, so you want to make sure that your work is up-to-date with upstream changes. Make sure to first commit your `myfixbranch` changes, then
-will show you which branches are available and which one you are currently
-using. Use `git checkout ` to move between them, but remember to commit
-your changes before you do.
-
-You often want to make sure also your work-branch has the latest upstream
-changes. To do this, you need to first update your copy of the
-`master`/`develop` branch and then _merge_ those changes into your work branch.
-Make sure you have committed everything first!
-
- git commit -a -m "My latest changes ..." # on your strange_bug branch
git checkout master (or develop)
- git pull upstream develop
- git checkout strange_bug
+ git pull upstream
+ git checkout myfixbranch
git merge master (or develop)
-If everything went well, your `strange_bug` branch will now have the latest version
-of Evennia merged with whatever changes you have done.
-
-Now work away on your code and commit with reasonable commit messages
-
- git commit -a -m "Fixed the issue in ..."
- git commit -a -m "Adding unit tests. This resolves #123."
-
-Use
-
- git diff
-
-to see what you changed since last commit, and
-
- git log
-
-to see past commits (including those made by Evennia upstream, remember that
-your branch is a copy of the upstream one, including its history!)
-
-## Sharing your Evennia fixes on Github
-
-Up to this point your `strange_bug` branch only exists on your local computer. No
-one else can see it. If you want a copy of this branch to also appear in your
-online fork on GitHub, make sure to have checked out your "myfixes" branch and
-then run the following:
-
- git push -u origin strange_bug
-
-You only need to do this once, the `-u` makes this the default push-location. In
-the future, you can just push things online like this:
+Up to this point your `myfixbranch` branch only exists on your local computer. No
+one else can see it.
git push
-### Troubleshooting
+This will automatically create a matching `myfixbranch` in your forked version of Evennia and push to it. On github you will be able to see appear it in the `branches` dropdown. You can keep pushing to your remote `myfixbranch` as much as you like.
-If you hadn't setup a public key on GitHub or aren't asked for a
-username/password, you might get an error `403: Forbidden Access` at this stage.
-In that case, some users have reported that the workaround is to create a file
-`.netrc` under your home directory and add your github credentials there:
+Once you feel you have something to share, you need to [create a pull request](https://github.com/evennia/evennia/pulls) (PR):
+This is a formal request for upstream Evennia to adopt and pull your code into the main repository.
+1. Click `New pull request`
+2. Choose `compare across forks`
+3. Select your fork from dropdown list of `head repository` repos. Pick the right branch to `compare`.
+4. On the Evennia side (to the left) make sure to pick the right `base` branch: If you want to contribute a change to the `develop` branch, you must pick `develop` as the `base`.
+5. Then click `Create pull request` and fill in as much information as you can in the form.
+6. Optional: Once you saved your PR, you can go into your code (on github) and add some per-line comments; this can help reviewers by explaining complex code or decisions you made.
+
+Now you just need to wait for your code to be reviewed. Expect to get feedback and be asked to make changes, add more documentation etc. Getting as PR merged can take a few iterations.
+
+```{sidebar} Not all PRs can merge
+While most PRs get merged, Evennia can't **guarantee** that your PR code will be deemed suitable to merge into upstream Evennia. For this reason it's a good idea to check in with the community _before_ you spend a lot of time on a large piece of code (fixing bugs is always a safe bet though!)
+```
+
+
+## Troubleshooting
+
+### Getting 403: Forbidden access
+
+Some users have experienced this on `git push` to their remote repository. They are not asked for username/password (and don't have a ssh key set up).
+
+Some users have reported that the workaround is to create a file `.netrc` under your home directory and add your github credentials there:
```bash
machine github.com
login
password
-```
-
-## Making an Evennia Pull Request
-
-If you think that the fixes you did in your `strange_bug` branch should be a
-part of the regular Evennia, you should create a _Pull Request_ (PR). This is a
-call for the Evennia maintainer to pull your change into an upstream branch.
-
-> It is wise to make separate branches for every fix or series of fixes you want
-to contribute.
-
-Assuming you have followed the instructions above and have pushed your changes
-online, [create a pull request](https://github.com/evennia/evennia/pulls) and
-follow the instructions. Make sure to specifically select your `strange_bug`
-branch to be the source of the merge and use the branch you based that branch
-off (`master` or `develop`) as the target.
-
-Evennia developers will then be able to examine your request and merge it if
-it's deemed suitable. They may also come back with feedback and request you do
-some changes.
-
-Once approved and merged, your change will now be available in the upstream
-branch:
-
- git checkout master (or develope)
- git pull upstream master (or develop)
-
-Since your changes are now in upstream, your local `strange_bug` branch is now
-superfluous and should be deleted:
-
- git branch -D strange_bug
-
-You can also safely delete your online `strange_bug` branch in your fork
-(you can do this from the PR page on github).
-
-
-## GIT tips and tricks
-
-Some of the GIT commands can feel a little long and clunky if you need to do them often. Luckily you
-can create aliases for those. Here are some useful commands to run:
-
-
-```
-# git st
-# - view brief status info
-git config --global alias.st 'status -s'
-```
-
-Above, you only need to ever enter the `git config ...` command once - you have then added the new
-alias. Afterwards, just do `git st` to get status info. All the examples below follow the same
-template.
-
-```
-# git cl
-# - clone a repository
-git config --global alias.cl clone
-```
-
-```
-# git cma "commit message"
-# - commit all changes without opening editor for message
-git config --global alias.cma 'commit -a -m'
-```
-
-```
-# git ca
-# - amend text to your latest commit message
-git config --global alias.ca 'commit --amend'
-```
-
-```
-# git fl
-# - file log; shows diffs of files in latest commits
-git config --global alias.fl 'log -u'
-```
-
-```
-# git co [branchname]
-# - checkout
-git config --global alias.co checkout
-```
-
-```
-# git br
-# - create branch
-git config --global alias.br branch
-```
-
-```
-# git ls
-# - view log tree
-git config --global alias.ls 'log --pretty=format:"%C(green)%h\ %C(yellow)[%ad]%Cred%d\
-%Creset%s%Cblue\ [%cn]" --decorate --date=relative --graph'
-```
-
-```
-# git diff
-# - show current uncommitted changes
-git config --global alias.diff 'diff --word-diff'
-```
-
-```
-# git grep
-# - search (grep) codebase for a search criterion
-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
diff --git a/docs/1.0-dev/_sources/Components/Connection-Screen.md.txt b/docs/1.0-dev/_sources/Components/Connection-Screen.md.txt
index b1056b6a0a..a94b86aa6f 100644
--- a/docs/1.0-dev/_sources/Components/Connection-Screen.md.txt
+++ b/docs/1.0-dev/_sources/Components/Connection-Screen.md.txt
@@ -20,7 +20,7 @@ Effective, but not very exciting. You will most likely want to change this to be
your game. This is simple:
1. Edit `mygame/server/conf/connection_screens.py`.
-1. [Reload](../Setup/Start-Stop-Reload.md) Evennia.
+1. [Reload](../Setup/Running-Evennia.md) Evennia.
Evennia will look into this module and locate all *globally defined strings* in it. These strings
are used as the text in your connection screen and are shown to the user at startup. If more than
diff --git a/docs/1.0-dev/_sources/Components/Portal-And-Server.md.txt b/docs/1.0-dev/_sources/Components/Portal-And-Server.md.txt
index afb9ef40ef..1cded50e3e 100644
--- a/docs/1.0-dev/_sources/Components/Portal-And-Server.md.txt
+++ b/docs/1.0-dev/_sources/Components/Portal-And-Server.md.txt
@@ -2,7 +2,7 @@
Evennia consists of two processes, known as *Portal* and *Server*. They can be controlled from
-inside the game or from the command line as described [here](../Setup/Start-Stop-Reload.md).
+inside the game or from the command line as described [here](../Setup/Running-Evennia.md).
If you are new to the concept, the main purpose of separating the two is to have accounts connect to the Portal but keep the MUD running on the Server. This way one can restart/reload the game (the Server part) without Accounts getting disconnected.
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 eb26769e30..ddb35adac6 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
@@ -9,71 +9,4 @@ Evennia is *not* a MUX system though. It works very differently in many ways. Fo
deliberately lacks an online softcode language (a policy explained on our [softcode policy
page](./Soft-Code.md)). Evennia also does not shy from using its own syntax when deemed appropriate: the
MUX syntax has grown organically over a long time and is, frankly, rather arcane in places. All in
-all the default command syntax should at most be referred to as "MUX-like" or "MUX-inspired".
-
-## Documentation policy
-
-All the commands in the default command sets should have their doc-strings formatted on a similar
-form:
-
-```python
- """
- Short header
-
- Usage:
- key[/switches, if any] [optional] choice1||choice2||choice3
-
- Switches:
- switch1 - description
- switch2 - description
-
- Examples:
- usage example and output
-
- Longer documentation detailing the command.
-
- """
-```
-
-- Two spaces are used for *indentation* in all default commands.
-- Square brackets `[ ]` surround *optional, skippable arguments*.
-- Angled brackets `< >` surround a _description_ of what to write rather than the exact syntax.
-- *Explicit choices are separated by `|`. To avoid this being parsed as a color code, use `||` (this
-will come out as a single `|`) or put spaces around the character ("` | `") if there's plenty of
-room.
-- The `Switches` and `Examples` blocks are optional based on the Command.
-
-Here is the `nick` command as an example:
-
-```python
- """
- Define a personal alias/nick
-
- Usage:
- nick[/switches] = []
- alias ''
-
- Switches:
- object - alias an object
- account - alias an account
- clearall - clear all your aliases
- list - show all defined aliases (also "nicks" works)
-
- Examples:
- nick hi = say Hello, I'm Sarah!
- nick/object tom = the tall man
-
- A 'nick' is a personal shortcut you create for your own use [...]
-
- """
-```
-
-For commands that *require arguments*, the policy is for it to return a `Usage:` string if the
-command is entered without any arguments. So for such commands, the Command body should contain
-something to the effect of
-
-```python
- if not self.args:
- self.caller.msg("Usage: nick[/switches] = []")
- return
-```
+all the default command syntax should at most be referred to as "MUX-like" or "MUX-inspired".
\ No newline at end of file
diff --git a/docs/1.0-dev/_sources/Contribs/Contribs-Guidelines.md.txt b/docs/1.0-dev/_sources/Contribs/Contribs-Guidelines.md.txt
new file mode 100644
index 0000000000..8a5d2501d4
--- /dev/null
+++ b/docs/1.0-dev/_sources/Contribs/Contribs-Guidelines.md.txt
@@ -0,0 +1,84 @@
+# Guidelines for Evennia contribs
+
+Evennia has a [contrib](./Contribs-Overview.md) directory which contains optional, community-shared code organized by category. Anyone is welcome to contribute.
+
+## What is suitable for a contrib?
+
+- In general, you can contribute anything that you think may be useful to another developer. Unlike the 'core' Evennia, contribs can also be highly game-type-specific.
+- Very small or incomplete snippets of code (e.g. meant to paste into some other code) are better shared as a post in the [Community Contribs & Snippets](https://github.com/evennia/evennia/discussions/2488) discussion forum category.
+- If your code is intended *primarily* as an example or to show a concept/principle rather than a working system, consider if it may be better to instead [contribute to the documentation](../Contributing-Docs.md) by writing a new tutorial or howto.
+- If possible, try to make your contribution as genre-agnostic as possible and assume
+ your code will be applied to a very different game than you had in mind when creating it.
+- The contribution should preferably work in isolation from other contribs (only make use of core Evennia) so it can easily be dropped into use. If it does depend on other contribs or third-party modules, these must be clearly documented and part of the installation instructions.
+- If you are unsure about if your contrib idea is suitable or sound, *ask in discussions or chat before putting any work into it*. We are, for example, unlikely to accept contribs that require large modifications of the game directory structure.
+
+## Layout of a contrib
+
+- The contrib must be contained only within a single folder under one of the contrib categories below. Ask if you are unsure which category fits best for your contrib.
+
+| | |
+| --- | --- |
+| `base_systems/` | _Systems that are not necessarily tied to a specific in-game mechanic but which are useful for the game as a whole. Examples include login systems, new command syntaxes, and build helpers._ |
+| `full_systems/` | _‘Complete’ game engines that can be used directly to start creating content without no further additions (unless you want to)._ |
+| `game_systems/` | _In-game gameplay systems like crafting, mail, combat and more. Each system is meant to be adopted piecemeal and adopted for your game. This does not include roleplaying-specific systems, those are found in the `rpg` category._ |
+| `grid/` | _Systems related to the game world’s topology and structure. Contribs related to rooms, exits and map building._ |
+| `rpg/` | _Systems specifically related to roleplaying and rule implementation like character traits, dice rolling and emoting._ |
+| `tutorials/` | _Helper resources specifically meant to teach a development concept or to exemplify an Evennia system. Any extra resources tied to documentation tutorials are found here. Also the home of the Tutorial-World and Evadventure demo codes._ |
+| `tools/` | _Miscellaneous tools for manipulating text, security auditing, and more._|
+
+
+- The folder (package) should be on the following form:
+
+ ```
+ evennia/
+ contrib/
+ category/ # rpg/, game_systems/ etc
+ mycontribname/
+ __init__.py
+ README.md
+ module1.py
+ module2.py
+ ...
+ tests.py
+ ```
+
+ It's often a good idea to import useful resources in `__init__.py` to make it easier to import them.
+- Your code should abide by the [Evennia Style Guide](../Coding/Evennia-Code-Style.md). Write it to be easy to read.
+- Your contribution _must_ be covered by [unit tests](../Coding/Unit-Testing.md). Put your tests in a module `tests.py` under your contrib folder (as seen above) - Evennia will find them automatically.
+- The `README.md` file will be parsed and converted into a document linked from [the contrib overview page](./Contribs-Overview.md). It needs to be on the following form:
+
+ ```markdown
+ # MyContribName
+
+ Contribution by ,
+
+ A paragraph (can be multi-line)
+ summarizing the contrib (required)
+
+ Optional other text
+
+ ## Installation
+
+ Detailed installation instructions for using the contrib (required)
+
+ ## Usage
+
+ ## Examples
+
+ etc.
+
+ ```
+
+> The credit and first paragraph-summary will be automatically included on the Contrib overview page index for each contribution, so it needs to be just on this form.
+
+
+## Submitting a contrib
+
+```{sidebar} Not all PRs can be accepted
+While most PRs get merged, this is not guaranteed: Merging a contrib means the Evennia project takes on the responsibility of maintaining and supporting the new code. For various reasons this may be deemed unfeasible.
+
+If your code were to *not* be accepted for some reason, we can still link it from our links page; it can also be posted in our discussion forum.
+```
+- A contrib must always be presented [as a pull request](../Coding/Version-Control.md#contributing-to-evennia) (PR).
+- PRs are reviewed so don't be surprised (or disheartened) if you are asked to modify or change your code before it can be merged. Your code can end up going through several iterations before it is accepted.
+- To make the licensing situation clear we assume all contributions are released with the same [license as Evennia](../Licensing.md). If this is not possible for some reason, talk to us and we'll handle it on a case-by-case basis.
diff --git a/docs/1.0-dev/_sources/Contribs/Contribs-Overview.md.txt b/docs/1.0-dev/_sources/Contribs/Contribs-Overview.md.txt
index 5c30caea58..1ac15ddbaa 100644
--- a/docs/1.0-dev/_sources/Contribs/Contribs-Overview.md.txt
+++ b/docs/1.0-dev/_sources/Contribs/Contribs-Overview.md.txt
@@ -18,7 +18,7 @@ Each contrib contains installation instructions for how to integrate it
with your other code. If you want to tweak the code of a contrib, just
copy its entire folder to your game directory and modify/use it from there.
-If you want to contribute yourself, see [here](../Contributing.md)!
+If you want to add a contrib, see [the contrib guidelines](./Contribs-Guidelines.md)!
[forum]: https://github.com/evennia/evennia/discussions/categories/community-contribs-snippets
@@ -48,6 +48,11 @@ _Systems that are not necessarily tied to a specific
in-game mechanic but which are useful for the game as a whole. Examples include
login systems, new command syntaxes, and build helpers._
+
+```{toctree}
+:hidden:
+Contribs-Guidelines.md
+```
```{toctree}
:maxdepth: 1
@@ -204,6 +209,11 @@ library under the hood.
_'Complete' game engines that can be used directly to start creating content
without no further additions (unless you want to)._
+
+```{toctree}
+:hidden:
+Contribs-Guidelines.md
+```
```{toctree}
:maxdepth: 1
@@ -235,6 +245,11 @@ Each system is meant to be adopted piecemeal and adopted for your game.
This does not include roleplaying-specific systems, those are found in
the `rpg` category._
+
+```{toctree}
+:hidden:
+Contribs-Guidelines.md
+```
```{toctree}
:maxdepth: 1
@@ -382,6 +397,11 @@ the participants until the fight ends.
_Systems related to the game world's topology and structure. Contribs related
to rooms, exits and map building._
+
+```{toctree}
+:hidden:
+Contribs-Guidelines.md
+```
```{toctree}
:maxdepth: 1
@@ -492,6 +512,11 @@ current location (useful for displaying the grid as an in-game, updating map).
_Systems specifically related to roleplaying
and rule implementation like character traits, dice rolling and emoting._
+
+```{toctree}
+:hidden:
+Contribs-Guidelines.md
+```
```{toctree}
:maxdepth: 1
@@ -593,6 +618,11 @@ to exemplify an Evennia system. Any extra resources tied to documentation
tutorials are found here. Also the home of the Tutorial-World and Evadventure
demo codes._
+
+```{toctree}
+:hidden:
+Contribs-Guidelines.md
+```
```{toctree}
:maxdepth: 1
@@ -699,6 +729,11 @@ is a great way to start learning the system.
_Miscellaneous, tools for manipulating text, security auditing, and more._
+
+```{toctree}
+:hidden:
+Contribs-Guidelines.md
+```
```{toctree}
:maxdepth: 1
diff --git a/docs/1.0-dev/_sources/Contributing.md.txt b/docs/1.0-dev/_sources/Contributing.md.txt
index 61cc88a5ec..63d9c2a6a9 100644
--- a/docs/1.0-dev/_sources/Contributing.md.txt
+++ b/docs/1.0-dev/_sources/Contributing.md.txt
@@ -1,173 +1,40 @@
# How To Contribute And Get Help
-If you cannot find what you are looking for in the documentation, here's what to do:
+## Getting Help
-- 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 forum][forum].
-- If you want more direct discussions with developers and other users, drop
- into our very friendly [Discord channel][chat].
-- If you think the documentation is not clear enough, create a [documentation issue][issues].
-- If you have trouble with a missing feature or a problem you think is a bug,
- [request, or report it][issues].
+If you cannot find what you are looking for in the documentation, here's where to go next:
-## Community and Spreading the word
+- [The Discussions forums][forum] are great for getting help, starting longer-form discussions, showing off your work or get some input on what you are working on. This is also the place to follow Evennia development.
+- [The Discord server][chat] has a very helpful `#getting-help` channel for both big and small Evennia problems. It allows for more direct discussion. You can also track both the evennia code changes and the discussion forum from discord.
-Being active and helpful in the [discssion forums][forum] or [chat][chat] is already a big help.
+## Giving Help
-Consider writing about Evennia on your blog or in your favorite (relevant)
-forum. Write a review somewhere (good or bad, we like feedback either way). Rate
-it on listings. Talk about it to your friends ... that kind of thing.
+In general, being active and helpful in the [discssion forums][forum] or [discord chat][chat] is already a big help!
-## Help with Documentation
+If you want to spread the word, consider writing about Evennia on your blog or in your favorite (relevant) forum. Write a review somewhere (good or bad, we like feedback either way). Rate it on listings. Talk about it to your friends ... that kind of thing.
-Evennia depends heavily on good documentation and we are always looking for
-extra eyes and hands to improve it. Even small things such as fixing typos are a
-great help!
+### Help with Documentation
-- Easiest is to just [report documentation issues][issues] as you find them. If
- we don't know about them, we can't fix them!
-- If you want to help editing the docs directly, [check here](./Contributing-Docs.md) on how to do it.
-- If you have knowledge to share, how about writing a new [Tutorial](Howtos/Howtos-Overview.md)?
+Evennia is highly dependent on good-quality documentation!
-## Helping with code
+- [Reporting a Documentation issue][issues] is the easiest way to help out. The more eyes we get on things, the better - if we don't know about the problems, we can't fix them! Even reporting typos is a great help.
+- [Contributing directly to the docs](./Contributing-Docs.md) is also possible; you just need a text editor. You can fix issues or even propose a new tutorial!
-If you find bugs, or have a feature-request, [make an issue][issues] for it. If
-it's not in an issue, the issue will most likely be forgotten.
+### Helping with code
-Even if you don't feel confident with tackling a bug or feature, just
-correcting typos, adjusting formatting or simply *using* the thing and reporting
-when stuff doesn't make sense helps us a lot.
+Even if you don't feel confident with tackling a bug or feature, just correcting typos, adjusting formatting or simply *using* the thing and reporting when stuff doesn't make sense helps us a lot!
-- The code itself should follow Evennia's [Code style guidelines][codestyle] both
- for code and documentation. You should write code for that others can read an understand.
-- Before merging, your code will be reviewed. Merging of your code into Evennia
- is not guaranteed. Be ready to receive feedback and to be asked to make
- corrections or fix bugs or any documentation issues and possibly tests (this
- is normal and nothing to worry about).
+- [Reporting a code issue or bug][issues] is the easiest way to help out. Don't assume we are aware of a problem - if it's not written down in an issue, the problem will most likely be forgotten. Do this even if you plan to make a _Pull Request_ and fix the issue yourself.
+- [Make a feature request][issues] if you want to see a new Evennia feature. You can also bring it up with the community first so you are sure it's something that would be interesting to be included with Evennia core.
+- [Make a Pull Request](Coding/Version-Control.md#contributing-to-evennia) (PR) to fix bugs or new features. Make sure to follow the [Evennia Code-Style guide](Coding/Evennia-Code-Style.md).
+- [The Guide for making an Evennia contrib](Contribs/Contribs-Guidelines.md) outlines how you do to make your own Evennia [contrib](Contribs/Contribs-Overview.md) to distribute with Evennia.
-### Using a Forked reposity
+### Helping with Donations
-The most elegant way to contribute code to Evennia is to use GitHub to create a
-*fork* of the Evennia repository and make your changes to that. Refer to the
-[Forking Evennia](Coding/Version-Control.md#forking-evennia) version control instructions for detailed instructions.
+Evennia is a free and open-source project. Any monetary donations you want to offer are _completely voluntary_. While highly appreciated, we don't expect you to donate and don't hide any secret features behind a donation-paywall. Just see it as a way of showing appreciation by dropping a few coins in the cup.
-Once you have a fork set up, you can not only work on your own game in a
-separate branch, you can also commit your fixes to Evennia itself.
-
-- Make separate branches for all Evennia additions you do - don't edit your
- local `master` or `develop` branches directly. It will make your life a lot easier.
-- If you have a change that you think is suitable for the main Evennia
- repository, issue a [Pull Request][pullrequest]. This will let Evennia devs know you have stuff to share.
-- Bug fixes should generally be done against the `master` branch of Evennia,
- while new features/contribs should go into the `develop` branch. If you are
- unsure, just pick one and we'll figure it out.
-
-### Contributing with Patches
-
-To help with Evennia development it's strongly recommended to do so using a
-forked repository as described 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](https://pastebin.com/) and just supply the link.
-
-### Making an Evennia contrib
-
-Evennia has a [contrib](Contribs/Contribs-Overview.md) directory which contains
-user-shared code organized by category. You can contribute anything that you
-think may be useful to another dev, also highly game-specific code. A contrib
-must always be added via a forked repository.
-
-#### Guidelines for making a contrib
-
-- If you are unsure about if your contrib idea is suitable or sound, *ask in
- discussions or chat before putting any work into it*. We are, for example,
- unlikely to accept contribs that require large modifications of the game
- directory structure.
-- If your code is intended *primarily* as an example or to show a
- concept/principle rather than a working system, you _can_ add to the
- `contribs/tutorials/` subfolder, but consider if it may be better to instead
- write a new tutorial doc page.
-- The contribution should preferably work in isolation from other contribs (only
- make use of core Evennia) so it can easily be dropped into use. If it does
- depend on other contribs or third-party modules, these must be clearly
- documented and part of the installation instructions.
-- The contrib must be contained within a separate folder under one of the
- contrib categories (`game_systems`, `rpg`, `utils` etc). Ask if you are
- unsure which category to put your contrib under.
-- The folder (package) should be on the following form:
-
- ```
- mycontribname/
- __init__.py
- README.md
- module1.py
- module2.py
- ...
- tests.py
- ```
-
- It's often a good idea to import useful resources in `__init__.py` to make
- it easier to access them (this may vary though).
-
- The `README.md` will be parsed and converted into a document linked from
- [the contrib overview page](Contribs/Contribs-Overview.md). It should follow
- the following structure:
-
- ```markdown
- # MyContribName
-
- Contribution by ,
-
- A paragraph (can be multi-line)
- summarizing the contrib (required)
-
- Optional other text
-
- ## Installation
-
- Detailed installation instructions for using the contrib (required)
-
- ## Usage
-
- ## Examples
-
- etc.
-
- ```
-
- The credit and first paragraph-summary will be used on the index page. Every
- contrib's readme must contain an installation instruction. See existing contribs
- for help.
-
-- If possible, try to make contribution as genre-agnostic as possible and assume
- your code will be applied to a very different game than you had in mind when creating it.
-- To make the licensing situation clear we assume all contributions are released
- with the same [license as Evennia](./Licensing.md). If this is not possible
-for some reason, talk to us and we'll handle it on a case-by-case basis.
-- Your contribution must be covered by [unit tests](Coding/Unit-Testing.md). Put
- your tests in a module `tests.py` under your contrib folder - Evennia will
- find them automatically.
-- In addition to the normal review process, it's worth noting that merging a
- contrib means the Evennia project takes on the responsibility of maintaining
- and supporting it. For various reasons this may be deemed beyond our manpower.
-- If your code were to *not* be accepted for some reason, you can ask us to
- instead link to your repo from our link page so people can find your code that
- way.
-
-## Donations
-
-Evennia is a free, open-source project and any monetary donations you want to
-offer are _completely voluntary_. See it as a way of showing appreciation by
-dropping a few coins in the cup.
-
-- You can support Evennia as an [Evennia patreon][patron]. A patreon donates a
- (usually small) sum every month to show continued support.
-- If a monthly donation is not your thing, you can also show your appreciation
- by doing a [one-time donation][donate] (this is a PayPal link but you don't need
- PayPal yourself to use it).
+- [Become an Evennia patron][patron] which donates a (usually small) sum every month to show continued support.
+- [Make a one-time donation][paypal] if a monthly donation is not your thing. This is a PayPal link but you don't need PayPal yourself to use it.
[patron]: https://www.patreon.com/griatch
@@ -181,7 +48,7 @@ dropping a few coins in the cup.
[forum]:https://github.com/evennia/evennia/discussions
[issues]:https://github.com/evennia/evennia/issues/choose
[chat]: https://discord.com/invite/AJJpcRUhtF
-[paypal]: https://www.paypal.com/se/cgi-bin/webscr?cmd=_flow&SESSION=Z-VlOvfGjYq2qvCDOUGpb6C8Due7skT0qOklQEy5EbaD1f0eyEQaYlmCc8O&dispatch=5885d80a13c0db1f8e263663d3faee8d64ad11bbf4d2a5a1a0d303a50933f9b2
+[paypal]: https://www.paypal.com/paypalme/GriatchEvennia
[patreon]: https://www.patreon.com/griatch
[issues-bounties]:https://github.com/evennia/evennia/labels/bounty
[bountysource]: https://www.bountysource.com/teams/evennia
diff --git a/docs/1.0-dev/_sources/Glossary.md.txt b/docs/1.0-dev/_sources/Glossary.md.txt
index ad08a0e45f..769635e3cb 100644
--- a/docs/1.0-dev/_sources/Glossary.md.txt
+++ b/docs/1.0-dev/_sources/Glossary.md.txt
@@ -185,7 +185,7 @@ latest changes, just `cd` into your game dir and run
evennia migrate
That should be it (see [virtualenv](./Glossary.md#virtualenv) if you get a warning that the `evennia`
-command is not available). See also [Updating your game](Coding/Updating-Your-Game.md) for more details.
+command is not available). See also [Updating your game](Setup/Updating-Evennia.md) for more details.
> Technically, migrations are shipped as little Python snippets of code that explains which database
actions must be taken to upgrade from one version of the schema to the next. When you run the
diff --git a/docs/1.0-dev/_sources/Setup/Choosing-a-Database.md.txt b/docs/1.0-dev/_sources/Setup/Choosing-a-Database.md.txt
index b80cb45cc0..f79eeefe9d 100644
--- a/docs/1.0-dev/_sources/Setup/Choosing-a-Database.md.txt
+++ b/docs/1.0-dev/_sources/Setup/Choosing-a-Database.md.txt
@@ -10,13 +10,11 @@ This page gives an overview of the supported SQL databases as well as instructio
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](https://docs.djangoproject.com/en/dev/ref/databases/#ref-databases) page.
-## SQLite3
+## SQLite3 (default)
-[SQLite3](https://sqlite.org/) is a light weight single-file database. It is our default database
-and Evennia will set this up for you automatically if you give no other options. SQLite stores the
-database in a single file (`mygame/server/evennia.db3`). This means it's very easy to reset this
-database - just delete (or move) that `evennia.db3` file and run `evennia migrate` again! No server process is needed and the administrative overhead and resource consumption is tiny. It is also very fast since it's run in-memory. For the vast majority of Evennia installs it will probably be all
-that's ever needed.
+[SQLite3](https://sqlite.org/) is a light weight single-file database. It is our default database and Evennia will set this up for you automatically if you give no other options.
+
+SQLite stores the database in a single file (`mygame/server/evennia.db3`). This means it's very easy to reset this database - just delete (or move) that `evennia.db3` file and run `evennia migrate` again! No server process is needed and the administrative overhead and resource consumption is tiny. It is also very fast since it's run in-memory. For the vast majority of Evennia installs it will probably be all that's ever needed.
SQLite will generally be much faster than MySQL/PostgreSQL but its performance comes with two
drawbacks:
@@ -44,13 +42,9 @@ To inspect the default Evennia database (once it's been created), go to your gam
This will bring you into the sqlite command line. Use `.help` for instructions and `.quit` to exit.
See [here](https://gist.github.com/vincent178/10889334) for a cheat-sheet of commands.
-### Resetting SQLite3 database
+### Resetting SQLite3
-To reset your database and start from scratch, simply stop Evennia and delete the `mygame/server/evennia.db3`. Then run `evennia migrate` again.
-
-```{sidebar} Hint
-Make a copy of the `evennia.db3` file once you created your superuser. When you want to reset, you can just stop evennia and copy that file back over `evennia.db3`. That way you don't have to run migrations and create the superuser every time!
-```
+If you want to reset your SQLite3 database, see [here](./Updating-Evennia.md#sqlite3-default).
## PostgreSQL
@@ -60,14 +54,10 @@ game has an very large database and/or extensive web presence through a separate
### Install and initial setup of PostgreSQL
-First, install the posgresql server. Version `9.6` is tested with Evennia. Packages are readily
-available for all distributions. You need to also get the `psql` client (this is called `postgresql-
-client` on debian-derived systems). Windows/Mac users can [find what they need on the postgresql
-download page](https://www.postgresql.org/download/). You should be setting up a password for your
-database-superuser (always called `postgres`) when you install.
+First, install the posgresql server. Version `9.6` is tested with Evennia. Packages are readily available for all distributions. You need to also get the `psql` client (this is called `postgresql- client` on debian-derived systems). Windows/Mac users can [find what they need on the postgresql download page](https://www.postgresql.org/download/). You should be setting up a password for your database-superuser (always called `postgres`) when you install.
-For interaction with Evennia you need to also install `psycopg2` to your Evennia install (`pip
-install psycopg2-binary` in your virtualenv). This acts as the python bridge to the database server.
+For interaction with Evennia you need to also install `psycopg2` to your Evennia install
+(`pip install psycopg2-binary` in your virtualenv). This acts as the python bridge to the database server.
Next, start the postgres client:
@@ -104,12 +94,7 @@ GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;
```
[Here](https://gist.github.com/Kartones/dd3ff5ec5ea238d4c546) is a cheat-sheet for psql commands.
-We create a database user 'evennia' and a new database named `evennia` (you can call them whatever
-you want though). We then grant the 'evennia' user full privileges to the new database so it can
-read/write etc to it.
-If you in the future wanted to completely wipe the database, an easy way to do is to log in as the
-`postgres` superuser again, then do `DROP DATABASE evennia;`, then `CREATE` and `GRANT` steps above
-again to recreate the database and grant privileges.
+We create a database user 'evennia' and a new database named `evennia` (you can call them whatever you want though). We then grant the 'evennia' user full privileges to the new database so it can read/write etc to it. If you in the future wanted to completely wipe the database, an easy way to do is to log in as the `postgres` superuser again, then do `DROP DATABASE evennia;`, then `CREATE` and `GRANT` steps above again to recreate the database and grant privileges.
### Evennia PostgreSQL configuration
@@ -134,8 +119,7 @@ If you used some other name for the database and user, enter those instead. Run
evennia migrate
-to populate your database. Should you ever want to inspect the database directly you can from now on
-also use
+to populate your database. Should you ever want to inspect the database directly you can from now on also use
evennia dbshell
@@ -144,7 +128,11 @@ as a shortcut to get into the postgres command line for the right database and u
With the database setup you should now be able to start start Evennia normally with your new
database.
-### Advanced Postgresql Usage (Remote Server)
+### Resetting PostgreSQL
+
+If you want to reset your PostgreSQL datbase, see [here](./Updating-Evennia.md#postgresql)
+
+### Advanced PostgreSQL Usage (Remote Server)
```{warning}
@@ -153,18 +141,9 @@ database.
an Internet-accessible server.
```
-The above discussion is for hosting a local server. In certain configurations
-it may make sense host the database on a server remote to the one Evennia is
-running on. One example case is where code development may be done on multiple
-machines by multiple users. In this configuration, a local data base (such as
-SQLite3) is not feasible since all the machines and developers do not have
-access to the file.
+The above discussion is for hosting a local server. In certain configurations it may make sense host the database on a server remote to the one Evennia is running on. One example case is where code development may be done on multiple machines by multiple users. In this configuration, a local data base (such as SQLite3) is not feasible since all the machines and developers do not have access to the file.
-Choose a remote machine to host the database and PostgreSQl server. Follow the
-instructions [above](#install-and-initial-setup-of-postgresql) on that server to set up the database.
-Depending on distribution, PostgreSQL will only accept connections on the local
-machine (localhost). In order to enable remote access, two files need to be
-changed.
+Choose a remote machine to host the database and PostgreSQl server. Follow the instructions [above](#install-and-initial-setup-of-postgresql) on that server to set up the database. Depending on distribution, PostgreSQL will only accept connections on the local machine (localhost). In order to enable remote access, two files need to be changed.
First, determine which cluster is running your database. Use `pg_lscluster`:
@@ -174,10 +153,7 @@ Ver Cluster Port Status Owner Data directory Log file
12 main 5432 online postgres /var/lib/postgresql/12/main /var/log/postgresql/postgresql-12-main.log
```
-Next, edit the database's `postgresql.conf`. This is found on Ubuntu systems
-in `/etc/postgresql//`, where `` and `` are
-what are reported in the `pg_lscluster` output. So, for the above example,
-the file is `/etc/postgresql/12/main/postgresql.conf`.
+Next, edit the database's `postgresql.conf`. This is found on Ubuntu systems in `/etc/postgresql//`, where `` and `` are what are reported in the `pg_lscluster` output. So, for the above example, the file is `/etc/postgresql/12/main/postgresql.conf`.
In this file, look for the line with `listen_addresses`. For example:
@@ -205,8 +181,7 @@ on any interface.
for more details.)
```
-Finally, modify the `pg_hba.conf` (in the same directory as `postgresql.conf`).
-Look for a line with:
+Finally, modify the `pg_hba.conf` (in the same directory as `postgresql.conf`). Look for a line with:
```
# IPv4 local connections:
host all all 127.0.0.1/32 md5
@@ -226,31 +201,19 @@ Now, restart your cluster:
$ pg_ctlcluster 12 main restart
```
-Finally, update the database settings in your Evennia secret_settings.py (as
-described [above](#evennia-postgresql-configuration) modifying `SERVER` and
-`PORT` to match your server.
+Finally, update the database settings in your Evennia secret_settings.py (as described [above](#evennia-postgresql-configuration) modifying `SERVER` and `PORT` to match your server.
-Now your Evennia installation should be able to connect and talk with a remote
-server.
+Now your Evennia installation should be able to connect and talk with a remote server.
## MySQL / MariaDB
-[MySQL](https://www.mysql.com/) is a commonly used proprietary database system, on par with
-PostgreSQL. There is an open-source alternative called [MariaDB](https://mariadb.org/) that mimics
-all functionality and command syntax of the former. So this section covers both.
+[MySQL](https://www.mysql.com/) is a commonly used proprietary database system, on par with PostgreSQL. There is an open-source alternative called [MariaDB](https://mariadb.org/) that mimics all functionality and command syntax of the former. So this section covers both.
### Installing and initial setup of MySQL/MariaDB
-First, install and setup MariaDB or MySQL for your specific server. Linux users should look for the
-`mysql-server` or `mariadb-server` packages for their respective distributions. Windows/Mac users
-will find what they need from the [MySQL downloads](https://www.mysql.com/downloads/) or [MariaDB
-downloads](https://mariadb.org/download/) pages. You also need the respective database clients
-(`mysql`, `mariadb-client`), so you can setup the database itself. When you install the server you
-should usually be asked to set up the database root user and password.
+ First, install and setup MariaDB or MySQL for your specific server. Linux users should look for the `mysql-server` or `mariadb-server` packages for their respective distributions. Windows/Mac users will find what they need from the [MySQL downloads](https://www.mysql.com/downloads/) or [MariaDB downloads](https://mariadb.org/download/) pages. You also need the respective database clients (`mysql`, `mariadb-client`), so you can setup the database itself. When you install the server you should usually be asked to set up the database root user and password.
-You will finally also need a Python interface to allow Evennia to talk to the database. Django
-recommends the `mysqlclient` one. Install this into the evennia virtualenv with `pip install
-mysqlclient`.
+You will finally also need a Python interface to allow Evennia to talk to the database. Django recommends the `mysqlclient` one. Install this into the evennia virtualenv with `pip install mysqlclient`.
Start the database client (this is named the same for both mysql and mariadb):
@@ -274,27 +237,15 @@ FLUSH PRIVILEGES;
```
[Here](https://gist.github.com/hofmannsven/9164408) is a mysql command cheat sheet.
-Above we created a new local user and database (we called both 'evennia' here, you can name them
-what you prefer). We set the character set to `utf8` to avoid an issue with prefix character length
-that can pop up on some installs otherwise. Next we grant the 'evennia' user all privileges on the
-`evennia` database and make sure the privileges are applied. Exiting the client brings us back to
-the normal terminal/console.
+Above we created a new local user and database (we called both 'evennia' here, you can name them what you prefer). We set the character set to `utf8` to avoid an issue with prefix character length that can pop up on some installs otherwise. Next we grant the 'evennia' user all privileges on the `evennia` database and make sure the privileges are applied. Exiting the client brings us back to the normal terminal/console.
-> Note: If you are not using MySQL for anything else you might consider granting the 'evennia' user
-full privileges with `GRANT ALL PRIVILEGES ON *.* TO 'evennia'@'localhost';`. If you do, it means
-you can use `evennia dbshell` later to connect to mysql, drop your database and re-create it as a
-way of easy reset. Without this extra privilege you will be able to drop the database but not re-
-create it without first switching to the database-root user.
+> If you are not using MySQL for anything else you might consider granting the 'evennia' user full privileges with `GRANT ALL PRIVILEGES ON *.* TO 'evennia'@'localhost';`. If you do, it means you can use `evennia dbshell` later to connect to mysql, drop your database and re-create it as a way of easy reset. Without this extra privilege you will be able to drop the database but not re create it without first switching to the database-root user.
-## Add MySQL configuration to Evennia
+### Add MySQL/MariaDB configuration to Evennia
-To tell Evennia to use your new database you need to edit `mygame/server/conf/settings.py` (or
-`secret_settings.py` if you don't want your db info passed around on git repositories).
+To tell Evennia to use your new database you need to edit `mygame/server/conf/settings.py` (or `secret_settings.py` if you don't want your db info passed around on git repositories).
-> Note: The Django documentation suggests using an external `db.cnf` or other external conf-
-formatted file. Evennia users have however found that this leads to problems (see e.g. [issue
-#1184](https://git.io/vQdiN)). To avoid trouble we recommend you simply put the configuration in
-your settings as below.
+> The Django documentation suggests using an external `db.cnf` or other external conf- formatted file. Evennia users have however found that this leads to problems (see e.g. [issue #1184](https://git.io/vQdiN)). To avoid trouble we recommend you simply put the configuration in your settings as below.
```python
#
@@ -311,22 +262,24 @@ your settings as below.
}
}
```
+The `mysql` backend is used by `MariaDB` as well.
+
Change this to fit your database setup. Next, run:
evennia migrate
-
-to populate your database. Should you ever want to inspect the database directly you can from now on
-also use
-
+
+to populate your database. Should you ever want to inspect the database directly you can from now on also use
+
evennia dbshell
as a shortcut to get into the postgres command line for the right database and user.
-With the database setup you should now be able to start start Evennia normally with your new
-database.
+With the database setup you should now be able to start start Evennia normally with your new database.
-## Others
+### Resetting MySQL/MariaDB
-No testing has been performed with Oracle, but it is also supported through Django. There are
-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.
+If you want to reset your MySQL/MariaDB datbase, see [here](./Updating-Evennia.md#mysql-mariadb).
+
+## Other databases
+
+No testing has been performed with Oracle, but it is also supported through Django. There are 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 contributing to this page with instructions.
\ No newline at end of file
diff --git a/docs/1.0-dev/_sources/Setup/Installation.md.txt b/docs/1.0-dev/_sources/Setup/Installation.md.txt
index 74a0b7152f..43d96315b5 100644
--- a/docs/1.0-dev/_sources/Setup/Installation.md.txt
+++ b/docs/1.0-dev/_sources/Setup/Installation.md.txt
@@ -4,12 +4,15 @@
If you are converting an existing game from a previous Evennia version, [see here](./Installation-Upgrade.md).
```
+The fastest way to install Evennia is to use the `pip` installer that comes with Python (read on).
+You can also [clone Evennia from github](./Installation-Git.md) or use [docker](./Installation-Docker.md). Some users have also experimented with [installing Evennia on Android](./Installation-Android.md).
+
## Requirements
```{sidebar} Develop in isolation
Installing Evennia doesn't make anything visible online. Apart from installation and updating, you can develop your game without any internet connection if you want to.
```
-- Evennia requires [Python](https://www.python.org/downloads/) 3.9, 3.10 or 3.11 (recommended)
+- Evennia requires [Python](https://www.python.org/downloads/) 3.9, 3.10 or 3.11 (recommended). Any OS that supports Python should work.
- Windows: In the installer, make sure you select `add python to path`. If you have multiple versions of Python installed, use `py` command instead of `python` to have Windows automatically use the latest.
- Using a light-weight [Python virtual environment](./Installation-Git.md#virtualenv) is optional, but _highly recommended_ in order to keep your Evennia installation independent from the system libraries. Using virtualenvs like this is common Python praxis.
- Don't install Evennia as administrator or superuser.
@@ -17,9 +20,6 @@ Installing Evennia doesn't make anything visible online. Apart from installation
## Install with `pip`
-The fastest way to install Evennia is to use the `pip` installer that comes with Python.
-You can also [clone Evennia from github](./Installation-Git.md) or use [docker](./Installation-Docker.md). Some users have also experimented with [installing Evennia on Android](./Installation-Android.md).
-
Evennia is managed from the terminal (console/Command Prompt on Windows). Once you have Python, you install Evennia with
@@ -87,7 +87,7 @@ Full stop of the server (use `evennia start` to restart):
evennia stop
-See [Server start-stop-reload](./Start-Stop-Reload.md) page for more details.
+See [Server start-stop-reload](./Running-Evennia.md) page for more details.
## See server logs
diff --git a/docs/1.0-dev/_sources/Setup/Start-Stop-Reload.md.txt b/docs/1.0-dev/_sources/Setup/Running-Evennia.md.txt
similarity index 100%
rename from docs/1.0-dev/_sources/Setup/Start-Stop-Reload.md.txt
rename to docs/1.0-dev/_sources/Setup/Running-Evennia.md.txt
diff --git a/docs/1.0-dev/_sources/Setup/Setup-Overview.md.txt b/docs/1.0-dev/_sources/Setup/Setup-Overview.md.txt
index 5987dc2545..279517506f 100644
--- a/docs/1.0-dev/_sources/Setup/Setup-Overview.md.txt
+++ b/docs/1.0-dev/_sources/Setup/Setup-Overview.md.txt
@@ -14,7 +14,8 @@ Installation-Troubleshooting
Installation-Android
Installation-Upgrade
Installation-Non-Interactive
-Start-Stop-Reload
+Running-Evennia
+Updating-Evennia
```
## Configuration
@@ -31,7 +32,7 @@ Channels-to-RSS
Channels-to-Twitter
```
-## Going public
+## Going Online
```{toctree}
:maxdepth: 2
diff --git a/docs/1.0-dev/_sources/Setup/Updating-Evennia.md.txt b/docs/1.0-dev/_sources/Setup/Updating-Evennia.md.txt
new file mode 100644
index 0000000000..d64988f49a
--- /dev/null
+++ b/docs/1.0-dev/_sources/Setup/Updating-Evennia.md.txt
@@ -0,0 +1,94 @@
+# Updating Evennia
+
+When Evennia is updated to a new version you will usually see it announced in the [Discussion forum](github:discussions) and in the [dev blog](https://www.evennia.com/devblog/index.html). You can also see the changes on [github](github:) or through one of our other [linked pages](../Links.md).
+
+## If you installed with `pip`
+
+If you followed the [normal install instructions](./Installation.md), here's what you do to upgrade:
+
+1. Read the [changelog](../Coding/Changelog.md) to see what changed and if it means you need to make any changes to your game code.
+2. If you use a [virtualenv](#Installation-Git#virtualenv), make sure it's active.
+3. `cd` to your game dir (e.g. `mygame`)
+4. `evennia stop`
+5. `pip install --upgrade evennia`
+6. `cd` tor your game dir
+7. `evennia migrate` (_ignore_ any warnings about running `makemigrations`, it should _not_ be done)
+8. `evennia start`
+
+If the upstream changes are large, you may also need to go into your gamedoor
+
+
+## If you installed with `git`
+
+This applies if you followed the [git-install instructions](./Installation-Git.md). Before Evennia 1.0, this was the only way to install Evennia.
+
+At any time, development is either happening in the `master` branch (latest stable) or `develop` (experimental). Which one is active and 'latest' at a given time depends - after a release, `master` will see most updates, close to a new release, `develop` will usually be the fastest changing.
+
+1. Read the [changelog](../Coding/Changelog.md) to see what changed and if it means you need to make any changes to your game code.
+2. If you use a [virtualenv](#Installation-Git#virtualenv), make sure it's active.
+3. `cd` to your game dir (e.g. `mygame`)
+4. `evennia stop`
+5. `cd` to the `evennia` repo folder you cloned during the git installation process.
+6. `git pull`
+7. `pip install --upgrade -e .` (remember the `.` at the end!)
+9. `cd` back to your game dir
+10. `evennia migrate` (_ignore_ any warnings about running `makemigrations` , it should _not_ be done)
+11. `evennia start`
+
+## If you installed with `docker`
+
+If you followed the [docker installation instructions] you need to pull the latest docker image for the branch you want:
+
+- `docker pull evennia/evennia` (master branch)
+- `docker pull evennia/evennia:develop` (experimental `develop` branch)
+
+Then restart your containers.
+
+## Resetting your database
+
+Should you ever want to start over completely from scratch, there is no need to re-download Evennia. You just need to clear your database.
+
+First:
+
+1. `cd` to your game dir (e.g. `mygame`)
+2. `evennia stop`
+
+### SQLite3 (default)
+
+```{sidebar} Hint
+Make a copy of the `evennia.db3` file once you created your superuser. When you want to reset (and as long as you haven't had to run any new migrations), you can just stop evennia and copy that file back over `evennia.db3`. That way you don't have to run the same migrations and create the superuser every time!
+```
+
+3. delete the file `mygame/server/evennia.db3`
+4. `evennia migrate`
+5. `evennia start`
+
+### PostgreSQL
+
+3. `evennia dbshell` (opens the psql client interface)
+ ```
+ psql> DROP DATABASE evennia;
+ psql> exit
+ ```
+ 4. You should now follow the [PostgreSQL install instructions](./Choosing-a-Database.md#postgresql) to create a new evennia database.
+ 5. `evennia migrate`
+ 6. `evennia start`
+
+### MySQL/MariaDB
+
+3. `evennia dbshell` (opens the mysql client interface)
+ ```
+ mysql> DROP DATABASE evennia;
+ mysql> exit
+ ```
+4. You should now follow the [MySQL install instructions](./Choosing-a-Database.md#mysql-mariadb) to create a new evennia database.
+5. `evennia migrate`
+6. `evennia start`
+
+### What are database migrations?
+
+If and when an Evennia update modifies the database *schema* (that is, the under-the-hood details as to how data is stored in the database), you must update your existing database correspondingly to match the change. If you don't, the updated Evennia will complain that it cannot read the database properly. Whereas schema changes should become more and more rare as Evennia matures, it may still happen from time to time.
+
+One way one could handle this is to apply the changes manually to your database using the database's command line. This often means adding/removing new tables or fields as well as possibly convert existing data to match what the new Evennia version expects. It should be quite obvious that this quickly becomes cumbersome and error-prone. If your database doesn't contain anything critical yet it's probably easiest to simply reset it and start over rather than to bother converting.
+
+Enter *migrations*. Migrations keeps track of changes in the database schema and applies them automatically for you. Basically, whenever the schema changes we distribute small files called "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.
diff --git a/docs/1.0-dev/_sources/index.md.txt b/docs/1.0-dev/_sources/index.md.txt
index 65c89aa4ef..2841dec388 100644
--- a/docs/1.0-dev/_sources/index.md.txt
+++ b/docs/1.0-dev/_sources/index.md.txt
@@ -13,14 +13,15 @@
This is the manual of [Evennia](https://www.evennia.com), the open source Python `MU*` creation system. Use the Search bar on the left to find or discover interesting articles.
- [Introduction](./Evennia-Introduction.md) - what is this Evennia thing?
-- [Getting help and Contribute](./Contributing.md) - when you get stuck or want to chip in
+- [Contributing and Getting help](./Contributing.md) - when you get stuck or want to chip in
## Setup
-- [Setup Quickstart](Setup/Setup-Overview.md#installation-and-running) - installing Evennia and get going
-- [Starting, Stopping and Reloading](Setup/Start-Stop-Reload.md) - how to manage the Evennia server
-- [Configuration](Setup/Setup-Overview.md#configuration) - how to set up your server the way you like it
-- [Going public](Setup/Setup-Overview.md#going-public) - taking your game online
+- [Installation](Setup/Setup-Overview.md#installation-and-running) - getting started
+- [Running the Game](Setup/Running-Evennia.md) - how to start, stop and reload Evennia
+- [Updating the Server](Setup/Updating-Evennia.md) - how to update Evennia
+- [Configuration](Setup/Setup-Overview.md#configuration) - how to set up Evennia the way you like it
+- [Going Online](Setup/Setup-Overview.md#going-online) - bringing your game online
## Tutorials and Howtos
@@ -55,7 +56,10 @@ This is the manual of [Evennia](https://www.evennia.com), the open source Python
:maxdepth: 3
Evennia-Introduction
+Setup/Running-Evennia
+Setup/Updating-Evennia
Setup/Setup-Overview
+
Howtos/Howtos-Overview
Components/Components-Overview
Concepts/Concepts-Overview
diff --git a/docs/1.0-dev/_static/images/fork_button.png b/docs/1.0-dev/_static/images/fork_button.png
new file mode 100644
index 0000000000..c1e48a0087
Binary files /dev/null and b/docs/1.0-dev/_static/images/fork_button.png differ
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 e271df0c7e..b8c1c7e5ff 100644
--- a/docs/1.0-dev/api/evennia.commands.default.account.html
+++ b/docs/1.0-dev/api/evennia.commands.default.account.html
@@ -133,7 +133,7 @@ method. Otherwise all text will be returned to all connected sessions.
-search_index_entry = {'aliases': 'remit pemit', 'category': 'admin', 'key': 'emit', 'no_prefix': ' remit pemit', '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', 'no_prefix': ' pemit remit', 'tags': '', 'text': '\n admin command for emitting message to multiple objects\n\n Usage:\n emit[/switches] [<obj>, <obj>, ... =] <message>\n remit [<obj>, <obj>, ... =] <message>\n pemit [<obj>, <obj>, ... =] <message>\n\n Switches:\n room - limit emits to rooms only (default)\n accounts - limit emits to accounts only\n contents - send to the contents of matched objects too\n\n Emits a message to the selected objects or to\n your immediate surroundings. If the object is a room,\n send to its contents. remit and pemit are just\n limited forms of emit, for sending to rooms and\n to accounts respectively.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.commands.default.batchprocess.html b/docs/1.0-dev/api/evennia.commands.default.batchprocess.html
index ffa29ad410..b7288acdff 100644
--- a/docs/1.0-dev/api/evennia.commands.default.batchprocess.html
+++ b/docs/1.0-dev/api/evennia.commands.default.batchprocess.html
@@ -138,7 +138,7 @@ skipping, reloading etc.
-search_index_entry = {'aliases': 'batchcommand batchcmd', 'category': 'building', 'key': 'batchcommands', 'no_prefix': ' batchcommand batchcmd', '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': 'batchcmd batchcommand', 'category': 'building', 'key': 'batchcommands', 'no_prefix': ' batchcmd batchcommand', '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 '}¶
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 ca0189147d..3f4e4e5d97 100644
--- a/docs/1.0-dev/api/evennia.commands.default.building.html
+++ b/docs/1.0-dev/api/evennia.commands.default.building.html
@@ -592,7 +592,7 @@ You can specify the /force switch to bypass this confirmation.
@@ -633,7 +633,7 @@ You can specify the /force switch to bypass this confirmation.
-search_index_entry = {'aliases': '@delete @del', 'category': 'building', 'key': '@destroy', 'no_prefix': 'destroy delete del', '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', 'no_prefix': 'destroy del delete', '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': '@swap @parent @type @typeclasses @update', 'category': 'building', 'key': '@typeclass', 'no_prefix': 'typeclass swap parent type typeclasses update', '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 typeclasses or 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. This will also\n reset cmdsets!\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 @type @swap @typeclasses @parent', 'category': 'building', 'key': '@typeclass', 'no_prefix': 'typeclass update type swap typeclasses parent', '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 typeclasses or 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. This will also\n reset cmdsets!\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', 'no_prefix': 'find locate search', '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', 'no_prefix': 'find search locate', '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': 'ls l', 'category': 'general', 'key': 'look', 'no_prefix': ' ls l', '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', 'no_prefix': ' l ls', '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 '}¶
@@ -598,7 +598,7 @@ placing it in their inventory.
@@ -629,7 +629,7 @@ placing it in their inventory.
-search_index_entry = {'aliases': '\' "', 'category': 'general', 'key': 'say', 'no_prefix': ' \' "', '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', 'no_prefix': ' " \'', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.commands.default.tests.html b/docs/1.0-dev/api/evennia.commands.default.tests.html
index a40e6e5505..d207b8c789 100644
--- a/docs/1.0-dev/api/evennia.commands.default.tests.html
+++ b/docs/1.0-dev/api/evennia.commands.default.tests.html
@@ -902,7 +902,7 @@ main test suite started with
Test the batch processor.
-red_button = <module 'evennia.contrib.tutorials.red_button.red_button' from '/tmp/tmpoztk3116/ce2d001e3510f9e8a27fa27418d49dd5bb334d6b/evennia/contrib/tutorials/red_button/red_button.py'>¶
+red_button = <module 'evennia.contrib.tutorials.red_button.red_button' from '/tmp/tmp_1kpuess/a77d568709ea6c7905c2d58d3cafa74bd7466278/evennia/contrib/tutorials/red_button/red_button.py'>¶
@@ -157,7 +157,7 @@ there is no object yet before the account has logged in)
-search_index_entry = {'aliases': 'co con conn', 'category': 'general', 'key': 'connect', 'no_prefix': ' co con conn', '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 con co', 'category': 'general', 'key': 'connect', 'no_prefix': ' conn con co', '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', 'no_prefix': ' cr cre', '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', 'no_prefix': ' cre cr', '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 '}¶
@@ -236,7 +236,7 @@ version is a bit more complicated.
@@ -262,7 +262,7 @@ version is a bit more complicated.
-search_index_entry = {'aliases': 'q qu', 'category': 'general', 'key': 'quit', 'no_prefix': ' q qu', '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': 'qu q', 'category': 'general', 'key': 'quit', 'no_prefix': ' qu q', '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 '}¶
@@ -335,7 +335,7 @@ for simplicity. It shows a pane of info.
@@ -361,7 +361,7 @@ for simplicity. It shows a pane of info.
-search_index_entry = {'aliases': 'h ?', 'category': 'general', 'key': 'help', 'no_prefix': ' h ?', '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', 'no_prefix': ' ? h', 'tags': '', 'text': '\n get help when in unconnected-in state\n\n Usage:\n help\n\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.base_systems.email_login.email_login.html b/docs/1.0-dev/api/evennia.contrib.base_systems.email_login.email_login.html
index fc84b2a244..e8fd3bfe0b 100644
--- a/docs/1.0-dev/api/evennia.contrib.base_systems.email_login.email_login.html
+++ b/docs/1.0-dev/api/evennia.contrib.base_systems.email_login.email_login.html
@@ -139,7 +139,7 @@ the module given by settings.CONNECTION_SCREEN_MODULE.
@@ -169,7 +169,7 @@ there is no object yet before the account has logged in)
-search_index_entry = {'aliases': 'co con conn', 'category': 'general', 'key': 'connect', 'no_prefix': ' co con conn', '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 con co', 'category': 'general', 'key': 'connect', 'no_prefix': ' conn con co', '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 '}¶
@@ -191,7 +191,7 @@ there is no object yet before the account has logged in)
@@ -272,7 +272,7 @@ version is a bit more complicated.
-search_index_entry = {'aliases': 'q qu', 'category': 'general', 'key': 'quit', 'no_prefix': ' q qu', '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': 'qu q', 'category': 'general', 'key': 'quit', 'no_prefix': ' qu q', '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 '}¶
@@ -335,7 +335,7 @@ for simplicity. It shows a pane of info.
@@ -361,7 +361,7 @@ for simplicity. It shows a pane of info.
-search_index_entry = {'aliases': 'h ?', 'category': 'general', 'key': 'help', 'no_prefix': ' h ?', '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', 'no_prefix': ' ? h', 'tags': '', 'text': '\n This is an unconnected version of the help command,\n for simplicity. It shows a pane of info.\n '}¶
@@ -191,7 +191,7 @@ aliases to an already joined channel.
-search_index_entry = {'aliases': 'aliaschan chanalias', 'category': 'comms', 'key': 'addcom', 'no_prefix': ' aliaschan chanalias', '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': 'chanalias aliaschan', 'category': 'comms', 'key': 'addcom', 'no_prefix': ' chanalias aliaschan', '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 '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.commands.html b/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.commands.html
index b096dcaf15..1b1def81b9 100644
--- a/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.commands.html
+++ b/docs/1.0-dev/api/evennia.contrib.full_systems.evscaperoom.commands.html
@@ -211,7 +211,7 @@ the operation will be general or on the room.
-search_index_entry = {'aliases': 'chicken out abort quit q', 'category': 'evscaperoom', 'key': 'give up', 'no_prefix': ' chicken out abort quit q', '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', 'no_prefix': ' q chicken out abort quit', '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': 'ls l', 'category': 'evscaperoom', 'key': 'look', 'no_prefix': ' ls l', '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', 'no_prefix': ' l ls', 'tags': '', 'text': '\n Look at the room, an object or the currently focused object\n\n Usage:\n look [obj]\n\n '}¶
@@ -428,7 +428,7 @@ emote /me points to /box and /lever.
-search_index_entry = {'aliases': ': pose', 'category': 'general', 'key': 'emote', 'no_prefix': ' : pose', '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', 'no_prefix': ' pose :', '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 '}¶
@@ -490,7 +490,7 @@ looks and what actions is available.
-search_index_entry = {'aliases': 'ex examine unfocus e', 'category': 'evscaperoom', 'key': 'focus', 'no_prefix': ' ex examine unfocus e', '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', 'no_prefix': ' examine ex e unfocus', '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': 'ls l', 'category': 'general', 'key': 'look', 'no_prefix': ' ls l', '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', 'no_prefix': ' l ls', 'tags': '', 'text': '\n look\n\n Usage:\n look\n look <obj>\n look <room detail>\n look *<account>\n\n Observes your location, details at your location or objects in your vicinity.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.rpg.dice.dice.html b/docs/1.0-dev/api/evennia.contrib.rpg.dice.dice.html
index c485bd9dc5..f934d57a9e 100644
--- a/docs/1.0-dev/api/evennia.contrib.rpg.dice.dice.html
+++ b/docs/1.0-dev/api/evennia.contrib.rpg.dice.dice.html
@@ -305,7 +305,7 @@ everyone but the person rolling.
@@ -331,7 +331,7 @@ everyone but the person rolling.
-search_index_entry = {'aliases': '@dice roll', 'category': 'general', 'key': 'dice', 'no_prefix': ' dice roll', 'tags': '', 'text': "\n roll dice\n\n Usage:\n dice[/switch] <nr>d<sides> [modifier] [success condition]\n\n Switch:\n hidden - tell the room the roll is being done, but don't show the result\n secret - don't inform the room about neither roll nor result\n\n Examples:\n dice 3d6 + 4\n dice 1d100 - 2 < 50\n\n This will roll the given number of dice with given sides and modifiers.\n So e.g. 2d6 + 3 means to 'roll a 6-sided die 2 times and add the result,\n then add 3 to the total'.\n Accepted modifiers are +, -, * and /.\n A success condition is given as normal Python conditionals\n (<,>,<=,>=,==,!=). So e.g. 2d6 + 3 > 10 means that the roll will succeed\n only if the final result is above 8. If a success condition is given, the\n outcome (pass/fail) will be echoed along with how much it succeeded/failed\n with. The hidden/secret switches will hide all or parts of the roll from\n everyone but the person rolling.\n "}¶
+search_index_entry = {'aliases': 'roll @dice', 'category': 'general', 'key': 'dice', 'no_prefix': ' roll dice', 'tags': '', 'text': "\n roll dice\n\n Usage:\n dice[/switch] <nr>d<sides> [modifier] [success condition]\n\n Switch:\n hidden - tell the room the roll is being done, but don't show the result\n secret - don't inform the room about neither roll nor result\n\n Examples:\n dice 3d6 + 4\n dice 1d100 - 2 < 50\n\n This will roll the given number of dice with given sides and modifiers.\n So e.g. 2d6 + 3 means to 'roll a 6-sided die 2 times and add the result,\n then add 3 to the total'.\n Accepted modifiers are +, -, * and /.\n A success condition is given as normal Python conditionals\n (<,>,<=,>=,==,!=). So e.g. 2d6 + 3 > 10 means that the roll will succeed\n only if the final result is above 8. If a success condition is given, the\n outcome (pass/fail) will be echoed along with how much it succeeded/failed\n with. The hidden/secret switches will hide all or parts of the roll from\n everyone but the person rolling.\n "}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.rpsystem.html b/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.rpsystem.html
index e61d50b913..85d9c35a24 100644
--- a/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.rpsystem.html
+++ b/docs/1.0-dev/api/evennia.contrib.rpg.rpsystem.rpsystem.html
@@ -695,7 +695,7 @@ a different language.
-search_index_entry = {'aliases': '\' "', 'category': 'general', 'key': 'say', 'no_prefix': ' \' "', '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', 'no_prefix': ' " \'', 'tags': '', 'text': '\n speak as your character\n\n Usage:\n say <message>\n\n Talk to those in your current location.\n '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorials.red_button.red_button.html b/docs/1.0-dev/api/evennia.contrib.tutorials.red_button.red_button.html
index f42ca84019..f6ec3fa542 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorials.red_button.red_button.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorials.red_button.red_button.html
@@ -153,7 +153,7 @@ such as when closing the lid and un-blinding a character.
-search_index_entry = {'aliases': 'smash lid break lid smash', 'category': 'general', 'key': 'smash glass', 'no_prefix': ' smash lid break lid smash', '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 '}¶
+search_index_entry = {'aliases': 'smash break lid smash lid', 'category': 'general', 'key': 'smash glass', 'no_prefix': ' smash break lid smash lid', '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 '}¶
-search_index_entry = {'aliases': 'listen examine l ex feel get', 'category': 'general', 'key': 'look', 'no_prefix': ' listen examine l ex feel get', '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': 'listen l get examine ex feel', 'category': 'general', 'key': 'look', 'no_prefix': ' listen l get examine ex feel', 'tags': '', 'text': "\n Looking around in darkness\n\n Usage:\n look <obj>\n\n ... not that there's much to see in the dark.\n\n "}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.objects.html b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.objects.html
index 844ed3e2d1..be894b03b8 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.objects.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.objects.html
@@ -556,7 +556,7 @@ shift green root up/down
@@ -805,7 +805,7 @@ parry - forgoes your attack but will make you harder to hit on next
-search_index_entry = {'aliases': 'stab pierce parry fight chop defend slash bash kill thrust hit', 'category': 'tutorialworld', 'key': 'attack', 'no_prefix': ' stab pierce parry fight chop defend slash bash kill thrust hit', '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': 'hit stab parry fight bash kill defend chop thrust pierce slash', 'category': 'tutorialworld', 'key': 'attack', 'no_prefix': ' hit stab parry fight bash kill defend chop thrust pierce slash', 'tags': '', 'text': '\n Attack the enemy. Commands:\n\n stab <enemy>\n slash <enemy>\n parry\n\n stab - (thrust) makes a lot of damage but is harder to hit with.\n slash - is easier to land, but does not make as much damage.\n parry - forgoes your attack but will make you harder to hit on next\n enemy attack.\n\n '}¶
diff --git a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.rooms.html b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.rooms.html
index 7d064cdfa1..d9c03f1b76 100644
--- a/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.rooms.html
+++ b/docs/1.0-dev/api/evennia.contrib.tutorials.tutorial_world.rooms.html
@@ -248,7 +248,7 @@ code except for adding in the details.
@@ -263,7 +263,7 @@ code except for adding in the details.
-search_index_entry = {'aliases': 'ls l', 'category': 'tutorialworld', 'key': 'look', 'no_prefix': ' ls l', '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', 'no_prefix': ' l ls', '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 '}¶
@@ -996,7 +996,7 @@ random chance of eventually finding a light source.
-search_index_entry = {'aliases': 'fiddle l feel search feel around', 'category': 'tutorialworld', 'key': 'look', 'no_prefix': ' fiddle l feel search feel around', '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 l feel around fiddle feel', 'category': 'tutorialworld', 'key': 'look', 'no_prefix': ' search l feel around fiddle feel', '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': 'abort a __nomatch_command no y n yes', 'category': 'general', 'key': '__noinput_command', 'no_prefix': ' abort a __nomatch_command no y n yes', 'tags': '', 'text': '\n Handle a prompt for yes or no. Press [return] for the default choice.\n\n '}¶
+search_index_entry = {'aliases': 'y yes no __nomatch_command a abort n', 'category': 'general', 'key': '__noinput_command', 'no_prefix': ' y yes no __nomatch_command a abort n', 'tags': '', 'text': '\n Handle a prompt for yes or no. Press [return] for the default choice.\n\n '}¶
diff --git a/docs/1.0-dev/api/evennia.utils.evmore.html b/docs/1.0-dev/api/evennia.utils.evmore.html
index dcfd4f1000..e3bad6864d 100644
--- a/docs/1.0-dev/api/evennia.utils.evmore.html
+++ b/docs/1.0-dev/api/evennia.utils.evmore.html
@@ -137,7 +137,7 @@ the caller.msg() construct every time the page is updated.
@@ -163,7 +163,7 @@ the caller.msg() construct every time the page is updated.
-search_index_entry = {'aliases': 'q quit next a abort previous top e end p t n', 'category': 'general', 'key': '__noinput_command', 'no_prefix': ' q quit next a abort previous top e end p t n', 'tags': '', 'text': '\n Manipulate the text paging. Catch no-input with aliases.\n '}¶
+search_index_entry = {'aliases': 'n next quit end p t previous e a top abort q', 'category': 'general', 'key': '__noinput_command', 'no_prefix': ' n next quit end p t previous e a top abort q', 'tags': '', 'text': '\n Manipulate the text paging. Catch no-input with aliases.\n '}¶
diff --git a/docs/1.0-dev/index.html b/docs/1.0-dev/index.html
index ea733133af..2172872cba 100644
--- a/docs/1.0-dev/index.html
+++ b/docs/1.0-dev/index.html
@@ -114,15 +114,16 @@ or the original github wiki. You have been warned.
This is the manual of Evennia, the open source Python MU* creation system. Use the Search bar on the left to find or discover interesting articles.
diff --git a/docs/1.0-dev/objects.inv b/docs/1.0-dev/objects.inv
index 3e96d9820e..a591b20c77 100644
Binary files a/docs/1.0-dev/objects.inv and b/docs/1.0-dev/objects.inv differ
diff --git a/docs/1.0-dev/searchindex.js b/docs/1.0-dev/searchindex.js
index bc689fce27..f59e8ef8cd 100644
--- a/docs/1.0-dev/searchindex.js
+++ b/docs/1.0-dev/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["Coding/Changelog","Coding/Coding-FAQ","Coding/Coding-Introduction","Coding/Coding-Overview","Coding/Continuous-Integration","Coding/Continuous-Integration-TeamCity","Coding/Continuous-Integration-Travis","Coding/Debugging","Coding/Profiling","Coding/Quirks","Coding/Setting-up-PyCharm","Coding/Unit-Testing","Coding/Updating-Your-Game","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/Components-Overview","Components/Connection-Screen","Components/Default-Commands","Components/EvEditor","Components/EvForm","Components/EvMenu","Components/EvMore","Components/EvTable","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/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/Change-Messages-Per-Receiver","Concepts/Clickable-Links","Concepts/Colors","Concepts/Concepts-Overview","Concepts/Custom-Protocols","Concepts/Guest-Logins","Concepts/Inline-Tags-and-Functions","Concepts/Internationalization","Concepts/Messagepath","Concepts/Multisession-modes","Concepts/New-Models","Concepts/OOB","Concepts/Soft-Code","Concepts/Text-Encodings","Concepts/Using-MUX-as-a-Standard","Concepts/Web-Features","Concepts/Zones","Contribs/Contrib-AWSStorage","Contribs/Contrib-Auditing","Contribs/Contrib-Barter","Contribs/Contrib-Batchprocessor","Contribs/Contrib-Bodyfunctions","Contribs/Contrib-Buffs","Contribs/Contrib-Building-Menu","Contribs/Contrib-Character-Creator","Contribs/Contrib-Clothing","Contribs/Contrib-Color-Markups","Contribs/Contrib-Components","Contribs/Contrib-Cooldowns","Contribs/Contrib-Crafting","Contribs/Contrib-Custom-Gametime","Contribs/Contrib-Dice","Contribs/Contrib-Email-Login","Contribs/Contrib-Evadventure","Contribs/Contrib-Evscaperoom","Contribs/Contrib-Extended-Room","Contribs/Contrib-Fieldfill","Contribs/Contrib-Gendersub","Contribs/Contrib-Git-Integration","Contribs/Contrib-Health-Bar","Contribs/Contrib-Ingame-Map-Display","Contribs/Contrib-Ingame-Python","Contribs/Contrib-Ingame-Python-Tutorial-Dialogue","Contribs/Contrib-Ingame-Python-Tutorial-Elevator","Contribs/Contrib-Mail","Contribs/Contrib-Mapbuilder","Contribs/Contrib-Mapbuilder-Tutorial","Contribs/Contrib-Menu-Login","Contribs/Contrib-Mirror","Contribs/Contrib-Multidescer","Contribs/Contrib-Mux-Comms-Cmds","Contribs/Contrib-Name-Generator","Contribs/Contrib-Puzzles","Contribs/Contrib-RPSystem","Contribs/Contrib-Random-String-Generator","Contribs/Contrib-Red-Button","Contribs/Contrib-Simpledoor","Contribs/Contrib-Slow-Exit","Contribs/Contrib-Talking-Npc","Contribs/Contrib-Traits","Contribs/Contrib-Tree-Select","Contribs/Contrib-Turnbattle","Contribs/Contrib-Tutorial-World","Contribs/Contrib-Unixcommand","Contribs/Contrib-Wilderness","Contribs/Contrib-XYZGrid","Contribs/Contribs-Overview","Contributing","Contributing-Docs","Evennia-API","Evennia-Introduction","Glossary","Howtos/Beginner-Tutorial/Beginner-Tutorial-Overview","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Building-Quickstart","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Creating-Things","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Django-queries","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Evennia-Library-Overview","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Gamedir-Overview","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Learning-Typeclasses","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Making-A-Sittable-Object","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-More-on-Commands","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Part1-Overview","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Python-basic-introduction","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Python-classes-and-objects","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Searching-Things","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Tutorial-World","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Game-Planning","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Part2-Overview","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Planning-The-Tutorial-Game","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Planning-Where-Do-I-Begin","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Characters","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Chargen","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Commands","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Dungeon","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Equipment","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-NPCs","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Objects","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Part3-Overview","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Quests","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Rooms","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Rules","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Shops","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Utilities","Howtos/Beginner-Tutorial/Part4/Beginner-Tutorial-Part4-Overview","Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page","Howtos/Beginner-Tutorial/Part5/Beginner-Tutorial-Part5-Overview","Howtos/Evennia-for-Diku-Users","Howtos/Evennia-for-MUSH-Users","Howtos/Evennia-for-roleplaying-sessions","Howtos/Howto-Add-Object-Weight","Howtos/Howto-Command-Cooldown","Howtos/Howto-Command-Duration","Howtos/Howto-Command-Prompt","Howtos/Howto-Default-Exit-Errors","Howtos/Howto-Game-Time","Howtos/Howtos-Overview","Howtos/Implementing-a-game-rule-system","Howtos/Turn-based-Combat-System","Howtos/Tutorial-Building-a-Mech","Howtos/Tutorial-Building-a-Train","Howtos/Tutorial-Coordinates","Howtos/Tutorial-Displaying-Room-Map","Howtos/Tutorial-NPC-Listening","Howtos/Tutorial-NPC-Merchants","Howtos/Tutorial-NPC-Reacting","Howtos/Tutorial-Parsing-Commands","Howtos/Tutorial-Persistent-Handler","Howtos/Tutorial-Understanding-Color-Tags","Howtos/Tutorial-Using-Arxcode","Howtos/Tutorial-Weather-Effects","Howtos/Tutorial-for-basic-MUSH-like-game","Howtos/Web-Add-a-wiki","Howtos/Web-Changing-Webpage","Howtos/Web-Character-Generation","Howtos/Web-Character-View-Tutorial","Howtos/Web-Extending-the-REST-API","Howtos/Web-Help-System-Tutorial","Howtos/Web-Tweeting-Game-Stats","Licensing","Links","Setup/Channels-to-Grapevine","Setup/Channels-to-IRC","Setup/Channels-to-RSS","Setup/Channels-to-Twitter","Setup/Choosing-a-Database","Setup/Client-Support-Grid","Setup/Config-Apache-Proxy","Setup/Config-HAProxy","Setup/Evennia-Game-Index","Setup/Installation","Setup/Installation-Android","Setup/Installation-Docker","Setup/Installation-Git","Setup/Installation-Non-Interactive","Setup/Installation-Troubleshooting","Setup/Installation-Upgrade","Setup/Online-Setup","Setup/Security-Practices","Setup/Settings","Setup/Settings-Default","Setup/Setup-Overview","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.base_systems","api/evennia.contrib.base_systems.awsstorage","api/evennia.contrib.base_systems.awsstorage.aws_s3_cdn","api/evennia.contrib.base_systems.awsstorage.tests","api/evennia.contrib.base_systems.building_menu","api/evennia.contrib.base_systems.building_menu.building_menu","api/evennia.contrib.base_systems.building_menu.tests","api/evennia.contrib.base_systems.color_markups","api/evennia.contrib.base_systems.color_markups.color_markups","api/evennia.contrib.base_systems.color_markups.tests","api/evennia.contrib.base_systems.components","api/evennia.contrib.base_systems.components.component","api/evennia.contrib.base_systems.components.dbfield","api/evennia.contrib.base_systems.components.holder","api/evennia.contrib.base_systems.components.signals","api/evennia.contrib.base_systems.components.tests","api/evennia.contrib.base_systems.custom_gametime","api/evennia.contrib.base_systems.custom_gametime.custom_gametime","api/evennia.contrib.base_systems.custom_gametime.tests","api/evennia.contrib.base_systems.email_login","api/evennia.contrib.base_systems.email_login.connection_screens","api/evennia.contrib.base_systems.email_login.email_login","api/evennia.contrib.base_systems.email_login.tests","api/evennia.contrib.base_systems.ingame_python","api/evennia.contrib.base_systems.ingame_python.callbackhandler","api/evennia.contrib.base_systems.ingame_python.commands","api/evennia.contrib.base_systems.ingame_python.eventfuncs","api/evennia.contrib.base_systems.ingame_python.scripts","api/evennia.contrib.base_systems.ingame_python.tests","api/evennia.contrib.base_systems.ingame_python.typeclasses","api/evennia.contrib.base_systems.ingame_python.utils","api/evennia.contrib.base_systems.menu_login","api/evennia.contrib.base_systems.menu_login.connection_screens","api/evennia.contrib.base_systems.menu_login.menu_login","api/evennia.contrib.base_systems.menu_login.tests","api/evennia.contrib.base_systems.mux_comms_cmds","api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds","api/evennia.contrib.base_systems.mux_comms_cmds.tests","api/evennia.contrib.base_systems.unixcommand","api/evennia.contrib.base_systems.unixcommand.tests","api/evennia.contrib.base_systems.unixcommand.unixcommand","api/evennia.contrib.full_systems","api/evennia.contrib.full_systems.evscaperoom","api/evennia.contrib.full_systems.evscaperoom.commands","api/evennia.contrib.full_systems.evscaperoom.menu","api/evennia.contrib.full_systems.evscaperoom.objects","api/evennia.contrib.full_systems.evscaperoom.room","api/evennia.contrib.full_systems.evscaperoom.scripts","api/evennia.contrib.full_systems.evscaperoom.state","api/evennia.contrib.full_systems.evscaperoom.tests","api/evennia.contrib.full_systems.evscaperoom.utils","api/evennia.contrib.game_systems","api/evennia.contrib.game_systems.barter","api/evennia.contrib.game_systems.barter.barter","api/evennia.contrib.game_systems.barter.tests","api/evennia.contrib.game_systems.clothing","api/evennia.contrib.game_systems.clothing.clothing","api/evennia.contrib.game_systems.clothing.tests","api/evennia.contrib.game_systems.cooldowns","api/evennia.contrib.game_systems.cooldowns.cooldowns","api/evennia.contrib.game_systems.cooldowns.tests","api/evennia.contrib.game_systems.crafting","api/evennia.contrib.game_systems.crafting.crafting","api/evennia.contrib.game_systems.crafting.example_recipes","api/evennia.contrib.game_systems.crafting.tests","api/evennia.contrib.game_systems.gendersub","api/evennia.contrib.game_systems.gendersub.gendersub","api/evennia.contrib.game_systems.gendersub.tests","api/evennia.contrib.game_systems.mail","api/evennia.contrib.game_systems.mail.mail","api/evennia.contrib.game_systems.mail.tests","api/evennia.contrib.game_systems.multidescer","api/evennia.contrib.game_systems.multidescer.multidescer","api/evennia.contrib.game_systems.multidescer.tests","api/evennia.contrib.game_systems.puzzles","api/evennia.contrib.game_systems.puzzles.puzzles","api/evennia.contrib.game_systems.puzzles.tests","api/evennia.contrib.game_systems.turnbattle","api/evennia.contrib.game_systems.turnbattle.tb_basic","api/evennia.contrib.game_systems.turnbattle.tb_equip","api/evennia.contrib.game_systems.turnbattle.tb_items","api/evennia.contrib.game_systems.turnbattle.tb_magic","api/evennia.contrib.game_systems.turnbattle.tb_range","api/evennia.contrib.game_systems.turnbattle.tests","api/evennia.contrib.grid","api/evennia.contrib.grid.extended_room","api/evennia.contrib.grid.extended_room.extended_room","api/evennia.contrib.grid.extended_room.tests","api/evennia.contrib.grid.ingame_map_display","api/evennia.contrib.grid.ingame_map_display.ingame_map_display","api/evennia.contrib.grid.ingame_map_display.tests","api/evennia.contrib.grid.mapbuilder","api/evennia.contrib.grid.mapbuilder.mapbuilder","api/evennia.contrib.grid.mapbuilder.tests","api/evennia.contrib.grid.simpledoor","api/evennia.contrib.grid.simpledoor.simpledoor","api/evennia.contrib.grid.simpledoor.tests","api/evennia.contrib.grid.slow_exit","api/evennia.contrib.grid.slow_exit.slow_exit","api/evennia.contrib.grid.slow_exit.tests","api/evennia.contrib.grid.wilderness","api/evennia.contrib.grid.wilderness.tests","api/evennia.contrib.grid.wilderness.wilderness","api/evennia.contrib.grid.xyzgrid","api/evennia.contrib.grid.xyzgrid.commands","api/evennia.contrib.grid.xyzgrid.example","api/evennia.contrib.grid.xyzgrid.launchcmd","api/evennia.contrib.grid.xyzgrid.prototypes","api/evennia.contrib.grid.xyzgrid.tests","api/evennia.contrib.grid.xyzgrid.utils","api/evennia.contrib.grid.xyzgrid.xymap","api/evennia.contrib.grid.xyzgrid.xymap_legend","api/evennia.contrib.grid.xyzgrid.xyzgrid","api/evennia.contrib.grid.xyzgrid.xyzroom","api/evennia.contrib.rpg","api/evennia.contrib.rpg.buffs","api/evennia.contrib.rpg.buffs.buff","api/evennia.contrib.rpg.buffs.samplebuffs","api/evennia.contrib.rpg.buffs.tests","api/evennia.contrib.rpg.character_creator","api/evennia.contrib.rpg.character_creator.character_creator","api/evennia.contrib.rpg.character_creator.example_menu","api/evennia.contrib.rpg.character_creator.tests","api/evennia.contrib.rpg.dice","api/evennia.contrib.rpg.dice.dice","api/evennia.contrib.rpg.dice.tests","api/evennia.contrib.rpg.health_bar","api/evennia.contrib.rpg.health_bar.health_bar","api/evennia.contrib.rpg.health_bar.tests","api/evennia.contrib.rpg.rpsystem","api/evennia.contrib.rpg.rpsystem.rplanguage","api/evennia.contrib.rpg.rpsystem.rpsystem","api/evennia.contrib.rpg.rpsystem.tests","api/evennia.contrib.rpg.traits","api/evennia.contrib.rpg.traits.tests","api/evennia.contrib.rpg.traits.traits","api/evennia.contrib.tutorials","api/evennia.contrib.tutorials.batchprocessor","api/evennia.contrib.tutorials.batchprocessor.example_batch_code","api/evennia.contrib.tutorials.bodyfunctions","api/evennia.contrib.tutorials.bodyfunctions.bodyfunctions","api/evennia.contrib.tutorials.bodyfunctions.tests","api/evennia.contrib.tutorials.evadventure","api/evennia.contrib.tutorials.evadventure.build_techdemo","api/evennia.contrib.tutorials.evadventure.build_world","api/evennia.contrib.tutorials.evadventure.characters","api/evennia.contrib.tutorials.evadventure.chargen","api/evennia.contrib.tutorials.evadventure.combat_turnbased","api/evennia.contrib.tutorials.evadventure.commands","api/evennia.contrib.tutorials.evadventure.dungeon","api/evennia.contrib.tutorials.evadventure.enums","api/evennia.contrib.tutorials.evadventure.equipment","api/evennia.contrib.tutorials.evadventure.npcs","api/evennia.contrib.tutorials.evadventure.objects","api/evennia.contrib.tutorials.evadventure.quests","api/evennia.contrib.tutorials.evadventure.random_tables","api/evennia.contrib.tutorials.evadventure.rooms","api/evennia.contrib.tutorials.evadventure.rules","api/evennia.contrib.tutorials.evadventure.shops","api/evennia.contrib.tutorials.evadventure.tests","api/evennia.contrib.tutorials.evadventure.tests.mixins","api/evennia.contrib.tutorials.evadventure.tests.test_characters","api/evennia.contrib.tutorials.evadventure.tests.test_chargen","api/evennia.contrib.tutorials.evadventure.tests.test_combat","api/evennia.contrib.tutorials.evadventure.tests.test_commands","api/evennia.contrib.tutorials.evadventure.tests.test_dungeon","api/evennia.contrib.tutorials.evadventure.tests.test_equipment","api/evennia.contrib.tutorials.evadventure.tests.test_quests","api/evennia.contrib.tutorials.evadventure.tests.test_rules","api/evennia.contrib.tutorials.evadventure.tests.test_utils","api/evennia.contrib.tutorials.evadventure.utils","api/evennia.contrib.tutorials.mirror","api/evennia.contrib.tutorials.mirror.mirror","api/evennia.contrib.tutorials.red_button","api/evennia.contrib.tutorials.red_button.red_button","api/evennia.contrib.tutorials.talking_npc","api/evennia.contrib.tutorials.talking_npc.talking_npc","api/evennia.contrib.tutorials.talking_npc.tests","api/evennia.contrib.tutorials.tutorial_world","api/evennia.contrib.tutorials.tutorial_world.intro_menu","api/evennia.contrib.tutorials.tutorial_world.mob","api/evennia.contrib.tutorials.tutorial_world.objects","api/evennia.contrib.tutorials.tutorial_world.rooms","api/evennia.contrib.tutorials.tutorial_world.tests","api/evennia.contrib.utils","api/evennia.contrib.utils.auditing","api/evennia.contrib.utils.auditing.outputs","api/evennia.contrib.utils.auditing.server","api/evennia.contrib.utils.auditing.tests","api/evennia.contrib.utils.fieldfill","api/evennia.contrib.utils.fieldfill.fieldfill","api/evennia.contrib.utils.git_integration","api/evennia.contrib.utils.git_integration.git_integration","api/evennia.contrib.utils.git_integration.tests","api/evennia.contrib.utils.name_generator","api/evennia.contrib.utils.name_generator.namegen","api/evennia.contrib.utils.name_generator.tests","api/evennia.contrib.utils.random_string_generator","api/evennia.contrib.utils.random_string_generator.random_string_generator","api/evennia.contrib.utils.random_string_generator.tests","api/evennia.contrib.utils.tree_select","api/evennia.contrib.utils.tree_select.tests","api/evennia.contrib.utils.tree_select.tree_select","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.pronouns","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"],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/Changelog.md","Coding/Coding-FAQ.md","Coding/Coding-Introduction.md","Coding/Coding-Overview.md","Coding/Continuous-Integration.md","Coding/Continuous-Integration-TeamCity.md","Coding/Continuous-Integration-Travis.md","Coding/Debugging.md","Coding/Profiling.md","Coding/Quirks.md","Coding/Setting-up-PyCharm.md","Coding/Unit-Testing.md","Coding/Updating-Your-Game.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/Components-Overview.md","Components/Connection-Screen.md","Components/Default-Commands.md","Components/EvEditor.md","Components/EvForm.md","Components/EvMenu.md","Components/EvMore.md","Components/EvTable.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/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/Change-Messages-Per-Receiver.md","Concepts/Clickable-Links.md","Concepts/Colors.md","Concepts/Concepts-Overview.md","Concepts/Custom-Protocols.md","Concepts/Guest-Logins.md","Concepts/Inline-Tags-and-Functions.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/Using-MUX-as-a-Standard.md","Concepts/Web-Features.md","Concepts/Zones.md","Contribs/Contrib-AWSStorage.md","Contribs/Contrib-Auditing.md","Contribs/Contrib-Barter.md","Contribs/Contrib-Batchprocessor.md","Contribs/Contrib-Bodyfunctions.md","Contribs/Contrib-Buffs.md","Contribs/Contrib-Building-Menu.md","Contribs/Contrib-Character-Creator.md","Contribs/Contrib-Clothing.md","Contribs/Contrib-Color-Markups.md","Contribs/Contrib-Components.md","Contribs/Contrib-Cooldowns.md","Contribs/Contrib-Crafting.md","Contribs/Contrib-Custom-Gametime.md","Contribs/Contrib-Dice.md","Contribs/Contrib-Email-Login.md","Contribs/Contrib-Evadventure.md","Contribs/Contrib-Evscaperoom.md","Contribs/Contrib-Extended-Room.md","Contribs/Contrib-Fieldfill.md","Contribs/Contrib-Gendersub.md","Contribs/Contrib-Git-Integration.md","Contribs/Contrib-Health-Bar.md","Contribs/Contrib-Ingame-Map-Display.md","Contribs/Contrib-Ingame-Python.md","Contribs/Contrib-Ingame-Python-Tutorial-Dialogue.md","Contribs/Contrib-Ingame-Python-Tutorial-Elevator.md","Contribs/Contrib-Mail.md","Contribs/Contrib-Mapbuilder.md","Contribs/Contrib-Mapbuilder-Tutorial.md","Contribs/Contrib-Menu-Login.md","Contribs/Contrib-Mirror.md","Contribs/Contrib-Multidescer.md","Contribs/Contrib-Mux-Comms-Cmds.md","Contribs/Contrib-Name-Generator.md","Contribs/Contrib-Puzzles.md","Contribs/Contrib-RPSystem.md","Contribs/Contrib-Random-String-Generator.md","Contribs/Contrib-Red-Button.md","Contribs/Contrib-Simpledoor.md","Contribs/Contrib-Slow-Exit.md","Contribs/Contrib-Talking-Npc.md","Contribs/Contrib-Traits.md","Contribs/Contrib-Tree-Select.md","Contribs/Contrib-Turnbattle.md","Contribs/Contrib-Tutorial-World.md","Contribs/Contrib-Unixcommand.md","Contribs/Contrib-Wilderness.md","Contribs/Contrib-XYZGrid.md","Contribs/Contribs-Overview.md","Contributing.md","Contributing-Docs.md","Evennia-API.md","Evennia-Introduction.md","Glossary.md","Howtos/Beginner-Tutorial/Beginner-Tutorial-Overview.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Building-Quickstart.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Creating-Things.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Django-queries.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Evennia-Library-Overview.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Gamedir-Overview.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Learning-Typeclasses.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Making-A-Sittable-Object.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-More-on-Commands.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Part1-Overview.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Python-basic-introduction.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Python-classes-and-objects.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Searching-Things.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Tutorial-World.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Game-Planning.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Part2-Overview.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Planning-The-Tutorial-Game.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Planning-Where-Do-I-Begin.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Characters.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Chargen.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Commands.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Dungeon.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Equipment.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-NPCs.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Objects.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Part3-Overview.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Quests.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Rooms.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Rules.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Shops.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Utilities.md","Howtos/Beginner-Tutorial/Part4/Beginner-Tutorial-Part4-Overview.md","Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page.md","Howtos/Beginner-Tutorial/Part5/Beginner-Tutorial-Part5-Overview.md","Howtos/Evennia-for-Diku-Users.md","Howtos/Evennia-for-MUSH-Users.md","Howtos/Evennia-for-roleplaying-sessions.md","Howtos/Howto-Add-Object-Weight.md","Howtos/Howto-Command-Cooldown.md","Howtos/Howto-Command-Duration.md","Howtos/Howto-Command-Prompt.md","Howtos/Howto-Default-Exit-Errors.md","Howtos/Howto-Game-Time.md","Howtos/Howtos-Overview.md","Howtos/Implementing-a-game-rule-system.md","Howtos/Turn-based-Combat-System.md","Howtos/Tutorial-Building-a-Mech.md","Howtos/Tutorial-Building-a-Train.md","Howtos/Tutorial-Coordinates.md","Howtos/Tutorial-Displaying-Room-Map.md","Howtos/Tutorial-NPC-Listening.md","Howtos/Tutorial-NPC-Merchants.md","Howtos/Tutorial-NPC-Reacting.md","Howtos/Tutorial-Parsing-Commands.md","Howtos/Tutorial-Persistent-Handler.md","Howtos/Tutorial-Understanding-Color-Tags.md","Howtos/Tutorial-Using-Arxcode.md","Howtos/Tutorial-Weather-Effects.md","Howtos/Tutorial-for-basic-MUSH-like-game.md","Howtos/Web-Add-a-wiki.md","Howtos/Web-Changing-Webpage.md","Howtos/Web-Character-Generation.md","Howtos/Web-Character-View-Tutorial.md","Howtos/Web-Extending-the-REST-API.md","Howtos/Web-Help-System-Tutorial.md","Howtos/Web-Tweeting-Game-Stats.md","Licensing.md","Links.md","Setup/Channels-to-Grapevine.md","Setup/Channels-to-IRC.md","Setup/Channels-to-RSS.md","Setup/Channels-to-Twitter.md","Setup/Choosing-a-Database.md","Setup/Client-Support-Grid.md","Setup/Config-Apache-Proxy.md","Setup/Config-HAProxy.md","Setup/Evennia-Game-Index.md","Setup/Installation.md","Setup/Installation-Android.md","Setup/Installation-Docker.md","Setup/Installation-Git.md","Setup/Installation-Non-Interactive.md","Setup/Installation-Troubleshooting.md","Setup/Installation-Upgrade.md","Setup/Online-Setup.md","Setup/Security-Practices.md","Setup/Settings.md","Setup/Settings-Default.md","Setup/Setup-Overview.md","Setup/Start-Stop-Reload.md","Unimplemented.md","api/evennia.md","api/evennia-api.md","api/evennia.accounts.md","api/evennia.accounts.accounts.md","api/evennia.accounts.bots.md","api/evennia.accounts.manager.md","api/evennia.accounts.models.md","api/evennia.commands.md","api/evennia.commands.cmdhandler.md","api/evennia.commands.cmdparser.md","api/evennia.commands.cmdset.md","api/evennia.commands.cmdsethandler.md","api/evennia.commands.command.md","api/evennia.commands.default.md","api/evennia.commands.default.account.md","api/evennia.commands.default.admin.md","api/evennia.commands.default.batchprocess.md","api/evennia.commands.default.building.md","api/evennia.commands.default.cmdset_account.md","api/evennia.commands.default.cmdset_character.md","api/evennia.commands.default.cmdset_session.md","api/evennia.commands.default.cmdset_unloggedin.md","api/evennia.commands.default.comms.md","api/evennia.commands.default.general.md","api/evennia.commands.default.help.md","api/evennia.commands.default.muxcommand.md","api/evennia.commands.default.syscommands.md","api/evennia.commands.default.system.md","api/evennia.commands.default.tests.md","api/evennia.commands.default.unloggedin.md","api/evennia.comms.md","api/evennia.comms.comms.md","api/evennia.comms.managers.md","api/evennia.comms.models.md","api/evennia.contrib.md","api/evennia.contrib.base_systems.md","api/evennia.contrib.base_systems.awsstorage.md","api/evennia.contrib.base_systems.awsstorage.aws_s3_cdn.md","api/evennia.contrib.base_systems.awsstorage.tests.md","api/evennia.contrib.base_systems.building_menu.md","api/evennia.contrib.base_systems.building_menu.building_menu.md","api/evennia.contrib.base_systems.building_menu.tests.md","api/evennia.contrib.base_systems.color_markups.md","api/evennia.contrib.base_systems.color_markups.color_markups.md","api/evennia.contrib.base_systems.color_markups.tests.md","api/evennia.contrib.base_systems.components.md","api/evennia.contrib.base_systems.components.component.md","api/evennia.contrib.base_systems.components.dbfield.md","api/evennia.contrib.base_systems.components.holder.md","api/evennia.contrib.base_systems.components.signals.md","api/evennia.contrib.base_systems.components.tests.md","api/evennia.contrib.base_systems.custom_gametime.md","api/evennia.contrib.base_systems.custom_gametime.custom_gametime.md","api/evennia.contrib.base_systems.custom_gametime.tests.md","api/evennia.contrib.base_systems.email_login.md","api/evennia.contrib.base_systems.email_login.connection_screens.md","api/evennia.contrib.base_systems.email_login.email_login.md","api/evennia.contrib.base_systems.email_login.tests.md","api/evennia.contrib.base_systems.ingame_python.md","api/evennia.contrib.base_systems.ingame_python.callbackhandler.md","api/evennia.contrib.base_systems.ingame_python.commands.md","api/evennia.contrib.base_systems.ingame_python.eventfuncs.md","api/evennia.contrib.base_systems.ingame_python.scripts.md","api/evennia.contrib.base_systems.ingame_python.tests.md","api/evennia.contrib.base_systems.ingame_python.typeclasses.md","api/evennia.contrib.base_systems.ingame_python.utils.md","api/evennia.contrib.base_systems.menu_login.md","api/evennia.contrib.base_systems.menu_login.connection_screens.md","api/evennia.contrib.base_systems.menu_login.menu_login.md","api/evennia.contrib.base_systems.menu_login.tests.md","api/evennia.contrib.base_systems.mux_comms_cmds.md","api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.md","api/evennia.contrib.base_systems.mux_comms_cmds.tests.md","api/evennia.contrib.base_systems.unixcommand.md","api/evennia.contrib.base_systems.unixcommand.tests.md","api/evennia.contrib.base_systems.unixcommand.unixcommand.md","api/evennia.contrib.full_systems.md","api/evennia.contrib.full_systems.evscaperoom.md","api/evennia.contrib.full_systems.evscaperoom.commands.md","api/evennia.contrib.full_systems.evscaperoom.menu.md","api/evennia.contrib.full_systems.evscaperoom.objects.md","api/evennia.contrib.full_systems.evscaperoom.room.md","api/evennia.contrib.full_systems.evscaperoom.scripts.md","api/evennia.contrib.full_systems.evscaperoom.state.md","api/evennia.contrib.full_systems.evscaperoom.tests.md","api/evennia.contrib.full_systems.evscaperoom.utils.md","api/evennia.contrib.game_systems.md","api/evennia.contrib.game_systems.barter.md","api/evennia.contrib.game_systems.barter.barter.md","api/evennia.contrib.game_systems.barter.tests.md","api/evennia.contrib.game_systems.clothing.md","api/evennia.contrib.game_systems.clothing.clothing.md","api/evennia.contrib.game_systems.clothing.tests.md","api/evennia.contrib.game_systems.cooldowns.md","api/evennia.contrib.game_systems.cooldowns.cooldowns.md","api/evennia.contrib.game_systems.cooldowns.tests.md","api/evennia.contrib.game_systems.crafting.md","api/evennia.contrib.game_systems.crafting.crafting.md","api/evennia.contrib.game_systems.crafting.example_recipes.md","api/evennia.contrib.game_systems.crafting.tests.md","api/evennia.contrib.game_systems.gendersub.md","api/evennia.contrib.game_systems.gendersub.gendersub.md","api/evennia.contrib.game_systems.gendersub.tests.md","api/evennia.contrib.game_systems.mail.md","api/evennia.contrib.game_systems.mail.mail.md","api/evennia.contrib.game_systems.mail.tests.md","api/evennia.contrib.game_systems.multidescer.md","api/evennia.contrib.game_systems.multidescer.multidescer.md","api/evennia.contrib.game_systems.multidescer.tests.md","api/evennia.contrib.game_systems.puzzles.md","api/evennia.contrib.game_systems.puzzles.puzzles.md","api/evennia.contrib.game_systems.puzzles.tests.md","api/evennia.contrib.game_systems.turnbattle.md","api/evennia.contrib.game_systems.turnbattle.tb_basic.md","api/evennia.contrib.game_systems.turnbattle.tb_equip.md","api/evennia.contrib.game_systems.turnbattle.tb_items.md","api/evennia.contrib.game_systems.turnbattle.tb_magic.md","api/evennia.contrib.game_systems.turnbattle.tb_range.md","api/evennia.contrib.game_systems.turnbattle.tests.md","api/evennia.contrib.grid.md","api/evennia.contrib.grid.extended_room.md","api/evennia.contrib.grid.extended_room.extended_room.md","api/evennia.contrib.grid.extended_room.tests.md","api/evennia.contrib.grid.ingame_map_display.md","api/evennia.contrib.grid.ingame_map_display.ingame_map_display.md","api/evennia.contrib.grid.ingame_map_display.tests.md","api/evennia.contrib.grid.mapbuilder.md","api/evennia.contrib.grid.mapbuilder.mapbuilder.md","api/evennia.contrib.grid.mapbuilder.tests.md","api/evennia.contrib.grid.simpledoor.md","api/evennia.contrib.grid.simpledoor.simpledoor.md","api/evennia.contrib.grid.simpledoor.tests.md","api/evennia.contrib.grid.slow_exit.md","api/evennia.contrib.grid.slow_exit.slow_exit.md","api/evennia.contrib.grid.slow_exit.tests.md","api/evennia.contrib.grid.wilderness.md","api/evennia.contrib.grid.wilderness.tests.md","api/evennia.contrib.grid.wilderness.wilderness.md","api/evennia.contrib.grid.xyzgrid.md","api/evennia.contrib.grid.xyzgrid.commands.md","api/evennia.contrib.grid.xyzgrid.example.md","api/evennia.contrib.grid.xyzgrid.launchcmd.md","api/evennia.contrib.grid.xyzgrid.prototypes.md","api/evennia.contrib.grid.xyzgrid.tests.md","api/evennia.contrib.grid.xyzgrid.utils.md","api/evennia.contrib.grid.xyzgrid.xymap.md","api/evennia.contrib.grid.xyzgrid.xymap_legend.md","api/evennia.contrib.grid.xyzgrid.xyzgrid.md","api/evennia.contrib.grid.xyzgrid.xyzroom.md","api/evennia.contrib.rpg.md","api/evennia.contrib.rpg.buffs.md","api/evennia.contrib.rpg.buffs.buff.md","api/evennia.contrib.rpg.buffs.samplebuffs.md","api/evennia.contrib.rpg.buffs.tests.md","api/evennia.contrib.rpg.character_creator.md","api/evennia.contrib.rpg.character_creator.character_creator.md","api/evennia.contrib.rpg.character_creator.example_menu.md","api/evennia.contrib.rpg.character_creator.tests.md","api/evennia.contrib.rpg.dice.md","api/evennia.contrib.rpg.dice.dice.md","api/evennia.contrib.rpg.dice.tests.md","api/evennia.contrib.rpg.health_bar.md","api/evennia.contrib.rpg.health_bar.health_bar.md","api/evennia.contrib.rpg.health_bar.tests.md","api/evennia.contrib.rpg.rpsystem.md","api/evennia.contrib.rpg.rpsystem.rplanguage.md","api/evennia.contrib.rpg.rpsystem.rpsystem.md","api/evennia.contrib.rpg.rpsystem.tests.md","api/evennia.contrib.rpg.traits.md","api/evennia.contrib.rpg.traits.tests.md","api/evennia.contrib.rpg.traits.traits.md","api/evennia.contrib.tutorials.md","api/evennia.contrib.tutorials.batchprocessor.md","api/evennia.contrib.tutorials.batchprocessor.example_batch_code.md","api/evennia.contrib.tutorials.bodyfunctions.md","api/evennia.contrib.tutorials.bodyfunctions.bodyfunctions.md","api/evennia.contrib.tutorials.bodyfunctions.tests.md","api/evennia.contrib.tutorials.evadventure.md","api/evennia.contrib.tutorials.evadventure.build_techdemo.md","api/evennia.contrib.tutorials.evadventure.build_world.md","api/evennia.contrib.tutorials.evadventure.characters.md","api/evennia.contrib.tutorials.evadventure.chargen.md","api/evennia.contrib.tutorials.evadventure.combat_turnbased.md","api/evennia.contrib.tutorials.evadventure.commands.md","api/evennia.contrib.tutorials.evadventure.dungeon.md","api/evennia.contrib.tutorials.evadventure.enums.md","api/evennia.contrib.tutorials.evadventure.equipment.md","api/evennia.contrib.tutorials.evadventure.npcs.md","api/evennia.contrib.tutorials.evadventure.objects.md","api/evennia.contrib.tutorials.evadventure.quests.md","api/evennia.contrib.tutorials.evadventure.random_tables.md","api/evennia.contrib.tutorials.evadventure.rooms.md","api/evennia.contrib.tutorials.evadventure.rules.md","api/evennia.contrib.tutorials.evadventure.shops.md","api/evennia.contrib.tutorials.evadventure.tests.md","api/evennia.contrib.tutorials.evadventure.tests.mixins.md","api/evennia.contrib.tutorials.evadventure.tests.test_characters.md","api/evennia.contrib.tutorials.evadventure.tests.test_chargen.md","api/evennia.contrib.tutorials.evadventure.tests.test_combat.md","api/evennia.contrib.tutorials.evadventure.tests.test_commands.md","api/evennia.contrib.tutorials.evadventure.tests.test_dungeon.md","api/evennia.contrib.tutorials.evadventure.tests.test_equipment.md","api/evennia.contrib.tutorials.evadventure.tests.test_quests.md","api/evennia.contrib.tutorials.evadventure.tests.test_rules.md","api/evennia.contrib.tutorials.evadventure.tests.test_utils.md","api/evennia.contrib.tutorials.evadventure.utils.md","api/evennia.contrib.tutorials.mirror.md","api/evennia.contrib.tutorials.mirror.mirror.md","api/evennia.contrib.tutorials.red_button.md","api/evennia.contrib.tutorials.red_button.red_button.md","api/evennia.contrib.tutorials.talking_npc.md","api/evennia.contrib.tutorials.talking_npc.talking_npc.md","api/evennia.contrib.tutorials.talking_npc.tests.md","api/evennia.contrib.tutorials.tutorial_world.md","api/evennia.contrib.tutorials.tutorial_world.intro_menu.md","api/evennia.contrib.tutorials.tutorial_world.mob.md","api/evennia.contrib.tutorials.tutorial_world.objects.md","api/evennia.contrib.tutorials.tutorial_world.rooms.md","api/evennia.contrib.tutorials.tutorial_world.tests.md","api/evennia.contrib.utils.md","api/evennia.contrib.utils.auditing.md","api/evennia.contrib.utils.auditing.outputs.md","api/evennia.contrib.utils.auditing.server.md","api/evennia.contrib.utils.auditing.tests.md","api/evennia.contrib.utils.fieldfill.md","api/evennia.contrib.utils.fieldfill.fieldfill.md","api/evennia.contrib.utils.git_integration.md","api/evennia.contrib.utils.git_integration.git_integration.md","api/evennia.contrib.utils.git_integration.tests.md","api/evennia.contrib.utils.name_generator.md","api/evennia.contrib.utils.name_generator.namegen.md","api/evennia.contrib.utils.name_generator.tests.md","api/evennia.contrib.utils.random_string_generator.md","api/evennia.contrib.utils.random_string_generator.random_string_generator.md","api/evennia.contrib.utils.random_string_generator.tests.md","api/evennia.contrib.utils.tree_select.md","api/evennia.contrib.utils.tree_select.tests.md","api/evennia.contrib.utils.tree_select.tree_select.md","api/evennia.help.md","api/evennia.help.filehelp.md","api/evennia.help.manager.md","api/evennia.help.models.md","api/evennia.help.utils.md","api/evennia.locks.md","api/evennia.locks.lockfuncs.md","api/evennia.locks.lockhandler.md","api/evennia.objects.md","api/evennia.objects.manager.md","api/evennia.objects.models.md","api/evennia.objects.objects.md","api/evennia.prototypes.md","api/evennia.prototypes.menus.md","api/evennia.prototypes.protfuncs.md","api/evennia.prototypes.prototypes.md","api/evennia.prototypes.spawner.md","api/evennia.scripts.md","api/evennia.scripts.manager.md","api/evennia.scripts.models.md","api/evennia.scripts.monitorhandler.md","api/evennia.scripts.scripthandler.md","api/evennia.scripts.scripts.md","api/evennia.scripts.taskhandler.md","api/evennia.scripts.tickerhandler.md","api/evennia.server.md","api/evennia.server.amp_client.md","api/evennia.server.connection_wizard.md","api/evennia.server.deprecations.md","api/evennia.server.evennia_launcher.md","api/evennia.server.game_index_client.md","api/evennia.server.game_index_client.client.md","api/evennia.server.game_index_client.service.md","api/evennia.server.initial_setup.md","api/evennia.server.inputfuncs.md","api/evennia.server.manager.md","api/evennia.server.models.md","api/evennia.server.portal.md","api/evennia.server.portal.amp.md","api/evennia.server.portal.amp_server.md","api/evennia.server.portal.grapevine.md","api/evennia.server.portal.irc.md","api/evennia.server.portal.mccp.md","api/evennia.server.portal.mssp.md","api/evennia.server.portal.mxp.md","api/evennia.server.portal.naws.md","api/evennia.server.portal.portal.md","api/evennia.server.portal.portalsessionhandler.md","api/evennia.server.portal.rss.md","api/evennia.server.portal.ssh.md","api/evennia.server.portal.ssl.md","api/evennia.server.portal.suppress_ga.md","api/evennia.server.portal.telnet.md","api/evennia.server.portal.telnet_oob.md","api/evennia.server.portal.telnet_ssl.md","api/evennia.server.portal.tests.md","api/evennia.server.portal.ttype.md","api/evennia.server.portal.webclient.md","api/evennia.server.portal.webclient_ajax.md","api/evennia.server.profiling.md","api/evennia.server.profiling.dummyrunner.md","api/evennia.server.profiling.dummyrunner_settings.md","api/evennia.server.profiling.memplot.md","api/evennia.server.profiling.settings_mixin.md","api/evennia.server.profiling.test_queries.md","api/evennia.server.profiling.tests.md","api/evennia.server.profiling.timetrace.md","api/evennia.server.server.md","api/evennia.server.serversession.md","api/evennia.server.session.md","api/evennia.server.sessionhandler.md","api/evennia.server.signals.md","api/evennia.server.throttle.md","api/evennia.server.validators.md","api/evennia.server.webserver.md","api/evennia.settings_default.md","api/evennia.typeclasses.md","api/evennia.typeclasses.attributes.md","api/evennia.typeclasses.managers.md","api/evennia.typeclasses.models.md","api/evennia.typeclasses.tags.md","api/evennia.utils.md","api/evennia.utils.ansi.md","api/evennia.utils.batchprocessors.md","api/evennia.utils.containers.md","api/evennia.utils.create.md","api/evennia.utils.dbserialize.md","api/evennia.utils.eveditor.md","api/evennia.utils.evform.md","api/evennia.utils.evmenu.md","api/evennia.utils.evmore.md","api/evennia.utils.evtable.md","api/evennia.utils.funcparser.md","api/evennia.utils.gametime.md","api/evennia.utils.idmapper.md","api/evennia.utils.idmapper.manager.md","api/evennia.utils.idmapper.models.md","api/evennia.utils.idmapper.tests.md","api/evennia.utils.logger.md","api/evennia.utils.optionclasses.md","api/evennia.utils.optionhandler.md","api/evennia.utils.picklefield.md","api/evennia.utils.search.md","api/evennia.utils.test_resources.md","api/evennia.utils.text2html.md","api/evennia.utils.utils.md","api/evennia.utils.validatorfuncs.md","api/evennia.utils.verb_conjugation.md","api/evennia.utils.verb_conjugation.conjugate.md","api/evennia.utils.verb_conjugation.pronouns.md","api/evennia.utils.verb_conjugation.tests.md","api/evennia.web.md","api/evennia.web.admin.md","api/evennia.web.admin.accounts.md","api/evennia.web.admin.attributes.md","api/evennia.web.admin.comms.md","api/evennia.web.admin.frontpage.md","api/evennia.web.admin.help.md","api/evennia.web.admin.objects.md","api/evennia.web.admin.scripts.md","api/evennia.web.admin.server.md","api/evennia.web.admin.tags.md","api/evennia.web.admin.urls.md","api/evennia.web.admin.utils.md","api/evennia.web.api.md","api/evennia.web.api.filters.md","api/evennia.web.api.permissions.md","api/evennia.web.api.root.md","api/evennia.web.api.serializers.md","api/evennia.web.api.tests.md","api/evennia.web.api.urls.md","api/evennia.web.api.views.md","api/evennia.web.templatetags.md","api/evennia.web.templatetags.addclass.md","api/evennia.web.urls.md","api/evennia.web.utils.md","api/evennia.web.utils.adminsite.md","api/evennia.web.utils.backends.md","api/evennia.web.utils.general_context.md","api/evennia.web.utils.middleware.md","api/evennia.web.utils.tests.md","api/evennia.web.webclient.md","api/evennia.web.webclient.urls.md","api/evennia.web.webclient.views.md","api/evennia.web.website.md","api/evennia.web.website.forms.md","api/evennia.web.website.tests.md","api/evennia.web.website.urls.md","api/evennia.web.website.views.md","api/evennia.web.website.views.accounts.md","api/evennia.web.website.views.channels.md","api/evennia.web.website.views.characters.md","api/evennia.web.website.views.errors.md","api/evennia.web.website.views.help.md","api/evennia.web.website.views.index.md","api/evennia.web.website.views.mixins.md","api/evennia.web.website.views.objects.md","index.md"],objects:{"":{evennia:[224,0,0,"-"]},"evennia.accounts":{accounts:[227,0,0,"-"],bots:[228,0,0,"-"],manager:[229,0,0,"-"],models:[230,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[227,1,1,""],DefaultGuest:[227,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[227,3,1,""],DoesNotExist:[227,2,1,""],MultipleObjectsReturned:[227,2,1,""],access:[227,3,1,""],at_access:[227,3,1,""],at_account_creation:[227,3,1,""],at_cmdset_get:[227,3,1,""],at_disconnect:[227,3,1,""],at_failed_login:[227,3,1,""],at_first_login:[227,3,1,""],at_first_save:[227,3,1,""],at_init:[227,3,1,""],at_look:[227,3,1,""],at_msg_receive:[227,3,1,""],at_msg_send:[227,3,1,""],at_password_change:[227,3,1,""],at_post_channel_msg:[227,3,1,""],at_post_disconnect:[227,3,1,""],at_post_login:[227,3,1,""],at_pre_channel_msg:[227,3,1,""],at_pre_login:[227,3,1,""],at_server_reload:[227,3,1,""],at_server_shutdown:[227,3,1,""],authenticate:[227,3,1,""],basetype_setup:[227,3,1,""],channel_msg:[227,3,1,""],character:[227,3,1,""],characters:[227,3,1,""],cmdset:[227,4,1,""],connection_time:[227,3,1,""],create:[227,3,1,""],create_character:[227,3,1,""],disconnect_session_from_account:[227,3,1,""],execute_cmd:[227,3,1,""],get_all_puppets:[227,3,1,""],get_display_name:[227,3,1,""],get_puppet:[227,3,1,""],get_username_validators:[227,3,1,""],idle_time:[227,3,1,""],is_banned:[227,3,1,""],msg:[227,3,1,""],nicks:[227,4,1,""],normalize_username:[227,3,1,""],objects:[227,4,1,""],ooc_appearance_template:[227,4,1,""],options:[227,4,1,""],path:[227,4,1,""],puppet:[227,3,1,""],puppet_object:[227,3,1,""],scripts:[227,4,1,""],search:[227,3,1,""],sessions:[227,4,1,""],set_password:[227,3,1,""],typename:[227,4,1,""],unpuppet_all:[227,3,1,""],unpuppet_object:[227,3,1,""],uses_screenreader:[227,3,1,""],validate_password:[227,3,1,""],validate_username:[227,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[227,2,1,""],MultipleObjectsReturned:[227,2,1,""],at_post_disconnect:[227,3,1,""],at_post_login:[227,3,1,""],at_server_shutdown:[227,3,1,""],authenticate:[227,3,1,""],create:[227,3,1,""],path:[227,4,1,""],typename:[227,4,1,""]},"evennia.accounts.bots":{Bot:[228,1,1,""],BotStarter:[228,1,1,""],GrapevineBot:[228,1,1,""],IRCBot:[228,1,1,""],RSSBot:[228,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[228,2,1,""],MultipleObjectsReturned:[228,2,1,""],at_server_shutdown:[228,3,1,""],basetype_setup:[228,3,1,""],execute_cmd:[228,3,1,""],msg:[228,3,1,""],path:[228,4,1,""],start:[228,3,1,""],typename:[228,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[228,2,1,""],MultipleObjectsReturned:[228,2,1,""],at_repeat:[228,3,1,""],at_script_creation:[228,3,1,""],at_server_reload:[228,3,1,""],at_server_shutdown:[228,3,1,""],at_start:[228,3,1,""],path:[228,4,1,""],typename:[228,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[228,2,1,""],MultipleObjectsReturned:[228,2,1,""],at_msg_send:[228,3,1,""],execute_cmd:[228,3,1,""],factory_path:[228,4,1,""],msg:[228,3,1,""],path:[228,4,1,""],start:[228,3,1,""],typename:[228,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[228,2,1,""],MultipleObjectsReturned:[228,2,1,""],at_msg_send:[228,3,1,""],execute_cmd:[228,3,1,""],factory_path:[228,4,1,""],get_nicklist:[228,3,1,""],msg:[228,3,1,""],path:[228,4,1,""],ping:[228,3,1,""],reconnect:[228,3,1,""],start:[228,3,1,""],typename:[228,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[228,2,1,""],MultipleObjectsReturned:[228,2,1,""],execute_cmd:[228,3,1,""],path:[228,4,1,""],start:[228,3,1,""],typename:[228,4,1,""]},"evennia.accounts.manager":{AccountDBManager:[229,1,1,""],AccountManager:[229,1,1,""]},"evennia.accounts.manager.AccountDBManager":{account_search:[229,3,1,""],create_account:[229,3,1,""],get_account_from_email:[229,3,1,""],get_account_from_name:[229,3,1,""],get_account_from_uid:[229,3,1,""],get_connected_accounts:[229,3,1,""],get_recently_connected_accounts:[229,3,1,""],get_recently_created_accounts:[229,3,1,""],num_total_accounts:[229,3,1,""],search_account:[229,3,1,""]},"evennia.accounts.models":{AccountDB:[230,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[230,2,1,""],MultipleObjectsReturned:[230,2,1,""],account_subscription_set:[230,4,1,""],cmdset_storage:[230,3,1,""],date_joined:[230,4,1,""],db_attributes:[230,4,1,""],db_cmdset_storage:[230,4,1,""],db_date_created:[230,4,1,""],db_is_bot:[230,4,1,""],db_is_connected:[230,4,1,""],db_key:[230,4,1,""],db_lock_storage:[230,4,1,""],db_tags:[230,4,1,""],db_typeclass_path:[230,4,1,""],email:[230,4,1,""],first_name:[230,4,1,""],get_next_by_date_joined:[230,3,1,""],get_next_by_db_date_created:[230,3,1,""],get_previous_by_date_joined:[230,3,1,""],get_previous_by_db_date_created:[230,3,1,""],groups:[230,4,1,""],hide_from_accounts_set:[230,4,1,""],id:[230,4,1,""],is_active:[230,4,1,""],is_bot:[230,3,1,""],is_connected:[230,3,1,""],is_staff:[230,4,1,""],is_superuser:[230,4,1,""],key:[230,3,1,""],last_login:[230,4,1,""],last_name:[230,4,1,""],logentry_set:[230,4,1,""],name:[230,3,1,""],objectdb_set:[230,4,1,""],objects:[230,4,1,""],password:[230,4,1,""],path:[230,4,1,""],receiver_account_set:[230,4,1,""],scriptdb_set:[230,4,1,""],sender_account_set:[230,4,1,""],typename:[230,4,1,""],uid:[230,3,1,""],user_permissions:[230,4,1,""],username:[230,4,1,""]},"evennia.commands":{"default":[237,0,0,"-"],cmdhandler:[232,0,0,"-"],cmdparser:[233,0,0,"-"],cmdset:[234,0,0,"-"],cmdsethandler:[235,0,0,"-"],command:[236,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[232,2,1,""],cmdhandler:[232,5,1,""]},"evennia.commands.cmdparser":{build_matches:[233,5,1,""],cmdparser:[233,5,1,""],create_match:[233,5,1,""],try_num_differentiators:[233,5,1,""]},"evennia.commands.cmdset":{CmdSet:[234,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[234,3,1,""],add:[234,3,1,""],at_cmdset_creation:[234,3,1,""],count:[234,3,1,""],duplicates:[234,4,1,""],errmessage:[234,4,1,""],get:[234,3,1,""],get_all_cmd_keys_and_aliases:[234,3,1,""],get_system_cmds:[234,3,1,""],key:[234,4,1,""],key_mergetypes:[234,4,1,""],make_unique:[234,3,1,""],mergetype:[234,4,1,""],no_channels:[234,4,1,""],no_exits:[234,4,1,""],no_objs:[234,4,1,""],path:[234,4,1,""],persistent:[234,4,1,""],priority:[234,4,1,""],remove:[234,3,1,""],to_duplicate:[234,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[235,1,1,""],import_cmdset:[235,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[235,3,1,""],__init__:[235,3,1,""],add:[235,3,1,""],add_default:[235,3,1,""],all:[235,3,1,""],clear:[235,3,1,""],delete_default:[235,3,1,""],get:[235,3,1,""],has:[235,3,1,""],has_cmdset:[235,3,1,""],remove:[235,3,1,""],remove_default:[235,3,1,""],reset:[235,3,1,""],update:[235,3,1,""]},"evennia.commands.command":{Command:[236,1,1,""],CommandMeta:[236,1,1,""],InterruptCommand:[236,2,1,""]},"evennia.commands.command.Command":{__init__:[236,3,1,""],access:[236,3,1,""],aliases:[236,4,1,""],arg_regex:[236,4,1,""],at_post_cmd:[236,3,1,""],at_pre_cmd:[236,3,1,""],auto_help:[236,4,1,""],client_width:[236,3,1,""],execute_cmd:[236,3,1,""],func:[236,3,1,""],get_command_info:[236,3,1,""],get_extra_info:[236,3,1,""],get_help:[236,3,1,""],help_category:[236,4,1,""],is_exit:[236,4,1,""],key:[236,4,1,""],lock_storage:[236,4,1,""],lockhandler:[236,4,1,""],locks:[236,4,1,""],match:[236,3,1,""],msg:[236,3,1,""],msg_all_sessions:[236,4,1,""],parse:[236,3,1,""],retain_instance:[236,4,1,""],save_for_next:[236,4,1,""],search_index_entry:[236,4,1,""],set_aliases:[236,3,1,""],set_key:[236,3,1,""],styled_footer:[236,3,1,""],styled_header:[236,3,1,""],styled_separator:[236,3,1,""],styled_table:[236,3,1,""],web_get_admin_url:[236,3,1,""],web_get_detail_url:[236,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[236,3,1,""]},"evennia.commands.default":{account:[238,0,0,"-"],admin:[239,0,0,"-"],batchprocess:[240,0,0,"-"],building:[241,0,0,"-"],cmdset_account:[242,0,0,"-"],cmdset_character:[243,0,0,"-"],cmdset_session:[244,0,0,"-"],cmdset_unloggedin:[245,0,0,"-"],comms:[246,0,0,"-"],general:[247,0,0,"-"],help:[248,0,0,"-"],muxcommand:[249,0,0,"-"],syscommands:[250,0,0,"-"],system:[251,0,0,"-"],unloggedin:[253,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[238,1,1,""],CmdCharDelete:[238,1,1,""],CmdColorTest:[238,1,1,""],CmdIC:[238,1,1,""],CmdOOC:[238,1,1,""],CmdOOCLook:[238,1,1,""],CmdOption:[238,1,1,""],CmdPassword:[238,1,1,""],CmdQuell:[238,1,1,""],CmdQuit:[238,1,1,""],CmdSessions:[238,1,1,""],CmdStyle:[238,1,1,""],CmdWho:[238,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[238,4,1,""],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.commands.default.account.CmdCharDelete":{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.commands.default.account.CmdColorTest":{account_caller:[238,4,1,""],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,""],slice_bright_bg:[238,4,1,""],slice_bright_fg:[238,4,1,""],slice_dark_bg:[238,4,1,""],slice_dark_fg:[238,4,1,""],table_format:[238,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[238,4,1,""],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.commands.default.account.CmdOOC":{account_caller:[238,4,1,""],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.commands.default.account.CmdOOCLook":{account_caller:[238,4,1,""],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.commands.default.account.CmdOption":{account_caller:[238,4,1,""],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,""],switch_options:[238,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[238,4,1,""],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.commands.default.account.CmdQuell":{account_caller:[238,4,1,""],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.commands.default.account.CmdQuit":{account_caller:[238,4,1,""],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,""],switch_options:[238,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[238,4,1,""],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.commands.default.account.CmdStyle":{aliases:[238,4,1,""],func:[238,3,1,""],help_category:[238,4,1,""],key:[238,4,1,""],list_styles:[238,3,1,""],lock_storage:[238,4,1,""],search_index_entry:[238,4,1,""],set:[238,3,1,""],switch_options:[238,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[238,4,1,""],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.commands.default.admin":{CmdBan:[239,1,1,""],CmdBoot:[239,1,1,""],CmdEmit:[239,1,1,""],CmdForce:[239,1,1,""],CmdNewPassword:[239,1,1,""],CmdPerm:[239,1,1,""],CmdUnban:[239,1,1,""],CmdWall:[239,1,1,""]},"evennia.commands.default.admin.CmdBan":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.admin.CmdBoot":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""],switch_options:[239,4,1,""]},"evennia.commands.default.admin.CmdEmit":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""],switch_options:[239,4,1,""]},"evennia.commands.default.admin.CmdForce":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],perm_used:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.admin.CmdPerm":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""],switch_options:[239,4,1,""]},"evennia.commands.default.admin.CmdUnban":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.admin.CmdWall":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.batchprocess":{CmdBatchCode:[240,1,1,""],CmdBatchCommands:[240,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],search_index_entry:[240,4,1,""],switch_options:[240,4,1,""]},"evennia.commands.default.batchprocess.CmdBatchCommands":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],search_index_entry:[240,4,1,""],switch_options:[240,4,1,""]},"evennia.commands.default.building":{CmdCopy:[241,1,1,""],CmdCpAttr:[241,1,1,""],CmdCreate:[241,1,1,""],CmdDesc:[241,1,1,""],CmdDestroy:[241,1,1,""],CmdDig:[241,1,1,""],CmdExamine:[241,1,1,""],CmdFind:[241,1,1,""],CmdLink:[241,1,1,""],CmdListCmdSets:[241,1,1,""],CmdLock:[241,1,1,""],CmdMvAttr:[241,1,1,""],CmdName:[241,1,1,""],CmdObjects:[241,1,1,""],CmdOpen:[241,1,1,""],CmdScripts:[241,1,1,""],CmdSetAttribute:[241,1,1,""],CmdSetHome:[241,1,1,""],CmdSetObjAlias:[241,1,1,""],CmdSpawn:[241,1,1,""],CmdTag:[241,1,1,""],CmdTeleport:[241,1,1,""],CmdTunnel:[241,1,1,""],CmdTypeclass:[241,1,1,""],CmdUnLink:[241,1,1,""],CmdWipe:[241,1,1,""],ObjManipCommand:[241,1,1,""]},"evennia.commands.default.building.CmdCopy":{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.commands.default.building.CmdCpAttr":{aliases:[241,4,1,""],check_from_attr:[241,3,1,""],check_has_attr:[241,3,1,""],check_to_attr:[241,3,1,""],func:[241,3,1,""],get_attr:[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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdCreate":{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,""],new_obj_lockstring:[241,4,1,""],search_index_entry:[241,4,1,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[241,4,1,""],edit_handler:[241,3,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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[241,4,1,""],confirm:[241,4,1,""],default_confirm:[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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdDig":{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,""],new_room_lockstring:[241,4,1,""],search_index_entry:[241,4,1,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdExamine":{aliases:[241,4,1,""],arg_regex:[241,4,1,""],detail_color:[241,4,1,""],format_account_key:[241,3,1,""],format_account_permissions:[241,3,1,""],format_account_typeclass:[241,3,1,""],format_aliases:[241,3,1,""],format_attributes:[241,3,1,""],format_channel_account_subs:[241,3,1,""],format_channel_object_subs:[241,3,1,""],format_channel_sub_totals:[241,3,1,""],format_chars:[241,3,1,""],format_current_cmds:[241,3,1,""],format_destination:[241,3,1,""],format_email:[241,3,1,""],format_exits:[241,3,1,""],format_home:[241,3,1,""],format_key:[241,3,1,""],format_location:[241,3,1,""],format_locks:[241,3,1,""],format_merged_cmdsets:[241,3,1,""],format_nattributes:[241,3,1,""],format_output:[241,3,1,""],format_permissions:[241,3,1,""],format_script_desc:[241,3,1,""],format_script_is_persistent:[241,3,1,""],format_script_timer_data:[241,3,1,""],format_scripts:[241,3,1,""],format_sessions:[241,3,1,""],format_single_attribute:[241,3,1,""],format_single_attribute_detail:[241,3,1,""],format_single_cmdset:[241,3,1,""],format_single_cmdset_options:[241,3,1,""],format_single_tag:[241,3,1,""],format_stored_cmdsets:[241,3,1,""],format_tags:[241,3,1,""],format_things:[241,3,1,""],format_typeclass:[241,3,1,""],func:[241,3,1,""],get_formatted_obj_data:[241,3,1,""],header_color:[241,4,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],msg:[241,3,1,""],object_type:[241,4,1,""],parse:[241,3,1,""],quell_color:[241,4,1,""],search_index_entry:[241,4,1,""],separator:[241,4,1,""],switch_options:[241,4,1,""],text:[241,4,1,""]},"evennia.commands.default.building.CmdFind":{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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdLink":{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.commands.default.building.CmdListCmdSets":{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.commands.default.building.CmdLock":{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.commands.default.building.CmdMvAttr":{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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdName":{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.commands.default.building.CmdObjects":{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.commands.default.building.CmdOpen":{aliases:[241,4,1,""],create_exit:[241,3,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],new_obj_lockstring:[241,4,1,""],parse:[241,3,1,""],search_index_entry:[241,4,1,""]},"evennia.commands.default.building.CmdScripts":{aliases:[241,4,1,""],excluded_typeclass_paths:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],hide_script_paths:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],search_index_entry:[241,4,1,""],switch_mapping:[241,4,1,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[241,4,1,""],check_attr:[241,3,1,""],check_obj:[241,3,1,""],do_nested_lookup:[241,3,1,""],edit_handler:[241,3,1,""],func:[241,3,1,""],help_category:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],nested_re:[241,4,1,""],not_found:[241,4,1,""],rm_attr:[241,3,1,""],search_for_obj:[241,3,1,""],search_index_entry:[241,4,1,""],set_attr:[241,3,1,""],split_nested_attr:[241,3,1,""],view_attr:[241,3,1,""]},"evennia.commands.default.building.CmdSetHome":{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.commands.default.building.CmdSetObjAlias":{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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdSpawn":{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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[241,4,1,""],arg_regex:[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,""],options:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.commands.default.building.CmdTeleport":{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,""],parse:[241,3,1,""],rhs_split:[241,4,1,""],search_index_entry:[241,4,1,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[241,4,1,""],directions:[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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[241,4,1,""],func:[241,3,1,""],help_category:[241,4,1,""],help_key:[241,4,1,""],key:[241,4,1,""],lock_storage:[241,4,1,""],locks:[241,4,1,""],search_index_entry:[241,4,1,""]},"evennia.commands.default.building.CmdWipe":{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.commands.default.building.ObjManipCommand":{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.commands.default.cmdset_account":{AccountCmdSet:[242,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[242,3,1,""],key:[242,4,1,""],path:[242,4,1,""],priority:[242,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[243,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[243,3,1,""],key:[243,4,1,""],path:[243,4,1,""],priority:[243,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[244,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[244,3,1,""],key:[244,4,1,""],path:[244,4,1,""],priority:[244,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[245,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[245,3,1,""],key:[245,4,1,""],path:[245,4,1,""],priority:[245,4,1,""]},"evennia.commands.default.comms":{CmdChannel:[246,1,1,""],CmdGrapevine2Chan:[246,1,1,""],CmdIRC2Chan:[246,1,1,""],CmdIRCStatus:[246,1,1,""],CmdObjectChannel:[246,1,1,""],CmdPage:[246,1,1,""],CmdRSS2Chan:[246,1,1,""]},"evennia.commands.default.comms.CmdChannel":{account_caller:[246,4,1,""],add_alias:[246,3,1,""],aliases:[246,4,1,""],ban_user:[246,3,1,""],boot_user:[246,3,1,""],channel_list_bans:[246,3,1,""],channel_list_who:[246,3,1,""],create_channel:[246,3,1,""],destroy_channel:[246,3,1,""],display_all_channels:[246,3,1,""],display_subbed_channels:[246,3,1,""],func:[246,3,1,""],get_channel_aliases:[246,3,1,""],get_channel_history:[246,3,1,""],help_category:[246,4,1,""],key:[246,4,1,""],list_channels:[246,3,1,""],lock_storage:[246,4,1,""],locks:[246,4,1,""],msg_channel:[246,3,1,""],mute_channel:[246,3,1,""],remove_alias:[246,3,1,""],search_channel:[246,3,1,""],search_index_entry:[246,4,1,""],set_desc:[246,3,1,""],set_lock:[246,3,1,""],sub_to_channel:[246,3,1,""],switch_options:[246,4,1,""],unban_user:[246,3,1,""],unmute_channel:[246,3,1,""],unset_lock:[246,3,1,""],unsub_from_channel:[246,3,1,""]},"evennia.commands.default.comms.CmdGrapevine2Chan":{aliases:[246,4,1,""],func:[246,3,1,""],help_category:[246,4,1,""],key:[246,4,1,""],lock_storage:[246,4,1,""],locks:[246,4,1,""],search_index_entry:[246,4,1,""],switch_options:[246,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{aliases:[246,4,1,""],func:[246,3,1,""],help_category:[246,4,1,""],key:[246,4,1,""],lock_storage:[246,4,1,""],locks:[246,4,1,""],search_index_entry:[246,4,1,""],switch_options:[246,4,1,""]},"evennia.commands.default.comms.CmdIRCStatus":{aliases:[246,4,1,""],func:[246,3,1,""],help_category:[246,4,1,""],key:[246,4,1,""],lock_storage:[246,4,1,""],locks:[246,4,1,""],search_index_entry:[246,4,1,""]},"evennia.commands.default.comms.CmdObjectChannel":{account_caller:[246,4,1,""],aliases:[246,4,1,""],help_category:[246,4,1,""],key:[246,4,1,""],lock_storage:[246,4,1,""],search_index_entry:[246,4,1,""]},"evennia.commands.default.comms.CmdPage":{account_caller:[246,4,1,""],aliases:[246,4,1,""],func:[246,3,1,""],help_category:[246,4,1,""],key:[246,4,1,""],lock_storage:[246,4,1,""],locks:[246,4,1,""],search_index_entry:[246,4,1,""],switch_options:[246,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{aliases:[246,4,1,""],func:[246,3,1,""],help_category:[246,4,1,""],key:[246,4,1,""],lock_storage:[246,4,1,""],locks:[246,4,1,""],search_index_entry:[246,4,1,""],switch_options:[246,4,1,""]},"evennia.commands.default.general":{CmdAccess:[247,1,1,""],CmdDrop:[247,1,1,""],CmdGet:[247,1,1,""],CmdGive:[247,1,1,""],CmdHome:[247,1,1,""],CmdInventory:[247,1,1,""],CmdLook:[247,1,1,""],CmdNick:[247,1,1,""],CmdPose:[247,1,1,""],CmdSay:[247,1,1,""],CmdSetDesc:[247,1,1,""],CmdWhisper:[247,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[247,4,1,""],arg_regex:[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.commands.default.general.CmdDrop":{aliases:[247,4,1,""],arg_regex:[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.commands.default.general.CmdGet":{aliases:[247,4,1,""],arg_regex:[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.commands.default.general.CmdGive":{aliases:[247,4,1,""],arg_regex:[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,""],rhs_split:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[247,4,1,""],arg_regex:[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.commands.default.general.CmdInventory":{aliases:[247,4,1,""],arg_regex:[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.commands.default.general.CmdLook":{aliases:[247,4,1,""],arg_regex:[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.commands.default.general.CmdNick":{aliases:[247,4,1,""],func:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],parse:[247,3,1,""],search_index_entry:[247,4,1,""],switch_options:[247,4,1,""]},"evennia.commands.default.general.CmdPose":{aliases:[247,4,1,""],arg_regex:[247,4,1,""],func:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],parse:[247,3,1,""],search_index_entry:[247,4,1,""]},"evennia.commands.default.general.CmdSay":{aliases:[247,4,1,""],arg_regex:[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.commands.default.general.CmdSetDesc":{aliases:[247,4,1,""],arg_regex:[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.commands.default.general.CmdWhisper":{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.commands.default.help":{CmdHelp:[248,1,1,""],CmdSetHelp:[248,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],can_list_topic:[248,3,1,""],can_read_topic:[248,3,1,""],clickable_topics:[248,4,1,""],collect_topics:[248,3,1,""],do_search:[248,3,1,""],format_help_entry:[248,3,1,""],format_help_index:[248,3,1,""],func:[248,3,1,""],help_category:[248,4,1,""],help_more:[248,4,1,""],index_category_clr:[248,4,1,""],index_topic_clr:[248,4,1,""],index_type_separator_clr:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],msg_help:[248,3,1,""],parse:[248,3,1,""],return_cmdset:[248,4,1,""],search_index_entry:[248,4,1,""],strip_cmd_prefix:[248,3,1,""],subtopic_separator_char:[248,4,1,""],suggestion_cutoff:[248,4,1,""],suggestion_maxnum:[248,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],parse:[248,3,1,""],search_index_entry:[248,4,1,""],switch_options:[248,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[249,1,1,""],MuxCommand:[249,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[249,4,1,""],aliases:[249,4,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],search_index_entry:[249,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[249,4,1,""],at_post_cmd:[249,3,1,""],at_pre_cmd:[249,3,1,""],func:[249,3,1,""],get_command_info:[249,3,1,""],has_perm:[249,3,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],parse:[249,3,1,""],search_index_entry:[249,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[250,1,1,""],SystemNoInput:[250,1,1,""],SystemNoMatch:[250,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[250,4,1,""],func:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],locks:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.commands.default.system":{CmdAbout:[251,1,1,""],CmdAccounts:[251,1,1,""],CmdPy:[251,1,1,""],CmdReload:[251,1,1,""],CmdReset:[251,1,1,""],CmdServerLoad:[251,1,1,""],CmdService:[251,1,1,""],CmdShutdown:[251,1,1,""],CmdTasks:[251,1,1,""],CmdTickers:[251,1,1,""],CmdTime:[251,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""]},"evennia.commands.default.system.CmdAccounts":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""],switch_options:[251,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[251,4,1,""],arg_regex:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""],switch_options:[251,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""],switch_options:[251,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""],switch_options:[251,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""]},"evennia.commands.default.system.CmdTasks":{aliases:[251,4,1,""],coll_date_func:[251,3,1,""],do_task_action:[251,3,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""],switch_options:[251,4,1,""]},"evennia.commands.default.system.CmdTickers":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[252,1,1,""],TestAccount:[252,1,1,""],TestAdmin:[252,1,1,""],TestBatchProcess:[252,1,1,""],TestBuilding:[252,1,1,""],TestCmdTasks:[252,1,1,""],TestComms:[252,1,1,""],TestCommsChannel:[252,1,1,""],TestGeneral:[252,1,1,""],TestHelp:[252,1,1,""],TestInterruptCommand:[252,1,1,""],TestSystem:[252,1,1,""],TestSystemCommands:[252,1,1,""],TestUnconnectedCommand:[252,1,1,""],func_test_cmd_tasks:[252,5,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],parse:[252,3,1,""],search_index_entry:[252,4,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[252,3,1,""],test_char_delete:[252,3,1,""],test_color_test:[252,3,1,""],test_ic:[252,3,1,""],test_ic__nonaccess:[252,3,1,""],test_ic__other_object:[252,3,1,""],test_ooc:[252,3,1,""],test_ooc_look:[252,4,1,""],test_ooc_look_00:[252,3,1,""],test_ooc_look_01:[252,3,1,""],test_ooc_look_02:[252,3,1,""],test_ooc_look_03:[252,3,1,""],test_ooc_look_04:[252,3,1,""],test_ooc_look_05:[252,3,1,""],test_ooc_look_06:[252,3,1,""],test_ooc_look_07:[252,3,1,""],test_ooc_look_08:[252,3,1,""],test_ooc_look_09:[252,3,1,""],test_ooc_look_10:[252,3,1,""],test_ooc_look_11:[252,3,1,""],test_ooc_look_12:[252,3,1,""],test_ooc_look_13:[252,3,1,""],test_ooc_look_14:[252,3,1,""],test_ooc_look_15:[252,3,1,""],test_option:[252,3,1,""],test_password:[252,3,1,""],test_quell:[252,3,1,""],test_quit:[252,3,1,""],test_sessions:[252,3,1,""],test_who:[252,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[252,3,1,""],test_emit:[252,3,1,""],test_force:[252,3,1,""],test_perm:[252,3,1,""],test_wall:[252,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{red_button:[252,4,1,""],test_batch_commands:[252,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[252,3,1,""],test_copy:[252,3,1,""],test_create:[252,3,1,""],test_desc:[252,3,1,""],test_desc_default_to_room:[252,3,1,""],test_destroy:[252,3,1,""],test_destroy_sequence:[252,3,1,""],test_dig:[252,3,1,""],test_do_nested_lookup:[252,3,1,""],test_empty_desc:[252,3,1,""],test_examine:[252,3,1,""],test_exit_commands:[252,3,1,""],test_find:[252,3,1,""],test_list_cmdsets:[252,3,1,""],test_lock:[252,3,1,""],test_name:[252,3,1,""],test_nested_attribute_commands:[252,3,1,""],test_script:[252,3,1,""],test_script_multi_delete:[252,3,1,""],test_set_home:[252,3,1,""],test_set_obj_alias:[252,3,1,""],test_spawn:[252,3,1,""],test_split_nested_attr:[252,3,1,""],test_tag:[252,3,1,""],test_teleport:[252,3,1,""],test_tunnel:[252,3,1,""],test_tunnel_exit_typeclass:[252,3,1,""],test_typeclass:[252,3,1,""]},"evennia.commands.default.tests.TestCmdTasks":{setUp:[252,3,1,""],tearDown:[252,3,1,""],test_active_task:[252,3,1,""],test_call:[252,3,1,""],test_cancel:[252,3,1,""],test_do_task:[252,3,1,""],test_func_name_manipulation:[252,3,1,""],test_misformed_command:[252,3,1,""],test_new_task_waiting_input:[252,3,1,""],test_no_input:[252,3,1,""],test_no_tasks:[252,3,1,""],test_pause_unpause:[252,3,1,""],test_persistent_task:[252,3,1,""],test_remove:[252,3,1,""],test_responce_of_yes:[252,3,1,""],test_task_complete_waiting_input:[252,3,1,""],test_wrong_func_name:[252,3,1,""]},"evennia.commands.default.tests.TestComms":{test_page:[252,3,1,""]},"evennia.commands.default.tests.TestCommsChannel":{setUp:[252,3,1,""],tearDown:[252,3,1,""],test_channel__alias__unalias:[252,3,1,""],test_channel__all:[252,3,1,""],test_channel__ban__unban:[252,3,1,""],test_channel__boot:[252,3,1,""],test_channel__create:[252,3,1,""],test_channel__desc:[252,3,1,""],test_channel__destroy:[252,3,1,""],test_channel__history:[252,3,1,""],test_channel__list:[252,3,1,""],test_channel__lock:[252,3,1,""],test_channel__msg:[252,3,1,""],test_channel__mute:[252,3,1,""],test_channel__noarg:[252,3,1,""],test_channel__sub:[252,3,1,""],test_channel__unlock:[252,3,1,""],test_channel__unmute:[252,3,1,""],test_channel__unsub:[252,3,1,""],test_channel__who:[252,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[252,3,1,""],test_get_and_drop:[252,3,1,""],test_give:[252,3,1,""],test_go_home:[252,3,1,""],test_home:[252,3,1,""],test_inventory:[252,3,1,""],test_look:[252,3,1,""],test_look_no_location:[252,3,1,""],test_look_nonexisting:[252,3,1,""],test_mux_command:[252,3,1,""],test_nick:[252,3,1,""],test_nick_list:[252,3,1,""],test_no_home:[252,3,1,""],test_pose:[252,3,1,""],test_say:[252,3,1,""],test_whisper:[252,3,1,""]},"evennia.commands.default.tests.TestHelp":{maxDiff:[252,4,1,""],setUp:[252,3,1,""],tearDown:[252,3,1,""],test_help:[252,3,1,""],test_set_help:[252,3,1,""],test_subtopic_fetch:[252,4,1,""],test_subtopic_fetch_00_test:[252,3,1,""],test_subtopic_fetch_01_test_creating_extra_stuff:[252,3,1,""],test_subtopic_fetch_02_test_creating:[252,3,1,""],test_subtopic_fetch_03_test_extra:[252,3,1,""],test_subtopic_fetch_04_test_extra_subsubtopic:[252,3,1,""],test_subtopic_fetch_05_test_creating_extra_subsub:[252,3,1,""],test_subtopic_fetch_06_test_Something_else:[252,3,1,""],test_subtopic_fetch_07_test_More:[252,3,1,""],test_subtopic_fetch_08_test_More_Second_more:[252,3,1,""],test_subtopic_fetch_09_test_More_more:[252,3,1,""],test_subtopic_fetch_10_test_more_second_more_again:[252,3,1,""],test_subtopic_fetch_11_test_more_second_third:[252,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[252,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[252,3,1,""],test_objects:[252,3,1,""],test_py:[252,3,1,""],test_scripts:[252,3,1,""],test_server_load:[252,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_multimatch:[252,3,1,""],test_simple_defaults:[252,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[252,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[253,1,1,""],CmdUnconnectedCreate:[253,1,1,""],CmdUnconnectedEncoding:[253,1,1,""],CmdUnconnectedHelp:[253,1,1,""],CmdUnconnectedInfo:[253,1,1,""],CmdUnconnectedLook:[253,1,1,""],CmdUnconnectedQuit:[253,1,1,""],CmdUnconnectedScreenreader:[253,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[253,4,1,""],arg_regex:[253,4,1,""],func:[253,3,1,""],help_category:[253,4,1,""],key:[253,4,1,""],lock_storage:[253,4,1,""],locks:[253,4,1,""],search_index_entry:[253,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[253,4,1,""],arg_regex:[253,4,1,""],func:[253,3,1,""],help_category:[253,4,1,""],key:[253,4,1,""],lock_storage:[253,4,1,""],locks:[253,4,1,""],search_index_entry:[253,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedEncoding":{aliases:[253,4,1,""],func:[253,3,1,""],help_category:[253,4,1,""],key:[253,4,1,""],lock_storage:[253,4,1,""],locks:[253,4,1,""],search_index_entry:[253,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedHelp":{aliases:[253,4,1,""],func:[253,3,1,""],help_category:[253,4,1,""],key:[253,4,1,""],lock_storage:[253,4,1,""],locks:[253,4,1,""],search_index_entry:[253,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedInfo":{aliases:[253,4,1,""],func:[253,3,1,""],help_category:[253,4,1,""],key:[253,4,1,""],lock_storage:[253,4,1,""],locks:[253,4,1,""],search_index_entry:[253,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedLook":{aliases:[253,4,1,""],func:[253,3,1,""],help_category:[253,4,1,""],key:[253,4,1,""],lock_storage:[253,4,1,""],locks:[253,4,1,""],search_index_entry:[253,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedQuit":{aliases:[253,4,1,""],func:[253,3,1,""],help_category:[253,4,1,""],key:[253,4,1,""],lock_storage:[253,4,1,""],locks:[253,4,1,""],search_index_entry:[253,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedScreenreader":{aliases:[253,4,1,""],func:[253,3,1,""],help_category:[253,4,1,""],key:[253,4,1,""],lock_storage:[253,4,1,""],search_index_entry:[253,4,1,""]},"evennia.comms":{comms:[255,0,0,"-"],managers:[256,0,0,"-"],models:[257,0,0,"-"]},"evennia.comms.comms":{DefaultChannel:[255,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[255,3,1,""],DoesNotExist:[255,2,1,""],MultipleObjectsReturned:[255,2,1,""],access:[255,3,1,""],add_user_channel_alias:[255,3,1,""],at_channel_creation:[255,3,1,""],at_first_save:[255,3,1,""],at_init:[255,3,1,""],at_post_msg:[255,3,1,""],at_pre_msg:[255,3,1,""],ban:[255,3,1,""],banlist:[255,3,1,""],basetype_setup:[255,3,1,""],channel_msg_nick_pattern:[255,4,1,""],channel_msg_nick_replacement:[255,4,1,""],channel_prefix:[255,3,1,""],channel_prefix_string:[255,4,1,""],connect:[255,3,1,""],create:[255,3,1,""],disconnect:[255,3,1,""],distribute_message:[255,3,1,""],format_external:[255,3,1,""],format_message:[255,3,1,""],format_senders:[255,3,1,""],get_absolute_url:[255,3,1,""],get_log_filename:[255,3,1,""],has_connection:[255,3,1,""],log_file:[255,4,1,""],message_transform:[255,3,1,""],msg:[255,3,1,""],mute:[255,3,1,""],mutelist:[255,3,1,""],objects:[255,4,1,""],path:[255,4,1,""],pose_transform:[255,3,1,""],post_join_channel:[255,3,1,""],post_leave_channel:[255,3,1,""],post_send_message:[255,3,1,""],pre_join_channel:[255,3,1,""],pre_leave_channel:[255,3,1,""],pre_send_message:[255,3,1,""],remove_user_channel_alias:[255,3,1,""],send_to_online_only:[255,4,1,""],set_log_filename:[255,3,1,""],typename:[255,4,1,""],unban:[255,3,1,""],unmute:[255,3,1,""],web_get_admin_url:[255,3,1,""],web_get_create_url:[255,3,1,""],web_get_delete_url:[255,3,1,""],web_get_detail_url:[255,3,1,""],web_get_update_url:[255,3,1,""],wholist:[255,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[256,1,1,""],ChannelManager:[256,1,1,""],CommError:[256,2,1,""],MsgManager:[256,1,1,""],identify_object:[256,5,1,""],to_object:[256,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[256,3,1,""],create_channel:[256,3,1,""],get_all_channels:[256,3,1,""],get_channel:[256,3,1,""],get_subscriptions:[256,3,1,""],search_channel:[256,3,1,""]},"evennia.comms.managers.MsgManager":{create_message:[256,3,1,""],get_message_by_id:[256,3,1,""],get_messages_by_receiver:[256,3,1,""],get_messages_by_sender:[256,3,1,""],identify_object:[256,3,1,""],message_search:[256,3,1,""],search_message:[256,3,1,""]},"evennia.comms.models":{ChannelDB:[257,1,1,""],Msg:[257,1,1,""],SubscriptionHandler:[257,1,1,""],TempMsg:[257,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],db_account_subscriptions:[257,4,1,""],db_attributes:[257,4,1,""],db_date_created:[257,4,1,""],db_key:[257,4,1,""],db_lock_storage:[257,4,1,""],db_object_subscriptions:[257,4,1,""],db_tags:[257,4,1,""],db_typeclass_path:[257,4,1,""],get_next_by_db_date_created:[257,3,1,""],get_previous_by_db_date_created:[257,3,1,""],id:[257,4,1,""],objects:[257,4,1,""],path:[257,4,1,""],subscriptions:[257,4,1,""],typename:[257,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[257,2,1,""],MultipleObjectsReturned:[257,2,1,""],access:[257,3,1,""],date_created:[257,3,1,""],db_date_created:[257,4,1,""],db_header:[257,4,1,""],db_hide_from_accounts:[257,4,1,""],db_hide_from_objects:[257,4,1,""],db_lock_storage:[257,4,1,""],db_message:[257,4,1,""],db_receiver_external:[257,4,1,""],db_receivers_accounts:[257,4,1,""],db_receivers_objects:[257,4,1,""],db_receivers_scripts:[257,4,1,""],db_sender_accounts:[257,4,1,""],db_sender_external:[257,4,1,""],db_sender_objects:[257,4,1,""],db_sender_scripts:[257,4,1,""],db_tags:[257,4,1,""],get_next_by_db_date_created:[257,3,1,""],get_previous_by_db_date_created:[257,3,1,""],header:[257,3,1,""],hide_from:[257,3,1,""],id:[257,4,1,""],lock_storage:[257,3,1,""],locks:[257,4,1,""],message:[257,3,1,""],objects:[257,4,1,""],path:[257,4,1,""],receiver_external:[257,3,1,""],receivers:[257,3,1,""],remove_receiver:[257,3,1,""],remove_sender:[257,3,1,""],sender_external:[257,3,1,""],senders:[257,3,1,""],tags:[257,4,1,""],typename:[257,4,1,""]},"evennia.comms.models.SubscriptionHandler":{__init__:[257,3,1,""],add:[257,3,1,""],all:[257,3,1,""],clear:[257,3,1,""],get:[257,3,1,""],has:[257,3,1,""],online:[257,3,1,""],remove:[257,3,1,""]},"evennia.comms.models.TempMsg":{__init__:[257,3,1,""],access:[257,3,1,""],locks:[257,4,1,""],remove_receiver:[257,3,1,""],remove_sender:[257,3,1,""]},"evennia.contrib":{base_systems:[259,0,0,"-"],full_systems:[300,0,0,"-"],game_systems:[310,0,0,"-"],grid:[343,0,0,"-"],rpg:[373,0,0,"-"],tutorials:[395,0,0,"-"],utils:[443,0,0,"-"]},"evennia.contrib.base_systems":{awsstorage:[260,0,0,"-"],building_menu:[263,0,0,"-"],color_markups:[266,0,0,"-"],components:[269,0,0,"-"],custom_gametime:[275,0,0,"-"],email_login:[278,0,0,"-"],mux_comms_cmds:[294,0,0,"-"],unixcommand:[297,0,0,"-"]},"evennia.contrib.base_systems.awsstorage":{tests:[262,0,0,"-"]},"evennia.contrib.base_systems.awsstorage.tests":{S3Boto3StorageTests:[262,1,1,""],S3Boto3TestCase:[262,1,1,""]},"evennia.contrib.base_systems.awsstorage.tests.S3Boto3StorageTests":{test_auto_creating_bucket:[262,3,1,""],test_auto_creating_bucket_with_acl:[262,3,1,""],test_clean_name:[262,3,1,""],test_clean_name_normalize:[262,3,1,""],test_clean_name_trailing_slash:[262,3,1,""],test_clean_name_windows:[262,3,1,""],test_compress_content_len:[262,3,1,""],test_connection_threading:[262,3,1,""],test_content_type:[262,3,1,""],test_generated_url_is_encoded:[262,3,1,""],test_location_leading_slash:[262,3,1,""],test_override_class_variable:[262,3,1,""],test_override_init_argument:[262,3,1,""],test_pickle_with_bucket:[262,3,1,""],test_pickle_without_bucket:[262,3,1,""],test_special_characters:[262,3,1,""],test_storage_delete:[262,3,1,""],test_storage_exists:[262,3,1,""],test_storage_exists_doesnt_create_bucket:[262,3,1,""],test_storage_exists_false:[262,3,1,""],test_storage_listdir_base:[262,3,1,""],test_storage_listdir_subdir:[262,3,1,""],test_storage_mtime:[262,3,1,""],test_storage_open_no_overwrite_existing:[262,3,1,""],test_storage_open_no_write:[262,3,1,""],test_storage_open_write:[262,3,1,""],test_storage_save:[262,3,1,""],test_storage_save_gzip:[262,3,1,""],test_storage_save_gzip_twice:[262,3,1,""],test_storage_save_gzipped:[262,3,1,""],test_storage_save_with_acl:[262,3,1,""],test_storage_size:[262,3,1,""],test_storage_url:[262,3,1,""],test_storage_url_slashes:[262,3,1,""],test_storage_write_beyond_buffer_size:[262,3,1,""],test_strip_signing_parameters:[262,3,1,""]},"evennia.contrib.base_systems.awsstorage.tests.S3Boto3TestCase":{setUp:[262,3,1,""]},"evennia.contrib.base_systems.building_menu":{building_menu:[264,0,0,"-"],tests:[265,0,0,"-"]},"evennia.contrib.base_systems.building_menu.building_menu":{BuildingMenu:[264,1,1,""],BuildingMenuCmdSet:[264,1,1,""],Choice:[264,1,1,""],CmdNoInput:[264,1,1,""],CmdNoMatch:[264,1,1,""],GenericBuildingCmd:[264,1,1,""],GenericBuildingMenu:[264,1,1,""],menu_edit:[264,5,1,""],menu_quit:[264,5,1,""],menu_setattr:[264,5,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.BuildingMenu":{__init__:[264,3,1,""],add_choice:[264,3,1,""],add_choice_edit:[264,3,1,""],add_choice_quit:[264,3,1,""],close:[264,3,1,""],current_choice:[264,3,1,""],display:[264,3,1,""],display_choice:[264,3,1,""],display_title:[264,3,1,""],init:[264,3,1,""],joker_key:[264,4,1,""],keys_go_back:[264,4,1,""],min_shortcut:[264,4,1,""],move:[264,3,1,""],open:[264,3,1,""],open_parent_menu:[264,3,1,""],open_submenu:[264,3,1,""],relevant_choices:[264,3,1,""],restore:[264,3,1,""],sep_keys:[264,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[264,3,1,""],key:[264,4,1,""],path:[264,4,1,""],priority:[264,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.Choice":{__init__:[264,3,1,""],enter:[264,3,1,""],format_text:[264,3,1,""],keys:[264,3,1,""],leave:[264,3,1,""],nomatch:[264,3,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.CmdNoInput":{__init__:[264,3,1,""],aliases:[264,4,1,""],func:[264,3,1,""],help_category:[264,4,1,""],key:[264,4,1,""],lock_storage:[264,4,1,""],locks:[264,4,1,""],search_index_entry:[264,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.CmdNoMatch":{__init__:[264,3,1,""],aliases:[264,4,1,""],func:[264,3,1,""],help_category:[264,4,1,""],key:[264,4,1,""],lock_storage:[264,4,1,""],locks:[264,4,1,""],search_index_entry:[264,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.GenericBuildingCmd":{aliases:[264,4,1,""],func:[264,3,1,""],help_category:[264,4,1,""],key:[264,4,1,""],lock_storage:[264,4,1,""],search_index_entry:[264,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.GenericBuildingMenu":{init:[264,3,1,""]},"evennia.contrib.base_systems.building_menu.tests":{Submenu:[265,1,1,""],TestBuildingMenu:[265,1,1,""]},"evennia.contrib.base_systems.building_menu.tests.Submenu":{init:[265,3,1,""]},"evennia.contrib.base_systems.building_menu.tests.TestBuildingMenu":{setUp:[265,3,1,""],test_add_choice_without_key:[265,3,1,""],test_callbacks:[265,3,1,""],test_multi_level:[265,3,1,""],test_quit:[265,3,1,""],test_setattr:[265,3,1,""],test_submenu:[265,3,1,""]},"evennia.contrib.base_systems.color_markups":{color_markups:[267,0,0,"-"],tests:[268,0,0,"-"]},"evennia.contrib.base_systems.color_markups.tests":{TestColorMarkup:[268,1,1,""]},"evennia.contrib.base_systems.color_markups.tests.TestColorMarkup":{test_curly_markup:[268,3,1,""],test_mux_markup:[268,3,1,""]},"evennia.contrib.base_systems.components":{component:[270,0,0,"-"],dbfield:[271,0,0,"-"],get_component_class:[269,5,1,""],holder:[272,0,0,"-"],signals:[273,0,0,"-"],tests:[274,0,0,"-"]},"evennia.contrib.base_systems.components.component":{Component:[270,1,1,""],ComponentRegisterError:[270,2,1,""]},"evennia.contrib.base_systems.components.component.Component":{__init__:[270,3,1,""],at_added:[270,3,1,""],at_removed:[270,3,1,""],attributes:[270,3,1,""],cleanup:[270,3,1,""],create:[270,3,1,""],db_field_names:[270,3,1,""],default_create:[270,3,1,""],load:[270,3,1,""],name:[270,4,1,""],nattributes:[270,3,1,""],ndb_field_names:[270,3,1,""],tag_field_names:[270,3,1,""]},"evennia.contrib.base_systems.components.dbfield":{DBField:[271,1,1,""],NDBField:[271,1,1,""],TagField:[271,1,1,""]},"evennia.contrib.base_systems.components.dbfield.TagField":{__init__:[271,3,1,""]},"evennia.contrib.base_systems.components.holder":{ComponentDoesNotExist:[272,2,1,""],ComponentHandler:[272,1,1,""],ComponentHolderMixin:[272,1,1,""],ComponentIsNotRegistered:[272,2,1,""],ComponentProperty:[272,1,1,""]},"evennia.contrib.base_systems.components.holder.ComponentHandler":{__init__:[272,3,1,""],add:[272,3,1,""],add_default:[272,3,1,""],db_names:[272,3,1,""],get:[272,3,1,""],has:[272,3,1,""],initialize:[272,3,1,""],remove:[272,3,1,""],remove_by_name:[272,3,1,""]},"evennia.contrib.base_systems.components.holder.ComponentHolderMixin":{at_init:[272,3,1,""],at_post_puppet:[272,3,1,""],at_post_unpuppet:[272,3,1,""],basetype_posthook_setup:[272,3,1,""],basetype_setup:[272,3,1,""],cmp:[272,3,1,""],components:[272,3,1,""],signals:[272,3,1,""]},"evennia.contrib.base_systems.components.holder.ComponentProperty":{__init__:[272,3,1,""]},"evennia.contrib.base_systems.components.signals":{SignalsHandler:[273,1,1,""],as_listener:[273,5,1,""],as_responder:[273,5,1,""]},"evennia.contrib.base_systems.components.signals.SignalsHandler":{__init__:[273,3,1,""],add_listener:[273,3,1,""],add_object_listeners_and_responders:[273,3,1,""],add_responder:[273,3,1,""],query:[273,3,1,""],remove_listener:[273,3,1,""],remove_object_listeners_and_responders:[273,3,1,""],remove_responder:[273,3,1,""],trigger:[273,3,1,""]},"evennia.contrib.base_systems.components.tests":{CharWithSignal:[274,1,1,""],CharacterWithComponents:[274,1,1,""],ComponentTestA:[274,1,1,""],ComponentTestB:[274,1,1,""],ComponentWithSignal:[274,1,1,""],RuntimeComponentTestC:[274,1,1,""],TestComponentSignals:[274,1,1,""],TestComponents:[274,1,1,""]},"evennia.contrib.base_systems.components.tests.CharWithSignal":{DoesNotExist:[274,2,1,""],MultipleObjectsReturned:[274,2,1,""],my_other_response:[274,3,1,""],my_other_signal:[274,3,1,""],my_response:[274,3,1,""],my_signal:[274,3,1,""],path:[274,4,1,""],typename:[274,4,1,""]},"evennia.contrib.base_systems.components.tests.CharacterWithComponents":{DoesNotExist:[274,2,1,""],MultipleObjectsReturned:[274,2,1,""],path:[274,4,1,""],test_a:[274,4,1,""],test_b:[274,4,1,""],typename:[274,4,1,""]},"evennia.contrib.base_systems.components.tests.ComponentTestA":{my_int:[274,4,1,""],my_list:[274,4,1,""],name:[274,4,1,""]},"evennia.contrib.base_systems.components.tests.ComponentTestB":{default_single_tag:[274,4,1,""],default_tag:[274,4,1,""],multiple_tags:[274,4,1,""],my_int:[274,4,1,""],my_list:[274,4,1,""],name:[274,4,1,""],single_tag:[274,4,1,""]},"evennia.contrib.base_systems.components.tests.ComponentWithSignal":{my_component_response:[274,3,1,""],my_other_response:[274,3,1,""],my_other_signal:[274,3,1,""],my_response:[274,3,1,""],my_signal:[274,3,1,""],name:[274,4,1,""]},"evennia.contrib.base_systems.components.tests.RuntimeComponentTestC":{added_tag:[274,4,1,""],my_dict:[274,4,1,""],my_int:[274,4,1,""],name:[274,4,1,""]},"evennia.contrib.base_systems.components.tests.TestComponentSignals":{setUp:[274,3,1,""],test_component_can_register_as_listener:[274,3,1,""],test_component_can_register_as_responder:[274,3,1,""],test_component_handler_signals_connected_when_adding_default_component:[274,3,1,""],test_component_handler_signals_disconnected_when_removing_component:[274,3,1,""],test_component_handler_signals_disconnected_when_removing_component_by_name:[274,3,1,""],test_host_can_register_as_listener:[274,3,1,""],test_host_can_register_as_responder:[274,3,1,""],test_signals_can_add_listener:[274,3,1,""],test_signals_can_add_object_listeners_and_responders:[274,3,1,""],test_signals_can_add_responder:[274,3,1,""],test_signals_can_query_with_args:[274,3,1,""],test_signals_can_remove_listener:[274,3,1,""],test_signals_can_remove_object_listeners_and_responders:[274,3,1,""],test_signals_can_remove_responder:[274,3,1,""],test_signals_can_trigger_with_args:[274,3,1,""],test_signals_query_does_not_fail_wihout_responders:[274,3,1,""],test_signals_query_with_aggregate:[274,3,1,""],test_signals_trigger_does_not_fail_without_listener:[274,3,1,""]},"evennia.contrib.base_systems.components.tests.TestComponents":{character_typeclass:[274,4,1,""],test_can_access_component_regular_get:[274,3,1,""],test_can_get_component:[274,3,1,""],test_can_remove_component:[274,3,1,""],test_can_remove_component_by_name:[274,3,1,""],test_cannot_replace_component:[274,3,1,""],test_character_assigns_default_provided_values:[274,3,1,""],test_character_assigns_default_value:[274,3,1,""],test_character_can_register_runtime_component:[274,3,1,""],test_character_has_class_components:[274,3,1,""],test_character_instances_components_properly:[274,3,1,""],test_component_tags_default_value_is_overridden_when_enforce_single:[274,3,1,""],test_component_tags_only_hold_one_value_when_enforce_single:[274,3,1,""],test_component_tags_support_multiple_values_by_default:[274,3,1,""],test_handler_can_add_default_component:[274,3,1,""],test_handler_has_returns_true_for_any_components:[274,3,1,""],test_host_has_added_component_tags:[274,3,1,""],test_host_has_added_default_component_tags:[274,3,1,""],test_host_has_class_component_tags:[274,3,1,""],test_host_remove_by_name_component_tags:[274,3,1,""],test_host_remove_component_tags:[274,3,1,""],test_returns_none_with_regular_get_when_no_attribute:[274,3,1,""]},"evennia.contrib.base_systems.custom_gametime":{custom_gametime:[276,0,0,"-"],tests:[277,0,0,"-"]},"evennia.contrib.base_systems.custom_gametime.custom_gametime":{GametimeScript:[276,1,1,""],custom_gametime:[276,5,1,""],gametime_to_realtime:[276,5,1,""],real_seconds_until:[276,5,1,""],realtime_to_gametime:[276,5,1,""],schedule:[276,5,1,""],time_to_tuple:[276,5,1,""]},"evennia.contrib.base_systems.custom_gametime.custom_gametime.GametimeScript":{DoesNotExist:[276,2,1,""],MultipleObjectsReturned:[276,2,1,""],at_repeat:[276,3,1,""],at_script_creation:[276,3,1,""],path:[276,4,1,""],typename:[276,4,1,""]},"evennia.contrib.base_systems.custom_gametime.tests":{TestCustomGameTime:[277,1,1,""]},"evennia.contrib.base_systems.custom_gametime.tests.TestCustomGameTime":{tearDown:[277,3,1,""],test_custom_gametime:[277,3,1,""],test_gametime_to_realtime:[277,3,1,""],test_real_seconds_until:[277,3,1,""],test_realtime_to_gametime:[277,3,1,""],test_schedule:[277,3,1,""],test_time_to_tuple:[277,3,1,""]},"evennia.contrib.base_systems.email_login":{connection_screens:[279,0,0,"-"],email_login:[280,0,0,"-"],tests:[281,0,0,"-"]},"evennia.contrib.base_systems.email_login.email_login":{CmdUnconnectedConnect:[280,1,1,""],CmdUnconnectedCreate:[280,1,1,""],CmdUnconnectedHelp:[280,1,1,""],CmdUnconnectedLook:[280,1,1,""],CmdUnconnectedQuit:[280,1,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedConnect":{aliases:[280,4,1,""],func:[280,3,1,""],help_category:[280,4,1,""],key:[280,4,1,""],lock_storage:[280,4,1,""],locks:[280,4,1,""],search_index_entry:[280,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedCreate":{aliases:[280,4,1,""],func:[280,3,1,""],help_category:[280,4,1,""],key:[280,4,1,""],lock_storage:[280,4,1,""],locks:[280,4,1,""],parse:[280,3,1,""],search_index_entry:[280,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedHelp":{aliases:[280,4,1,""],func:[280,3,1,""],help_category:[280,4,1,""],key:[280,4,1,""],lock_storage:[280,4,1,""],locks:[280,4,1,""],search_index_entry:[280,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedLook":{aliases:[280,4,1,""],func:[280,3,1,""],help_category:[280,4,1,""],key:[280,4,1,""],lock_storage:[280,4,1,""],locks:[280,4,1,""],search_index_entry:[280,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedQuit":{aliases:[280,4,1,""],func:[280,3,1,""],help_category:[280,4,1,""],key:[280,4,1,""],lock_storage:[280,4,1,""],locks:[280,4,1,""],search_index_entry:[280,4,1,""]},"evennia.contrib.base_systems.email_login.tests":{TestEmailLogin:[281,1,1,""]},"evennia.contrib.base_systems.email_login.tests.TestEmailLogin":{test_connect:[281,3,1,""],test_quit:[281,3,1,""],test_unconnectedhelp:[281,3,1,""],test_unconnectedlook:[281,3,1,""]},"evennia.contrib.base_systems.ingame_python":{callbackhandler:[283,0,0,"-"],commands:[284,0,0,"-"],eventfuncs:[285,0,0,"-"],scripts:[286,0,0,"-"],tests:[287,0,0,"-"],utils:[289,0,0,"-"]},"evennia.contrib.base_systems.ingame_python.callbackhandler":{Callback:[283,1,1,""],CallbackHandler:[283,1,1,""]},"evennia.contrib.base_systems.ingame_python.callbackhandler.Callback":{author:[283,4,1,""],code:[283,4,1,""],created_on:[283,4,1,""],name:[283,4,1,""],number:[283,4,1,""],obj:[283,4,1,""],parameters:[283,4,1,""],updated_by:[283,4,1,""],updated_on:[283,4,1,""],valid:[283,4,1,""]},"evennia.contrib.base_systems.ingame_python.callbackhandler.CallbackHandler":{__init__:[283,3,1,""],add:[283,3,1,""],all:[283,3,1,""],call:[283,3,1,""],edit:[283,3,1,""],format_callback:[283,3,1,""],get:[283,3,1,""],get_variable:[283,3,1,""],remove:[283,3,1,""],script:[283,4,1,""]},"evennia.contrib.base_systems.ingame_python.commands":{CmdCallback:[284,1,1,""]},"evennia.contrib.base_systems.ingame_python.commands.CmdCallback":{accept_callback:[284,3,1,""],add_callback:[284,3,1,""],aliases:[284,4,1,""],del_callback:[284,3,1,""],edit_callback:[284,3,1,""],func:[284,3,1,""],get_help:[284,3,1,""],help_category:[284,4,1,""],key:[284,4,1,""],list_callbacks:[284,3,1,""],list_tasks:[284,3,1,""],lock_storage:[284,4,1,""],locks:[284,4,1,""],search_index_entry:[284,4,1,""]},"evennia.contrib.base_systems.ingame_python.eventfuncs":{call_event:[285,5,1,""],deny:[285,5,1,""],get:[285,5,1,""]},"evennia.contrib.base_systems.ingame_python.scripts":{EventHandler:[286,1,1,""],TimeEventScript:[286,1,1,""],complete_task:[286,5,1,""]},"evennia.contrib.base_systems.ingame_python.scripts.EventHandler":{DoesNotExist:[286,2,1,""],MultipleObjectsReturned:[286,2,1,""],accept_callback:[286,3,1,""],add_callback:[286,3,1,""],add_event:[286,3,1,""],at_script_creation:[286,3,1,""],at_server_start:[286,3,1,""],call:[286,3,1,""],del_callback:[286,3,1,""],edit_callback:[286,3,1,""],get_callbacks:[286,3,1,""],get_events:[286,3,1,""],get_variable:[286,3,1,""],handle_error:[286,3,1,""],path:[286,4,1,""],set_task:[286,3,1,""],typename:[286,4,1,""]},"evennia.contrib.base_systems.ingame_python.scripts.TimeEventScript":{DoesNotExist:[286,2,1,""],MultipleObjectsReturned:[286,2,1,""],at_repeat:[286,3,1,""],at_script_creation:[286,3,1,""],path:[286,4,1,""],typename:[286,4,1,""]},"evennia.contrib.base_systems.ingame_python.tests":{TestCmdCallback:[287,1,1,""],TestDefaultCallbacks:[287,1,1,""],TestEventHandler:[287,1,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestCmdCallback":{setUp:[287,3,1,""],tearDown:[287,3,1,""],test_accept:[287,3,1,""],test_add:[287,3,1,""],test_del:[287,3,1,""],test_list:[287,3,1,""],test_lock:[287,3,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestDefaultCallbacks":{setUp:[287,3,1,""],tearDown:[287,3,1,""],test_exit:[287,3,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestEventHandler":{setUp:[287,3,1,""],tearDown:[287,3,1,""],test_accept:[287,3,1,""],test_add_validation:[287,3,1,""],test_call:[287,3,1,""],test_del:[287,3,1,""],test_edit:[287,3,1,""],test_edit_validation:[287,3,1,""],test_handler:[287,3,1,""],test_start:[287,3,1,""]},"evennia.contrib.base_systems.ingame_python.utils":{InterruptEvent:[289,2,1,""],get_event_handler:[289,5,1,""],get_next_wait:[289,5,1,""],keyword_event:[289,5,1,""],phrase_event:[289,5,1,""],register_events:[289,5,1,""],time_event:[289,5,1,""]},"evennia.contrib.base_systems.menu_login":{connection_screens:[291,0,0,"-"]},"evennia.contrib.base_systems.mux_comms_cmds":{mux_comms_cmds:[295,0,0,"-"],tests:[296,0,0,"-"]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds":{CmdAddCom:[295,1,1,""],CmdAllCom:[295,1,1,""],CmdCBoot:[295,1,1,""],CmdCWho:[295,1,1,""],CmdCdesc:[295,1,1,""],CmdCdestroy:[295,1,1,""],CmdChannelCreate:[295,1,1,""],CmdClock:[295,1,1,""],CmdDelCom:[295,1,1,""],CmdSetLegacyComms:[295,1,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdAddCom":{account_caller:[295,4,1,""],aliases:[295,4,1,""],func:[295,3,1,""],help_category:[295,4,1,""],key:[295,4,1,""],lock_storage:[295,4,1,""],locks:[295,4,1,""],search_index_entry:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdAllCom":{account_caller:[295,4,1,""],aliases:[295,4,1,""],func:[295,3,1,""],help_category:[295,4,1,""],key:[295,4,1,""],lock_storage:[295,4,1,""],locks:[295,4,1,""],search_index_entry:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCBoot":{account_caller:[295,4,1,""],aliases:[295,4,1,""],func:[295,3,1,""],help_category:[295,4,1,""],key:[295,4,1,""],lock_storage:[295,4,1,""],locks:[295,4,1,""],search_index_entry:[295,4,1,""],switch_options:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCWho":{account_caller:[295,4,1,""],aliases:[295,4,1,""],func:[295,3,1,""],help_category:[295,4,1,""],key:[295,4,1,""],lock_storage:[295,4,1,""],locks:[295,4,1,""],search_index_entry:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCdesc":{account_caller:[295,4,1,""],aliases:[295,4,1,""],func:[295,3,1,""],help_category:[295,4,1,""],key:[295,4,1,""],lock_storage:[295,4,1,""],locks:[295,4,1,""],search_index_entry:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCdestroy":{account_caller:[295,4,1,""],aliases:[295,4,1,""],func:[295,3,1,""],help_category:[295,4,1,""],key:[295,4,1,""],lock_storage:[295,4,1,""],locks:[295,4,1,""],search_index_entry:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdChannelCreate":{account_caller:[295,4,1,""],aliases:[295,4,1,""],func:[295,3,1,""],help_category:[295,4,1,""],key:[295,4,1,""],lock_storage:[295,4,1,""],locks:[295,4,1,""],search_index_entry:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdClock":{account_caller:[295,4,1,""],aliases:[295,4,1,""],func:[295,3,1,""],help_category:[295,4,1,""],key:[295,4,1,""],lock_storage:[295,4,1,""],locks:[295,4,1,""],search_index_entry:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdDelCom":{account_caller:[295,4,1,""],aliases:[295,4,1,""],func:[295,3,1,""],help_category:[295,4,1,""],key:[295,4,1,""],lock_storage:[295,4,1,""],locks:[295,4,1,""],search_index_entry:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdSetLegacyComms":{at_cmdset_createion:[295,3,1,""],path:[295,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.tests":{TestLegacyMuxComms:[296,1,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.tests.TestLegacyMuxComms":{setUp:[296,3,1,""],test_all_com:[296,3,1,""],test_cboot:[296,3,1,""],test_cdesc:[296,3,1,""],test_cdestroy:[296,3,1,""],test_clock:[296,3,1,""],test_cwho:[296,3,1,""],test_toggle_com:[296,3,1,""]},"evennia.contrib.base_systems.unixcommand":{tests:[298,0,0,"-"],unixcommand:[299,0,0,"-"]},"evennia.contrib.base_systems.unixcommand.tests":{CmdDummy:[298,1,1,""],TestUnixCommand:[298,1,1,""]},"evennia.contrib.base_systems.unixcommand.tests.CmdDummy":{aliases:[298,4,1,""],func:[298,3,1,""],help_category:[298,4,1,""],init_parser:[298,3,1,""],key:[298,4,1,""],lock_storage:[298,4,1,""],search_index_entry:[298,4,1,""]},"evennia.contrib.base_systems.unixcommand.tests.TestUnixCommand":{test_failure:[298,3,1,""],test_success:[298,3,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand":{HelpAction:[299,1,1,""],ParseError:[299,2,1,""],UnixCommand:[299,1,1,""],UnixCommandParser:[299,1,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand.UnixCommand":{__init__:[299,3,1,""],aliases:[299,4,1,""],func:[299,3,1,""],get_help:[299,3,1,""],help_category:[299,4,1,""],init_parser:[299,3,1,""],key:[299,4,1,""],lock_storage:[299,4,1,""],parse:[299,3,1,""],search_index_entry:[299,4,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand.UnixCommandParser":{__init__:[299,3,1,""],format_help:[299,3,1,""],format_usage:[299,3,1,""],print_help:[299,3,1,""],print_usage:[299,3,1,""]},"evennia.contrib.full_systems":{evscaperoom:[301,0,0,"-"]},"evennia.contrib.full_systems.evscaperoom":{commands:[302,0,0,"-"],menu:[303,0,0,"-"],objects:[304,0,0,"-"],room:[305,0,0,"-"],scripts:[306,0,0,"-"],state:[307,0,0,"-"],tests:[308,0,0,"-"],utils:[309,0,0,"-"]},"evennia.contrib.full_systems.evscaperoom.commands":{CmdCreateObj:[302,1,1,""],CmdEmote:[302,1,1,""],CmdEvscapeRoom:[302,1,1,""],CmdEvscapeRoomStart:[302,1,1,""],CmdFocus:[302,1,1,""],CmdFocusInteraction:[302,1,1,""],CmdGet:[302,1,1,""],CmdGiveUp:[302,1,1,""],CmdHelp:[302,1,1,""],CmdJumpState:[302,1,1,""],CmdLook:[302,1,1,""],CmdOptions:[302,1,1,""],CmdRerouter:[302,1,1,""],CmdSetEvScapeRoom:[302,1,1,""],CmdSetFlag:[302,1,1,""],CmdSpeak:[302,1,1,""],CmdStand:[302,1,1,""],CmdWho:[302,1,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdCreateObj":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],locks:[302,4,1,""],obj1_search:[302,4,1,""],obj2_search:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEmote":{aliases:[302,4,1,""],arg_regex:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],room_replace:[302,3,1,""],search_index_entry:[302,4,1,""],you_replace:[302,3,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEvscapeRoom":{aliases:[302,4,1,""],arg_regex:[302,4,1,""],focus:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],obj1_search:[302,4,1,""],obj2_search:[302,4,1,""],parse:[302,3,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEvscapeRoomStart":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdFocus":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],obj1_search:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdFocusInteraction":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],obj1_search:[302,4,1,""],obj2_search:[302,4,1,""],parse:[302,3,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdGet":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdGiveUp":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdHelp":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdJumpState":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],locks:[302,4,1,""],obj1_search:[302,4,1,""],obj2_search:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdLook":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],obj1_search:[302,4,1,""],obj2_search:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdOptions":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdRerouter":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSetEvScapeRoom":{at_cmdset_creation:[302,3,1,""],path:[302,4,1,""],priority:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSetFlag":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],locks:[302,4,1,""],obj1_search:[302,4,1,""],obj2_search:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSpeak":{aliases:[302,4,1,""],arg_regex:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdStand":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdWho":{aliases:[302,4,1,""],func:[302,3,1,""],help_category:[302,4,1,""],key:[302,4,1,""],lock_storage:[302,4,1,""],obj1_search:[302,4,1,""],obj2_search:[302,4,1,""],search_index_entry:[302,4,1,""]},"evennia.contrib.full_systems.evscaperoom.menu":{EvscaperoomMenu:[303,1,1,""],OptionsMenu:[303,1,1,""],node_create_room:[303,5,1,""],node_join_room:[303,5,1,""],node_options:[303,5,1,""],node_quit:[303,5,1,""],node_set_desc:[303,5,1,""],run_evscaperoom_menu:[303,5,1,""],run_option_menu:[303,5,1,""]},"evennia.contrib.full_systems.evscaperoom.menu.EvscaperoomMenu":{node_border_char:[303,4,1,""],nodetext_formatter:[303,3,1,""],options_formatter:[303,3,1,""]},"evennia.contrib.full_systems.evscaperoom.menu.OptionsMenu":{node_formatter:[303,3,1,""]},"evennia.contrib.full_systems.evscaperoom.objects":{BaseApplicable:[304,1,1,""],BaseConsumable:[304,1,1,""],BasePositionable:[304,1,1,""],Climbable:[304,1,1,""],CodeInput:[304,1,1,""],Combinable:[304,1,1,""],Drinkable:[304,1,1,""],Edible:[304,1,1,""],EvscaperoomObject:[304,1,1,""],Feelable:[304,1,1,""],HasButtons:[304,1,1,""],IndexReadable:[304,1,1,""],Insertable:[304,1,1,""],Kneelable:[304,1,1,""],Liable:[304,1,1,""],Listenable:[304,1,1,""],Mixable:[304,1,1,""],Movable:[304,1,1,""],Openable:[304,1,1,""],Positionable:[304,1,1,""],Readable:[304,1,1,""],Rotatable:[304,1,1,""],Sittable:[304,1,1,""],Smellable:[304,1,1,""],Usable:[304,1,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BaseApplicable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_apply:[304,3,1,""],at_cannot_apply:[304,3,1,""],handle_apply:[304,3,1,""],path:[304,4,1,""],target_flag:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BaseConsumable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_already_consumed:[304,3,1,""],at_consume:[304,3,1,""],consume_flag:[304,4,1,""],handle_consume:[304,3,1,""],has_consumed:[304,3,1,""],one_consume_only:[304,4,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BasePositionable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_again_position:[304,3,1,""],at_cannot_position:[304,3,1,""],at_object_creation:[304,3,1,""],at_position:[304,3,1,""],handle_position:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Climbable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_focus_climb:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.CodeInput":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_code_correct:[304,3,1,""],at_code_incorrect:[304,3,1,""],at_focus_code:[304,3,1,""],at_no_code:[304,3,1,""],case_insensitive:[304,4,1,""],code:[304,4,1,""],code_hint:[304,4,1,""],get_cmd_signatures:[304,3,1,""],infinitely_locked:[304,4,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Combinable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_apply:[304,3,1,""],at_cannot_apply:[304,3,1,""],at_focus_combine:[304,3,1,""],destroy_components:[304,4,1,""],get_cmd_signatures:[304,3,1,""],new_create_dict:[304,4,1,""],path:[304,4,1,""],target_flag:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Drinkable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_already_consumed:[304,3,1,""],at_consume:[304,3,1,""],at_focus_drink:[304,3,1,""],at_focus_sip:[304,3,1,""],consume_flag:[304,4,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Edible":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_focus_eat:[304,3,1,""],consume_flag:[304,4,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.EvscaperoomObject":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],action_prepositions:[304,4,1,""],at_focus:[304,3,1,""],at_object_creation:[304,3,1,""],at_speech:[304,3,1,""],at_unfocus:[304,3,1,""],check_character_flag:[304,3,1,""],check_flag:[304,3,1,""],get_cmd_signatures:[304,3,1,""],get_help:[304,3,1,""],get_position:[304,3,1,""],get_short_desc:[304,3,1,""],msg_char:[304,3,1,""],msg_room:[304,3,1,""],msg_system:[304,3,1,""],next_state:[304,3,1,""],parse:[304,3,1,""],path:[304,4,1,""],position_prep_map:[304,4,1,""],return_appearance:[304,3,1,""],room:[304,3,1,""],roomstate:[304,3,1,""],set_character_flag:[304,3,1,""],set_flag:[304,3,1,""],set_position:[304,3,1,""],tagcategory:[304,3,1,""],typename:[304,4,1,""],unset_character_flag:[304,3,1,""],unset_flag:[304,3,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Feelable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_focus_feel:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.HasButtons":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_focus_press:[304,3,1,""],at_focus_push:[304,3,1,""],at_green_button:[304,3,1,""],at_nomatch:[304,3,1,""],at_red_button:[304,3,1,""],buttons:[304,4,1,""],get_cmd_signatures:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.IndexReadable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_cannot_read:[304,3,1,""],at_focus_read:[304,3,1,""],at_read:[304,3,1,""],get_cmd_signatures:[304,3,1,""],index:[304,4,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Insertable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_apply:[304,3,1,""],at_cannot_apply:[304,3,1,""],at_focus_insert:[304,3,1,""],get_cmd_signatures:[304,3,1,""],path:[304,4,1,""],target_flag:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Kneelable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_focus_kneel:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Liable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_focus_lie:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Listenable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_focus_listen:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Mixable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_mix:[304,3,1,""],at_mix_failure:[304,3,1,""],at_mix_success:[304,3,1,""],at_object_creation:[304,3,1,""],check_mixture:[304,3,1,""],handle_mix:[304,3,1,""],ingredient_recipe:[304,4,1,""],mixer_flag:[304,4,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Movable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_already_moved:[304,3,1,""],at_cannot_move:[304,3,1,""],at_focus_move:[304,3,1,""],at_focus_push:[304,3,1,""],at_focus_shove:[304,3,1,""],at_left:[304,3,1,""],at_object_creation:[304,3,1,""],at_right:[304,3,1,""],get_cmd_signatures:[304,3,1,""],move_positions:[304,4,1,""],path:[304,4,1,""],start_position:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Openable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_already_closed:[304,3,1,""],at_already_open:[304,3,1,""],at_close:[304,3,1,""],at_focus_close:[304,3,1,""],at_focus_open:[304,3,1,""],at_locked:[304,3,1,""],at_object_creation:[304,3,1,""],at_open:[304,3,1,""],open_flag:[304,4,1,""],path:[304,4,1,""],start_open:[304,4,1,""],typename:[304,4,1,""],unlock_flag:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Positionable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],get_cmd_signatures:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Readable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_cannot_read:[304,3,1,""],at_focus_read:[304,3,1,""],at_object_creation:[304,3,1,""],at_read:[304,3,1,""],path:[304,4,1,""],read_flag:[304,4,1,""],start_readable:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Rotatable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_cannot_rotate:[304,3,1,""],at_focus_rotate:[304,3,1,""],at_focus_turn:[304,3,1,""],at_object_creation:[304,3,1,""],at_rotate:[304,3,1,""],path:[304,4,1,""],rotate_flag:[304,4,1,""],start_rotatable:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Sittable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_focus_sit:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Smellable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_focus_smell:[304,3,1,""],path:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Usable":{DoesNotExist:[304,2,1,""],MultipleObjectsReturned:[304,2,1,""],at_apply:[304,3,1,""],at_cannot_apply:[304,3,1,""],at_focus_use:[304,3,1,""],path:[304,4,1,""],target_flag:[304,4,1,""],typename:[304,4,1,""]},"evennia.contrib.full_systems.evscaperoom.room":{EvscapeRoom:[305,1,1,""]},"evennia.contrib.full_systems.evscaperoom.room.EvscapeRoom":{"delete":[305,3,1,""],DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],achievement:[305,3,1,""],at_object_creation:[305,3,1,""],at_object_leave:[305,3,1,""],at_object_receive:[305,3,1,""],character_cleanup:[305,3,1,""],character_exit:[305,3,1,""],check_flag:[305,3,1,""],check_perm:[305,3,1,""],get_all_characters:[305,3,1,""],log:[305,3,1,""],path:[305,4,1,""],progress:[305,3,1,""],return_appearance:[305,3,1,""],score:[305,3,1,""],set_flag:[305,3,1,""],state:[305,3,1,""],statehandler:[305,4,1,""],tag_all_characters:[305,3,1,""],tag_character:[305,3,1,""],typename:[305,4,1,""],unset_flag:[305,3,1,""]},"evennia.contrib.full_systems.evscaperoom.scripts":{CleanupScript:[306,1,1,""]},"evennia.contrib.full_systems.evscaperoom.scripts.CleanupScript":{DoesNotExist:[306,2,1,""],MultipleObjectsReturned:[306,2,1,""],at_repeat:[306,3,1,""],at_script_creation:[306,3,1,""],path:[306,4,1,""],typename:[306,4,1,""]},"evennia.contrib.full_systems.evscaperoom.state":{BaseState:[307,1,1,""],StateHandler:[307,1,1,""]},"evennia.contrib.full_systems.evscaperoom.state.BaseState":{__init__:[307,3,1,""],character_enters:[307,3,1,""],character_leaves:[307,3,1,""],cinematic:[307,3,1,""],clean:[307,3,1,""],create_object:[307,3,1,""],get_hint:[307,3,1,""],get_object:[307,3,1,""],hints:[307,4,1,""],init:[307,3,1,""],msg:[307,3,1,""],next:[307,3,1,""],next_state:[307,4,1,""]},"evennia.contrib.full_systems.evscaperoom.state.StateHandler":{__init__:[307,3,1,""],init_state:[307,3,1,""],load_state:[307,3,1,""],next_state:[307,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests":{TestEvScapeRoom:[308,1,1,""],TestEvscaperoomCommands:[308,1,1,""],TestStates:[308,1,1,""],TestUtils:[308,1,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestEvScapeRoom":{setUp:[308,3,1,""],tearDown:[308,3,1,""],test_room_methods:[308,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestEvscaperoomCommands":{setUp:[308,3,1,""],test_base_parse:[308,3,1,""],test_base_search:[308,3,1,""],test_emote:[308,3,1,""],test_focus:[308,3,1,""],test_focus_interaction:[308,3,1,""],test_look:[308,3,1,""],test_set_focus:[308,3,1,""],test_speech:[308,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestStates":{setUp:[308,3,1,""],tearDown:[308,3,1,""],test_all_states:[308,3,1,""],test_base_state:[308,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestUtils":{test_overwrite:[308,3,1,""],test_parse_for_perspectives:[308,3,1,""],test_parse_for_things:[308,3,1,""]},"evennia.contrib.full_systems.evscaperoom.utils":{add_msg_borders:[309,5,1,""],create_evscaperoom_object:[309,5,1,""],create_fantasy_word:[309,5,1,""],msg_cinematic:[309,5,1,""],parse_for_perspectives:[309,5,1,""],parse_for_things:[309,5,1,""]},"evennia.contrib.game_systems":{barter:[311,0,0,"-"],clothing:[314,0,0,"-"],cooldowns:[317,0,0,"-"],crafting:[320,0,0,"-"],gendersub:[324,0,0,"-"],mail:[327,0,0,"-"],multidescer:[330,0,0,"-"],puzzles:[333,0,0,"-"],turnbattle:[336,0,0,"-"]},"evennia.contrib.game_systems.barter":{barter:[312,0,0,"-"],tests:[313,0,0,"-"]},"evennia.contrib.game_systems.barter.barter":{CmdAccept:[312,1,1,""],CmdDecline:[312,1,1,""],CmdEvaluate:[312,1,1,""],CmdFinish:[312,1,1,""],CmdOffer:[312,1,1,""],CmdStatus:[312,1,1,""],CmdTrade:[312,1,1,""],CmdTradeBase:[312,1,1,""],CmdTradeHelp:[312,1,1,""],CmdsetTrade:[312,1,1,""],TradeHandler:[312,1,1,""],TradeTimeout:[312,1,1,""]},"evennia.contrib.game_systems.barter.barter.CmdAccept":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],locks:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdDecline":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],locks:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdEvaluate":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],locks:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdFinish":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],locks:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdOffer":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],locks:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdStatus":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],locks:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTrade":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],locks:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTradeBase":{aliases:[312,4,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],parse:[312,3,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTradeHelp":{aliases:[312,4,1,""],func:[312,3,1,""],help_category:[312,4,1,""],key:[312,4,1,""],lock_storage:[312,4,1,""],locks:[312,4,1,""],search_index_entry:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdsetTrade":{at_cmdset_creation:[312,3,1,""],key:[312,4,1,""],path:[312,4,1,""]},"evennia.contrib.game_systems.barter.barter.TradeHandler":{__init__:[312,3,1,""],accept:[312,3,1,""],decline:[312,3,1,""],finish:[312,3,1,""],get_other:[312,3,1,""],join:[312,3,1,""],list:[312,3,1,""],msg_other:[312,3,1,""],offer:[312,3,1,""],search:[312,3,1,""],unjoin:[312,3,1,""]},"evennia.contrib.game_systems.barter.barter.TradeTimeout":{DoesNotExist:[312,2,1,""],MultipleObjectsReturned:[312,2,1,""],at_repeat:[312,3,1,""],at_script_creation:[312,3,1,""],is_valid:[312,3,1,""],path:[312,4,1,""],typename:[312,4,1,""]},"evennia.contrib.game_systems.barter.tests":{TestBarter:[313,1,1,""]},"evennia.contrib.game_systems.barter.tests.TestBarter":{setUp:[313,3,1,""],test_cmdtrade:[313,3,1,""],test_cmdtradehelp:[313,3,1,""],test_tradehandler_base:[313,3,1,""],test_tradehandler_joins:[313,3,1,""],test_tradehandler_offers:[313,3,1,""]},"evennia.contrib.game_systems.clothing":{clothing:[315,0,0,"-"],tests:[316,0,0,"-"]},"evennia.contrib.game_systems.clothing.clothing":{ClothedCharacter:[315,1,1,""],ClothedCharacterCmdSet:[315,1,1,""],CmdCover:[315,1,1,""],CmdInventory:[315,1,1,""],CmdRemove:[315,1,1,""],CmdUncover:[315,1,1,""],CmdWear:[315,1,1,""],ContribClothing:[315,1,1,""],clothing_type_count:[315,5,1,""],get_worn_clothes:[315,5,1,""],order_clothes_list:[315,5,1,""],single_type_count:[315,5,1,""]},"evennia.contrib.game_systems.clothing.clothing.ClothedCharacter":{DoesNotExist:[315,2,1,""],MultipleObjectsReturned:[315,2,1,""],get_display_desc:[315,3,1,""],get_display_things:[315,3,1,""],path:[315,4,1,""],typename:[315,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[315,3,1,""],key:[315,4,1,""],path:[315,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdCover":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],rhs_split:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdInventory":{aliases:[315,4,1,""],arg_regex:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],locks:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdRemove":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdUncover":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdWear":{aliases:[315,4,1,""],func:[315,3,1,""],help_category:[315,4,1,""],key:[315,4,1,""],lock_storage:[315,4,1,""],search_index_entry:[315,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.ContribClothing":{DoesNotExist:[315,2,1,""],MultipleObjectsReturned:[315,2,1,""],at_get:[315,3,1,""],at_pre_move:[315,3,1,""],path:[315,4,1,""],remove:[315,3,1,""],typename:[315,4,1,""],wear:[315,3,1,""]},"evennia.contrib.game_systems.clothing.tests":{TestClothingCmd:[316,1,1,""],TestClothingFunc:[316,1,1,""]},"evennia.contrib.game_systems.clothing.tests.TestClothingCmd":{setUp:[316,3,1,""],test_clothingcommands:[316,3,1,""]},"evennia.contrib.game_systems.clothing.tests.TestClothingFunc":{setUp:[316,3,1,""],test_clothingfunctions:[316,3,1,""]},"evennia.contrib.game_systems.cooldowns":{cooldowns:[318,0,0,"-"],tests:[319,0,0,"-"]},"evennia.contrib.game_systems.cooldowns.cooldowns":{CooldownHandler:[318,1,1,""]},"evennia.contrib.game_systems.cooldowns.cooldowns.CooldownHandler":{__init__:[318,3,1,""],add:[318,3,1,""],all:[318,3,1,""],cleanup:[318,3,1,""],clear:[318,3,1,""],data:[318,4,1,""],db_attribute:[318,4,1,""],extend:[318,3,1,""],obj:[318,4,1,""],ready:[318,3,1,""],reset:[318,3,1,""],set:[318,3,1,""],time_left:[318,3,1,""]},"evennia.contrib.game_systems.cooldowns.tests":{TestCooldowns:[319,1,1,""]},"evennia.contrib.game_systems.cooldowns.tests.TestCooldowns":{setUp:[319,3,1,""],test_add:[319,3,1,""],test_add_float:[319,3,1,""],test_add_multi:[319,3,1,""],test_add_negative:[319,3,1,""],test_add_none:[319,3,1,""],test_add_overwrite:[319,3,1,""],test_cleanup:[319,3,1,""],test_cleanup_doesnt_delete_anything:[319,3,1,""],test_clear:[319,3,1,""],test_empty:[319,3,1,""],test_extend:[319,3,1,""],test_extend_float:[319,3,1,""],test_extend_negative:[319,3,1,""],test_extend_none:[319,3,1,""],test_reset:[319,3,1,""],test_reset_non_existent:[319,3,1,""]},"evennia.contrib.game_systems.crafting":{crafting:[321,0,0,"-"],example_recipes:[322,0,0,"-"],tests:[323,0,0,"-"]},"evennia.contrib.game_systems.crafting.crafting":{CmdCraft:[321,1,1,""],CraftingCmdSet:[321,1,1,""],CraftingError:[321,2,1,""],CraftingRecipe:[321,1,1,""],CraftingRecipeBase:[321,1,1,""],CraftingValidationError:[321,2,1,""],NonExistentRecipe:[321,1,1,""],craft:[321,5,1,""]},"evennia.contrib.game_systems.crafting.crafting.CmdCraft":{aliases:[321,4,1,""],arg_regex:[321,4,1,""],func:[321,3,1,""],help_category:[321,4,1,""],key:[321,4,1,""],lock_storage:[321,4,1,""],locks:[321,4,1,""],parse:[321,3,1,""],search_index_entry:[321,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingCmdSet":{at_cmdset_creation:[321,3,1,""],key:[321,4,1,""],path:[321,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingRecipe":{__init__:[321,3,1,""],consumable_names:[321,4,1,""],consumable_tag_category:[321,4,1,""],consumable_tags:[321,4,1,""],consume_on_fail:[321,4,1,""],do_craft:[321,3,1,""],error_consumable_excess_message:[321,4,1,""],error_consumable_missing_message:[321,4,1,""],error_consumable_order_message:[321,4,1,""],error_tool_excess_message:[321,4,1,""],error_tool_missing_message:[321,4,1,""],error_tool_order_message:[321,4,1,""],exact_consumable_order:[321,4,1,""],exact_consumables:[321,4,1,""],exact_tool_order:[321,4,1,""],exact_tools:[321,4,1,""],failure_message:[321,4,1,""],name:[321,4,1,""],output_names:[321,4,1,""],output_prototypes:[321,4,1,""],post_craft:[321,3,1,""],pre_craft:[321,3,1,""],seed:[321,3,1,""],success_message:[321,4,1,""],tool_names:[321,4,1,""],tool_tag_category:[321,4,1,""],tool_tags:[321,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingRecipeBase":{__init__:[321,3,1,""],allow_reuse:[321,4,1,""],craft:[321,3,1,""],do_craft:[321,3,1,""],msg:[321,3,1,""],name:[321,4,1,""],post_craft:[321,3,1,""],pre_craft:[321,3,1,""]},"evennia.contrib.game_systems.crafting.crafting.NonExistentRecipe":{__init__:[321,3,1,""],allow_craft:[321,4,1,""],allow_reuse:[321,4,1,""],pre_craft:[321,3,1,""]},"evennia.contrib.game_systems.crafting.example_recipes":{CmdCast:[322,1,1,""],CrucibleSteelRecipe:[322,1,1,""],FireballRecipe:[322,1,1,""],HealingRecipe:[322,1,1,""],LeatherRecipe:[322,1,1,""],OakBarkRecipe:[322,1,1,""],PigIronRecipe:[322,1,1,""],RawhideRecipe:[322,1,1,""],SwordBladeRecipe:[322,1,1,""],SwordGuardRecipe:[322,1,1,""],SwordHandleRecipe:[322,1,1,""],SwordPommelRecipe:[322,1,1,""],SwordRecipe:[322,1,1,""],random:[322,5,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.CmdCast":{aliases:[322,4,1,""],func:[322,3,1,""],help_category:[322,4,1,""],key:[322,4,1,""],lock_storage:[322,4,1,""],parse:[322,3,1,""],search_index_entry:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.CrucibleSteelRecipe":{consumable_tags:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.FireballRecipe":{desired_effects:[322,4,1,""],failure_effects:[322,4,1,""],name:[322,4,1,""],skill_requirements:[322,4,1,""],skill_roll:[322,4,1,""],success_message:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.HealingRecipe":{desired_effects:[322,4,1,""],failure_effects:[322,4,1,""],name:[322,4,1,""],skill_requirements:[322,4,1,""],skill_roll:[322,4,1,""],success_message:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.LeatherRecipe":{consumable_tags:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.OakBarkRecipe":{consumable_tags:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.PigIronRecipe":{consumable_tags:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.RawhideRecipe":{consumable_tags:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordBladeRecipe":{consumable_tags:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordGuardRecipe":{consumable_tags:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordHandleRecipe":{consumable_tags:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordPommelRecipe":{consumable_tags:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordRecipe":{consumable_tags:[322,4,1,""],exact_consumable_order:[322,4,1,""],name:[322,4,1,""],output_prototypes:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.tests":{TestCraftCommand:[323,1,1,""],TestCraftSword:[323,1,1,""],TestCraftUtils:[323,1,1,""],TestCraftingRecipe:[323,1,1,""],TestCraftingRecipeBase:[323,1,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftCommand":{setUp:[323,3,1,""],test_craft__nocons__failure:[323,3,1,""],test_craft__notools__failure:[323,3,1,""],test_craft__success:[323,3,1,""],test_craft__unknown_recipe__failure:[323,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftSword":{setUp:[323,3,1,""],test_craft_sword:[323,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftUtils":{maxDiff:[323,4,1,""],test_load_recipes:[323,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftingRecipe":{maxDiff:[323,4,1,""],setUp:[323,3,1,""],tearDown:[323,3,1,""],test_craft__success:[323,3,1,""],test_craft_cons_excess__fail:[323,3,1,""],test_craft_cons_excess__sucess:[323,3,1,""],test_craft_cons_order__fail:[323,3,1,""],test_craft_missing_cons__always_consume__fail:[323,3,1,""],test_craft_missing_cons__fail:[323,3,1,""],test_craft_missing_tool__fail:[323,3,1,""],test_craft_tool_excess__fail:[323,3,1,""],test_craft_tool_excess__sucess:[323,3,1,""],test_craft_tool_order__fail:[323,3,1,""],test_craft_wrong_tool__fail:[323,3,1,""],test_error_format:[323,3,1,""],test_seed__success:[323,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftingRecipeBase":{setUp:[323,3,1,""],test_craft_hook__fail:[323,3,1,""],test_craft_hook__succeed:[323,3,1,""],test_msg:[323,3,1,""],test_pre_craft:[323,3,1,""],test_pre_craft_fail:[323,3,1,""]},"evennia.contrib.game_systems.gendersub":{gendersub:[325,0,0,"-"],tests:[326,0,0,"-"]},"evennia.contrib.game_systems.gendersub.gendersub":{GenderCharacter:[325,1,1,""],SetGender:[325,1,1,""]},"evennia.contrib.game_systems.gendersub.gendersub.GenderCharacter":{DoesNotExist:[325,2,1,""],MultipleObjectsReturned:[325,2,1,""],at_object_creation:[325,3,1,""],msg:[325,3,1,""],path:[325,4,1,""],typename:[325,4,1,""]},"evennia.contrib.game_systems.gendersub.gendersub.SetGender":{aliases:[325,4,1,""],func:[325,3,1,""],help_category:[325,4,1,""],key:[325,4,1,""],lock_storage:[325,4,1,""],locks:[325,4,1,""],search_index_entry:[325,4,1,""]},"evennia.contrib.game_systems.gendersub.tests":{TestGenderSub:[326,1,1,""]},"evennia.contrib.game_systems.gendersub.tests.TestGenderSub":{test_gendercharacter:[326,3,1,""],test_setgender:[326,3,1,""]},"evennia.contrib.game_systems.mail":{mail:[328,0,0,"-"],tests:[329,0,0,"-"]},"evennia.contrib.game_systems.mail.mail":{CmdMail:[328,1,1,""],CmdMailCharacter:[328,1,1,""]},"evennia.contrib.game_systems.mail.mail.CmdMail":{aliases:[328,4,1,""],func:[328,3,1,""],get_all_mail:[328,3,1,""],help_category:[328,4,1,""],key:[328,4,1,""],lock:[328,4,1,""],lock_storage:[328,4,1,""],parse:[328,3,1,""],search_index_entry:[328,4,1,""],search_targets:[328,3,1,""],send_mail:[328,3,1,""]},"evennia.contrib.game_systems.mail.mail.CmdMailCharacter":{account_caller:[328,4,1,""],aliases:[328,4,1,""],help_category:[328,4,1,""],key:[328,4,1,""],lock_storage:[328,4,1,""],search_index_entry:[328,4,1,""]},"evennia.contrib.game_systems.mail.tests":{TestMail:[329,1,1,""]},"evennia.contrib.game_systems.mail.tests.TestMail":{test_mail:[329,3,1,""]},"evennia.contrib.game_systems.multidescer":{multidescer:[331,0,0,"-"],tests:[332,0,0,"-"]},"evennia.contrib.game_systems.multidescer.multidescer":{CmdMultiDesc:[331,1,1,""],DescValidateError:[331,2,1,""]},"evennia.contrib.game_systems.multidescer.multidescer.CmdMultiDesc":{aliases:[331,4,1,""],func:[331,3,1,""],help_category:[331,4,1,""],key:[331,4,1,""],lock_storage:[331,4,1,""],locks:[331,4,1,""],search_index_entry:[331,4,1,""]},"evennia.contrib.game_systems.multidescer.tests":{TestMultidescer:[332,1,1,""]},"evennia.contrib.game_systems.multidescer.tests.TestMultidescer":{test_cmdmultidesc:[332,3,1,""]},"evennia.contrib.game_systems.puzzles":{puzzles:[334,0,0,"-"],tests:[335,0,0,"-"]},"evennia.contrib.game_systems.puzzles.puzzles":{CmdArmPuzzle:[334,1,1,""],CmdCreatePuzzleRecipe:[334,1,1,""],CmdEditPuzzle:[334,1,1,""],CmdListArmedPuzzles:[334,1,1,""],CmdListPuzzleRecipes:[334,1,1,""],CmdUsePuzzleParts:[334,1,1,""],PuzzleRecipe:[334,1,1,""],PuzzleSystemCmdSet:[334,1,1,""],maskout_protodef:[334,5,1,""],proto_def:[334,5,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdArmPuzzle":{aliases:[334,4,1,""],func:[334,3,1,""],help_category:[334,4,1,""],key:[334,4,1,""],lock_storage:[334,4,1,""],locks:[334,4,1,""],search_index_entry:[334,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdCreatePuzzleRecipe":{aliases:[334,4,1,""],confirm:[334,4,1,""],default_confirm:[334,4,1,""],func:[334,3,1,""],help_category:[334,4,1,""],key:[334,4,1,""],lock_storage:[334,4,1,""],locks:[334,4,1,""],search_index_entry:[334,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdEditPuzzle":{aliases:[334,4,1,""],func:[334,3,1,""],help_category:[334,4,1,""],key:[334,4,1,""],lock_storage:[334,4,1,""],locks:[334,4,1,""],search_index_entry:[334,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdListArmedPuzzles":{aliases:[334,4,1,""],func:[334,3,1,""],help_category:[334,4,1,""],key:[334,4,1,""],lock_storage:[334,4,1,""],locks:[334,4,1,""],search_index_entry:[334,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdListPuzzleRecipes":{aliases:[334,4,1,""],func:[334,3,1,""],help_category:[334,4,1,""],key:[334,4,1,""],lock_storage:[334,4,1,""],locks:[334,4,1,""],search_index_entry:[334,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdUsePuzzleParts":{aliases:[334,4,1,""],func:[334,3,1,""],help_category:[334,4,1,""],key:[334,4,1,""],lock_storage:[334,4,1,""],locks:[334,4,1,""],search_index_entry:[334,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.PuzzleRecipe":{DoesNotExist:[334,2,1,""],MultipleObjectsReturned:[334,2,1,""],path:[334,4,1,""],save_recipe:[334,3,1,""],typename:[334,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[334,3,1,""],path:[334,4,1,""]},"evennia.contrib.game_systems.puzzles.tests":{TestPuzzles:[335,1,1,""]},"evennia.contrib.game_systems.puzzles.tests.TestPuzzles":{setUp:[335,3,1,""],test_cmd_armpuzzle:[335,3,1,""],test_cmd_puzzle:[335,3,1,""],test_cmd_use:[335,3,1,""],test_cmdset_puzzle:[335,3,1,""],test_e2e:[335,3,1,""],test_e2e_accumulative:[335,3,1,""],test_e2e_interchangeable_parts_and_results:[335,3,1,""],test_lspuzzlerecipes_lsarmedpuzzles:[335,3,1,""],test_puzzleedit:[335,3,1,""],test_puzzleedit_add_remove_parts_results:[335,3,1,""]},"evennia.contrib.game_systems.turnbattle":{tb_basic:[337,0,0,"-"],tb_equip:[338,0,0,"-"],tb_items:[339,0,0,"-"],tb_magic:[340,0,0,"-"],tb_range:[341,0,0,"-"],tests:[342,0,0,"-"]},"evennia.contrib.game_systems.turnbattle.tb_basic":{ACTIONS_PER_TURN:[337,6,1,""],BasicCombatRules:[337,1,1,""],BattleCmdSet:[337,1,1,""],COMBAT_RULES:[337,6,1,""],CmdAttack:[337,1,1,""],CmdCombatHelp:[337,1,1,""],CmdDisengage:[337,1,1,""],CmdFight:[337,1,1,""],CmdPass:[337,1,1,""],CmdRest:[337,1,1,""],TBBasicCharacter:[337,1,1,""],TBBasicTurnHandler:[337,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.BasicCombatRules":{apply_damage:[337,3,1,""],at_defeat:[337,3,1,""],combat_cleanup:[337,3,1,""],get_attack:[337,3,1,""],get_damage:[337,3,1,""],get_defense:[337,3,1,""],is_in_combat:[337,3,1,""],is_turn:[337,3,1,""],resolve_attack:[337,3,1,""],roll_init:[337,3,1,""],spend_action:[337,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[337,3,1,""],key:[337,4,1,""],path:[337,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdAttack":{aliases:[337,4,1,""],func:[337,3,1,""],help_category:[337,4,1,""],key:[337,4,1,""],lock_storage:[337,4,1,""],rules:[337,4,1,""],search_index_entry:[337,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdCombatHelp":{aliases:[337,4,1,""],combat_help_text:[337,4,1,""],func:[337,3,1,""],help_category:[337,4,1,""],key:[337,4,1,""],lock_storage:[337,4,1,""],rules:[337,4,1,""],search_index_entry:[337,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdDisengage":{aliases:[337,4,1,""],func:[337,3,1,""],help_category:[337,4,1,""],key:[337,4,1,""],lock_storage:[337,4,1,""],rules:[337,4,1,""],search_index_entry:[337,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdFight":{aliases:[337,4,1,""],combat_handler_class:[337,4,1,""],func:[337,3,1,""],help_category:[337,4,1,""],key:[337,4,1,""],lock_storage:[337,4,1,""],rules:[337,4,1,""],search_index_entry:[337,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdPass":{aliases:[337,4,1,""],func:[337,3,1,""],help_category:[337,4,1,""],key:[337,4,1,""],lock_storage:[337,4,1,""],rules:[337,4,1,""],search_index_entry:[337,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdRest":{aliases:[337,4,1,""],func:[337,3,1,""],help_category:[337,4,1,""],key:[337,4,1,""],lock_storage:[337,4,1,""],rules:[337,4,1,""],search_index_entry:[337,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[337,2,1,""],MultipleObjectsReturned:[337,2,1,""],at_object_creation:[337,3,1,""],at_pre_move:[337,3,1,""],path:[337,4,1,""],rules:[337,4,1,""],typename:[337,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[337,2,1,""],MultipleObjectsReturned:[337,2,1,""],at_repeat:[337,3,1,""],at_script_creation:[337,3,1,""],at_stop:[337,3,1,""],initialize_for_combat:[337,3,1,""],join_fight:[337,3,1,""],next_turn:[337,3,1,""],path:[337,4,1,""],rules:[337,4,1,""],start_turn:[337,3,1,""],turn_end_check:[337,3,1,""],typename:[337,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip":{ACTIONS_PER_TURN:[338,6,1,""],BattleCmdSet:[338,1,1,""],COMBAT_RULES:[338,6,1,""],CmdAttack:[338,1,1,""],CmdCombatHelp:[338,1,1,""],CmdDisengage:[338,1,1,""],CmdDoff:[338,1,1,""],CmdDon:[338,1,1,""],CmdFight:[338,1,1,""],CmdPass:[338,1,1,""],CmdRest:[338,1,1,""],CmdUnwield:[338,1,1,""],CmdWield:[338,1,1,""],EquipmentCombatRules:[338,1,1,""],TBEArmor:[338,1,1,""],TBEWeapon:[338,1,1,""],TBEquipCharacter:[338,1,1,""],TBEquipTurnHandler:[338,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[338,3,1,""],key:[338,4,1,""],path:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdAttack":{aliases:[338,4,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdCombatHelp":{aliases:[338,4,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDisengage":{aliases:[338,4,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDoff":{aliases:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDon":{aliases:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdFight":{aliases:[338,4,1,""],command_handler_class:[338,4,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdPass":{aliases:[338,4,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdRest":{aliases:[338,4,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdUnwield":{aliases:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdWield":{aliases:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.EquipmentCombatRules":{get_attack:[338,3,1,""],get_damage:[338,3,1,""],get_defense:[338,3,1,""],resolve_attack:[338,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[338,2,1,""],MultipleObjectsReturned:[338,2,1,""],at_drop:[338,3,1,""],at_give:[338,3,1,""],at_object_creation:[338,3,1,""],at_pre_drop:[338,3,1,""],at_pre_give:[338,3,1,""],path:[338,4,1,""],typename:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[338,2,1,""],MultipleObjectsReturned:[338,2,1,""],at_drop:[338,3,1,""],at_give:[338,3,1,""],at_object_creation:[338,3,1,""],path:[338,4,1,""],rules:[338,4,1,""],typename:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[338,2,1,""],MultipleObjectsReturned:[338,2,1,""],at_object_creation:[338,3,1,""],path:[338,4,1,""],typename:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[338,2,1,""],MultipleObjectsReturned:[338,2,1,""],path:[338,4,1,""],rules:[338,4,1,""],typename:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items":{AMULET_OF_WEAKNESS:[339,6,1,""],BattleCmdSet:[339,1,1,""],CmdAttack:[339,1,1,""],CmdCombatHelp:[339,1,1,""],CmdDisengage:[339,1,1,""],CmdFight:[339,1,1,""],CmdPass:[339,1,1,""],CmdRest:[339,1,1,""],CmdUse:[339,1,1,""],DEF_DOWN_MOD:[339,6,1,""],ITEMFUNCS:[339,6,1,""],ItemCombatRules:[339,1,1,""],TBItemsCharacter:[339,1,1,""],TBItemsCharacterTest:[339,1,1,""],TBItemsTurnHandler:[339,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[339,3,1,""],key:[339,4,1,""],path:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdAttack":{aliases:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdCombatHelp":{aliases:[339,4,1,""],combat_help_text:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdDisengage":{aliases:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdFight":{aliases:[339,4,1,""],combat_handler_class:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdPass":{aliases:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdRest":{aliases:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdUse":{aliases:[339,4,1,""],func:[339,3,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.ItemCombatRules":{add_condition:[339,3,1,""],condition_tickdown:[339,3,1,""],get_attack:[339,3,1,""],get_damage:[339,3,1,""],get_defense:[339,3,1,""],itemfunc_add_condition:[339,3,1,""],itemfunc_attack:[339,3,1,""],itemfunc_cure_condition:[339,3,1,""],itemfunc_heal:[339,3,1,""],resolve_attack:[339,3,1,""],spend_item_use:[339,3,1,""],use_item:[339,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[339,2,1,""],MultipleObjectsReturned:[339,2,1,""],apply_turn_conditions:[339,3,1,""],at_object_creation:[339,3,1,""],at_turn_start:[339,3,1,""],at_update:[339,3,1,""],path:[339,4,1,""],rules:[339,4,1,""],typename:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[339,2,1,""],MultipleObjectsReturned:[339,2,1,""],at_object_creation:[339,3,1,""],path:[339,4,1,""],typename:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[339,2,1,""],MultipleObjectsReturned:[339,2,1,""],next_turn:[339,3,1,""],path:[339,4,1,""],rules:[339,4,1,""],typename:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic":{ACTIONS_PER_TURN:[340,6,1,""],BattleCmdSet:[340,1,1,""],COMBAT_RULES:[340,6,1,""],CmdAttack:[340,1,1,""],CmdCast:[340,1,1,""],CmdCombatHelp:[340,1,1,""],CmdDisengage:[340,1,1,""],CmdFight:[340,1,1,""],CmdLearnSpell:[340,1,1,""],CmdPass:[340,1,1,""],CmdRest:[340,1,1,""],CmdStatus:[340,1,1,""],MagicCombatRules:[340,1,1,""],SPELLS:[340,6,1,""],TBMagicCharacter:[340,1,1,""],TBMagicTurnHandler:[340,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[340,3,1,""],key:[340,4,1,""],path:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdAttack":{aliases:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdCast":{aliases:[340,4,1,""],func:[340,3,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdCombatHelp":{aliases:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdDisengage":{aliases:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdFight":{aliases:[340,4,1,""],combat_handler_class:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdLearnSpell":{aliases:[340,4,1,""],func:[340,3,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdPass":{aliases:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdRest":{aliases:[340,4,1,""],func:[340,3,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdStatus":{aliases:[340,4,1,""],func:[340,3,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.MagicCombatRules":{spell_attack:[340,3,1,""],spell_conjure:[340,3,1,""],spell_healing:[340,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[340,2,1,""],MultipleObjectsReturned:[340,2,1,""],at_object_creation:[340,3,1,""],path:[340,4,1,""],rules:[340,4,1,""],typename:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[340,2,1,""],MultipleObjectsReturned:[340,2,1,""],path:[340,4,1,""],rules:[340,4,1,""],typename:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range":{ACTIONS_PER_TURN:[341,6,1,""],BattleCmdSet:[341,1,1,""],COMBAT_RULES:[341,6,1,""],CmdApproach:[341,1,1,""],CmdAttack:[341,1,1,""],CmdCombatHelp:[341,1,1,""],CmdDisengage:[341,1,1,""],CmdFight:[341,1,1,""],CmdPass:[341,1,1,""],CmdRest:[341,1,1,""],CmdShoot:[341,1,1,""],CmdStatus:[341,1,1,""],CmdWithdraw:[341,1,1,""],RangedCombatRules:[341,1,1,""],TBRangeCharacter:[341,1,1,""],TBRangeObject:[341,1,1,""],TBRangeTurnHandler:[341,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[341,3,1,""],key:[341,4,1,""],path:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdApproach":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdAttack":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdCombatHelp":{aliases:[341,4,1,""],combat_help_text:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdDisengage":{aliases:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdFight":{aliases:[341,4,1,""],combat_handler_class:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdPass":{aliases:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdRest":{aliases:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdShoot":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdStatus":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdWithdraw":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.RangedCombatRules":{approach:[341,3,1,""],combat_status_message:[341,3,1,""],distance_dec:[341,3,1,""],distance_inc:[341,3,1,""],get_attack:[341,3,1,""],get_defense:[341,3,1,""],get_range:[341,3,1,""],resolve_attack:[341,3,1,""],withdraw:[341,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[341,2,1,""],MultipleObjectsReturned:[341,2,1,""],path:[341,4,1,""],rules:[341,4,1,""],typename:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[341,2,1,""],MultipleObjectsReturned:[341,2,1,""],at_drop:[341,3,1,""],at_get:[341,3,1,""],at_give:[341,3,1,""],at_pre_drop:[341,3,1,""],at_pre_get:[341,3,1,""],at_pre_give:[341,3,1,""],path:[341,4,1,""],typename:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[341,2,1,""],MultipleObjectsReturned:[341,2,1,""],init_range:[341,3,1,""],join_fight:[341,3,1,""],join_rangefield:[341,3,1,""],path:[341,4,1,""],rules:[341,4,1,""],start_turn:[341,3,1,""],typename:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tests":{TestTurnBattleBasicCmd:[342,1,1,""],TestTurnBattleBasicFunc:[342,1,1,""],TestTurnBattleEquipCmd:[342,1,1,""],TestTurnBattleEquipFunc:[342,1,1,""],TestTurnBattleItemsCmd:[342,1,1,""],TestTurnBattleItemsFunc:[342,1,1,""],TestTurnBattleMagicCmd:[342,1,1,""],TestTurnBattleMagicFunc:[342,1,1,""],TestTurnBattleRangeCmd:[342,1,1,""],TestTurnBattleRangeFunc:[342,1,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleBasicCmd":{test_turnbattlecmd:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleBasicFunc":{setUp:[342,3,1,""],tearDown:[342,3,1,""],test_tbbasicfunc:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleEquipCmd":{setUp:[342,3,1,""],test_turnbattleequipcmd:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleEquipFunc":{setUp:[342,3,1,""],tearDown:[342,3,1,""],test_tbequipfunc:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleItemsCmd":{setUp:[342,3,1,""],test_turnbattleitemcmd:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleItemsFunc":{setUp:[342,3,1,""],tearDown:[342,3,1,""],test_tbitemsfunc:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleMagicCmd":{test_turnbattlemagiccmd:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleMagicFunc":{setUp:[342,3,1,""],tearDown:[342,3,1,""],test_tbbasicfunc:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleRangeCmd":{test_turnbattlerangecmd:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleRangeFunc":{setUp:[342,3,1,""],tearDown:[342,3,1,""],test_tbrangefunc:[342,3,1,""]},"evennia.contrib.grid":{extended_room:[344,0,0,"-"],ingame_map_display:[347,0,0,"-"],simpledoor:[353,0,0,"-"],slow_exit:[356,0,0,"-"],wilderness:[359,0,0,"-"],xyzgrid:[362,0,0,"-"]},"evennia.contrib.grid.extended_room":{extended_room:[345,0,0,"-"],tests:[346,0,0,"-"]},"evennia.contrib.grid.extended_room.extended_room":{CmdExtendedRoomDesc:[345,1,1,""],CmdExtendedRoomDetail:[345,1,1,""],CmdExtendedRoomGameTime:[345,1,1,""],CmdExtendedRoomLook:[345,1,1,""],ExtendedRoom:[345,1,1,""],ExtendedRoomCmdSet:[345,1,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomDesc":{aliases:[345,4,1,""],func:[345,3,1,""],help_category:[345,4,1,""],key:[345,4,1,""],lock_storage:[345,4,1,""],reset_times:[345,3,1,""],search_index_entry:[345,4,1,""],switch_options:[345,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomDetail":{aliases:[345,4,1,""],func:[345,3,1,""],help_category:[345,4,1,""],key:[345,4,1,""],lock_storage:[345,4,1,""],locks:[345,4,1,""],search_index_entry:[345,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomGameTime":{aliases:[345,4,1,""],func:[345,3,1,""],help_category:[345,4,1,""],key:[345,4,1,""],lock_storage:[345,4,1,""],locks:[345,4,1,""],search_index_entry:[345,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomLook":{aliases:[345,4,1,""],func:[345,3,1,""],help_category:[345,4,1,""],key:[345,4,1,""],lock_storage:[345,4,1,""],search_index_entry:[345,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.ExtendedRoom":{DoesNotExist:[345,2,1,""],MultipleObjectsReturned:[345,2,1,""],at_object_creation:[345,3,1,""],del_detail:[345,3,1,""],get_time_and_season:[345,3,1,""],path:[345,4,1,""],replace_timeslots:[345,3,1,""],return_appearance:[345,3,1,""],return_detail:[345,3,1,""],set_detail:[345,3,1,""],typename:[345,4,1,""],update_current_description:[345,3,1,""]},"evennia.contrib.grid.extended_room.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[345,3,1,""],path:[345,4,1,""]},"evennia.contrib.grid.extended_room.tests":{ForceUTCDatetime:[346,1,1,""],TestExtendedRoom:[346,1,1,""]},"evennia.contrib.grid.extended_room.tests.ForceUTCDatetime":{fromtimestamp:[346,3,1,""]},"evennia.contrib.grid.extended_room.tests.TestExtendedRoom":{DETAIL_DESC:[346,4,1,""],OLD_DESC:[346,4,1,""],SPRING_DESC:[346,4,1,""],room_typeclass:[346,4,1,""],setUp:[346,3,1,""],test_cmdextendedlook:[346,3,1,""],test_cmdgametime:[346,3,1,""],test_cmdsetdetail:[346,3,1,""],test_return_appearance:[346,3,1,""],test_return_detail:[346,3,1,""]},"evennia.contrib.grid.ingame_map_display":{ingame_map_display:[348,0,0,"-"]},"evennia.contrib.grid.ingame_map_display.ingame_map_display":{CmdMap:[348,1,1,""],Map:[348,1,1,""],MapDisplayCmdSet:[348,1,1,""]},"evennia.contrib.grid.ingame_map_display.ingame_map_display.CmdMap":{aliases:[348,4,1,""],func:[348,3,1,""],help_category:[348,4,1,""],key:[348,4,1,""],lock_storage:[348,4,1,""],search_index_entry:[348,4,1,""]},"evennia.contrib.grid.ingame_map_display.ingame_map_display.Map":{__init__:[348,3,1,""],create_grid:[348,3,1,""],draw:[348,3,1,""],draw_exits:[348,3,1,""],draw_room_on_map:[348,3,1,""],exit_name_as_ordinal:[348,3,1,""],has_drawn:[348,3,1,""],render_room:[348,3,1,""],show_map:[348,3,1,""],start_loc_on_grid:[348,3,1,""],update_pos:[348,3,1,""]},"evennia.contrib.grid.ingame_map_display.ingame_map_display.MapDisplayCmdSet":{at_cmdset_creation:[348,3,1,""],path:[348,4,1,""]},"evennia.contrib.grid.simpledoor":{simpledoor:[354,0,0,"-"],tests:[355,0,0,"-"]},"evennia.contrib.grid.simpledoor.simpledoor":{CmdOpen:[354,1,1,""],CmdOpenCloseDoor:[354,1,1,""],SimpleDoor:[354,1,1,""],SimpleDoorCmdSet:[354,1,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.CmdOpen":{aliases:[354,4,1,""],create_exit:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.CmdOpenCloseDoor":{aliases:[354,4,1,""],func:[354,3,1,""],help_category:[354,4,1,""],key:[354,4,1,""],lock_storage:[354,4,1,""],locks:[354,4,1,""],search_index_entry:[354,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.SimpleDoor":{"delete":[354,3,1,""],DoesNotExist:[354,2,1,""],MultipleObjectsReturned:[354,2,1,""],at_failed_traverse:[354,3,1,""],at_object_creation:[354,3,1,""],path:[354,4,1,""],setdesc:[354,3,1,""],setlock:[354,3,1,""],typename:[354,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.SimpleDoorCmdSet":{at_cmdset_creation:[354,3,1,""],path:[354,4,1,""]},"evennia.contrib.grid.simpledoor.tests":{TestSimpleDoor:[355,1,1,""]},"evennia.contrib.grid.simpledoor.tests.TestSimpleDoor":{test_cmdopen:[355,3,1,""]},"evennia.contrib.grid.slow_exit":{slow_exit:[357,0,0,"-"],tests:[358,0,0,"-"]},"evennia.contrib.grid.slow_exit.slow_exit":{CmdSetSpeed:[357,1,1,""],CmdStop:[357,1,1,""],SlowExit:[357,1,1,""],SlowExitCmdSet:[357,1,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.CmdSetSpeed":{aliases:[357,4,1,""],func:[357,3,1,""],help_category:[357,4,1,""],key:[357,4,1,""],lock_storage:[357,4,1,""],search_index_entry:[357,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.CmdStop":{aliases:[357,4,1,""],func:[357,3,1,""],help_category:[357,4,1,""],key:[357,4,1,""],lock_storage:[357,4,1,""],search_index_entry:[357,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.SlowExit":{DoesNotExist:[357,2,1,""],MultipleObjectsReturned:[357,2,1,""],at_traverse:[357,3,1,""],path:[357,4,1,""],typename:[357,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.SlowExitCmdSet":{at_cmdset_creation:[357,3,1,""],path:[357,4,1,""]},"evennia.contrib.grid.slow_exit.tests":{TestSlowExit:[358,1,1,""]},"evennia.contrib.grid.slow_exit.tests.TestSlowExit":{test_exit:[358,3,1,""]},"evennia.contrib.grid.wilderness":{tests:[360,0,0,"-"],wilderness:[361,0,0,"-"]},"evennia.contrib.grid.wilderness.tests":{TestWilderness:[360,1,1,""]},"evennia.contrib.grid.wilderness.tests.TestWilderness":{get_wilderness_script:[360,3,1,""],setUp:[360,3,1,""],test_create_wilderness_custom_name:[360,3,1,""],test_create_wilderness_default_name:[360,3,1,""],test_enter_wilderness:[360,3,1,""],test_enter_wilderness_custom_coordinates:[360,3,1,""],test_enter_wilderness_custom_name:[360,3,1,""],test_get_new_coordinates:[360,3,1,""],test_preserve_items:[360,3,1,""],test_room_creation:[360,3,1,""],test_wilderness_correct_exits:[360,3,1,""]},"evennia.contrib.grid.wilderness.wilderness":{WildernessExit:[361,1,1,""],WildernessMapProvider:[361,1,1,""],WildernessRoom:[361,1,1,""],WildernessScript:[361,1,1,""],create_wilderness:[361,5,1,""],enter_wilderness:[361,5,1,""],get_new_coordinates:[361,5,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessExit":{DoesNotExist:[361,2,1,""],MultipleObjectsReturned:[361,2,1,""],at_traverse:[361,3,1,""],at_traverse_coordinates:[361,3,1,""],mapprovider:[361,3,1,""],path:[361,4,1,""],typename:[361,4,1,""],wilderness:[361,3,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessMapProvider":{at_prepare_room:[361,3,1,""],exit_typeclass:[361,4,1,""],get_location_name:[361,3,1,""],is_valid_coordinates:[361,3,1,""],room_typeclass:[361,4,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessRoom":{DoesNotExist:[361,2,1,""],MultipleObjectsReturned:[361,2,1,""],at_object_leave:[361,3,1,""],at_object_receive:[361,3,1,""],coordinates:[361,3,1,""],get_display_desc:[361,3,1,""],get_display_name:[361,3,1,""],location_name:[361,3,1,""],path:[361,4,1,""],set_active_coordinates:[361,3,1,""],typename:[361,4,1,""],wilderness:[361,3,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessScript":{DoesNotExist:[361,2,1,""],MultipleObjectsReturned:[361,2,1,""],at_post_object_leave:[361,3,1,""],at_script_creation:[361,3,1,""],at_server_start:[361,3,1,""],get_obj_coordinates:[361,3,1,""],get_objs_at_coordinates:[361,3,1,""],is_valid_coordinates:[361,3,1,""],itemcoordinates:[361,4,1,""],mapprovider:[361,4,1,""],move_obj:[361,3,1,""],path:[361,4,1,""],preserve_items:[361,4,1,""],typename:[361,4,1,""]},"evennia.contrib.grid.xyzgrid":{commands:[363,0,0,"-"],example:[364,0,0,"-"],launchcmd:[365,0,0,"-"],prototypes:[366,0,0,"-"],tests:[367,0,0,"-"],utils:[368,0,0,"-"],xymap:[369,0,0,"-"],xymap_legend:[370,0,0,"-"],xyzgrid:[371,0,0,"-"],xyzroom:[372,0,0,"-"]},"evennia.contrib.grid.xyzgrid.commands":{CmdGoto:[363,1,1,""],CmdMap:[363,1,1,""],CmdXYZOpen:[363,1,1,""],CmdXYZTeleport:[363,1,1,""],PathData:[363,1,1,""],XYZGridCmdSet:[363,1,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdGoto":{aliases:[363,4,1,""],auto_step_delay:[363,4,1,""],default_xyz_path_interrupt_msg:[363,4,1,""],func:[363,3,1,""],help_category:[363,4,1,""],key:[363,4,1,""],lock_storage:[363,4,1,""],locks:[363,4,1,""],search_index_entry:[363,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdMap":{aliases:[363,4,1,""],func:[363,3,1,""],help_category:[363,4,1,""],key:[363,4,1,""],lock_storage:[363,4,1,""],locks:[363,4,1,""],search_index_entry:[363,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdXYZOpen":{aliases:[363,4,1,""],help_category:[363,4,1,""],key:[363,4,1,""],lock_storage:[363,4,1,""],parse:[363,3,1,""],search_index_entry:[363,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdXYZTeleport":{aliases:[363,4,1,""],help_category:[363,4,1,""],key:[363,4,1,""],lock_storage:[363,4,1,""],parse:[363,3,1,""],search_index_entry:[363,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.PathData":{directions:[363,4,1,""],step_sequence:[363,4,1,""],target:[363,4,1,""],task:[363,4,1,""],xymap:[363,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.XYZGridCmdSet":{at_cmdset_creation:[363,3,1,""],key:[363,4,1,""],path:[363,4,1,""]},"evennia.contrib.grid.xyzgrid.example":{TransitionToCave:[364,1,1,""],TransitionToLargeTree:[364,1,1,""]},"evennia.contrib.grid.xyzgrid.example.TransitionToCave":{symbol:[364,4,1,""],target_map_xyz:[364,4,1,""]},"evennia.contrib.grid.xyzgrid.example.TransitionToLargeTree":{symbol:[364,4,1,""],target_map_xyz:[364,4,1,""]},"evennia.contrib.grid.xyzgrid.launchcmd":{xyzcommand:[365,5,1,""]},"evennia.contrib.grid.xyzgrid.tests":{Map12aTransition:[367,1,1,""],Map12bTransition:[367,1,1,""],TestBuildExampleGrid:[367,1,1,""],TestCallbacks:[367,1,1,""],TestMap10:[367,1,1,""],TestMap11:[367,1,1,""],TestMap1:[367,1,1,""],TestMap2:[367,1,1,""],TestMap3:[367,1,1,""],TestMap4:[367,1,1,""],TestMap5:[367,1,1,""],TestMap6:[367,1,1,""],TestMap7:[367,1,1,""],TestMap8:[367,1,1,""],TestMap9:[367,1,1,""],TestMapStressTest:[367,1,1,""],TestXYZGrid:[367,1,1,""],TestXYZGridTransition:[367,1,1,""],TestXyzExit:[367,1,1,""],TestXyzRoom:[367,1,1,""]},"evennia.contrib.grid.xyzgrid.tests.Map12aTransition":{symbol:[367,4,1,""],target_map_xyz:[367,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.Map12bTransition":{symbol:[367,4,1,""],target_map_xyz:[367,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestBuildExampleGrid":{setUp:[367,3,1,""],tearDown:[367,3,1,""],test_build:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestCallbacks":{setUp:[367,3,1,""],setup_grid:[367,3,1,""],tearDown:[367,3,1,""],test_typeclassed_xyzroom_and_xyzexit_with_at_object_creation_are_called:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap1":{test_get_shortest_path:[367,3,1,""],test_get_visual_range__nodes__character:[367,4,1,""],test_get_visual_range__nodes__character_0:[367,3,1,""],test_get_visual_range__nodes__character_1:[367,3,1,""],test_get_visual_range__nodes__character_2:[367,3,1,""],test_get_visual_range__nodes__character_3:[367,3,1,""],test_get_visual_range__nodes__character_4:[367,3,1,""],test_get_visual_range__scan:[367,4,1,""],test_get_visual_range__scan_0:[367,3,1,""],test_get_visual_range__scan_1:[367,3,1,""],test_get_visual_range__scan_2:[367,3,1,""],test_get_visual_range__scan_3:[367,3,1,""],test_get_visual_range__scan__character:[367,4,1,""],test_get_visual_range__scan__character_0:[367,3,1,""],test_get_visual_range__scan__character_1:[367,3,1,""],test_get_visual_range__scan__character_2:[367,3,1,""],test_get_visual_range__scan__character_3:[367,3,1,""],test_node_from_coord:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap10":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_paths:[367,4,1,""],test_paths_0:[367,3,1,""],test_paths_1:[367,3,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_shortest_path_2:[367,3,1,""],test_shortest_path_3:[367,3,1,""],test_shortest_path_4:[367,3,1,""],test_shortest_path_5:[367,3,1,""],test_shortest_path_6:[367,3,1,""],test_shortest_path_7:[367,3,1,""],test_shortest_path_8:[367,3,1,""],test_shortest_path_9:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap11":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_get_visual_range_with_path:[367,4,1,""],test_get_visual_range_with_path_0:[367,3,1,""],test_get_visual_range_with_path_1:[367,3,1,""],test_paths:[367,4,1,""],test_paths_0:[367,3,1,""],test_paths_1:[367,3,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap2":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_extended_path_tracking__horizontal:[367,3,1,""],test_extended_path_tracking__vertical:[367,3,1,""],test_get_visual_range__nodes__character:[367,4,1,""],test_get_visual_range__nodes__character_0:[367,3,1,""],test_get_visual_range__nodes__character_1:[367,3,1,""],test_get_visual_range__nodes__character_2:[367,3,1,""],test_get_visual_range__nodes__character_3:[367,3,1,""],test_get_visual_range__nodes__character_4:[367,3,1,""],test_get_visual_range__nodes__character_5:[367,3,1,""],test_get_visual_range__nodes__character_6:[367,3,1,""],test_get_visual_range__nodes__character_7:[367,3,1,""],test_get_visual_range__nodes__character_8:[367,3,1,""],test_get_visual_range__nodes__character_9:[367,3,1,""],test_get_visual_range__scan__character:[367,4,1,""],test_get_visual_range__scan__character_0:[367,3,1,""],test_get_visual_range__scan__character_1:[367,3,1,""],test_get_visual_range__scan__character_2:[367,3,1,""],test_get_visual_range__scan__character_3:[367,3,1,""],test_node_from_coord:[367,3,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_shortest_path_2:[367,3,1,""],test_shortest_path_3:[367,3,1,""],test_shortest_path_4:[367,3,1,""],test_shortest_path_5:[367,3,1,""],test_shortest_path_6:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap3":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_get_visual_range__nodes__character:[367,4,1,""],test_get_visual_range__nodes__character_0:[367,3,1,""],test_get_visual_range__nodes__character_1:[367,3,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_00:[367,3,1,""],test_shortest_path_01:[367,3,1,""],test_shortest_path_02:[367,3,1,""],test_shortest_path_03:[367,3,1,""],test_shortest_path_04:[367,3,1,""],test_shortest_path_05:[367,3,1,""],test_shortest_path_06:[367,3,1,""],test_shortest_path_07:[367,3,1,""],test_shortest_path_08:[367,3,1,""],test_shortest_path_09:[367,3,1,""],test_shortest_path_10:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap4":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_shortest_path_2:[367,3,1,""],test_shortest_path_3:[367,3,1,""],test_shortest_path_4:[367,3,1,""],test_shortest_path_5:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap5":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_shortest_path_2:[367,3,1,""],test_shortest_path_3:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap6":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_shortest_path_2:[367,3,1,""],test_shortest_path_3:[367,3,1,""],test_shortest_path_4:[367,3,1,""],test_shortest_path_5:[367,3,1,""],test_shortest_path_6:[367,3,1,""],test_shortest_path_7:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap7":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_shortest_path_2:[367,3,1,""],test_shortest_path_3:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap8":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_get_visual_range__nodes__character:[367,4,1,""],test_get_visual_range__nodes__character_0:[367,3,1,""],test_get_visual_range_with_path:[367,4,1,""],test_get_visual_range_with_path_0:[367,3,1,""],test_get_visual_range_with_path_1:[367,3,1,""],test_get_visual_range_with_path_2:[367,3,1,""],test_get_visual_range_with_path_3:[367,3,1,""],test_get_visual_range_with_path_4:[367,3,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_shortest_path_2:[367,3,1,""],test_shortest_path_3:[367,3,1,""],test_shortest_path_4:[367,3,1,""],test_shortest_path_5:[367,3,1,""],test_shortest_path_6:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap9":{map_data:[367,4,1,""],map_display:[367,4,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_shortest_path_2:[367,3,1,""],test_shortest_path_3:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMapStressTest":{test_grid_creation:[367,4,1,""],test_grid_creation_0:[367,3,1,""],test_grid_creation_1:[367,3,1,""],test_grid_pathfind:[367,4,1,""],test_grid_pathfind_0:[367,3,1,""],test_grid_pathfind_1:[367,3,1,""],test_grid_visibility:[367,4,1,""],test_grid_visibility_0:[367,3,1,""],test_grid_visibility_1:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXYZGrid":{setUp:[367,3,1,""],tearDown:[367,3,1,""],test_spawn:[367,3,1,""],test_str_output:[367,3,1,""],zcoord:[367,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXYZGridTransition":{setUp:[367,3,1,""],tearDown:[367,3,1,""],test_shortest_path:[367,4,1,""],test_shortest_path_0:[367,3,1,""],test_shortest_path_1:[367,3,1,""],test_spawn:[367,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXyzExit":{DoesNotExist:[367,2,1,""],MultipleObjectsReturned:[367,2,1,""],at_object_creation:[367,3,1,""],path:[367,4,1,""],typename:[367,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXyzRoom":{DoesNotExist:[367,2,1,""],MultipleObjectsReturned:[367,2,1,""],at_object_creation:[367,3,1,""],path:[367,4,1,""],typename:[367,4,1,""]},"evennia.contrib.grid.xyzgrid.utils":{MapError:[368,2,1,""],MapParserError:[368,2,1,""],MapTransition:[368,2,1,""]},"evennia.contrib.grid.xyzgrid.utils.MapError":{__init__:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap":{XYMap:[369,1,1,""]},"evennia.contrib.grid.xyzgrid.xymap.XYMap":{__init__:[369,3,1,""],calculate_path_matrix:[369,3,1,""],empty_symbol:[369,4,1,""],get_components_with_symbol:[369,3,1,""],get_node_from_coord:[369,3,1,""],get_shortest_path:[369,3,1,""],get_visual_range:[369,3,1,""],legend_key_exceptions:[369,4,1,""],log:[369,3,1,""],mapcorner_symbol:[369,4,1,""],max_pathfinding_length:[369,4,1,""],parse:[369,3,1,""],reload:[369,3,1,""],spawn_links:[369,3,1,""],spawn_nodes:[369,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend":{BasicMapNode:[370,1,1,""],BlockedMapLink:[370,1,1,""],CrossMapLink:[370,1,1,""],DownMapLink:[370,1,1,""],EWMapLink:[370,1,1,""],EWOneWayMapLink:[370,1,1,""],InterruptMapLink:[370,1,1,""],InterruptMapNode:[370,1,1,""],InvisibleSmartMapLink:[370,1,1,""],MapLink:[370,1,1,""],MapNode:[370,1,1,""],MapTransitionNode:[370,1,1,""],NESWMapLink:[370,1,1,""],NSMapLink:[370,1,1,""],NSOneWayMapLink:[370,1,1,""],PlusMapLink:[370,1,1,""],RouterMapLink:[370,1,1,""],SENWMapLink:[370,1,1,""],SNOneWayMapLink:[370,1,1,""],SmartMapLink:[370,1,1,""],SmartRerouterMapLink:[370,1,1,""],SmartTeleporterMapLink:[370,1,1,""],TeleporterMapLink:[370,1,1,""],TransitionMapNode:[370,1,1,""],UpMapLink:[370,1,1,""],WEOneWayMapLink:[370,1,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.BasicMapNode":{prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.BlockedMapLink":{prototype:[370,4,1,""],symbol:[370,4,1,""],weights:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.CrossMapLink":{directions:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.DownMapLink":{direction_aliases:[370,4,1,""],prototype:[370,4,1,""],spawn_aliases:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.EWMapLink":{directions:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.EWOneWayMapLink":{directions:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InterruptMapLink":{interrupt_path:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InterruptMapNode":{display_symbol:[370,4,1,""],interrupt_path:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InvisibleSmartMapLink":{direction_aliases:[370,4,1,""],display_symbol_aliases:[370,4,1,""],get_display_symbol:[370,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapLink":{__init__:[370,3,1,""],at_empty_target:[370,3,1,""],average_long_link_weights:[370,4,1,""],default_weight:[370,4,1,""],direction_aliases:[370,4,1,""],directions:[370,4,1,""],display_symbol:[370,4,1,""],generate_prototype_key:[370,3,1,""],get_direction:[370,3,1,""],get_display_symbol:[370,3,1,""],get_linked_neighbors:[370,3,1,""],get_weight:[370,3,1,""],interrupt_path:[370,4,1,""],multilink:[370,4,1,""],prototype:[370,4,1,""],spawn_aliases:[370,4,1,""],symbol:[370,4,1,""],traverse:[370,3,1,""],weights:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapNode":{__init__:[370,3,1,""],build_links:[370,3,1,""],direction_spawn_defaults:[370,4,1,""],display_symbol:[370,4,1,""],generate_prototype_key:[370,3,1,""],get_display_symbol:[370,3,1,""],get_exit_spawn_name:[370,3,1,""],get_spawn_xyz:[370,3,1,""],interrupt_path:[370,4,1,""],linkweights:[370,3,1,""],log:[370,3,1,""],multilink:[370,4,1,""],node_index:[370,4,1,""],prototype:[370,4,1,""],spawn:[370,3,1,""],spawn_links:[370,3,1,""],symbol:[370,4,1,""],unspawn:[370,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapTransitionNode":{display_symbol:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""],target_map_xyz:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NESWMapLink":{directions:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NSMapLink":{directions:[370,4,1,""],display_symbol:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NSOneWayMapLink":{directions:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.PlusMapLink":{directions:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.RouterMapLink":{symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SENWMapLink":{directions:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SNOneWayMapLink":{directions:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartMapLink":{get_direction:[370,3,1,""],multilink:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartRerouterMapLink":{get_direction:[370,3,1,""],multilink:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartTeleporterMapLink":{__init__:[370,3,1,""],at_empty_target:[370,3,1,""],direction_name:[370,4,1,""],display_symbol:[370,4,1,""],get_direction:[370,3,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.TeleporterMapLink":{symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.TransitionMapNode":{build_links:[370,3,1,""],display_symbol:[370,4,1,""],get_spawn_xyz:[370,3,1,""],symbol:[370,4,1,""],taget_map_xyz:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.UpMapLink":{direction_aliases:[370,4,1,""],prototype:[370,4,1,""],spawn_aliases:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.WEOneWayMapLink":{directions:[370,4,1,""],prototype:[370,4,1,""],symbol:[370,4,1,""]},"evennia.contrib.grid.xyzgrid.xyzgrid":{XYZGrid:[371,1,1,""],get_xyzgrid:[371,5,1,""]},"evennia.contrib.grid.xyzgrid.xyzgrid.XYZGrid":{"delete":[371,3,1,""],DoesNotExist:[371,2,1,""],MultipleObjectsReturned:[371,2,1,""],add_maps:[371,3,1,""],all_maps:[371,3,1,""],at_script_creation:[371,3,1,""],get_exit:[371,3,1,""],get_map:[371,3,1,""],get_room:[371,3,1,""],grid:[371,3,1,""],log:[371,3,1,""],maps_from_module:[371,3,1,""],path:[371,4,1,""],reload:[371,3,1,""],remove_map:[371,3,1,""],spawn:[371,3,1,""],typename:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom":{XYZExit:[372,1,1,""],XYZExitManager:[372,1,1,""],XYZManager:[372,1,1,""],XYZRoom:[372,1,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZExit":{DoesNotExist:[372,2,1,""],MultipleObjectsReturned:[372,2,1,""],create:[372,3,1,""],objects:[372,4,1,""],path:[372,4,1,""],typename:[372,4,1,""],xyz:[372,3,1,""],xyz_destination:[372,3,1,""],xyzgrid:[372,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZExitManager":{filter_xyz_exit:[372,3,1,""],get_xyz_exit:[372,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZManager":{filter_xyz:[372,3,1,""],get_xyz:[372,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZRoom":{DoesNotExist:[372,2,1,""],MultipleObjectsReturned:[372,2,1,""],create:[372,3,1,""],get_display_name:[372,3,1,""],map_align:[372,4,1,""],map_character_symbol:[372,4,1,""],map_display:[372,4,1,""],map_fill_all:[372,4,1,""],map_mode:[372,4,1,""],map_separator_char:[372,4,1,""],map_target_path_style:[372,4,1,""],map_visual_range:[372,4,1,""],objects:[372,4,1,""],path:[372,4,1,""],return_appearance:[372,3,1,""],typename:[372,4,1,""],xymap:[372,3,1,""],xyz:[372,3,1,""],xyzgrid:[372,3,1,""]},"evennia.contrib.rpg":{buffs:[374,0,0,"-"],character_creator:[378,0,0,"-"],dice:[382,0,0,"-"],health_bar:[385,0,0,"-"],rpsystem:[388,0,0,"-"],traits:[392,0,0,"-"]},"evennia.contrib.rpg.buffs":{buff:[375,0,0,"-"],samplebuffs:[376,0,0,"-"],tests:[377,0,0,"-"]},"evennia.contrib.rpg.buffs.buff":{BaseBuff:[375,1,1,""],BuffHandler:[375,1,1,""],BuffableProperty:[375,1,1,""],CmdBuff:[375,1,1,""],Mod:[375,1,1,""],cleanup_buffs:[375,5,1,""],random:[375,5,1,""],tick_buff:[375,5,1,""]},"evennia.contrib.rpg.buffs.buff.BaseBuff":{__init__:[375,3,1,""],at_apply:[375,3,1,""],at_dispel:[375,3,1,""],at_expire:[375,3,1,""],at_init:[375,3,1,""],at_pause:[375,3,1,""],at_post_check:[375,3,1,""],at_pre_check:[375,3,1,""],at_remove:[375,3,1,""],at_tick:[375,3,1,""],at_trigger:[375,3,1,""],at_unpause:[375,3,1,""],cache:[375,4,1,""],conditional:[375,3,1,""],dispel:[375,3,1,""],duration:[375,4,1,""],flavor:[375,4,1,""],handler:[375,4,1,""],key:[375,4,1,""],maxstacks:[375,4,1,""],mods:[375,4,1,""],name:[375,4,1,""],owner:[375,3,1,""],pause:[375,3,1,""],playtime:[375,4,1,""],refresh:[375,4,1,""],remove:[375,3,1,""],reset:[375,3,1,""],stacking:[375,3,1,""],stacks:[375,4,1,""],start:[375,4,1,""],ticking:[375,3,1,""],ticknum:[375,3,1,""],tickrate:[375,4,1,""],timeleft:[375,3,1,""],triggers:[375,4,1,""],unique:[375,4,1,""],unpause:[375,3,1,""],update_cache:[375,3,1,""],visible:[375,4,1,""]},"evennia.contrib.rpg.buffs.buff.BuffHandler":{__init__:[375,3,1,""],add:[375,3,1,""],all:[375,3,1,""],autopause:[375,4,1,""],buffcache:[375,3,1,""],check:[375,3,1,""],cleanup:[375,3,1,""],clear:[375,3,1,""],dbkey:[375,4,1,""],effects:[375,3,1,""],expired:[375,3,1,""],get:[375,3,1,""],get_all:[375,3,1,""],get_by_cachevalue:[375,3,1,""],get_by_source:[375,3,1,""],get_by_stat:[375,3,1,""],get_by_trigger:[375,3,1,""],get_by_type:[375,3,1,""],has:[375,3,1,""],owner:[375,3,1,""],ownerref:[375,4,1,""],pause:[375,3,1,""],paused:[375,3,1,""],playtime:[375,3,1,""],remove:[375,3,1,""],remove_by_cachevalue:[375,3,1,""],remove_by_source:[375,3,1,""],remove_by_stat:[375,3,1,""],remove_by_trigger:[375,3,1,""],remove_by_type:[375,3,1,""],traits:[375,3,1,""],trigger:[375,3,1,""],unpause:[375,3,1,""],view:[375,3,1,""],view_modifiers:[375,3,1,""],visible:[375,3,1,""]},"evennia.contrib.rpg.buffs.buff.BuffableProperty":{at_get:[375,3,1,""]},"evennia.contrib.rpg.buffs.buff.CmdBuff":{aliases:[375,4,1,""],bufflist:[375,4,1,""],func:[375,3,1,""],help_category:[375,4,1,""],key:[375,4,1,""],lock_storage:[375,4,1,""],parse:[375,3,1,""],search_index_entry:[375,4,1,""]},"evennia.contrib.rpg.buffs.buff.Mod":{__init__:[375,3,1,""],modifier:[375,4,1,""],perstack:[375,4,1,""],stat:[375,4,1,""],value:[375,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs":{Exploit:[376,1,1,""],Exploited:[376,1,1,""],Leeching:[376,1,1,""],Poison:[376,1,1,""],Sated:[376,1,1,""],StatBuff:[376,1,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Exploit":{at_trigger:[376,3,1,""],conditional:[376,3,1,""],duration:[376,4,1,""],flavor:[376,4,1,""],key:[376,4,1,""],maxstacks:[376,4,1,""],name:[376,4,1,""],stack_msg:[376,4,1,""],triggers:[376,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Exploited":{at_post_check:[376,3,1,""],at_remove:[376,3,1,""],duration:[376,4,1,""],flavor:[376,4,1,""],key:[376,4,1,""],mods:[376,4,1,""],name:[376,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Leeching":{at_trigger:[376,3,1,""],duration:[376,4,1,""],flavor:[376,4,1,""],key:[376,4,1,""],name:[376,4,1,""],triggers:[376,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Poison":{at_pause:[376,3,1,""],at_tick:[376,3,1,""],at_unpause:[376,3,1,""],dmg:[376,4,1,""],duration:[376,4,1,""],flavor:[376,4,1,""],key:[376,4,1,""],maxstacks:[376,4,1,""],name:[376,4,1,""],playtime:[376,4,1,""],tickrate:[376,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Sated":{duration:[376,4,1,""],flavor:[376,4,1,""],key:[376,4,1,""],maxstacks:[376,4,1,""],mods:[376,4,1,""],name:[376,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.StatBuff":{__init__:[376,3,1,""],cache:[376,4,1,""],flavor:[376,4,1,""],key:[376,4,1,""],maxstacks:[376,4,1,""],name:[376,4,1,""],refresh:[376,4,1,""],unique:[376,4,1,""]},"evennia.contrib.rpg.buffs.tests":{BuffableObject:[377,1,1,""],TestBuffsAndHandler:[377,1,1,""]},"evennia.contrib.rpg.buffs.tests.BuffableObject":{DoesNotExist:[377,2,1,""],MultipleObjectsReturned:[377,2,1,""],at_init:[377,3,1,""],buffs:[377,4,1,""],path:[377,4,1,""],stat1:[377,4,1,""],typename:[377,4,1,""]},"evennia.contrib.rpg.buffs.tests.TestBuffsAndHandler":{setUp:[377,3,1,""],tearDown:[377,3,1,""],test_addremove:[377,3,1,""],test_buffableproperty:[377,3,1,""],test_cacheattrlink:[377,3,1,""],test_complex:[377,3,1,""],test_context_conditional:[377,3,1,""],test_details:[377,3,1,""],test_getters:[377,3,1,""],test_modgen:[377,3,1,""],test_modify:[377,3,1,""],test_stresstest:[377,3,1,""],test_timing:[377,3,1,""],test_trigger:[377,3,1,""]},"evennia.contrib.rpg.character_creator":{character_creator:[379,0,0,"-"],tests:[381,0,0,"-"]},"evennia.contrib.rpg.character_creator.character_creator":{ContribChargenAccount:[379,1,1,""],ContribCmdCharCreate:[379,1,1,""]},"evennia.contrib.rpg.character_creator.character_creator.ContribChargenAccount":{DoesNotExist:[379,2,1,""],MultipleObjectsReturned:[379,2,1,""],at_look:[379,3,1,""],path:[379,4,1,""],typename:[379,4,1,""]},"evennia.contrib.rpg.character_creator.character_creator.ContribCmdCharCreate":{aliases:[379,4,1,""],func:[379,3,1,""],help_category:[379,4,1,""],key:[379,4,1,""],lock_storage:[379,4,1,""],locks:[379,4,1,""],search_index_entry:[379,4,1,""]},"evennia.contrib.rpg.character_creator.tests":{TestCharacterCreator:[381,1,1,""]},"evennia.contrib.rpg.character_creator.tests.TestCharacterCreator":{setUp:[381,3,1,""],test_char_create:[381,3,1,""],test_ooc_look:[381,3,1,""]},"evennia.contrib.rpg.dice":{dice:[383,0,0,"-"],tests:[384,0,0,"-"]},"evennia.contrib.rpg.dice.dice":{CmdDice:[383,1,1,""],DiceCmdSet:[383,1,1,""],roll:[383,5,1,""],roll_dice:[383,5,1,""]},"evennia.contrib.rpg.dice.dice.CmdDice":{aliases:[383,4,1,""],func:[383,3,1,""],help_category:[383,4,1,""],key:[383,4,1,""],lock_storage:[383,4,1,""],locks:[383,4,1,""],search_index_entry:[383,4,1,""]},"evennia.contrib.rpg.dice.dice.DiceCmdSet":{at_cmdset_creation:[383,3,1,""],path:[383,4,1,""]},"evennia.contrib.rpg.dice.tests":{TestDice:[384,1,1,""]},"evennia.contrib.rpg.dice.tests.TestDice":{test_cmddice:[384,3,1,""],test_roll_dice:[384,3,1,""]},"evennia.contrib.rpg.health_bar":{health_bar:[386,0,0,"-"],tests:[387,0,0,"-"]},"evennia.contrib.rpg.health_bar.health_bar":{display_meter:[386,5,1,""]},"evennia.contrib.rpg.health_bar.tests":{TestHealthBar:[387,1,1,""]},"evennia.contrib.rpg.health_bar.tests.TestHealthBar":{test_healthbar:[387,3,1,""]},"evennia.contrib.rpg.rpsystem":{rplanguage:[389,0,0,"-"],rpsystem:[390,0,0,"-"],tests:[391,0,0,"-"]},"evennia.contrib.rpg.rpsystem.rplanguage":{LanguageError:[389,2,1,""],LanguageExistsError:[389,2,1,""],LanguageHandler:[389,1,1,""],add_language:[389,5,1,""],available_languages:[389,5,1,""],obfuscate_language:[389,5,1,""],obfuscate_whisper:[389,5,1,""]},"evennia.contrib.rpg.rpsystem.rplanguage.LanguageHandler":{DoesNotExist:[389,2,1,""],MultipleObjectsReturned:[389,2,1,""],add:[389,3,1,""],at_script_creation:[389,3,1,""],path:[389,4,1,""],translate:[389,3,1,""],typename:[389,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem":{CmdEmote:[390,1,1,""],CmdMask:[390,1,1,""],CmdPose:[390,1,1,""],CmdRecog:[390,1,1,""],CmdSay:[390,1,1,""],CmdSdesc:[390,1,1,""],ContribRPCharacter:[390,1,1,""],ContribRPObject:[390,1,1,""],ContribRPRoom:[390,1,1,""],EmoteError:[390,2,1,""],LanguageError:[390,2,1,""],RPCommand:[390,1,1,""],RPSystemCmdSet:[390,1,1,""],RecogError:[390,2,1,""],RecogHandler:[390,1,1,""],SdescError:[390,2,1,""],SdescHandler:[390,1,1,""],parse_language:[390,5,1,""],parse_sdescs_and_recogs:[390,5,1,""],send_emote:[390,5,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdEmote":{aliases:[390,4,1,""],arg_regex:[390,4,1,""],func:[390,3,1,""],help_category:[390,4,1,""],key:[390,4,1,""],lock_storage:[390,4,1,""],locks:[390,4,1,""],search_index_entry:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdMask":{aliases:[390,4,1,""],func:[390,3,1,""],help_category:[390,4,1,""],key:[390,4,1,""],lock_storage:[390,4,1,""],search_index_entry:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdPose":{aliases:[390,4,1,""],func:[390,3,1,""],help_category:[390,4,1,""],key:[390,4,1,""],lock_storage:[390,4,1,""],parse:[390,3,1,""],search_index_entry:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdRecog":{aliases:[390,4,1,""],func:[390,3,1,""],help_category:[390,4,1,""],key:[390,4,1,""],lock_storage:[390,4,1,""],parse:[390,3,1,""],search_index_entry:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdSay":{aliases:[390,4,1,""],arg_regex:[390,4,1,""],func:[390,3,1,""],help_category:[390,4,1,""],key:[390,4,1,""],lock_storage:[390,4,1,""],locks:[390,4,1,""],search_index_entry:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdSdesc":{aliases:[390,4,1,""],func:[390,3,1,""],help_category:[390,4,1,""],key:[390,4,1,""],lock_storage:[390,4,1,""],locks:[390,4,1,""],search_index_entry:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPCharacter":{DoesNotExist:[390,2,1,""],MultipleObjectsReturned:[390,2,1,""],at_object_creation:[390,3,1,""],at_pre_say:[390,3,1,""],get_display_name:[390,3,1,""],get_sdesc:[390,3,1,""],path:[390,4,1,""],process_language:[390,3,1,""],process_recog:[390,3,1,""],process_sdesc:[390,3,1,""],recog:[390,4,1,""],typename:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPObject":{DoesNotExist:[390,2,1,""],MultipleObjectsReturned:[390,2,1,""],at_object_creation:[390,3,1,""],get_display_characters:[390,3,1,""],get_display_name:[390,3,1,""],get_display_things:[390,3,1,""],get_posed_sdesc:[390,3,1,""],path:[390,4,1,""],sdesc:[390,4,1,""],search:[390,3,1,""],typename:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPRoom":{DoesNotExist:[390,2,1,""],MultipleObjectsReturned:[390,2,1,""],path:[390,4,1,""],typename:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RPCommand":{aliases:[390,4,1,""],help_category:[390,4,1,""],key:[390,4,1,""],lock_storage:[390,4,1,""],parse:[390,3,1,""],search_index_entry:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[390,3,1,""],path:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RecogHandler":{__init__:[390,3,1,""],add:[390,3,1,""],all:[390,3,1,""],get:[390,3,1,""],remove:[390,3,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.SdescHandler":{__init__:[390,3,1,""],add:[390,3,1,""],get:[390,3,1,""]},"evennia.contrib.rpg.rpsystem.tests":{TestLanguage:[391,1,1,""],TestRPSystem:[391,1,1,""],TestRPSystemCommands:[391,1,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestLanguage":{setUp:[391,3,1,""],tearDown:[391,3,1,""],test_available_languages:[391,3,1,""],test_faulty_language:[391,3,1,""],test_obfuscate_language:[391,3,1,""],test_obfuscate_whisper:[391,3,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestRPSystem":{maxDiff:[391,4,1,""],setUp:[391,3,1,""],test_get_sdesc:[391,3,1,""],test_parse_language:[391,3,1,""],test_parse_sdescs_and_recogs:[391,3,1,""],test_posed_contents:[391,3,1,""],test_possessive_selfref:[391,3,1,""],test_recog_handler:[391,3,1,""],test_rpsearch:[391,3,1,""],test_sdesc_handler:[391,3,1,""],test_send_case_sensitive_emote:[391,3,1,""],test_send_emote:[391,3,1,""],test_send_emote_fallback:[391,3,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestRPSystemCommands":{setUp:[391,3,1,""],test_commands:[391,3,1,""]},"evennia.contrib.rpg.traits":{tests:[393,0,0,"-"],traits:[394,0,0,"-"]},"evennia.contrib.rpg.traits.tests":{DummyCharacter:[393,1,1,""],TestNumericTraitOperators:[393,1,1,""],TestTrait:[393,1,1,""],TestTraitCounter:[393,1,1,""],TestTraitCounterTimed:[393,1,1,""],TestTraitFields:[393,1,1,""],TestTraitGauge:[393,1,1,""],TestTraitGaugeTimed:[393,1,1,""],TestTraitStatic:[393,1,1,""],TraitContribTestingChar:[393,1,1,""],TraitHandlerTest:[393,1,1,""],TraitPropertyTestCase:[393,1,1,""]},"evennia.contrib.rpg.traits.tests.DummyCharacter":{health:[393,4,1,""],hunting:[393,4,1,""],strength:[393,4,1,""]},"evennia.contrib.rpg.traits.tests.TestNumericTraitOperators":{setUp:[393,3,1,""],tearDown:[393,3,1,""],test_add_traits:[393,3,1,""],test_comparisons_numeric:[393,3,1,""],test_comparisons_traits:[393,3,1,""],test_floordiv:[393,3,1,""],test_mul_traits:[393,3,1,""],test_pos_shortcut:[393,3,1,""],test_sub_traits:[393,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTrait":{setUp:[393,3,1,""],test_init:[393,3,1,""],test_repr:[393,3,1,""],test_trait_getset:[393,3,1,""],test_validate_input__fail:[393,3,1,""],test_validate_input__valid:[393,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitCounter":{setUp:[393,3,1,""],test_boundaries__bigmod:[393,3,1,""],test_boundaries__change_boundaries:[393,3,1,""],test_boundaries__disable:[393,3,1,""],test_boundaries__inverse:[393,3,1,""],test_boundaries__minmax:[393,3,1,""],test_current:[393,3,1,""],test_delete:[393,3,1,""],test_descs:[393,3,1,""],test_init:[393,3,1,""],test_percentage:[393,3,1,""],test_value:[393,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitCounterTimed":{setUp:[393,3,1,""],test_timer_rate:[393,3,1,""],test_timer_ratetarget:[393,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitFields":{test_traitfields:[393,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitGauge":{setUp:[393,3,1,""],test_boundaries__bigmod:[393,3,1,""],test_boundaries__change_boundaries:[393,3,1,""],test_boundaries__disable:[393,3,1,""],test_boundaries__inverse:[393,3,1,""],test_boundaries__minmax:[393,3,1,""],test_current:[393,3,1,""],test_delete:[393,3,1,""],test_descs:[393,3,1,""],test_init:[393,3,1,""],test_percentage:[393,3,1,""],test_value:[393,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitGaugeTimed":{setUp:[393,3,1,""],test_timer_rate:[393,3,1,""],test_timer_ratetarget:[393,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitStatic":{setUp:[393,3,1,""],test_delete:[393,3,1,""],test_init:[393,3,1,""],test_value:[393,3,1,""]},"evennia.contrib.rpg.traits.tests.TraitContribTestingChar":{DoesNotExist:[393,2,1,""],HP:[393,4,1,""],MultipleObjectsReturned:[393,2,1,""],path:[393,4,1,""],typename:[393,4,1,""]},"evennia.contrib.rpg.traits.tests.TraitHandlerTest":{setUp:[393,3,1,""],test_add_trait:[393,3,1,""],test_all:[393,3,1,""],test_cache:[393,3,1,""],test_clear:[393,3,1,""],test_getting:[393,3,1,""],test_remove:[393,3,1,""],test_setting:[393,3,1,""],test_trait_db_connection:[393,3,1,""]},"evennia.contrib.rpg.traits.tests.TraitPropertyTestCase":{character_typeclass:[393,4,1,""],test_round1:[393,3,1,""],test_round2:[393,3,1,""]},"evennia.contrib.rpg.traits.traits":{CounterTrait:[394,1,1,""],GaugeTrait:[394,1,1,""],MandatoryTraitKey:[394,1,1,""],StaticTrait:[394,1,1,""],Trait:[394,1,1,""],TraitException:[394,2,1,""],TraitHandler:[394,1,1,""],TraitProperty:[394,1,1,""]},"evennia.contrib.rpg.traits.traits.CounterTrait":{base:[394,3,1,""],current:[394,3,1,""],default_keys:[394,4,1,""],desc:[394,3,1,""],max:[394,3,1,""],min:[394,3,1,""],mod:[394,3,1,""],mult:[394,3,1,""],percent:[394,3,1,""],ratetarget:[394,3,1,""],reset:[394,3,1,""],trait_type:[394,4,1,""],validate_input:[394,3,1,""],value:[394,3,1,""]},"evennia.contrib.rpg.traits.traits.GaugeTrait":{base:[394,3,1,""],current:[394,3,1,""],default_keys:[394,4,1,""],max:[394,3,1,""],min:[394,3,1,""],mod:[394,3,1,""],mult:[394,3,1,""],percent:[394,3,1,""],reset:[394,3,1,""],trait_type:[394,4,1,""],value:[394,3,1,""]},"evennia.contrib.rpg.traits.traits.StaticTrait":{base:[394,3,1,""],default_keys:[394,4,1,""],mod:[394,3,1,""],mult:[394,3,1,""],trait_type:[394,4,1,""],value:[394,3,1,""]},"evennia.contrib.rpg.traits.traits.Trait":{__init__:[394,3,1,""],allow_extra_properties:[394,4,1,""],default_keys:[394,4,1,""],key:[394,3,1,""],name:[394,3,1,""],trait_type:[394,4,1,""],validate_input:[394,3,1,""],value:[394,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitException":{__init__:[394,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitHandler":{__init__:[394,3,1,""],add:[394,3,1,""],all:[394,3,1,""],clear:[394,3,1,""],get:[394,3,1,""],remove:[394,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitProperty":{__init__:[394,3,1,""]},"evennia.contrib.tutorials":{batchprocessor:[396,0,0,"-"],bodyfunctions:[398,0,0,"-"],evadventure:[401,0,0,"-"],mirror:[430,0,0,"-"],red_button:[432,0,0,"-"],talking_npc:[434,0,0,"-"],tutorial_world:[437,0,0,"-"]},"evennia.contrib.tutorials.bodyfunctions":{bodyfunctions:[399,0,0,"-"],tests:[400,0,0,"-"]},"evennia.contrib.tutorials.bodyfunctions.bodyfunctions":{BodyFunctions:[399,1,1,""]},"evennia.contrib.tutorials.bodyfunctions.bodyfunctions.BodyFunctions":{DoesNotExist:[399,2,1,""],MultipleObjectsReturned:[399,2,1,""],at_repeat:[399,3,1,""],at_script_creation:[399,3,1,""],path:[399,4,1,""],send_random_message:[399,3,1,""],typename:[399,4,1,""]},"evennia.contrib.tutorials.bodyfunctions.tests":{TestBodyFunctions:[400,1,1,""]},"evennia.contrib.tutorials.bodyfunctions.tests.TestBodyFunctions":{script_typeclass:[400,4,1,""],setUp:[400,3,1,""],tearDown:[400,3,1,""],test_at_repeat:[400,3,1,""],test_send_random_message:[400,3,1,""]},"evennia.contrib.tutorials.evadventure":{build_world:[403,0,0,"-"],characters:[404,0,0,"-"],chargen:[405,0,0,"-"],combat_turnbased:[406,0,0,"-"],commands:[407,0,0,"-"],dungeon:[408,0,0,"-"],enums:[409,0,0,"-"],equipment:[410,0,0,"-"],npcs:[411,0,0,"-"],objects:[412,0,0,"-"],quests:[413,0,0,"-"],random_tables:[414,0,0,"-"],rooms:[415,0,0,"-"],rules:[416,0,0,"-"],shops:[417,0,0,"-"],tests:[418,0,0,"-"],utils:[429,0,0,"-"]},"evennia.contrib.tutorials.evadventure.characters":{EvAdventureCharacter:[404,1,1,""],LivingMixin:[404,1,1,""],get_character_sheet:[404,5,1,""]},"evennia.contrib.tutorials.evadventure.characters.EvAdventureCharacter":{DoesNotExist:[404,2,1,""],MultipleObjectsReturned:[404,2,1,""],add_xp:[404,3,1,""],armor:[404,3,1,""],at_death:[404,3,1,""],at_defeat:[404,3,1,""],at_looted:[404,3,1,""],at_object_leave:[404,3,1,""],at_object_receive:[404,3,1,""],at_pre_loot:[404,3,1,""],at_pre_object_leave:[404,3,1,""],at_pre_object_receive:[404,3,1,""],charisma:[404,4,1,""],coins:[404,4,1,""],constitution:[404,4,1,""],dexterity:[404,4,1,""],equipment:[404,4,1,""],hp:[404,4,1,""],hp_max:[404,4,1,""],intelligence:[404,4,1,""],is_pc:[404,4,1,""],level:[404,4,1,""],level_up:[404,3,1,""],path:[404,4,1,""],quests:[404,4,1,""],strength:[404,4,1,""],typename:[404,4,1,""],weapon:[404,3,1,""],wisdom:[404,4,1,""],xp:[404,4,1,""],xp_per_level:[404,4,1,""]},"evennia.contrib.tutorials.evadventure.characters.LivingMixin":{at_damage:[404,3,1,""],at_death:[404,3,1,""],at_defeat:[404,3,1,""],at_do_loot:[404,3,1,""],at_looted:[404,3,1,""],at_pay:[404,3,1,""],heal:[404,3,1,""],hurt_level:[404,3,1,""],is_pc:[404,4,1,""],post_loot:[404,3,1,""],pre_loot:[404,3,1,""]},"evennia.contrib.tutorials.evadventure.chargen":{TemporaryCharacterSheet:[405,1,1,""],node_apply_character:[405,5,1,""],node_change_name:[405,5,1,""],node_chargen:[405,5,1,""],node_swap_abilities:[405,5,1,""],start_chargen:[405,5,1,""]},"evennia.contrib.tutorials.evadventure.chargen.TemporaryCharacterSheet":{__init__:[405,3,1,""],apply:[405,3,1,""],show_sheet:[405,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased":{CombatAction:[406,1,1,""],CombatActionAttack:[406,1,1,""],CombatActionBlock:[406,1,1,""],CombatActionDoNothing:[406,1,1,""],CombatActionFlee:[406,1,1,""],CombatActionStunt:[406,1,1,""],CombatActionSwapWieldedWeaponOrSpell:[406,1,1,""],CombatActionUseItem:[406,1,1,""],CombatFailure:[406,2,1,""],EvAdventureCombatHandler:[406,1,1,""],join_combat:[406,5,1,""],node_confirm_register_action:[406,5,1,""],node_select_action:[406,5,1,""],node_select_enemy_target:[406,5,1,""],node_select_friendly_target:[406,5,1,""],node_select_use_item_from_inventory:[406,5,1,""],node_select_wield_from_inventory:[406,5,1,""],node_wait_start:[406,5,1,""],node_wait_turn:[406,5,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatAction":{__init__:[406,3,1,""],aliases:[406,4,1,""],can_use:[406,3,1,""],desc:[406,4,1,""],get_help:[406,3,1,""],help_text:[406,4,1,""],key:[406,4,1,""],max_uses:[406,4,1,""],msg:[406,3,1,""],next_menu_node:[406,4,1,""],post_use:[406,3,1,""],pre_use:[406,3,1,""],priority:[406,4,1,""],use:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionAttack":{aliases:[406,4,1,""],desc:[406,4,1,""],help_text:[406,4,1,""],key:[406,4,1,""],next_menu_node:[406,4,1,""],priority:[406,4,1,""],use:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionBlock":{aliases:[406,4,1,""],attack_type:[406,4,1,""],defense_type:[406,4,1,""],desc:[406,4,1,""],help_text:[406,4,1,""],key:[406,4,1,""],next_menu_node:[406,4,1,""],priority:[406,4,1,""],use:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionDoNothing":{aliases:[406,4,1,""],desc:[406,4,1,""],help_text:[406,4,1,""],key:[406,4,1,""],next_menu_node:[406,4,1,""],post_action_text:[406,4,1,""],use:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionFlee":{aliases:[406,4,1,""],desc:[406,4,1,""],help_text:[406,4,1,""],key:[406,4,1,""],next_menu_node:[406,4,1,""],priority:[406,4,1,""],use:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionStunt":{aliases:[406,4,1,""],attack_type:[406,4,1,""],defense_type:[406,4,1,""],desc:[406,4,1,""],give_advantage:[406,4,1,""],help_text:[406,4,1,""],key:[406,4,1,""],max_uses:[406,4,1,""],next_menu_node:[406,4,1,""],priority:[406,4,1,""],use:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionSwapWieldedWeaponOrSpell":{aliases:[406,4,1,""],desc:[406,4,1,""],help_text:[406,4,1,""],key:[406,4,1,""],next_menu_node:[406,4,1,""],use:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionUseItem":{aliases:[406,4,1,""],desc:[406,4,1,""],get_help:[406,3,1,""],help_text:[406,4,1,""],key:[406,4,1,""],next_menu_node:[406,4,1,""],post_use:[406,3,1,""],use:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.EvAdventureCombatHandler":{DoesNotExist:[406,2,1,""],MultipleObjectsReturned:[406,2,1,""],action_queue:[406,4,1,""],add_combatant:[406,3,1,""],advantage_matrix:[406,4,1,""],at_repeat:[406,3,1,""],at_script_creation:[406,3,1,""],combatant_actions:[406,4,1,""],combatants:[406,4,1,""],default_action_classes:[406,4,1,""],defeated_combatants:[406,4,1,""],disadvantage_matrix:[406,4,1,""],flee:[406,3,1,""],fleeing_combatants:[406,4,1,""],gain_advantage:[406,3,1,""],gain_disadvantage:[406,3,1,""],get_available_actions:[406,3,1,""],get_combat_summary:[406,3,1,""],get_enemy_targets:[406,3,1,""],get_friendly_targets:[406,3,1,""],msg:[406,3,1,""],path:[406,4,1,""],register_action:[406,3,1,""],remove_combatant:[406,3,1,""],start_combat:[406,3,1,""],stop_combat:[406,3,1,""],stunt_duration:[406,4,1,""],turn:[406,4,1,""],turn_stats:[406,4,1,""],typename:[406,4,1,""],unflee:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.commands":{CmdAttackTurnBased:[407,1,1,""],CmdGive:[407,1,1,""],CmdInventory:[407,1,1,""],CmdRemove:[407,1,1,""],CmdTalk:[407,1,1,""],CmdWieldOrWear:[407,1,1,""],EvAdventureCmdSet:[407,1,1,""],EvAdventureCommand:[407,1,1,""],node_end:[407,5,1,""],node_give:[407,5,1,""],node_receive:[407,5,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdAttackTurnBased":{aliases:[407,4,1,""],func:[407,3,1,""],help_category:[407,4,1,""],key:[407,4,1,""],lock_storage:[407,4,1,""],parse:[407,3,1,""],search_index_entry:[407,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdGive":{aliases:[407,4,1,""],func:[407,3,1,""],help_category:[407,4,1,""],key:[407,4,1,""],lock_storage:[407,4,1,""],parse:[407,3,1,""],search_index_entry:[407,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdInventory":{aliases:[407,4,1,""],func:[407,3,1,""],help_category:[407,4,1,""],key:[407,4,1,""],lock_storage:[407,4,1,""],search_index_entry:[407,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdRemove":{aliases:[407,4,1,""],func:[407,3,1,""],help_category:[407,4,1,""],key:[407,4,1,""],lock_storage:[407,4,1,""],search_index_entry:[407,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdTalk":{aliases:[407,4,1,""],func:[407,3,1,""],help_category:[407,4,1,""],key:[407,4,1,""],lock_storage:[407,4,1,""],search_index_entry:[407,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdWieldOrWear":{aliases:[407,4,1,""],func:[407,3,1,""],help_category:[407,4,1,""],key:[407,4,1,""],lock_storage:[407,4,1,""],out_txts:[407,4,1,""],search_index_entry:[407,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.EvAdventureCmdSet":{at_cmdset_creation:[407,3,1,""],key:[407,4,1,""],path:[407,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.EvAdventureCommand":{aliases:[407,4,1,""],help_category:[407,4,1,""],key:[407,4,1,""],lock_storage:[407,4,1,""],parse:[407,3,1,""],search_index_entry:[407,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon":{EvAdventureDungeonBranchDeleter:[408,1,1,""],EvAdventureDungeonExit:[408,1,1,""],EvAdventureDungeonOrchestrator:[408,1,1,""],EvAdventureDungeonRoom:[408,1,1,""],EvAdventureDungeonStartRoom:[408,1,1,""],EvAdventureDungeonStartRoomExit:[408,1,1,""],EvAdventureStartRoomResetter:[408,1,1,""],random:[408,5,1,""],room_generator:[408,5,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonBranchDeleter":{DoesNotExist:[408,2,1,""],MultipleObjectsReturned:[408,2,1,""],at_repeat:[408,3,1,""],at_script_creation:[408,3,1,""],branch_max_life:[408,4,1,""],path:[408,4,1,""],typename:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonExit":{DoesNotExist:[408,2,1,""],MultipleObjectsReturned:[408,2,1,""],at_failed_traverse:[408,3,1,""],at_object_creation:[408,3,1,""],at_traverse:[408,3,1,""],path:[408,4,1,""],typename:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonOrchestrator":{"delete":[408,3,1,""],DoesNotExist:[408,2,1,""],MultipleObjectsReturned:[408,2,1,""],create_out_exit:[408,3,1,""],highest_depth:[408,4,1,""],last_updated:[408,4,1,""],max_new_exits_per_room:[408,4,1,""],max_unexplored_exits:[408,4,1,""],new_room:[408,3,1,""],path:[408,4,1,""],register_exit_traversed:[408,3,1,""],room_generator:[408,4,1,""],rooms:[408,4,1,""],start_room:[408,4,1,""],typename:[408,4,1,""],unvisited_exits:[408,4,1,""],xy_grid:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonRoom":{DoesNotExist:[408,2,1,""],MultipleObjectsReturned:[408,2,1,""],allow_combat:[408,4,1,""],allow_death:[408,4,1,""],at_object_creation:[408,3,1,""],back_exit:[408,4,1,""],clear_room:[408,3,1,""],dungeon_orchestrator:[408,4,1,""],get_display_footer:[408,3,1,""],is_room_clear:[408,3,1,""],path:[408,4,1,""],typename:[408,4,1,""],xy_coords:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonStartRoom":{DoesNotExist:[408,2,1,""],MultipleObjectsReturned:[408,2,1,""],at_object_creation:[408,3,1,""],at_object_receive:[408,3,1,""],branch_check_time:[408,4,1,""],branch_max_life:[408,4,1,""],get_display_footer:[408,3,1,""],path:[408,4,1,""],recycle_time:[408,4,1,""],room_generator:[408,4,1,""],typename:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonStartRoomExit":{DoesNotExist:[408,2,1,""],MultipleObjectsReturned:[408,2,1,""],at_traverse:[408,3,1,""],path:[408,4,1,""],reset_exit:[408,3,1,""],typename:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureStartRoomResetter":{DoesNotExist:[408,2,1,""],MultipleObjectsReturned:[408,2,1,""],at_repeat:[408,3,1,""],at_script_creation:[408,3,1,""],path:[408,4,1,""],typename:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.enums":{Ability:[409,1,1,""],ObjType:[409,1,1,""],WieldLocation:[409,1,1,""]},"evennia.contrib.tutorials.evadventure.enums.Ability":{ALLEGIANCE_FRIENDLY:[409,4,1,""],ALLEGIANCE_HOSTILE:[409,4,1,""],ALLEGIANCE_NEUTRAL:[409,4,1,""],ARMOR:[409,4,1,""],CHA:[409,4,1,""],CON:[409,4,1,""],CRITICAL_FAILURE:[409,4,1,""],CRITICAL_SUCCESS:[409,4,1,""],DEX:[409,4,1,""],INT:[409,4,1,""],STR:[409,4,1,""],WIS:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.enums.ObjType":{ARMOR:[409,4,1,""],CONSUMABLE:[409,4,1,""],GEAR:[409,4,1,""],HELMET:[409,4,1,""],MAGIC:[409,4,1,""],QUEST:[409,4,1,""],SHIELD:[409,4,1,""],TREASURE:[409,4,1,""],WEAPON:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.enums.WieldLocation":{BACKPACK:[409,4,1,""],BODY:[409,4,1,""],HEAD:[409,4,1,""],SHIELD_HAND:[409,4,1,""],TWO_HANDS:[409,4,1,""],WEAPON_HAND:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.equipment":{EquipmentError:[410,2,1,""],EquipmentHandler:[410,1,1,""]},"evennia.contrib.tutorials.evadventure.equipment.EquipmentHandler":{__init__:[410,3,1,""],add:[410,3,1,""],all:[410,3,1,""],armor:[410,3,1,""],count_slots:[410,3,1,""],display_backpack:[410,3,1,""],display_loadout:[410,3,1,""],display_slot_usage:[410,3,1,""],get_current_slot:[410,3,1,""],get_usable_objects_from_backpack:[410,3,1,""],get_wearable_objects_from_backpack:[410,3,1,""],get_wieldable_objects_from_backpack:[410,3,1,""],max_slots:[410,3,1,""],move:[410,3,1,""],remove:[410,3,1,""],save_attribute:[410,4,1,""],validate_slot_usage:[410,3,1,""],weapon:[410,3,1,""]},"evennia.contrib.tutorials.evadventure.npcs":{EvAdventureMob:[411,1,1,""],EvAdventureNPC:[411,1,1,""],EvAdventureQuestGiver:[411,1,1,""],EvAdventureShopKeeper:[411,1,1,""],EvAdventureTalkativeNPC:[411,1,1,""],node_start:[411,5,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureMob":{DoesNotExist:[411,2,1,""],MultipleObjectsReturned:[411,2,1,""],ai_combat_next_action:[411,3,1,""],at_defeat:[411,3,1,""],at_do_loot:[411,3,1,""],loot_chance:[411,4,1,""],path:[411,4,1,""],typename:[411,4,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureNPC":{DoesNotExist:[411,2,1,""],MultipleObjectsReturned:[411,2,1,""],ai_combat_next_action:[411,3,1,""],allegiance:[411,4,1,""],armor:[411,4,1,""],at_object_creation:[411,3,1,""],charisma:[411,3,1,""],coins:[411,4,1,""],constitution:[411,3,1,""],dexterity:[411,3,1,""],hit_dice:[411,4,1,""],hp:[411,4,1,""],hp_max:[411,3,1,""],hp_multiplier:[411,4,1,""],intelligence:[411,3,1,""],is_idle:[411,4,1,""],is_pc:[411,4,1,""],morale:[411,4,1,""],path:[411,4,1,""],strength:[411,3,1,""],typename:[411,4,1,""],weapon:[411,4,1,""],wisdom:[411,3,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureQuestGiver":{DoesNotExist:[411,2,1,""],MultipleObjectsReturned:[411,2,1,""],path:[411,4,1,""],typename:[411,4,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureShopKeeper":{DoesNotExist:[411,2,1,""],MultipleObjectsReturned:[411,2,1,""],at_damage:[411,3,1,""],common_ware_prototypes:[411,4,1,""],miser_factor:[411,4,1,""],path:[411,4,1,""],typename:[411,4,1,""],upsell_factor:[411,4,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureTalkativeNPC":{DoesNotExist:[411,2,1,""],MultipleObjectsReturned:[411,2,1,""],at_damage:[411,3,1,""],at_talk:[411,3,1,""],create:[411,3,1,""],hi_text:[411,4,1,""],menu_kwargs:[411,4,1,""],menudata:[411,4,1,""],path:[411,4,1,""],typename:[411,4,1,""]},"evennia.contrib.tutorials.evadventure.objects":{EvAdventureArmor:[412,1,1,""],EvAdventureConsumable:[412,1,1,""],EvAdventureHelmet:[412,1,1,""],EvAdventureObject:[412,1,1,""],EvAdventureObjectFiller:[412,1,1,""],EvAdventureQuestObject:[412,1,1,""],EvAdventureRunestone:[412,1,1,""],EvAdventureShield:[412,1,1,""],EvAdventureTreasure:[412,1,1,""],EvAdventureWeapon:[412,1,1,""],WeaponEmptyHand:[412,1,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureArmor":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],armor:[412,4,1,""],inventory_use_slot:[412,4,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],quality:[412,4,1,""],typename:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureConsumable":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],at_post_use:[412,3,1,""],at_use:[412,3,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],size:[412,4,1,""],typename:[412,4,1,""],uses:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureHelmet":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],inventory_use_slot:[412,4,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],typename:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureObject":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],at_object_creation:[412,3,1,""],get_display_desc:[412,3,1,""],get_display_header:[412,3,1,""],get_help:[412,3,1,""],has_obj_type:[412,3,1,""],inventory_use_slot:[412,4,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],size:[412,4,1,""],typename:[412,4,1,""],value:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureObjectFiller":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],quality:[412,4,1,""],typename:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureQuestObject":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],typename:[412,4,1,""],value:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureRunestone":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],at_post_use:[412,3,1,""],attack_type:[412,4,1,""],damage_roll:[412,4,1,""],defense_type:[412,4,1,""],inventory_use_slot:[412,4,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],quality:[412,4,1,""],refresh:[412,3,1,""],typename:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureShield":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],inventory_use_slot:[412,4,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],typename:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureTreasure":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],typename:[412,4,1,""],value:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureWeapon":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],attack_type:[412,4,1,""],damage_roll:[412,4,1,""],defense_type:[412,4,1,""],inventory_use_slot:[412,4,1,""],obj_type:[412,4,1,""],path:[412,4,1,""],quality:[412,4,1,""],typename:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.WeaponEmptyHand":{attack_type:[412,4,1,""],damage_roll:[412,4,1,""],defense_type:[412,4,1,""],inventory_use_slot:[412,4,1,""],key:[412,4,1,""],obj_type:[412,4,1,""],quality:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.quests":{EvAdventureQuest:[413,1,1,""],EvAdventureQuestHandler:[413,1,1,""]},"evennia.contrib.tutorials.evadventure.quests.EvAdventureQuest":{__init__:[413,3,1,""],abandon:[413,3,1,""],abandoned_text:[413,4,1,""],cleanup:[413,3,1,""],complete:[413,3,1,""],completed_text:[413,4,1,""],current_step:[413,3,1,""],desc:[413,4,1,""],help:[413,3,1,""],help_end:[413,4,1,""],help_start:[413,4,1,""],key:[413,4,1,""],progress:[413,3,1,""],questhandler:[413,3,1,""],start_step:[413,4,1,""],step_start:[413,3,1,""]},"evennia.contrib.tutorials.evadventure.quests.EvAdventureQuestHandler":{__init__:[413,3,1,""],add:[413,3,1,""],get:[413,3,1,""],get_help:[413,3,1,""],has:[413,3,1,""],progress:[413,3,1,""],quest_storage_attribute_category:[413,4,1,""],quest_storage_attribute_key:[413,4,1,""],remove:[413,3,1,""]},"evennia.contrib.tutorials.evadventure.rooms":{EvAdventurePvPRoom:[415,1,1,""],EvAdventureRoom:[415,1,1,""]},"evennia.contrib.tutorials.evadventure.rooms.EvAdventurePvPRoom":{DoesNotExist:[415,2,1,""],MultipleObjectsReturned:[415,2,1,""],allow_combat:[415,4,1,""],allow_pvp:[415,4,1,""],get_display_footer:[415,3,1,""],path:[415,4,1,""],typename:[415,4,1,""]},"evennia.contrib.tutorials.evadventure.rooms.EvAdventureRoom":{DoesNotExist:[415,2,1,""],MultipleObjectsReturned:[415,2,1,""],allow_combat:[415,4,1,""],allow_death:[415,4,1,""],allow_pvp:[415,4,1,""],format_appearance:[415,3,1,""],get_display_header:[415,3,1,""],path:[415,4,1,""],typename:[415,4,1,""]},"evennia.contrib.tutorials.evadventure.rules":{EvAdventureRollEngine:[416,1,1,""]},"evennia.contrib.tutorials.evadventure.rules.EvAdventureRollEngine":{death_map:[416,4,1,""],heal_from_rest:[416,3,1,""],morale_check:[416,3,1,""],opposed_saving_throw:[416,3,1,""],roll:[416,3,1,""],roll_death:[416,3,1,""],roll_random_table:[416,3,1,""],roll_with_advantage_or_disadvantage:[416,3,1,""],saving_throw:[416,3,1,""]},"evennia.contrib.tutorials.evadventure.shops":{BuyItem:[417,1,1,""],node_confirm_buy:[417,5,1,""],node_confirm_sell:[417,5,1,""]},"evennia.contrib.tutorials.evadventure.shops.BuyItem":{__init__:[417,3,1,""],attack_type:[417,4,1,""],create_from_obj:[417,3,1,""],create_from_prototype:[417,3,1,""],damage_roll:[417,4,1,""],defense_type:[417,4,1,""],desc:[417,4,1,""],get_detail:[417,3,1,""],key:[417,4,1,""],obj:[417,4,1,""],obj_type:[417,4,1,""],prototype:[417,4,1,""],quality:[417,4,1,""],size:[417,4,1,""],to_obj:[417,3,1,""],use_slot:[417,4,1,""],uses:[417,4,1,""],value:[417,4,1,""]},"evennia.contrib.tutorials.evadventure.tests":{mixins:[419,0,0,"-"],test_characters:[420,0,0,"-"],test_chargen:[421,0,0,"-"],test_combat:[422,0,0,"-"],test_commands:[423,0,0,"-"],test_dungeon:[424,0,0,"-"],test_equipment:[425,0,0,"-"],test_quests:[426,0,0,"-"],test_rules:[427,0,0,"-"],test_utils:[428,0,0,"-"]},"evennia.contrib.tutorials.evadventure.tests.mixins":{EvAdventureMixin:[419,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.mixins.EvAdventureMixin":{setUp:[419,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_characters":{TestCharacters:[420,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_characters.TestCharacters":{setUp:[420,3,1,""],test_abilities:[420,3,1,""],test_at_damage:[420,3,1,""],test_at_pay:[420,3,1,""],test_heal:[420,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_chargen":{EvAdventureCharacterGenerationTest:[421,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_chargen.EvAdventureCharacterGenerationTest":{setUp:[421,3,1,""],test_apply:[421,3,1,""],test_base_chargen:[421,3,1,""],test_build_desc:[421,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_combat":{EvAdventureTurnbasedCombatActionTest:[422,1,1,""],EvAdventureTurnbasedCombatHandlerTest:[422,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_combat.EvAdventureTurnbasedCombatActionTest":{setUp:[422,3,1,""],test_attack__miss:[422,3,1,""],test_attack__success__kill:[422,3,1,""],test_attack__success__still_alive:[422,3,1,""],test_do_nothing:[422,3,1,""],test_flee__blocked:[422,3,1,""],test_flee__success:[422,3,1,""],test_stunt_advantage__success:[422,3,1,""],test_stunt_disadvantage__success:[422,3,1,""],test_stunt_fail:[422,3,1,""],test_swap_wielded_weapon_or_spell:[422,3,1,""],test_use_item:[422,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_combat.EvAdventureTurnbasedCombatHandlerTest":{maxDiff:[422,4,1,""],setUp:[422,3,1,""],tearDown:[422,3,1,""],test_add_combatant:[422,3,1,""],test_combat_summary:[422,3,1,""],test_end_of_turn__empty:[422,3,1,""],test_flee:[422,3,1,""],test_gain_advantage:[422,3,1,""],test_gain_disadvantage:[422,3,1,""],test_get_available_actions:[422,3,1,""],test_msg:[422,3,1,""],test_register_and_run_action:[422,3,1,""],test_remove_combatant:[422,3,1,""],test_start_combat:[422,3,1,""],test_start_turn:[422,3,1,""],test_unflee:[422,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_commands":{TestEvAdventureCommands:[423,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_commands.TestEvAdventureCommands":{setUp:[423,3,1,""],test_attack:[423,3,1,""],test_give__coins:[423,3,1,""],test_give__item:[423,3,1,""],test_inventory:[423,3,1,""],test_remove:[423,3,1,""],test_talk:[423,3,1,""],test_wield_or_wear:[423,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_dungeon":{TestDungeon:[424,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_dungeon.TestDungeon":{setUp:[424,3,1,""],test_different_start_directions:[424,3,1,""],test_start_room:[424,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_equipment":{TestEquipment:[425,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_equipment.TestEquipment":{test_add:[425,3,1,""],test_add__remove:[425,3,1,""],test_count_slots:[425,3,1,""],test_equipmenthandler_max_slots:[425,3,1,""],test_get_wearable_or_wieldable_objects_from_backpack:[425,3,1,""],test_max_slots:[425,3,1,""],test_move:[425,4,1,""],test_move_0_helmet:[425,3,1,""],test_move_1_shield:[425,3,1,""],test_move_2_armor:[425,3,1,""],test_move_3_weapon:[425,3,1,""],test_move_4_big_weapon:[425,3,1,""],test_move_5_item:[425,3,1,""],test_move__get_current_slot:[425,3,1,""],test_properties:[425,3,1,""],test_remove__with_obj:[425,3,1,""],test_remove__with_slot:[425,3,1,""],test_two_handed_exclusive:[425,3,1,""],test_validate_slot_usage:[425,4,1,""],test_validate_slot_usage_0:[425,3,1,""],test_validate_slot_usage_1:[425,3,1,""],test_validate_slot_usage_2:[425,3,1,""],test_validate_slot_usage_3:[425,3,1,""],test_validate_slot_usage_4:[425,3,1,""],test_validate_slot_usage_5:[425,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_quests":{EvAdventureQuestTest:[426,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_quests.EvAdventureQuestTest":{setUp:[426,3,1,""],test_help:[426,3,1,""],test_progress:[426,3,1,""],test_progress__fail:[426,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_rules":{EvAdventureRollEngineTest:[427,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_rules.EvAdventureRollEngineTest":{setUp:[427,3,1,""],test_heal_from_rest:[427,3,1,""],test_morale_check:[427,3,1,""],test_opposed_saving_throw:[427,3,1,""],test_roll:[427,3,1,""],test_roll_death:[427,3,1,""],test_roll_limits:[427,3,1,""],test_roll_random_table:[427,3,1,""],test_roll_with_advantage_disadvantage:[427,3,1,""],test_saving_throw:[427,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_utils":{TestUtils:[428,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_utils.TestUtils":{test_get_obj_stats:[428,3,1,""]},"evennia.contrib.tutorials.evadventure.utils":{get_obj_stats:[429,5,1,""]},"evennia.contrib.tutorials.mirror":{mirror:[431,0,0,"-"]},"evennia.contrib.tutorials.mirror.mirror":{TutorialMirror:[431,1,1,""]},"evennia.contrib.tutorials.mirror.mirror.TutorialMirror":{DoesNotExist:[431,2,1,""],MultipleObjectsReturned:[431,2,1,""],msg:[431,3,1,""],path:[431,4,1,""],return_appearance:[431,3,1,""],typename:[431,4,1,""]},"evennia.contrib.tutorials.red_button":{red_button:[433,0,0,"-"]},"evennia.contrib.tutorials.red_button.red_button":{BlindCmdSet:[433,1,1,""],CmdBlindHelp:[433,1,1,""],CmdBlindLook:[433,1,1,""],CmdCloseLid:[433,1,1,""],CmdNudge:[433,1,1,""],CmdOpenLid:[433,1,1,""],CmdPushLidClosed:[433,1,1,""],CmdPushLidOpen:[433,1,1,""],CmdSmashGlass:[433,1,1,""],LidClosedCmdSet:[433,1,1,""],LidOpenCmdSet:[433,1,1,""],RedButton:[433,1,1,""]},"evennia.contrib.tutorials.red_button.red_button.BlindCmdSet":{at_cmdset_creation:[433,3,1,""],key:[433,4,1,""],mergetype:[433,4,1,""],no_exits:[433,4,1,""],no_objs:[433,4,1,""],path:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdBlindHelp":{aliases:[433,4,1,""],func:[433,3,1,""],help_category:[433,4,1,""],key:[433,4,1,""],lock_storage:[433,4,1,""],locks:[433,4,1,""],search_index_entry:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdBlindLook":{aliases:[433,4,1,""],func:[433,3,1,""],help_category:[433,4,1,""],key:[433,4,1,""],lock_storage:[433,4,1,""],locks:[433,4,1,""],search_index_entry:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdCloseLid":{aliases:[433,4,1,""],func:[433,3,1,""],help_category:[433,4,1,""],key:[433,4,1,""],lock_storage:[433,4,1,""],locks:[433,4,1,""],search_index_entry:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdNudge":{aliases:[433,4,1,""],func:[433,3,1,""],help_category:[433,4,1,""],key:[433,4,1,""],lock_storage:[433,4,1,""],locks:[433,4,1,""],search_index_entry:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdOpenLid":{aliases:[433,4,1,""],func:[433,3,1,""],help_category:[433,4,1,""],key:[433,4,1,""],lock_storage:[433,4,1,""],locks:[433,4,1,""],search_index_entry:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdPushLidClosed":{aliases:[433,4,1,""],func:[433,3,1,""],help_category:[433,4,1,""],key:[433,4,1,""],lock_storage:[433,4,1,""],locks:[433,4,1,""],search_index_entry:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdPushLidOpen":{aliases:[433,4,1,""],func:[433,3,1,""],help_category:[433,4,1,""],key:[433,4,1,""],lock_storage:[433,4,1,""],locks:[433,4,1,""],search_index_entry:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdSmashGlass":{aliases:[433,4,1,""],func:[433,3,1,""],help_category:[433,4,1,""],key:[433,4,1,""],lock_storage:[433,4,1,""],locks:[433,4,1,""],search_index_entry:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.LidClosedCmdSet":{at_cmdset_creation:[433,3,1,""],key:[433,4,1,""],path:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.LidOpenCmdSet":{at_cmdset_creation:[433,3,1,""],key:[433,4,1,""],path:[433,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.RedButton":{DoesNotExist:[433,2,1,""],MultipleObjectsReturned:[433,2,1,""],at_object_creation:[433,3,1,""],auto_close_msg:[433,4,1,""],blind_target:[433,3,1,""],blink_msgs:[433,4,1,""],break_lamp:[433,3,1,""],desc_add_lamp_broken:[433,4,1,""],desc_closed_lid:[433,4,1,""],desc_open_lid:[433,4,1,""],lamp_breaks_msg:[433,4,1,""],path:[433,4,1,""],to_closed_state:[433,3,1,""],to_open_state:[433,3,1,""],typename:[433,4,1,""]},"evennia.contrib.tutorials.talking_npc":{talking_npc:[435,0,0,"-"],tests:[436,0,0,"-"]},"evennia.contrib.tutorials.talking_npc.talking_npc":{CmdTalk:[435,1,1,""],END:[435,5,1,""],TalkingCmdSet:[435,1,1,""],TalkingNPC:[435,1,1,""],info1:[435,5,1,""],info2:[435,5,1,""],info3:[435,5,1,""],menu_start_node:[435,5,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.CmdTalk":{aliases:[435,4,1,""],func:[435,3,1,""],help_category:[435,4,1,""],key:[435,4,1,""],lock_storage:[435,4,1,""],locks:[435,4,1,""],search_index_entry:[435,4,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.TalkingCmdSet":{at_cmdset_creation:[435,3,1,""],key:[435,4,1,""],path:[435,4,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.TalkingNPC":{DoesNotExist:[435,2,1,""],MultipleObjectsReturned:[435,2,1,""],at_object_creation:[435,3,1,""],path:[435,4,1,""],typename:[435,4,1,""]},"evennia.contrib.tutorials.talking_npc.tests":{TestTalkingNPC:[436,1,1,""]},"evennia.contrib.tutorials.talking_npc.tests.TestTalkingNPC":{test_talkingnpc:[436,3,1,""]},"evennia.contrib.tutorials.tutorial_world":{intro_menu:[438,0,0,"-"],mob:[439,0,0,"-"],objects:[440,0,0,"-"],rooms:[441,0,0,"-"],tests:[442,0,0,"-"]},"evennia.contrib.tutorials.tutorial_world.intro_menu":{DemoCommandSetComms:[438,1,1,""],DemoCommandSetHelp:[438,1,1,""],DemoCommandSetRoom:[438,1,1,""],TutorialEvMenu:[438,1,1,""],do_nothing:[438,5,1,""],goto_cleanup_cmdsets:[438,5,1,""],goto_command_demo_comms:[438,5,1,""],goto_command_demo_help:[438,5,1,""],goto_command_demo_room:[438,5,1,""],init_menu:[438,5,1,""],send_testing_tagged:[438,5,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetComms":{at_cmdset_creation:[438,3,1,""],key:[438,4,1,""],no_exits:[438,4,1,""],no_objs:[438,4,1,""],path:[438,4,1,""],priority:[438,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetHelp":{at_cmdset_creation:[438,3,1,""],key:[438,4,1,""],path:[438,4,1,""],priority:[438,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetRoom":{at_cmdset_creation:[438,3,1,""],key:[438,4,1,""],no_exits:[438,4,1,""],no_objs:[438,4,1,""],path:[438,4,1,""],priority:[438,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.TutorialEvMenu":{close_menu:[438,3,1,""],options_formatter:[438,3,1,""]},"evennia.contrib.tutorials.tutorial_world.mob":{CmdMobOnOff:[439,1,1,""],Mob:[439,1,1,""],MobCmdSet:[439,1,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.CmdMobOnOff":{aliases:[439,4,1,""],func:[439,3,1,""],help_category:[439,4,1,""],key:[439,4,1,""],lock_storage:[439,4,1,""],locks:[439,4,1,""],search_index_entry:[439,4,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.Mob":{DoesNotExist:[439,2,1,""],MultipleObjectsReturned:[439,2,1,""],at_hit:[439,3,1,""],at_init:[439,3,1,""],at_new_arrival:[439,3,1,""],at_object_creation:[439,3,1,""],do_attack:[439,3,1,""],do_hunting:[439,3,1,""],do_patrol:[439,3,1,""],path:[439,4,1,""],set_alive:[439,3,1,""],set_dead:[439,3,1,""],start_attacking:[439,3,1,""],start_hunting:[439,3,1,""],start_idle:[439,3,1,""],start_patrolling:[439,3,1,""],typename:[439,4,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[439,3,1,""],path:[439,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects":{CmdAttack:[440,1,1,""],CmdClimb:[440,1,1,""],CmdGetWeapon:[440,1,1,""],CmdLight:[440,1,1,""],CmdPressButton:[440,1,1,""],CmdRead:[440,1,1,""],CmdSetClimbable:[440,1,1,""],CmdSetCrumblingWall:[440,1,1,""],CmdSetLight:[440,1,1,""],CmdSetReadable:[440,1,1,""],CmdSetWeapon:[440,1,1,""],CmdSetWeaponRack:[440,1,1,""],CmdShiftRoot:[440,1,1,""],CrumblingWall:[440,1,1,""],LightSource:[440,1,1,""],Obelisk:[440,1,1,""],TutorialClimbable:[440,1,1,""],TutorialObject:[440,1,1,""],TutorialReadable:[440,1,1,""],TutorialWeapon:[440,1,1,""],TutorialWeaponRack:[440,1,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdAttack":{aliases:[440,4,1,""],func:[440,3,1,""],help_category:[440,4,1,""],key:[440,4,1,""],lock_storage:[440,4,1,""],locks:[440,4,1,""],search_index_entry:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdClimb":{aliases:[440,4,1,""],func:[440,3,1,""],help_category:[440,4,1,""],key:[440,4,1,""],lock_storage:[440,4,1,""],locks:[440,4,1,""],search_index_entry:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdGetWeapon":{aliases:[440,4,1,""],func:[440,3,1,""],help_category:[440,4,1,""],key:[440,4,1,""],lock_storage:[440,4,1,""],locks:[440,4,1,""],search_index_entry:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdLight":{aliases:[440,4,1,""],func:[440,3,1,""],help_category:[440,4,1,""],key:[440,4,1,""],lock_storage:[440,4,1,""],locks:[440,4,1,""],search_index_entry:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdPressButton":{aliases:[440,4,1,""],func:[440,3,1,""],help_category:[440,4,1,""],key:[440,4,1,""],lock_storage:[440,4,1,""],locks:[440,4,1,""],search_index_entry:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdRead":{aliases:[440,4,1,""],func:[440,3,1,""],help_category:[440,4,1,""],key:[440,4,1,""],lock_storage:[440,4,1,""],locks:[440,4,1,""],search_index_entry:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[440,3,1,""],path:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[440,3,1,""],key:[440,4,1,""],path:[440,4,1,""],priority:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[440,3,1,""],key:[440,4,1,""],path:[440,4,1,""],priority:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[440,3,1,""],path:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[440,3,1,""],path:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[440,3,1,""],key:[440,4,1,""],path:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdShiftRoot":{aliases:[440,4,1,""],func:[440,3,1,""],help_category:[440,4,1,""],key:[440,4,1,""],lock_storage:[440,4,1,""],locks:[440,4,1,""],parse:[440,3,1,""],search_index_entry:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CrumblingWall":{DoesNotExist:[440,2,1,""],MultipleObjectsReturned:[440,2,1,""],at_failed_traverse:[440,3,1,""],at_init:[440,3,1,""],at_object_creation:[440,3,1,""],at_post_traverse:[440,3,1,""],open_wall:[440,3,1,""],path:[440,4,1,""],reset:[440,3,1,""],return_appearance:[440,3,1,""],typename:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.LightSource":{DoesNotExist:[440,2,1,""],MultipleObjectsReturned:[440,2,1,""],at_init:[440,3,1,""],at_object_creation:[440,3,1,""],light:[440,3,1,""],path:[440,4,1,""],typename:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.Obelisk":{DoesNotExist:[440,2,1,""],MultipleObjectsReturned:[440,2,1,""],at_object_creation:[440,3,1,""],path:[440,4,1,""],return_appearance:[440,3,1,""],typename:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[440,2,1,""],MultipleObjectsReturned:[440,2,1,""],at_object_creation:[440,3,1,""],path:[440,4,1,""],typename:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialObject":{DoesNotExist:[440,2,1,""],MultipleObjectsReturned:[440,2,1,""],at_object_creation:[440,3,1,""],path:[440,4,1,""],reset:[440,3,1,""],typename:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialReadable":{DoesNotExist:[440,2,1,""],MultipleObjectsReturned:[440,2,1,""],at_object_creation:[440,3,1,""],path:[440,4,1,""],typename:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[440,2,1,""],MultipleObjectsReturned:[440,2,1,""],at_object_creation:[440,3,1,""],path:[440,4,1,""],reset:[440,3,1,""],typename:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[440,2,1,""],MultipleObjectsReturned:[440,2,1,""],at_object_creation:[440,3,1,""],path:[440,4,1,""],produce_weapon:[440,3,1,""],typename:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms":{BridgeCmdSet:[441,1,1,""],BridgeRoom:[441,1,1,""],CmdBridgeHelp:[441,1,1,""],CmdDarkHelp:[441,1,1,""],CmdDarkNoMatch:[441,1,1,""],CmdEast:[441,1,1,""],CmdEvenniaIntro:[441,1,1,""],CmdLookBridge:[441,1,1,""],CmdLookDark:[441,1,1,""],CmdSetEvenniaIntro:[441,1,1,""],CmdTutorial:[441,1,1,""],CmdTutorialGiveUp:[441,1,1,""],CmdTutorialLook:[441,1,1,""],CmdTutorialSetDetail:[441,1,1,""],CmdWest:[441,1,1,""],DarkCmdSet:[441,1,1,""],DarkRoom:[441,1,1,""],IntroRoom:[441,1,1,""],OutroRoom:[441,1,1,""],TeleportRoom:[441,1,1,""],TutorialRoom:[441,1,1,""],TutorialRoomCmdSet:[441,1,1,""],TutorialStartExit:[441,1,1,""],WeatherRoom:[441,1,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[441,3,1,""],key:[441,4,1,""],path:[441,4,1,""],priority:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],at_object_leave:[441,3,1,""],at_object_receive:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""],update_weather:[441,3,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdBridgeHelp":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdDarkHelp":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdEast":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdEvenniaIntro":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdLookBridge":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdLookDark":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdSetEvenniaIntro":{at_cmdset_creation:[441,3,1,""],key:[441,4,1,""],path:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorial":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialGiveUp":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialLook":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdWest":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[441,3,1,""],key:[441,4,1,""],mergetype:[441,4,1,""],path:[441,4,1,""],priority:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.DarkRoom":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_init:[441,3,1,""],at_object_creation:[441,3,1,""],at_object_leave:[441,3,1,""],at_object_receive:[441,3,1,""],check_light_state:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.IntroRoom":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],at_object_receive:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.OutroRoom":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],at_object_leave:[441,3,1,""],at_object_receive:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],at_object_receive:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],at_object_receive:[441,3,1,""],path:[441,4,1,""],return_detail:[441,3,1,""],set_detail:[441,3,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[441,3,1,""],key:[441,4,1,""],path:[441,4,1,""],priority:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialStartExit":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""],update_weather:[441,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests":{TestTutorialWorldMob:[442,1,1,""],TestTutorialWorldObjects:[442,1,1,""],TestTutorialWorldRooms:[442,1,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldMob":{test_mob:[442,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldObjects":{test_climbable:[442,3,1,""],test_crumblingwall:[442,3,1,""],test_lightsource:[442,3,1,""],test_obelisk:[442,3,1,""],test_readable:[442,3,1,""],test_tutorialobj:[442,3,1,""],test_weapon:[442,3,1,""],test_weaponrack:[442,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldRooms":{test_bridgeroom:[442,3,1,""],test_cmdtutorial:[442,3,1,""],test_darkroom:[442,3,1,""],test_introroom:[442,3,1,""],test_outroroom:[442,3,1,""],test_teleportroom:[442,3,1,""],test_weatherroom:[442,3,1,""]},"evennia.contrib.utils":{auditing:[444,0,0,"-"],fieldfill:[448,0,0,"-"],git_integration:[450,0,0,"-"],name_generator:[453,0,0,"-"],random_string_generator:[456,0,0,"-"],tree_select:[459,0,0,"-"]},"evennia.contrib.utils.auditing":{outputs:[445,0,0,"-"],server:[446,0,0,"-"],tests:[447,0,0,"-"]},"evennia.contrib.utils.auditing.outputs":{to_file:[445,5,1,""],to_syslog:[445,5,1,""]},"evennia.contrib.utils.auditing.server":{AuditedServerSession:[446,1,1,""]},"evennia.contrib.utils.auditing.server.AuditedServerSession":{audit:[446,3,1,""],data_in:[446,3,1,""],data_out:[446,3,1,""],mask:[446,3,1,""]},"evennia.contrib.utils.auditing.tests":{AuditingTest:[447,1,1,""]},"evennia.contrib.utils.auditing.tests.AuditingTest":{setup_session:[447,3,1,""],test_audit:[447,3,1,""],test_mask:[447,3,1,""]},"evennia.contrib.utils.fieldfill":{fieldfill:[449,0,0,"-"]},"evennia.contrib.utils.fieldfill.fieldfill":{CmdTestMenu:[449,1,1,""],FieldEvMenu:[449,1,1,""],display_formdata:[449,5,1,""],form_template_to_dict:[449,5,1,""],init_delayed_message:[449,5,1,""],init_fill_field:[449,5,1,""],menunode_fieldfill:[449,5,1,""],sendmessage:[449,5,1,""],verify_online_player:[449,5,1,""]},"evennia.contrib.utils.fieldfill.fieldfill.CmdTestMenu":{aliases:[449,4,1,""],func:[449,3,1,""],help_category:[449,4,1,""],key:[449,4,1,""],lock_storage:[449,4,1,""],search_index_entry:[449,4,1,""]},"evennia.contrib.utils.fieldfill.fieldfill.FieldEvMenu":{node_formatter:[449,3,1,""]},"evennia.contrib.utils.git_integration":{git_integration:[451,0,0,"-"],tests:[452,0,0,"-"]},"evennia.contrib.utils.git_integration.git_integration":{CmdGit:[451,1,1,""],CmdGitEvennia:[451,1,1,""],GitCmdSet:[451,1,1,""],GitCommand:[451,1,1,""]},"evennia.contrib.utils.git_integration.git_integration.CmdGit":{aliases:[451,4,1,""],directory:[451,4,1,""],help_category:[451,4,1,""],key:[451,4,1,""],lock_storage:[451,4,1,""],locks:[451,4,1,""],remote_link:[451,4,1,""],repo_type:[451,4,1,""],search_index_entry:[451,4,1,""]},"evennia.contrib.utils.git_integration.git_integration.CmdGitEvennia":{aliases:[451,4,1,""],directory:[451,4,1,""],help_category:[451,4,1,""],key:[451,4,1,""],lock_storage:[451,4,1,""],locks:[451,4,1,""],remote_link:[451,4,1,""],repo_type:[451,4,1,""],search_index_entry:[451,4,1,""]},"evennia.contrib.utils.git_integration.git_integration.GitCmdSet":{at_cmdset_creation:[451,3,1,""],path:[451,4,1,""]},"evennia.contrib.utils.git_integration.git_integration.GitCommand":{aliases:[451,4,1,""],checkout:[451,3,1,""],func:[451,3,1,""],get_branches:[451,3,1,""],get_status:[451,3,1,""],help_category:[451,4,1,""],key:[451,4,1,""],lock_storage:[451,4,1,""],parse:[451,3,1,""],pull:[451,3,1,""],search_index_entry:[451,4,1,""],short_sha:[451,3,1,""]},"evennia.contrib.utils.git_integration.tests":{TestGitIntegration:[452,1,1,""]},"evennia.contrib.utils.git_integration.tests.TestGitIntegration":{setUp:[452,3,1,""],test_git_branch:[452,3,1,""],test_git_checkout:[452,3,1,""],test_git_pull:[452,3,1,""],test_git_status:[452,3,1,""]},"evennia.contrib.utils.name_generator":{namegen:[454,0,0,"-"],tests:[455,0,0,"-"]},"evennia.contrib.utils.name_generator.namegen":{fantasy_name:[454,5,1,""],first_name:[454,5,1,""],full_name:[454,5,1,""],last_name:[454,5,1,""]},"evennia.contrib.utils.name_generator.tests":{TestNameGenerator:[455,1,1,""]},"evennia.contrib.utils.name_generator.tests.TestNameGenerator":{test_fantasy_name:[455,3,1,""],test_first_name:[455,3,1,""],test_full_name:[455,3,1,""],test_last_name:[455,3,1,""],test_structure_validation:[455,3,1,""]},"evennia.contrib.utils.random_string_generator":{random_string_generator:[457,0,0,"-"],tests:[458,0,0,"-"]},"evennia.contrib.utils.random_string_generator.random_string_generator":{ExhaustedGenerator:[457,2,1,""],RandomStringGenerator:[457,1,1,""],RandomStringGeneratorScript:[457,1,1,""],RejectedRegex:[457,2,1,""]},"evennia.contrib.utils.random_string_generator.random_string_generator.RandomStringGenerator":{__init__:[457,3,1,""],all:[457,3,1,""],clear:[457,3,1,""],get:[457,3,1,""],remove:[457,3,1,""],script:[457,4,1,""]},"evennia.contrib.utils.random_string_generator.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[457,2,1,""],MultipleObjectsReturned:[457,2,1,""],at_script_creation:[457,3,1,""],path:[457,4,1,""],typename:[457,4,1,""]},"evennia.contrib.utils.random_string_generator.tests":{TestRandomStringGenerator:[458,1,1,""]},"evennia.contrib.utils.random_string_generator.tests.TestRandomStringGenerator":{test_generate:[458,3,1,""]},"evennia.contrib.utils.tree_select":{tests:[460,0,0,"-"],tree_select:[461,0,0,"-"]},"evennia.contrib.utils.tree_select.tests":{TestFieldFillFunc:[460,1,1,""],TestTreeSelectFunc:[460,1,1,""]},"evennia.contrib.utils.tree_select.tests.TestFieldFillFunc":{test_field_functions:[460,3,1,""]},"evennia.contrib.utils.tree_select.tests.TestTreeSelectFunc":{test_tree_functions:[460,3,1,""]},"evennia.contrib.utils.tree_select.tree_select":{CmdNameColor:[461,1,1,""],change_name_color:[461,5,1,""],dashcount:[461,5,1,""],go_up_one_category:[461,5,1,""],index_to_selection:[461,5,1,""],init_tree_selection:[461,5,1,""],is_category:[461,5,1,""],menunode_treeselect:[461,5,1,""],optlist_to_menuoptions:[461,5,1,""],parse_opts:[461,5,1,""]},"evennia.contrib.utils.tree_select.tree_select.CmdNameColor":{aliases:[461,4,1,""],func:[461,3,1,""],help_category:[461,4,1,""],key:[461,4,1,""],lock_storage:[461,4,1,""],search_index_entry:[461,4,1,""]},"evennia.help":{filehelp:[463,0,0,"-"],manager:[464,0,0,"-"],models:[465,0,0,"-"],utils:[466,0,0,"-"]},"evennia.help.filehelp":{FileHelpEntry:[463,1,1,""],FileHelpStorageHandler:[463,1,1,""]},"evennia.help.filehelp.FileHelpEntry":{__init__:[463,3,1,""],access:[463,3,1,""],aliases:[463,4,1,""],entrytext:[463,4,1,""],help_category:[463,4,1,""],key:[463,4,1,""],lock_storage:[463,4,1,""],locks:[463,4,1,""],search_index_entry:[463,3,1,""],web_get_admin_url:[463,3,1,""],web_get_detail_url:[463,3,1,""]},"evennia.help.filehelp.FileHelpStorageHandler":{__init__:[463,3,1,""],all:[463,3,1,""],load:[463,3,1,""]},"evennia.help.manager":{HelpEntryManager:[464,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[464,3,1,""],create_help:[464,3,1,""],find_apropos:[464,3,1,""],find_topicmatch:[464,3,1,""],find_topics_with_category:[464,3,1,""],find_topicsuggestions:[464,3,1,""],get_all_categories:[464,3,1,""],get_all_topics:[464,3,1,""],search_help:[464,3,1,""]},"evennia.help.models":{HelpEntry:[465,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[465,2,1,""],MultipleObjectsReturned:[465,2,1,""],access:[465,3,1,""],aliases:[465,4,1,""],date_created:[465,3,1,""],db_date_created:[465,4,1,""],db_entrytext:[465,4,1,""],db_help_category:[465,4,1,""],db_key:[465,4,1,""],db_lock_storage:[465,4,1,""],db_tags:[465,4,1,""],entrytext:[465,3,1,""],get_absolute_url:[465,3,1,""],get_next_by_db_date_created:[465,3,1,""],get_previous_by_db_date_created:[465,3,1,""],help_category:[465,3,1,""],id:[465,4,1,""],key:[465,3,1,""],lock_storage:[465,3,1,""],locks:[465,4,1,""],objects:[465,4,1,""],path:[465,4,1,""],search_index_entry:[465,3,1,""],tags:[465,4,1,""],typename:[465,4,1,""],web_get_admin_url:[465,3,1,""],web_get_create_url:[465,3,1,""],web_get_delete_url:[465,3,1,""],web_get_detail_url:[465,3,1,""],web_get_update_url:[465,3,1,""]},"evennia.help.utils":{help_search_with_index:[466,5,1,""],parse_entry_for_subcategories:[466,5,1,""]},"evennia.locks":{lockfuncs:[468,0,0,"-"],lockhandler:[469,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[468,5,1,""],"true":[468,5,1,""],all:[468,5,1,""],attr:[468,5,1,""],attr_eq:[468,5,1,""],attr_ge:[468,5,1,""],attr_gt:[468,5,1,""],attr_le:[468,5,1,""],attr_lt:[468,5,1,""],attr_ne:[468,5,1,""],dbref:[468,5,1,""],has_account:[468,5,1,""],holds:[468,5,1,""],id:[468,5,1,""],inside:[468,5,1,""],inside_rec:[468,5,1,""],is_ooc:[468,5,1,""],locattr:[468,5,1,""],none:[468,5,1,""],objattr:[468,5,1,""],objlocattr:[468,5,1,""],objloctag:[468,5,1,""],objtag:[468,5,1,""],pdbref:[468,5,1,""],perm:[468,5,1,""],perm_above:[468,5,1,""],pid:[468,5,1,""],pperm:[468,5,1,""],pperm_above:[468,5,1,""],self:[468,5,1,""],serversetting:[468,5,1,""],superuser:[468,5,1,""],tag:[468,5,1,""]},"evennia.locks.lockhandler":{LockException:[469,2,1,""],LockHandler:[469,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[469,3,1,""],__init__:[469,3,1,""],add:[469,3,1,""],all:[469,3,1,""],append:[469,3,1,""],cache_lock_bypass:[469,3,1,""],check:[469,3,1,""],check_lockstring:[469,3,1,""],clear:[469,3,1,""],get:[469,3,1,""],remove:[469,3,1,""],replace:[469,3,1,""],reset:[469,3,1,""],validate:[469,3,1,""]},"evennia.objects":{manager:[471,0,0,"-"],models:[472,0,0,"-"],objects:[473,0,0,"-"]},"evennia.objects.manager":{ObjectDBManager:[471,1,1,""],ObjectManager:[471,1,1,""]},"evennia.objects.manager.ObjectDBManager":{clear_all_sessids:[471,3,1,""],copy_object:[471,3,1,""],create_object:[471,3,1,""],get_contents:[471,3,1,""],get_object_with_account:[471,3,1,""],get_objs_with_attr:[471,3,1,""],get_objs_with_attr_value:[471,3,1,""],get_objs_with_db_property:[471,3,1,""],get_objs_with_db_property_value:[471,3,1,""],get_objs_with_key_and_typeclass:[471,3,1,""],get_objs_with_key_or_alias:[471,3,1,""],object_search:[471,3,1,""],search:[471,3,1,""],search_object:[471,3,1,""]},"evennia.objects.models":{ContentsHandler:[472,1,1,""],ObjectDB:[472,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[472,3,1,""],add:[472,3,1,""],clear:[472,3,1,""],get:[472,3,1,""],init:[472,3,1,""],load:[472,3,1,""],remove:[472,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[472,2,1,""],MultipleObjectsReturned:[472,2,1,""],account:[472,3,1,""],at_db_location_postsave:[472,3,1,""],cmdset_storage:[472,3,1,""],contents_cache:[472,4,1,""],db_account:[472,4,1,""],db_account_id:[472,4,1,""],db_attributes:[472,4,1,""],db_cmdset_storage:[472,4,1,""],db_date_created:[472,4,1,""],db_destination:[472,4,1,""],db_destination_id:[472,4,1,""],db_home:[472,4,1,""],db_home_id:[472,4,1,""],db_key:[472,4,1,""],db_location:[472,4,1,""],db_location_id:[472,4,1,""],db_lock_storage:[472,4,1,""],db_sessid:[472,4,1,""],db_tags:[472,4,1,""],db_typeclass_path:[472,4,1,""],destination:[472,3,1,""],destinations_set:[472,4,1,""],get_next_by_db_date_created:[472,3,1,""],get_previous_by_db_date_created:[472,3,1,""],hide_from_objects_set:[472,4,1,""],home:[472,3,1,""],homes_set:[472,4,1,""],id:[472,4,1,""],location:[472,3,1,""],locations_set:[472,4,1,""],object_subscription_set:[472,4,1,""],objects:[472,4,1,""],path:[472,4,1,""],receiver_object_set:[472,4,1,""],scriptdb_set:[472,4,1,""],sender_object_set:[472,4,1,""],sessid:[472,3,1,""],typename:[472,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[473,1,1,""],DefaultExit:[473,1,1,""],DefaultObject:[473,1,1,""],DefaultRoom:[473,1,1,""],ExitCommand:[473,1,1,""],ObjectSessionHandler:[473,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[473,2,1,""],MultipleObjectsReturned:[473,2,1,""],at_after_move:[473,3,1,""],at_post_move:[473,3,1,""],at_post_puppet:[473,3,1,""],at_post_unpuppet:[473,3,1,""],at_pre_puppet:[473,3,1,""],basetype_setup:[473,3,1,""],connection_time:[473,3,1,""],create:[473,3,1,""],idle_time:[473,3,1,""],lockstring:[473,4,1,""],normalize_name:[473,3,1,""],path:[473,4,1,""],typename:[473,4,1,""],validate_name:[473,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[473,2,1,""],MultipleObjectsReturned:[473,2,1,""],at_cmdset_get:[473,3,1,""],at_failed_traverse:[473,3,1,""],at_init:[473,3,1,""],at_traverse:[473,3,1,""],basetype_setup:[473,3,1,""],create:[473,3,1,""],create_exit_cmdset:[473,3,1,""],exit_command:[473,4,1,""],get_return_exit:[473,3,1,""],lockstring:[473,4,1,""],path:[473,4,1,""],priority:[473,4,1,""],typename:[473,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[473,3,1,""],DoesNotExist:[473,2,1,""],MultipleObjectsReturned:[473,2,1,""],access:[473,3,1,""],announce_move_from:[473,3,1,""],announce_move_to:[473,3,1,""],appearance_template:[473,4,1,""],at_access:[473,3,1,""],at_after_move:[473,3,1,""],at_after_traverse:[473,3,1,""],at_before_drop:[473,3,1,""],at_before_get:[473,3,1,""],at_before_give:[473,3,1,""],at_before_move:[473,3,1,""],at_before_say:[473,3,1,""],at_cmdset_get:[473,3,1,""],at_desc:[473,3,1,""],at_drop:[473,3,1,""],at_failed_traverse:[473,3,1,""],at_first_save:[473,3,1,""],at_get:[473,3,1,""],at_give:[473,3,1,""],at_init:[473,3,1,""],at_look:[473,3,1,""],at_msg_receive:[473,3,1,""],at_msg_send:[473,3,1,""],at_object_creation:[473,3,1,""],at_object_delete:[473,3,1,""],at_object_leave:[473,3,1,""],at_object_post_copy:[473,3,1,""],at_object_receive:[473,3,1,""],at_post_move:[473,3,1,""],at_post_puppet:[473,3,1,""],at_post_traverse:[473,3,1,""],at_post_unpuppet:[473,3,1,""],at_pre_drop:[473,3,1,""],at_pre_get:[473,3,1,""],at_pre_give:[473,3,1,""],at_pre_move:[473,3,1,""],at_pre_object_leave:[473,3,1,""],at_pre_object_receive:[473,3,1,""],at_pre_puppet:[473,3,1,""],at_pre_say:[473,3,1,""],at_pre_unpuppet:[473,3,1,""],at_say:[473,3,1,""],at_server_reload:[473,3,1,""],at_server_shutdown:[473,3,1,""],at_traverse:[473,3,1,""],basetype_posthook_setup:[473,3,1,""],basetype_setup:[473,3,1,""],clear_contents:[473,3,1,""],clear_exits:[473,3,1,""],cmdset:[473,4,1,""],contents:[473,3,1,""],contents_get:[473,3,1,""],contents_set:[473,3,1,""],copy:[473,3,1,""],create:[473,3,1,""],execute_cmd:[473,3,1,""],exits:[473,3,1,""],for_contents:[473,3,1,""],format_appearance:[473,3,1,""],get_content_names:[473,3,1,""],get_display_characters:[473,3,1,""],get_display_desc:[473,3,1,""],get_display_exits:[473,3,1,""],get_display_footer:[473,3,1,""],get_display_header:[473,3,1,""],get_display_name:[473,3,1,""],get_display_things:[473,3,1,""],get_numbered_name:[473,3,1,""],get_visible_contents:[473,3,1,""],has_account:[473,3,1,""],is_connected:[473,3,1,""],is_superuser:[473,3,1,""],lockstring:[473,4,1,""],move_to:[473,3,1,""],msg:[473,3,1,""],msg_contents:[473,3,1,""],nicks:[473,4,1,""],objects:[473,4,1,""],path:[473,4,1,""],return_appearance:[473,3,1,""],scripts:[473,4,1,""],search:[473,3,1,""],search_account:[473,3,1,""],sessions:[473,4,1,""],typename:[473,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[473,2,1,""],MultipleObjectsReturned:[473,2,1,""],basetype_setup:[473,3,1,""],create:[473,3,1,""],lockstring:[473,4,1,""],path:[473,4,1,""],typename:[473,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[473,4,1,""],func:[473,3,1,""],get_extra_info:[473,3,1,""],help_category:[473,4,1,""],key:[473,4,1,""],lock_storage:[473,4,1,""],obj:[473,4,1,""],search_index_entry:[473,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[473,3,1,""],add:[473,3,1,""],all:[473,3,1,""],clear:[473,3,1,""],count:[473,3,1,""],get:[473,3,1,""],remove:[473,3,1,""]},"evennia.prototypes":{menus:[475,0,0,"-"],protfuncs:[476,0,0,"-"],prototypes:[477,0,0,"-"],spawner:[478,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[475,1,1,""],node_apply_diff:[475,5,1,""],node_destination:[475,5,1,""],node_examine_entity:[475,5,1,""],node_home:[475,5,1,""],node_index:[475,5,1,""],node_key:[475,5,1,""],node_location:[475,5,1,""],node_prototype_desc:[475,5,1,""],node_prototype_key:[475,5,1,""],node_prototype_save:[475,5,1,""],node_prototype_spawn:[475,5,1,""],node_validate_prototype:[475,5,1,""],start_olc:[475,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[475,3,1,""],helptext_formatter:[475,3,1,""],nodetext_formatter:[475,3,1,""],options_formatter:[475,3,1,""]},"evennia.prototypes.protfuncs":{protfunc_callable_protkey:[476,5,1,""]},"evennia.prototypes.prototypes":{DBPrototypeCache:[477,1,1,""],DbPrototype:[477,1,1,""],PermissionError:[477,2,1,""],PrototypeEvMore:[477,1,1,""],ValidationError:[477,2,1,""],check_permission:[477,5,1,""],create_prototype:[477,5,1,""],delete_prototype:[477,5,1,""],format_available_protfuncs:[477,5,1,""],homogenize_prototype:[477,5,1,""],init_spawn_value:[477,5,1,""],list_prototypes:[477,5,1,""],load_module_prototypes:[477,5,1,""],protfunc_parser:[477,5,1,""],prototype_to_str:[477,5,1,""],save_prototype:[477,5,1,""],search_objects_with_prototype:[477,5,1,""],search_prototype:[477,5,1,""],validate_prototype:[477,5,1,""],value_to_obj:[477,5,1,""],value_to_obj_or_any:[477,5,1,""]},"evennia.prototypes.prototypes.DBPrototypeCache":{__init__:[477,3,1,""],add:[477,3,1,""],clear:[477,3,1,""],get:[477,3,1,""],remove:[477,3,1,""],replace:[477,3,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[477,2,1,""],MultipleObjectsReturned:[477,2,1,""],at_script_creation:[477,3,1,""],path:[477,4,1,""],prototype:[477,3,1,""],typename:[477,4,1,""]},"evennia.prototypes.prototypes.PrototypeEvMore":{__init__:[477,3,1,""],init_pages:[477,3,1,""],page_formatter:[477,3,1,""],prototype_paginator:[477,3,1,""]},"evennia.prototypes.spawner":{Unset:[478,1,1,""],batch_create_object:[478,5,1,""],batch_update_objects_with_prototype:[478,5,1,""],flatten_diff:[478,5,1,""],flatten_prototype:[478,5,1,""],format_diff:[478,5,1,""],prototype_diff:[478,5,1,""],prototype_diff_from_object:[478,5,1,""],prototype_from_object:[478,5,1,""],spawn:[478,5,1,""]},"evennia.scripts":{manager:[480,0,0,"-"],models:[481,0,0,"-"],monitorhandler:[482,0,0,"-"],scripthandler:[483,0,0,"-"],scripts:[484,0,0,"-"],taskhandler:[485,0,0,"-"],tickerhandler:[486,0,0,"-"]},"evennia.scripts.manager":{ScriptDBManager:[480,1,1,""],ScriptManager:[480,1,1,""]},"evennia.scripts.manager.ScriptDBManager":{copy_script:[480,3,1,""],create_script:[480,3,1,""],delete_script:[480,3,1,""],get_all_scripts:[480,3,1,""],get_all_scripts_on_obj:[480,3,1,""],script_search:[480,3,1,""],search_script:[480,3,1,""],update_scripts_after_server_start:[480,3,1,""]},"evennia.scripts.models":{ScriptDB:[481,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[481,2,1,""],MultipleObjectsReturned:[481,2,1,""],account:[481,3,1,""],db_account:[481,4,1,""],db_account_id:[481,4,1,""],db_attributes:[481,4,1,""],db_date_created:[481,4,1,""],db_desc:[481,4,1,""],db_interval:[481,4,1,""],db_is_active:[481,4,1,""],db_key:[481,4,1,""],db_lock_storage:[481,4,1,""],db_obj:[481,4,1,""],db_obj_id:[481,4,1,""],db_persistent:[481,4,1,""],db_repeats:[481,4,1,""],db_start_delay:[481,4,1,""],db_tags:[481,4,1,""],db_typeclass_path:[481,4,1,""],desc:[481,3,1,""],get_next_by_db_date_created:[481,3,1,""],get_previous_by_db_date_created:[481,3,1,""],id:[481,4,1,""],interval:[481,3,1,""],is_active:[481,3,1,""],obj:[481,3,1,""],object:[481,3,1,""],objects:[481,4,1,""],path:[481,4,1,""],persistent:[481,3,1,""],receiver_script_set:[481,4,1,""],repeats:[481,3,1,""],sender_script_set:[481,4,1,""],start_delay:[481,3,1,""],typename:[481,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[482,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[482,3,1,""],add:[482,3,1,""],all:[482,3,1,""],at_update:[482,3,1,""],clear:[482,3,1,""],remove:[482,3,1,""],restore:[482,3,1,""],save:[482,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[483,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[483,3,1,""],__init__:[483,3,1,""],add:[483,3,1,""],all:[483,3,1,""],get:[483,3,1,""],remove:[483,3,1,""],start:[483,3,1,""],stop:[483,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[484,1,1,""],DoNothing:[484,1,1,""],Store:[484,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[484,2,1,""],MultipleObjectsReturned:[484,2,1,""],at_pause:[484,3,1,""],at_repeat:[484,3,1,""],at_script_creation:[484,3,1,""],at_script_delete:[484,3,1,""],at_server_reload:[484,3,1,""],at_server_shutdown:[484,3,1,""],at_server_start:[484,3,1,""],at_start:[484,3,1,""],at_stop:[484,3,1,""],create:[484,3,1,""],is_valid:[484,3,1,""],path:[484,4,1,""],typename:[484,4,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[484,2,1,""],MultipleObjectsReturned:[484,2,1,""],at_script_creation:[484,3,1,""],path:[484,4,1,""],typename:[484,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[484,2,1,""],MultipleObjectsReturned:[484,2,1,""],at_script_creation:[484,3,1,""],path:[484,4,1,""],typename:[484,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[485,1,1,""],TaskHandlerTask:[485,1,1,""],handle_error:[485,5,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[485,3,1,""],active:[485,3,1,""],add:[485,3,1,""],call_task:[485,3,1,""],cancel:[485,3,1,""],clean_stale_tasks:[485,3,1,""],clear:[485,3,1,""],create_delays:[485,3,1,""],do_task:[485,3,1,""],exists:[485,3,1,""],get_deferred:[485,3,1,""],load:[485,3,1,""],remove:[485,3,1,""],save:[485,3,1,""]},"evennia.scripts.taskhandler.TaskHandlerTask":{__init__:[485,3,1,""],active:[485,3,1,"id6"],call:[485,3,1,"id3"],called:[485,3,1,""],cancel:[485,3,1,"id5"],do_task:[485,3,1,"id2"],exists:[485,3,1,"id7"],get_deferred:[485,3,1,""],get_id:[485,3,1,"id8"],pause:[485,3,1,"id0"],paused:[485,3,1,""],remove:[485,3,1,"id4"],unpause:[485,3,1,"id1"]},"evennia.scripts.tickerhandler":{Ticker:[486,1,1,""],TickerHandler:[486,1,1,""],TickerPool:[486,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[486,3,1,""],add:[486,3,1,""],remove:[486,3,1,""],stop:[486,3,1,""],validate:[486,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[486,3,1,""],add:[486,3,1,""],all:[486,3,1,""],all_display:[486,3,1,""],clear:[486,3,1,""],remove:[486,3,1,""],restore:[486,3,1,""],save:[486,3,1,""],ticker_pool_class:[486,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[486,3,1,""],add:[486,3,1,""],remove:[486,3,1,""],stop:[486,3,1,""],ticker_class:[486,4,1,""]},"evennia.server":{amp_client:[488,0,0,"-"],connection_wizard:[489,0,0,"-"],deprecations:[490,0,0,"-"],evennia_launcher:[491,0,0,"-"],game_index_client:[492,0,0,"-"],initial_setup:[495,0,0,"-"],inputfuncs:[496,0,0,"-"],manager:[497,0,0,"-"],models:[498,0,0,"-"],portal:[499,0,0,"-"],profiling:[521,0,0,"-"],server:[529,0,0,"-"],serversession:[530,0,0,"-"],session:[531,0,0,"-"],sessionhandler:[532,0,0,"-"],signals:[533,0,0,"-"],throttle:[534,0,0,"-"],validators:[535,0,0,"-"],webserver:[536,0,0,"-"]},"evennia.server.amp_client":{AMPClientFactory:[488,1,1,""],AMPServerClientProtocol:[488,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[488,3,1,""],buildProtocol:[488,3,1,""],clientConnectionFailed:[488,3,1,""],clientConnectionLost:[488,3,1,""],factor:[488,4,1,""],initialDelay:[488,4,1,""],maxDelay:[488,4,1,""],noisy:[488,4,1,""],startedConnecting:[488,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[488,3,1,""],data_to_portal:[488,3,1,""],send_AdminServer2Portal:[488,3,1,""],send_MsgServer2Portal:[488,3,1,""],server_receive_adminportal2server:[488,3,1,""],server_receive_msgportal2server:[488,3,1,""],server_receive_status:[488,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[489,1,1,""],node_game_index_fields:[489,5,1,""],node_game_index_start:[489,5,1,""],node_mssp_start:[489,5,1,""],node_start:[489,5,1,""],node_view_and_apply_settings:[489,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[489,3,1,""],ask_choice:[489,3,1,""],ask_continue:[489,3,1,""],ask_input:[489,3,1,""],ask_node:[489,3,1,""],ask_yesno:[489,3,1,""],display:[489,3,1,""]},"evennia.server.deprecations":{check_errors:[490,5,1,""],check_warnings:[490,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[491,1,1,""],MsgLauncher2Portal:[491,1,1,""],MsgStatus:[491,1,1,""],check_database:[491,5,1,""],check_main_evennia_dependencies:[491,5,1,""],collectstatic:[491,5,1,""],create_game_directory:[491,5,1,""],create_secret_key:[491,5,1,""],create_settings_file:[491,5,1,""],create_superuser:[491,5,1,""],del_pid:[491,5,1,""],error_check_python_modules:[491,5,1,""],evennia_version:[491,5,1,""],get_pid:[491,5,1,""],getenv:[491,5,1,""],init_game_directory:[491,5,1,""],kill:[491,5,1,""],list_settings:[491,5,1,""],main:[491,5,1,""],query_info:[491,5,1,""],query_status:[491,5,1,""],reboot_evennia:[491,5,1,""],reload_evennia:[491,5,1,""],run_connect_wizard:[491,5,1,""],run_custom_commands:[491,5,1,""],run_dummyrunner:[491,5,1,""],run_menu:[491,5,1,""],send_instruction:[491,5,1,""],set_gamedir:[491,5,1,""],show_version_info:[491,5,1,""],start_evennia:[491,5,1,""],start_only_server:[491,5,1,""],start_portal_interactive:[491,5,1,""],start_server_interactive:[491,5,1,""],stop_evennia:[491,5,1,""],stop_server_only:[491,5,1,""],tail_log_files:[491,5,1,""],wait_for_status:[491,5,1,""],wait_for_status_reply:[491,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[491,3,1,""],receive_status_from_portal:[491,3,1,""],wait_for_status:[491,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[491,4,1,""],arguments:[491,4,1,""],commandName:[491,4,1,""],errors:[491,4,1,""],key:[491,4,1,""],response:[491,4,1,""],reverseErrors:[491,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[491,4,1,""],arguments:[491,4,1,""],commandName:[491,4,1,""],errors:[491,4,1,""],key:[491,4,1,""],response:[491,4,1,""],reverseErrors:[491,4,1,""]},"evennia.server.game_index_client":{client:[493,0,0,"-"],service:[494,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[493,1,1,""],QuietHTTP11ClientFactory:[493,1,1,""],SimpleResponseReceiver:[493,1,1,""],StringProducer:[493,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[493,3,1,""],handle_egd_response:[493,3,1,""],send_game_details:[493,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[493,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[493,3,1,""],connectionLost:[493,3,1,""],dataReceived:[493,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[493,3,1,""],pauseProducing:[493,3,1,""],startProducing:[493,3,1,""],stopProducing:[493,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[494,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[494,3,1,""],name:[494,4,1,""],startService:[494,3,1,""],stopService:[494,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[495,5,1,""],collectstatic:[495,5,1,""],create_objects:[495,5,1,""],handle_setup:[495,5,1,""],reset_server:[495,5,1,""]},"evennia.server.inputfuncs":{"default":[496,5,1,""],bot_data_in:[496,5,1,""],client_gui:[496,5,1,""],client_options:[496,5,1,""],echo:[496,5,1,""],external_discord_hello:[496,5,1,""],get_client_options:[496,5,1,""],get_inputfuncs:[496,5,1,""],get_value:[496,5,1,""],hello:[496,5,1,""],login:[496,5,1,""],monitor:[496,5,1,""],monitored:[496,5,1,""],msdp_list:[496,5,1,""],msdp_report:[496,5,1,""],msdp_send:[496,5,1,""],msdp_unreport:[496,5,1,""],repeat:[496,5,1,""],supports_set:[496,5,1,""],text:[496,5,1,""],unmonitor:[496,5,1,""],unrepeat:[496,5,1,""],webclient_options:[496,5,1,""]},"evennia.server.manager":{ServerConfigManager:[497,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[497,3,1,""]},"evennia.server.models":{ServerConfig:[498,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[498,2,1,""],MultipleObjectsReturned:[498,2,1,""],db_key:[498,4,1,""],db_value:[498,4,1,""],id:[498,4,1,""],key:[498,3,1,""],objects:[498,4,1,""],path:[498,4,1,""],store:[498,3,1,""],typename:[498,4,1,""],value:[498,3,1,""]},"evennia.server.portal":{amp:[500,0,0,"-"],amp_server:[501,0,0,"-"],grapevine:[502,0,0,"-"],irc:[503,0,0,"-"],mccp:[504,0,0,"-"],mssp:[505,0,0,"-"],mxp:[506,0,0,"-"],naws:[507,0,0,"-"],portal:[508,0,0,"-"],portalsessionhandler:[509,0,0,"-"],rss:[510,0,0,"-"],ssh:[511,0,0,"-"],ssl:[512,0,0,"-"],suppress_ga:[513,0,0,"-"],telnet:[514,0,0,"-"],telnet_oob:[515,0,0,"-"],telnet_ssl:[516,0,0,"-"],tests:[517,0,0,"-"],ttype:[518,0,0,"-"],webclient:[519,0,0,"-"],webclient_ajax:[520,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[500,1,1,""],AdminPortal2Server:[500,1,1,""],AdminServer2Portal:[500,1,1,""],Compressed:[500,1,1,""],FunctionCall:[500,1,1,""],MsgLauncher2Portal:[500,1,1,""],MsgPortal2Server:[500,1,1,""],MsgServer2Portal:[500,1,1,""],MsgStatus:[500,1,1,""],dumps:[500,5,1,""],loads:[500,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[500,3,1,""],broadcast:[500,3,1,""],connectionLost:[500,3,1,""],connectionMade:[500,3,1,""],dataReceived:[500,3,1,""],data_in:[500,3,1,""],errback:[500,3,1,""],makeConnection:[500,3,1,""],receive_functioncall:[500,3,1,""],send_FunctionCall:[500,3,1,""],stringReceived:[500,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[500,4,1,""],arguments:[500,4,1,""],commandName:[500,4,1,""],errors:[500,4,1,""],key:[500,4,1,""],response:[500,4,1,""],reverseErrors:[500,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[500,4,1,""],arguments:[500,4,1,""],commandName:[500,4,1,""],errors:[500,4,1,""],key:[500,4,1,""],response:[500,4,1,""],reverseErrors:[500,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[500,3,1,""],fromString:[500,3,1,""],toBox:[500,3,1,""],toString:[500,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[500,4,1,""],arguments:[500,4,1,""],commandName:[500,4,1,""],errors:[500,4,1,""],key:[500,4,1,""],response:[500,4,1,""],reverseErrors:[500,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[500,4,1,""],arguments:[500,4,1,""],commandName:[500,4,1,""],errors:[500,4,1,""],key:[500,4,1,""],response:[500,4,1,""],reverseErrors:[500,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[500,4,1,""],arguments:[500,4,1,""],commandName:[500,4,1,""],errors:[500,4,1,""],key:[500,4,1,""],response:[500,4,1,""],reverseErrors:[500,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[500,4,1,""],arguments:[500,4,1,""],commandName:[500,4,1,""],errors:[500,4,1,""],key:[500,4,1,""],response:[500,4,1,""],reverseErrors:[500,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[500,4,1,""],arguments:[500,4,1,""],commandName:[500,4,1,""],errors:[500,4,1,""],key:[500,4,1,""],response:[500,4,1,""],reverseErrors:[500,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[501,1,1,""],AMPServerProtocol:[501,1,1,""],getenv:[501,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[501,3,1,""],buildProtocol:[501,3,1,""],logPrefix:[501,3,1,""],noisy:[501,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[501,3,1,""],data_to_server:[501,3,1,""],get_status:[501,3,1,""],portal_receive_adminserver2portal:[501,3,1,""],portal_receive_launcher2portal:[501,3,1,""],portal_receive_server2portal:[501,3,1,""],portal_receive_status:[501,3,1,""],send_AdminPortal2Server:[501,3,1,""],send_MsgPortal2Server:[501,3,1,""],send_Status2Launcher:[501,3,1,""],start_server:[501,3,1,""],stop_server:[501,3,1,""],wait_for_disconnect:[501,3,1,""],wait_for_server_connect:[501,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[502,1,1,""],RestartingWebsocketServerFactory:[502,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[502,3,1,""],at_login:[502,3,1,""],data_in:[502,3,1,""],disconnect:[502,3,1,""],onClose:[502,3,1,""],onMessage:[502,3,1,""],onOpen:[502,3,1,""],send_authenticate:[502,3,1,""],send_channel:[502,3,1,""],send_default:[502,3,1,""],send_heartbeat:[502,3,1,""],send_subscribe:[502,3,1,""],send_unsubscribe:[502,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[502,3,1,""],buildProtocol:[502,3,1,""],clientConnectionFailed:[502,3,1,""],clientConnectionLost:[502,3,1,""],factor:[502,4,1,""],initialDelay:[502,4,1,""],maxDelay:[502,4,1,""],reconnect:[502,3,1,""],start:[502,3,1,""],startedConnecting:[502,3,1,""]},"evennia.server.portal.irc":{IRCBot:[503,1,1,""],IRCBotFactory:[503,1,1,""],parse_ansi_to_irc:[503,5,1,""],parse_irc_to_ansi:[503,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[503,3,1,""],at_login:[503,3,1,""],channel:[503,4,1,""],data_in:[503,3,1,""],disconnect:[503,3,1,""],factory:[503,4,1,""],get_nicklist:[503,3,1,""],irc_RPL_ENDOFNAMES:[503,3,1,""],irc_RPL_NAMREPLY:[503,3,1,""],lineRate:[503,4,1,""],logger:[503,4,1,""],nickname:[503,4,1,""],pong:[503,3,1,""],privmsg:[503,3,1,""],send_channel:[503,3,1,""],send_default:[503,3,1,""],send_ping:[503,3,1,""],send_privmsg:[503,3,1,""],send_reconnect:[503,3,1,""],send_request_nicklist:[503,3,1,""],signedOn:[503,3,1,""],sourceURL:[503,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[503,3,1,""],buildProtocol:[503,3,1,""],clientConnectionFailed:[503,3,1,""],clientConnectionLost:[503,3,1,""],factor:[503,4,1,""],initialDelay:[503,4,1,""],maxDelay:[503,4,1,""],reconnect:[503,3,1,""],start:[503,3,1,""],startedConnecting:[503,3,1,""]},"evennia.server.portal.mccp":{Mccp:[504,1,1,""],mccp_compress:[504,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[504,3,1,""],do_mccp:[504,3,1,""],no_mccp:[504,3,1,""]},"evennia.server.portal.mssp":{Mssp:[505,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[505,3,1,""],do_mssp:[505,3,1,""],get_player_count:[505,3,1,""],get_uptime:[505,3,1,""],no_mssp:[505,3,1,""]},"evennia.server.portal.mxp":{Mxp:[506,1,1,""],mxp_parse:[506,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[506,3,1,""],do_mxp:[506,3,1,""],no_mxp:[506,3,1,""]},"evennia.server.portal.naws":{Naws:[507,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[507,3,1,""],do_naws:[507,3,1,""],negotiate_sizes:[507,3,1,""],no_naws:[507,3,1,""]},"evennia.server.portal.portal":{Portal:[508,1,1,""],Websocket:[508,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[508,3,1,""],get_info_dict:[508,3,1,""],shutdown:[508,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[509,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[509,3,1,""],announce_all:[509,3,1,""],at_server_connection:[509,3,1,""],connect:[509,3,1,""],count_loggedin:[509,3,1,""],data_in:[509,3,1,""],data_out:[509,3,1,""],disconnect:[509,3,1,""],disconnect_all:[509,3,1,""],generate_sessid:[509,3,1,""],server_connect:[509,3,1,""],server_disconnect:[509,3,1,""],server_disconnect_all:[509,3,1,""],server_logged_in:[509,3,1,""],server_session_sync:[509,3,1,""],sessions_from_csessid:[509,3,1,""],sync:[509,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[510,1,1,""],RSSReader:[510,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[510,3,1,""],start:[510,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[510,3,1,""],data_in:[510,3,1,""],disconnect:[510,3,1,""],get_new:[510,3,1,""],update:[510,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[511,1,1,""],ExtraInfoAuthServer:[511,1,1,""],PassAvatarIdTerminalRealm:[511,1,1,""],SSHServerFactory:[511,1,1,""],SshProtocol:[511,1,1,""],TerminalSessionTransport_getPeer:[511,1,1,""],getKeyPair:[511,5,1,""],makeFactory:[511,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[511,3,1,""],credentialInterfaces:[511,4,1,""],noisy:[511,4,1,""],requestAvatarId:[511,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[511,3,1,""],noisy:[511,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[511,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[511,3,1,""],noisy:[511,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[511,3,1,""],at_login:[511,3,1,""],connectionLost:[511,3,1,""],connectionMade:[511,3,1,""],data_out:[511,3,1,""],disconnect:[511,3,1,""],getClientAddress:[511,3,1,""],handle_EOF:[511,3,1,""],handle_FF:[511,3,1,""],handle_INT:[511,3,1,""],handle_QUIT:[511,3,1,""],lineReceived:[511,3,1,""],noisy:[511,4,1,""],sendLine:[511,3,1,""],send_default:[511,3,1,""],send_prompt:[511,3,1,""],send_text:[511,3,1,""],terminalSize:[511,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[511,3,1,""],noisy:[511,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[512,1,1,""],getSSLContext:[512,5,1,""],verify_SSL_key_and_cert:[512,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[512,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[513,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[513,3,1,""],will_suppress_ga:[513,3,1,""],wont_suppress_ga:[513,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[514,1,1,""],TelnetServerFactory:[514,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[514,3,1,""],applicationDataReceived:[514,3,1,""],at_login:[514,3,1,""],connectionLost:[514,3,1,""],connectionMade:[514,3,1,""],dataReceived:[514,3,1,""],data_in:[514,3,1,""],data_out:[514,3,1,""],disableLocal:[514,3,1,""],disableRemote:[514,3,1,""],disconnect:[514,3,1,""],enableLocal:[514,3,1,""],enableRemote:[514,3,1,""],handshake_done:[514,3,1,""],sendLine:[514,3,1,""],send_default:[514,3,1,""],send_prompt:[514,3,1,""],send_text:[514,3,1,""],toggle_nop_keepalive:[514,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[514,3,1,""],noisy:[514,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[515,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[515,3,1,""],data_out:[515,3,1,""],decode_gmcp:[515,3,1,""],decode_msdp:[515,3,1,""],do_gmcp:[515,3,1,""],do_msdp:[515,3,1,""],encode_gmcp:[515,3,1,""],encode_msdp:[515,3,1,""],no_gmcp:[515,3,1,""],no_msdp:[515,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[516,1,1,""],getSSLContext:[516,5,1,""],verify_or_create_SSL_key_and_cert:[516,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[516,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[517,1,1,""],TestIRC:[517,1,1,""],TestTelnet:[517,1,1,""],TestWebSocket:[517,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[517,3,1,""],test_amp_in:[517,3,1,""],test_amp_out:[517,3,1,""],test_large_msg:[517,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[517,3,1,""],test_colors:[517,3,1,""],test_identity:[517,3,1,""],test_italic:[517,3,1,""],test_plain_ansi:[517,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[517,3,1,""],test_mudlet_ttype:[517,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[517,3,1,""],tearDown:[517,3,1,""],test_data_in:[517,3,1,""],test_data_out:[517,3,1,""]},"evennia.server.portal.ttype":{Ttype:[518,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[518,3,1,""],will_ttype:[518,3,1,""],wont_ttype:[518,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[519,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[519,3,1,""],at_login:[519,3,1,""],data_in:[519,3,1,""],disconnect:[519,3,1,""],get_client_session:[519,3,1,""],nonce:[519,4,1,""],onClose:[519,3,1,""],onMessage:[519,3,1,""],onOpen:[519,3,1,""],sendLine:[519,3,1,""],send_default:[519,3,1,""],send_prompt:[519,3,1,""],send_text:[519,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[520,1,1,""],AjaxWebClientSession:[520,1,1,""],LazyEncoder:[520,1,1,""],jsonify:[520,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[520,3,1,""],allowedMethods:[520,4,1,""],at_login:[520,3,1,""],client_disconnect:[520,3,1,""],get_browserstr:[520,3,1,""],get_client_sessid:[520,3,1,""],isLeaf:[520,4,1,""],lineSend:[520,3,1,""],mode_close:[520,3,1,""],mode_init:[520,3,1,""],mode_input:[520,3,1,""],mode_keepalive:[520,3,1,""],mode_receive:[520,3,1,""],render_POST:[520,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[520,3,1,""],at_login:[520,3,1,""],data_in:[520,3,1,""],data_out:[520,3,1,""],disconnect:[520,3,1,""],get_client_session:[520,3,1,""],send_default:[520,3,1,""],send_prompt:[520,3,1,""],send_text:[520,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[520,3,1,""]},"evennia.server.profiling":{dummyrunner:[522,0,0,"-"],dummyrunner_settings:[523,0,0,"-"],memplot:[524,0,0,"-"],settings_mixin:[525,0,0,"-"],test_queries:[526,0,0,"-"],tests:[527,0,0,"-"],timetrace:[528,0,0,"-"]},"evennia.server.profiling.dummyrunner":{CmdDummyRunnerEchoResponse:[522,1,1,""],DummyClient:[522,1,1,""],DummyFactory:[522,1,1,""],DummyRunnerCmdSet:[522,1,1,""],gidcounter:[522,5,1,""],idcounter:[522,5,1,""],makeiter:[522,5,1,""],start_all_dummy_clients:[522,5,1,""]},"evennia.server.profiling.dummyrunner.CmdDummyRunnerEchoResponse":{aliases:[522,4,1,""],func:[522,3,1,""],help_category:[522,4,1,""],key:[522,4,1,""],lock_storage:[522,4,1,""],search_index_entry:[522,4,1,""]},"evennia.server.profiling.dummyrunner.DummyClient":{connectionLost:[522,3,1,""],connectionMade:[522,3,1,""],counter:[522,3,1,""],dataReceived:[522,3,1,""],error:[522,3,1,""],logout:[522,3,1,""],report:[522,3,1,""],step:[522,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[522,3,1,""],initialDelay:[522,4,1,""],maxDelay:[522,4,1,""],noisy:[522,4,1,""],protocol:[522,4,1,""]},"evennia.server.profiling.dummyrunner.DummyRunnerCmdSet":{at_cmdset_creation:[522,3,1,""],path:[522,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[523,5,1,""],c_creates_obj:[523,5,1,""],c_digs:[523,5,1,""],c_examines:[523,5,1,""],c_help:[523,5,1,""],c_idles:[523,5,1,""],c_login:[523,5,1,""],c_login_nodig:[523,5,1,""],c_logout:[523,5,1,""],c_looks:[523,5,1,""],c_measure_lag:[523,5,1,""],c_moves:[523,5,1,""],c_moves_n:[523,5,1,""],c_moves_s:[523,5,1,""],c_socialize:[523,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[524,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[524,2,1,""],MultipleObjectsReturned:[524,2,1,""],at_repeat:[524,3,1,""],at_script_creation:[524,3,1,""],path:[524,4,1,""],typename:[524,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[526,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[527,1,1,""],TestMemPlot:[527,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[527,3,1,""],perception_method_tests:[527,3,1,""],setUp:[527,3,1,""],test_c_creates_button:[527,3,1,""],test_c_creates_obj:[527,3,1,""],test_c_digs:[527,3,1,""],test_c_examines:[527,3,1,""],test_c_help:[527,3,1,""],test_c_login:[527,3,1,""],test_c_login_no_dig:[527,3,1,""],test_c_logout:[527,3,1,""],test_c_looks:[527,3,1,""],test_c_move_n:[527,3,1,""],test_c_move_s:[527,3,1,""],test_c_moves:[527,3,1,""],test_c_socialize:[527,3,1,""],test_idles:[527,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[527,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[528,5,1,""]},"evennia.server.server":{Evennia:[529,1,1,""]},"evennia.server.server.Evennia":{__init__:[529,3,1,""],at_post_portal_sync:[529,3,1,""],at_server_cold_start:[529,3,1,""],at_server_cold_stop:[529,3,1,""],at_server_init:[529,3,1,""],at_server_reload_start:[529,3,1,""],at_server_reload_stop:[529,3,1,""],at_server_start:[529,3,1,""],at_server_stop:[529,3,1,""],create_default_channels:[529,3,1,""],get_info_dict:[529,3,1,""],run_init_hooks:[529,3,1,""],run_initial_setup:[529,3,1,""],shutdown:[529,3,1,""],sqlite3_prep:[529,3,1,""],update_defaults:[529,3,1,""]},"evennia.server.serversession":{ServerSession:[530,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[530,3,1,""],access:[530,3,1,""],at_cmdset_get:[530,3,1,""],at_disconnect:[530,3,1,""],at_login:[530,3,1,""],at_sync:[530,3,1,""],attributes:[530,4,1,""],cmdset_storage:[530,3,1,""],data_in:[530,3,1,""],data_out:[530,3,1,""],db:[530,3,1,""],execute_cmd:[530,3,1,""],get_account:[530,3,1,""],get_character:[530,3,1,""],get_client_size:[530,3,1,""],get_display_name:[530,3,1,""],get_puppet:[530,3,1,""],get_puppet_or_account:[530,3,1,""],id:[530,3,1,""],log:[530,3,1,""],msg:[530,3,1,""],nattributes:[530,4,1,""],ndb:[530,3,1,""],ndb_del:[530,3,1,""],ndb_get:[530,3,1,""],ndb_set:[530,3,1,""],update_flags:[530,3,1,""],update_session_counters:[530,3,1,""]},"evennia.server.session":{Session:[531,1,1,""]},"evennia.server.session.Session":{at_sync:[531,3,1,""],data_in:[531,3,1,""],data_out:[531,3,1,""],disconnect:[531,3,1,""],get_sync_data:[531,3,1,""],init_session:[531,3,1,""],load_sync_data:[531,3,1,""]},"evennia.server.sessionhandler":{DummySession:[532,1,1,""],ServerSessionHandler:[532,1,1,""],SessionHandler:[532,1,1,""],delayed_import:[532,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[532,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[532,3,1,""],account_count:[532,3,1,""],all_connected_accounts:[532,3,1,""],all_sessions_portal_sync:[532,3,1,""],announce_all:[532,3,1,""],call_inputfuncs:[532,3,1,""],data_in:[532,3,1,""],data_out:[532,3,1,""],disconnect:[532,3,1,""],disconnect_all_sessions:[532,3,1,""],disconnect_duplicate_sessions:[532,3,1,""],get_inputfuncs:[532,3,1,""],login:[532,3,1,""],portal_connect:[532,3,1,""],portal_disconnect:[532,3,1,""],portal_disconnect_all:[532,3,1,""],portal_reset_server:[532,3,1,""],portal_restart_server:[532,3,1,""],portal_session_sync:[532,3,1,""],portal_sessions_sync:[532,3,1,""],portal_shutdown:[532,3,1,""],session_from_account:[532,3,1,""],session_from_sessid:[532,3,1,""],session_portal_partial_sync:[532,3,1,""],session_portal_sync:[532,3,1,""],sessions_from_account:[532,3,1,""],sessions_from_character:[532,3,1,""],sessions_from_csessid:[532,3,1,""],sessions_from_puppet:[532,3,1,""],start_bot_session:[532,3,1,""],validate_sessions:[532,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[532,3,1,""],get:[532,3,1,""],get_all_sync_data:[532,3,1,""],get_sessions:[532,3,1,""]},"evennia.server.throttle":{Throttle:[534,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[534,3,1,""],check:[534,3,1,""],error_msg:[534,4,1,""],get:[534,3,1,""],get_cache_key:[534,3,1,""],record_ip:[534,3,1,""],remove:[534,3,1,""],touch:[534,3,1,""],unrecord_ip:[534,3,1,""],update:[534,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[535,1,1,""],EvenniaUsernameAvailabilityValidator:[535,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[535,3,1,""],get_help_text:[535,3,1,""],validate:[535,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[536,1,1,""],EvenniaReverseProxyResource:[536,1,1,""],HTTPChannelWithXForwardedFor:[536,1,1,""],LockableThreadPool:[536,1,1,""],PrivateStaticRoot:[536,1,1,""],WSGIWebServer:[536,1,1,""],Website:[536,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[536,3,1,""],empty_threadpool:[536,3,1,""],getChild:[536,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[536,3,1,""],render:[536,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[536,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[536,3,1,""],callInThread:[536,3,1,""],lock:[536,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[536,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[536,3,1,""],startService:[536,3,1,""],stopService:[536,3,1,""]},"evennia.server.webserver.Website":{log:[536,3,1,""],logPrefix:[536,3,1,""],noisy:[536,4,1,""]},"evennia.typeclasses":{attributes:[539,0,0,"-"],managers:[540,0,0,"-"],models:[541,0,0,"-"],tags:[542,0,0,"-"]},"evennia.typeclasses.attributes":{Attribute:[539,1,1,""],AttributeHandler:[539,1,1,""],AttributeProperty:[539,1,1,""],DbHolder:[539,1,1,""],IAttribute:[539,1,1,""],IAttributeBackend:[539,1,1,""],InMemoryAttribute:[539,1,1,""],InMemoryAttributeBackend:[539,1,1,""],ModelAttributeBackend:[539,1,1,""],NAttributeProperty:[539,1,1,""],NickHandler:[539,1,1,""],NickTemplateInvalid:[539,2,1,""],initialize_nick_templates:[539,5,1,""],parse_nick_template:[539,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[539,2,1,""],MultipleObjectsReturned:[539,2,1,""],accountdb_set:[539,4,1,""],attrtype:[539,3,1,""],category:[539,3,1,""],channeldb_set:[539,4,1,""],date_created:[539,3,1,""],db_attrtype:[539,4,1,""],db_category:[539,4,1,""],db_date_created:[539,4,1,""],db_key:[539,4,1,""],db_lock_storage:[539,4,1,""],db_model:[539,4,1,""],db_strvalue:[539,4,1,""],db_value:[539,4,1,""],get_next_by_db_date_created:[539,3,1,""],get_previous_by_db_date_created:[539,3,1,""],id:[539,4,1,""],key:[539,3,1,""],lock_storage:[539,3,1,""],model:[539,3,1,""],objectdb_set:[539,4,1,""],path:[539,4,1,""],scriptdb_set:[539,4,1,""],strvalue:[539,3,1,""],typename:[539,4,1,""],value:[539,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[539,3,1,""],add:[539,3,1,""],all:[539,3,1,""],batch_add:[539,3,1,""],clear:[539,3,1,""],get:[539,3,1,""],has:[539,3,1,""],remove:[539,3,1,""],reset_cache:[539,3,1,""]},"evennia.typeclasses.attributes.AttributeProperty":{__init__:[539,3,1,""],at_get:[539,3,1,""],at_set:[539,3,1,""],attrhandler_name:[539,4,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[539,3,1,""],all:[539,3,1,""],get_all:[539,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[539,3,1,""],attrtype:[539,3,1,""],category:[539,3,1,""],date_created:[539,3,1,""],key:[539,3,1,""],lock_storage:[539,3,1,""],locks:[539,4,1,""],model:[539,3,1,""],strvalue:[539,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[539,3,1,""],batch_add:[539,3,1,""],clear_attributes:[539,3,1,""],create_attribute:[539,3,1,""],delete_attribute:[539,3,1,""],do_batch_delete:[539,3,1,""],do_batch_finish:[539,3,1,""],do_batch_update_attribute:[539,3,1,""],do_create_attribute:[539,3,1,""],do_delete_attribute:[539,3,1,""],do_update_attribute:[539,3,1,""],get:[539,3,1,""],get_all_attributes:[539,3,1,""],query_all:[539,3,1,""],query_category:[539,3,1,""],query_key:[539,3,1,""],reset_cache:[539,3,1,""],update_attribute:[539,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[539,3,1,""],value:[539,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[539,3,1,""],do_batch_finish:[539,3,1,""],do_batch_update_attribute:[539,3,1,""],do_create_attribute:[539,3,1,""],do_delete_attribute:[539,3,1,""],do_update_attribute:[539,3,1,""],query_all:[539,3,1,""],query_category:[539,3,1,""],query_key:[539,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[539,3,1,""],do_batch_finish:[539,3,1,""],do_batch_update_attribute:[539,3,1,""],do_create_attribute:[539,3,1,""],do_delete_attribute:[539,3,1,""],do_update_attribute:[539,3,1,""],query_all:[539,3,1,""],query_category:[539,3,1,""],query_key:[539,3,1,""]},"evennia.typeclasses.attributes.NAttributeProperty":{attrhandler_name:[539,4,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[539,3,1,""],add:[539,3,1,""],get:[539,3,1,""],has:[539,3,1,""],nickreplace:[539,3,1,""],remove:[539,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[540,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[540,3,1,""],dbref:[540,3,1,""],dbref_search:[540,3,1,""],get_alias:[540,3,1,""],get_attribute:[540,3,1,""],get_by_alias:[540,3,1,""],get_by_attribute:[540,3,1,""],get_by_nick:[540,3,1,""],get_by_permission:[540,3,1,""],get_by_tag:[540,3,1,""],get_dbref_range:[540,3,1,""],get_id:[540,3,1,""],get_nick:[540,3,1,""],get_permission:[540,3,1,""],get_tag:[540,3,1,""],get_typeclass_totals:[540,3,1,""],object_totals:[540,3,1,""],search_dbref:[540,3,1,""],typeclass_search:[540,3,1,""]},"evennia.typeclasses.models":{TypedObject:[541,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[541,3,1,""],Meta:[541,1,1,""],__init__:[541,3,1,""],access:[541,3,1,""],aliases:[541,4,1,""],at_idmapper_flush:[541,3,1,""],at_init:[541,3,1,""],at_rename:[541,3,1,""],attributes:[541,4,1,""],check_permstring:[541,3,1,""],date_created:[541,3,1,""],db:[541,3,1,""],db_attributes:[541,4,1,""],db_date_created:[541,4,1,""],db_key:[541,4,1,""],db_lock_storage:[541,4,1,""],db_tags:[541,4,1,""],db_typeclass_path:[541,4,1,""],dbid:[541,3,1,""],dbref:[541,3,1,""],get_absolute_url:[541,3,1,""],get_display_name:[541,3,1,""],get_extra_info:[541,3,1,""],get_next_by_db_date_created:[541,3,1,""],get_previous_by_db_date_created:[541,3,1,""],init_evennia_properties:[541,3,1,""],is_typeclass:[541,3,1,""],key:[541,3,1,""],lock_storage:[541,3,1,""],locks:[541,4,1,""],name:[541,3,1,""],nattributes:[541,4,1,""],ndb:[541,3,1,""],objects:[541,4,1,""],path:[541,4,1,""],permissions:[541,4,1,""],search:[541,3,1,""],set_class_from_typeclass:[541,3,1,""],swap_typeclass:[541,3,1,""],tags:[541,4,1,""],typeclass_path:[541,3,1,""],typename:[541,4,1,""],web_get_admin_url:[541,3,1,""],web_get_create_url:[541,3,1,""],web_get_delete_url:[541,3,1,""],web_get_detail_url:[541,3,1,""],web_get_puppet_url:[541,3,1,""],web_get_update_url:[541,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[541,4,1,""],ordering:[541,4,1,""],verbose_name:[541,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[542,1,1,""],AliasProperty:[542,1,1,""],PermissionHandler:[542,1,1,""],PermissionProperty:[542,1,1,""],Tag:[542,1,1,""],TagHandler:[542,1,1,""],TagProperty:[542,1,1,""]},"evennia.typeclasses.tags.AliasProperty":{taghandler_name:[542,4,1,""]},"evennia.typeclasses.tags.PermissionHandler":{check:[542,3,1,""]},"evennia.typeclasses.tags.PermissionProperty":{taghandler_name:[542,4,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[542,2,1,""],MultipleObjectsReturned:[542,2,1,""],accountdb_set:[542,4,1,""],channeldb_set:[542,4,1,""],db_category:[542,4,1,""],db_data:[542,4,1,""],db_key:[542,4,1,""],db_model:[542,4,1,""],db_tagtype:[542,4,1,""],helpentry_set:[542,4,1,""],id:[542,4,1,""],msg_set:[542,4,1,""],objectdb_set:[542,4,1,""],objects:[542,4,1,""],scriptdb_set:[542,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[542,3,1,""],add:[542,3,1,""],all:[542,3,1,""],batch_add:[542,3,1,""],clear:[542,3,1,""],get:[542,3,1,""],has:[542,3,1,""],remove:[542,3,1,""],reset_cache:[542,3,1,""]},"evennia.typeclasses.tags.TagProperty":{__init__:[542,3,1,""],taghandler_name:[542,4,1,""]},"evennia.utils":{ansi:[544,0,0,"-"],batchprocessors:[545,0,0,"-"],containers:[546,0,0,"-"],create:[547,0,0,"-"],dbserialize:[548,0,0,"-"],eveditor:[549,0,0,"-"],evform:[550,0,0,"-"],evmenu:[551,0,0,"-"],evmore:[552,0,0,"-"],evtable:[553,0,0,"-"],funcparser:[554,0,0,"-"],gametime:[555,0,0,"-"],idmapper:[556,0,0,"-"],logger:[560,0,0,"-"],optionclasses:[561,0,0,"-"],optionhandler:[562,0,0,"-"],picklefield:[563,0,0,"-"],search:[564,0,0,"-"],test_resources:[565,0,0,"-"],text2html:[566,0,0,"-"],utils:[567,0,0,"-"],validatorfuncs:[568,0,0,"-"],verb_conjugation:[569,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[544,1,1,""],ANSIParser:[544,1,1,""],ANSIString:[544,1,1,""],parse_ansi:[544,5,1,""],raw:[544,5,1,""],strip_ansi:[544,5,1,""],strip_mxp:[544,5,1,""],strip_raw_ansi:[544,5,1,""],strip_unsafe_tokens:[544,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[544,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[544,4,1,""],ansi_map:[544,4,1,""],ansi_map_dict:[544,4,1,""],ansi_re:[544,4,1,""],ansi_regex:[544,4,1,""],ansi_sub:[544,4,1,""],ansi_xterm256_bright_bg_map:[544,4,1,""],ansi_xterm256_bright_bg_map_dict:[544,4,1,""],brightbg_sub:[544,4,1,""],mxp_re:[544,4,1,""],mxp_sub:[544,4,1,""],mxp_url_re:[544,4,1,""],mxp_url_sub:[544,4,1,""],parse_ansi:[544,3,1,""],strip_mxp:[544,3,1,""],strip_raw_codes:[544,3,1,""],strip_unsafe_tokens:[544,3,1,""],sub_ansi:[544,3,1,""],sub_brightbg:[544,3,1,""],sub_xterm256:[544,3,1,""],unsafe_tokens:[544,4,1,""],xterm256_bg:[544,4,1,""],xterm256_bg_sub:[544,4,1,""],xterm256_fg:[544,4,1,""],xterm256_fg_sub:[544,4,1,""],xterm256_gbg:[544,4,1,""],xterm256_gbg_sub:[544,4,1,""],xterm256_gfg:[544,4,1,""],xterm256_gfg_sub:[544,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[544,3,1,""],capitalize:[544,3,1,""],center:[544,3,1,""],clean:[544,3,1,""],count:[544,3,1,""],decode:[544,3,1,""],encode:[544,3,1,""],endswith:[544,3,1,""],expandtabs:[544,3,1,""],find:[544,3,1,""],format:[544,3,1,""],index:[544,3,1,""],isalnum:[544,3,1,""],isalpha:[544,3,1,""],isdigit:[544,3,1,""],islower:[544,3,1,""],isspace:[544,3,1,""],istitle:[544,3,1,""],isupper:[544,3,1,""],join:[544,3,1,""],ljust:[544,3,1,""],lower:[544,3,1,""],lstrip:[544,3,1,""],partition:[544,3,1,""],raw:[544,3,1,""],re_format:[544,4,1,""],replace:[544,3,1,""],rfind:[544,3,1,""],rindex:[544,3,1,""],rjust:[544,3,1,""],rsplit:[544,3,1,""],rstrip:[544,3,1,""],split:[544,3,1,""],startswith:[544,3,1,""],strip:[544,3,1,""],swapcase:[544,3,1,""],translate:[544,3,1,""],upper:[544,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[545,1,1,""],BatchCommandProcessor:[545,1,1,""],read_batchfile:[545,5,1,""],tb_filename:[545,5,1,""],tb_iter:[545,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[545,3,1,""],parse_file:[545,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[545,3,1,""]},"evennia.utils.containers":{Container:[546,1,1,""],GlobalScriptContainer:[546,1,1,""],OptionContainer:[546,1,1,""]},"evennia.utils.containers.Container":{__init__:[546,3,1,""],all:[546,3,1,""],get:[546,3,1,""],load_data:[546,3,1,""],storage_modules:[546,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[546,3,1,""],all:[546,3,1,""],get:[546,3,1,""],load_data:[546,3,1,""],start:[546,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[546,4,1,""]},"evennia.utils.create":{create_account:[547,5,1,""],create_channel:[547,5,1,""],create_help_entry:[547,5,1,""],create_message:[547,5,1,""],create_object:[547,5,1,""],create_script:[547,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[548,5,1,""],dbunserialize:[548,5,1,""],do_pickle:[548,5,1,""],do_unpickle:[548,5,1,""],from_pickle:[548,5,1,""],to_pickle:[548,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[549,1,1,""],CmdEditorGroup:[549,1,1,""],CmdLineInput:[549,1,1,""],CmdSaveYesNo:[549,1,1,""],EvEditor:[549,1,1,""],EvEditorCmdSet:[549,1,1,""],SaveYesNoCmdSet:[549,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[549,4,1,""],editor:[549,4,1,""],help_category:[549,4,1,""],help_entry:[549,4,1,""],key:[549,4,1,""],lock_storage:[549,4,1,""],locks:[549,4,1,""],parse:[549,3,1,""],search_index_entry:[549,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[549,4,1,""],arg_regex:[549,4,1,""],func:[549,3,1,""],help_category:[549,4,1,""],key:[549,4,1,""],lock_storage:[549,4,1,""],search_index_entry:[549,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[549,4,1,""],func:[549,3,1,""],help_category:[549,4,1,""],key:[549,4,1,""],lock_storage:[549,4,1,""],search_index_entry:[549,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[549,4,1,""],func:[549,3,1,""],help_category:[549,4,1,""],help_cateogory:[549,4,1,""],key:[549,4,1,""],lock_storage:[549,4,1,""],locks:[549,4,1,""],search_index_entry:[549,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[549,3,1,""],decrease_indent:[549,3,1,""],deduce_indent:[549,3,1,""],display_buffer:[549,3,1,""],display_help:[549,3,1,""],get_buffer:[549,3,1,""],increase_indent:[549,3,1,""],load_buffer:[549,3,1,""],quit:[549,3,1,""],save_buffer:[549,3,1,""],swap_autoindent:[549,3,1,""],update_buffer:[549,3,1,""],update_undo:[549,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[549,3,1,""],key:[549,4,1,""],mergetype:[549,4,1,""],path:[549,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[549,3,1,""],key:[549,4,1,""],mergetype:[549,4,1,""],path:[549,4,1,""],priority:[549,4,1,""]},"evennia.utils.evform":{EvForm:[550,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[550,3,1,""],cell_options:[550,4,1,""],map:[550,3,1,""],reload:[550,3,1,""],table_options:[550,4,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[551,1,1,""],CmdGetInput:[551,1,1,""],CmdYesNoQuestion:[551,1,1,""],EvMenu:[551,1,1,""],EvMenuCmdSet:[551,1,1,""],EvMenuError:[551,2,1,""],EvMenuGotoAbortMessage:[551,2,1,""],InputCmdSet:[551,1,1,""],YesNoQuestionCmdSet:[551,1,1,""],ask_yes_no:[551,5,1,""],get_input:[551,5,1,""],list_node:[551,5,1,""],parse_menu_template:[551,5,1,""],template2menu:[551,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[551,4,1,""],auto_help_display_key:[551,4,1,""],func:[551,3,1,""],get_help:[551,3,1,""],help_category:[551,4,1,""],key:[551,4,1,""],lock_storage:[551,4,1,""],locks:[551,4,1,""],search_index_entry:[551,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[551,4,1,""],func:[551,3,1,""],help_category:[551,4,1,""],key:[551,4,1,""],lock_storage:[551,4,1,""],search_index_entry:[551,4,1,""]},"evennia.utils.evmenu.CmdYesNoQuestion":{aliases:[551,4,1,""],arg_regex:[551,4,1,""],func:[551,3,1,""],help_category:[551,4,1,""],key:[551,4,1,""],lock_storage:[551,4,1,""],search_index_entry:[551,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[551,3,1,""],__init__:[551,3,1,""],close_menu:[551,3,1,""],display_helptext:[551,3,1,""],display_nodetext:[551,3,1,""],helptext_formatter:[551,3,1,""],msg:[551,3,1,""],node_border_char:[551,4,1,""],node_formatter:[551,3,1,""],nodetext_formatter:[551,3,1,""],options_formatter:[551,3,1,""],parse_input:[551,3,1,""],print_debug_info:[551,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[551,3,1,""],key:[551,4,1,""],mergetype:[551,4,1,""],no_channels:[551,4,1,""],no_exits:[551,4,1,""],no_objs:[551,4,1,""],path:[551,4,1,""],priority:[551,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[551,3,1,""],key:[551,4,1,""],mergetype:[551,4,1,""],no_channels:[551,4,1,""],no_exits:[551,4,1,""],no_objs:[551,4,1,""],path:[551,4,1,""],priority:[551,4,1,""]},"evennia.utils.evmenu.YesNoQuestionCmdSet":{at_cmdset_creation:[551,3,1,""],key:[551,4,1,""],mergetype:[551,4,1,""],no_channels:[551,4,1,""],no_exits:[551,4,1,""],no_objs:[551,4,1,""],path:[551,4,1,""],priority:[551,4,1,""]},"evennia.utils.evmore":{CmdMore:[552,1,1,""],CmdMoreExit:[552,1,1,""],CmdSetMore:[552,1,1,""],EvMore:[552,1,1,""],msg:[552,5,1,""],queryset_maxsize:[552,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[552,4,1,""],auto_help:[552,4,1,""],func:[552,3,1,""],help_category:[552,4,1,""],key:[552,4,1,""],lock_storage:[552,4,1,""],search_index_entry:[552,4,1,""]},"evennia.utils.evmore.CmdMoreExit":{aliases:[552,4,1,""],func:[552,3,1,""],help_category:[552,4,1,""],key:[552,4,1,""],lock_storage:[552,4,1,""],search_index_entry:[552,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[552,3,1,""],key:[552,4,1,""],mergetype:[552,4,1,""],path:[552,4,1,""],priority:[552,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[552,3,1,""],display:[552,3,1,""],init_django_paginator:[552,3,1,""],init_evtable:[552,3,1,""],init_f_str:[552,3,1,""],init_iterable:[552,3,1,""],init_pages:[552,3,1,""],init_queryset:[552,3,1,""],init_str:[552,3,1,""],page_back:[552,3,1,""],page_end:[552,3,1,""],page_formatter:[552,3,1,""],page_next:[552,3,1,""],page_quit:[552,3,1,""],page_top:[552,3,1,""],paginator:[552,3,1,""],paginator_django:[552,3,1,""],paginator_index:[552,3,1,""],paginator_slice:[552,3,1,""],start:[552,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[553,1,1,""],EvCell:[553,1,1,""],EvColumn:[553,1,1,""],EvTable:[553,1,1,""],fill:[553,5,1,""],wrap:[553,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[553,3,1,""],get:[553,3,1,""],get_height:[553,3,1,""],get_min_height:[553,3,1,""],get_min_width:[553,3,1,""],get_width:[553,3,1,""],reformat:[553,3,1,""],replace_data:[553,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[553,3,1,""],add_rows:[553,3,1,""],reformat:[553,3,1,""],reformat_cell:[553,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[553,3,1,""],add_column:[553,3,1,""],add_header:[553,3,1,""],add_row:[553,3,1,""],get:[553,3,1,""],reformat:[553,3,1,""],reformat_column:[553,3,1,""]},"evennia.utils.funcparser":{FuncParser:[554,1,1,""],ParsingError:[554,2,1,""],funcparser_callable_add:[554,5,1,""],funcparser_callable_an:[554,5,1,""],funcparser_callable_center_justify:[554,5,1,""],funcparser_callable_choice:[554,5,1,""],funcparser_callable_clr:[554,5,1,""],funcparser_callable_conjugate:[554,5,1,""],funcparser_callable_crop:[554,5,1,""],funcparser_callable_div:[554,5,1,""],funcparser_callable_eval:[554,5,1,""],funcparser_callable_int2str:[554,5,1,""],funcparser_callable_justify:[554,5,1,""],funcparser_callable_left_justify:[554,5,1,""],funcparser_callable_mult:[554,5,1,""],funcparser_callable_pad:[554,5,1,""],funcparser_callable_pluralize:[554,5,1,""],funcparser_callable_pronoun:[554,5,1,""],funcparser_callable_pronoun_capitalize:[554,5,1,""],funcparser_callable_randint:[554,5,1,""],funcparser_callable_random:[554,5,1,""],funcparser_callable_right_justify:[554,5,1,""],funcparser_callable_round:[554,5,1,""],funcparser_callable_search:[554,5,1,""],funcparser_callable_search_list:[554,5,1,""],funcparser_callable_space:[554,5,1,""],funcparser_callable_sub:[554,5,1,""],funcparser_callable_toint:[554,5,1,""],funcparser_callable_you:[554,5,1,""],funcparser_callable_you_capitalize:[554,5,1,""]},"evennia.utils.funcparser.FuncParser":{__init__:[554,3,1,""],execute:[554,3,1,""],parse:[554,3,1,""],parse_to_any:[554,3,1,""],validate_callables:[554,3,1,""]},"evennia.utils.gametime":{TimeScript:[555,1,1,""],game_epoch:[555,5,1,""],gametime:[555,5,1,""],portal_uptime:[555,5,1,""],real_seconds_until:[555,5,1,""],reset_gametime:[555,5,1,""],runtime:[555,5,1,""],schedule:[555,5,1,""],server_epoch:[555,5,1,""],uptime:[555,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[555,2,1,""],MultipleObjectsReturned:[555,2,1,""],at_repeat:[555,3,1,""],at_script_creation:[555,3,1,""],path:[555,4,1,""],typename:[555,4,1,""]},"evennia.utils.idmapper":{manager:[557,0,0,"-"],models:[558,0,0,"-"],tests:[559,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[557,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[557,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[558,1,1,""],SharedMemoryModelBase:[558,1,1,""],WeakSharedMemoryModel:[558,1,1,""],WeakSharedMemoryModelBase:[558,1,1,""],cache_size:[558,5,1,""],conditional_flush:[558,5,1,""],flush_cache:[558,5,1,""],flush_cached_instance:[558,5,1,""],update_cached_instance:[558,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[558,3,1,""],Meta:[558,1,1,""],at_idmapper_flush:[558,3,1,""],cache_instance:[558,3,1,""],flush_cached_instance:[558,3,1,""],flush_from_cache:[558,3,1,""],flush_instance_cache:[558,3,1,""],get_all_cached_instances:[558,3,1,""],get_cached_instance:[558,3,1,""],objects:[558,4,1,""],path:[558,4,1,""],save:[558,3,1,""],typename:[558,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[558,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[558,1,1,""],path:[558,4,1,""],typename:[558,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[558,4,1,""]},"evennia.utils.idmapper.tests":{Article:[559,1,1,""],Category:[559,1,1,""],RegularArticle:[559,1,1,""],RegularCategory:[559,1,1,""],SharedMemorysTest:[559,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[559,2,1,""],MultipleObjectsReturned:[559,2,1,""],category2:[559,4,1,""],category2_id:[559,4,1,""],category:[559,4,1,""],category_id:[559,4,1,""],id:[559,4,1,""],name:[559,4,1,""],path:[559,4,1,""],typename:[559,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[559,2,1,""],MultipleObjectsReturned:[559,2,1,""],article_set:[559,4,1,""],id:[559,4,1,""],name:[559,4,1,""],path:[559,4,1,""],regulararticle_set:[559,4,1,""],typename:[559,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[559,2,1,""],MultipleObjectsReturned:[559,2,1,""],category2:[559,4,1,""],category2_id:[559,4,1,""],category:[559,4,1,""],category_id:[559,4,1,""],id:[559,4,1,""],name:[559,4,1,""],objects:[559,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[559,2,1,""],MultipleObjectsReturned:[559,2,1,""],article_set:[559,4,1,""],id:[559,4,1,""],name:[559,4,1,""],objects:[559,4,1,""],regulararticle_set:[559,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[559,3,1,""],testMixedReferences:[559,3,1,""],testObjectDeletion:[559,3,1,""],testRegularReferences:[559,3,1,""],testSharedMemoryReferences:[559,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[560,1,1,""],GetLogObserver:[560,1,1,""],GetPortalLogObserver:[560,1,1,""],GetServerLogObserver:[560,1,1,""],WeeklyLogFile:[560,1,1,""],critical:[560,5,1,""],dep:[560,5,1,""],deprecated:[560,5,1,""],err:[560,5,1,""],error:[560,5,1,""],exception:[560,5,1,""],info:[560,5,1,""],log_dep:[560,5,1,""],log_depmsg:[560,5,1,""],log_err:[560,5,1,""],log_errmsg:[560,5,1,""],log_file:[560,5,1,""],log_file_exists:[560,5,1,""],log_info:[560,5,1,""],log_infomsg:[560,5,1,""],log_msg:[560,5,1,""],log_sec:[560,5,1,""],log_secmsg:[560,5,1,""],log_server:[560,5,1,""],log_trace:[560,5,1,""],log_tracemsg:[560,5,1,""],log_warn:[560,5,1,""],log_warnmsg:[560,5,1,""],rotate_log_file:[560,5,1,""],sec:[560,5,1,""],security:[560,5,1,""],tail_log_file:[560,5,1,""],timeformat:[560,5,1,""],trace:[560,5,1,""],warn:[560,5,1,""],warning:[560,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[560,4,1,""],readlines:[560,3,1,""],rotate:[560,3,1,""],seek:[560,3,1,""],settings:[560,4,1,""]},"evennia.utils.logger.GetLogObserver":{component_prefix:[560,4,1,""],event_levels:[560,4,1,""],format_log_event:[560,3,1,""]},"evennia.utils.logger.GetPortalLogObserver":{component_prefix:[560,4,1,""]},"evennia.utils.logger.GetServerLogObserver":{component_prefix:[560,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[560,3,1,""],rotate:[560,3,1,""],shouldRotate:[560,3,1,""],suffix:[560,3,1,""],write:[560,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[561,1,1,""],Boolean:[561,1,1,""],Color:[561,1,1,""],Datetime:[561,1,1,""],Duration:[561,1,1,""],Email:[561,1,1,""],Future:[561,1,1,""],Lock:[561,1,1,""],PositiveInteger:[561,1,1,""],SignedInteger:[561,1,1,""],Text:[561,1,1,""],Timezone:[561,1,1,""],UnsignedInteger:[561,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[561,3,1,""],__init__:[561,3,1,""],changed:[561,3,1,""],deserialize:[561,3,1,""],display:[561,3,1,""],load:[561,3,1,""],save:[561,3,1,""],serialize:[561,3,1,""],set:[561,3,1,""],validate:[561,3,1,""],value:[561,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[561,3,1,""],display:[561,3,1,""],serialize:[561,3,1,""],validate:[561,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[561,3,1,""],display:[561,3,1,""],validate:[561,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[561,3,1,""],serialize:[561,3,1,""],validate:[561,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[561,3,1,""],serialize:[561,3,1,""],validate:[561,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[561,3,1,""],validate:[561,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[561,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[561,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[561,3,1,""],validate:[561,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[561,3,1,""],validate:[561,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[561,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[561,3,1,""],deserialize:[561,3,1,""],serialize:[561,3,1,""],validate:[561,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[561,3,1,""],validate:[561,3,1,""],validator_key:[561,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[562,1,1,""],OptionHandler:[562,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[562,3,1,""],add:[562,3,1,""],get:[562,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[562,3,1,""],all:[562,3,1,""],get:[562,3,1,""],set:[562,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[563,1,1,""],PickledObject:[563,1,1,""],PickledObjectField:[563,1,1,""],PickledWidget:[563,1,1,""],dbsafe_decode:[563,5,1,""],dbsafe_encode:[563,5,1,""],wrap_conflictual_object:[563,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[563,3,1,""],clean:[563,3,1,""],default_error_messages:[563,4,1,""],widget:[563,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[563,3,1,""],formfield:[563,3,1,""],from_db_value:[563,3,1,""],get_db_prep_lookup:[563,3,1,""],get_db_prep_value:[563,3,1,""],get_default:[563,3,1,""],get_internal_type:[563,3,1,""],pre_save:[563,3,1,""],value_to_string:[563,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[563,3,1,""],render:[563,3,1,""],value_from_datadict:[563,3,1,""]},"evennia.utils.search":{search_account:[564,5,1,""],search_account_tag:[564,5,1,""],search_channel:[564,5,1,""],search_channel_tag:[564,5,1,""],search_help_entry:[564,5,1,""],search_message:[564,5,1,""],search_object:[564,5,1,""],search_script:[564,5,1,""],search_script_tag:[564,5,1,""],search_tag:[564,5,1,""],search_typeclass:[564,5,1,""]},"evennia.utils.test_resources":{BaseEvenniaCommandTest:[565,1,1,""],BaseEvenniaTest:[565,1,1,""],BaseEvenniaTestCase:[565,1,1,""],EvenniaCommandTest:[565,1,1,""],EvenniaCommandTestMixin:[565,1,1,""],EvenniaTest:[565,1,1,""],EvenniaTestCase:[565,1,1,""],EvenniaTestMixin:[565,1,1,""],mockdeferLater:[565,5,1,""],mockdelay:[565,5,1,""],unload_module:[565,5,1,""]},"evennia.utils.test_resources.EvenniaCommandTestMixin":{call:[565,3,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[565,4,1,""],character_typeclass:[565,4,1,""],exit_typeclass:[565,4,1,""],object_typeclass:[565,4,1,""],room_typeclass:[565,4,1,""],script_typeclass:[565,4,1,""]},"evennia.utils.test_resources.EvenniaTestMixin":{account_typeclass:[565,4,1,""],character_typeclass:[565,4,1,""],create_accounts:[565,3,1,""],create_chars:[565,3,1,""],create_objs:[565,3,1,""],create_rooms:[565,3,1,""],create_script:[565,3,1,""],exit_typeclass:[565,4,1,""],object_typeclass:[565,4,1,""],room_typeclass:[565,4,1,""],script_typeclass:[565,4,1,""],setUp:[565,3,1,""],setup_session:[565,3,1,""],tearDown:[565,3,1,""],teardown_accounts:[565,3,1,""],teardown_session:[565,3,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[566,1,1,""],parse_html:[566,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{ansi_bg_codes:[566,4,1,""],ansi_color_codes:[566,4,1,""],bglist:[566,4,1,""],colorlist:[566,4,1,""],convert_linebreaks:[566,3,1,""],convert_urls:[566,3,1,""],format_styles:[566,3,1,""],parse:[566,3,1,""],re_mxplink:[566,4,1,""],re_mxpurl:[566,4,1,""],re_protocol:[566,4,1,""],re_string:[566,4,1,""],re_style:[566,4,1,""],re_url:[566,4,1,""],re_valid_no_protocol:[566,4,1,""],remove_backspaces:[566,3,1,""],remove_bells:[566,3,1,""],style_codes:[566,4,1,""],sub_mxp_links:[566,3,1,""],sub_mxp_urls:[566,3,1,""],sub_text:[566,3,1,""],tabstop:[566,4,1,""],xterm_bg_codes:[566,4,1,""],xterm_fg_codes:[566,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[567,1,1,""],all_from_module:[567,5,1,""],at_search_result:[567,5,1,""],callables_from_module:[567,5,1,""],calledby:[567,5,1,""],check_evennia_dependencies:[567,5,1,""],class_from_module:[567,5,1,""],columnize:[567,5,1,""],copy_word_case:[567,5,1,""],crop:[567,5,1,""],datetime_format:[567,5,1,""],dbid_to_obj:[567,5,1,""],dbref:[567,5,1,""],dbref_to_obj:[567,5,1,""],dedent:[567,5,1,""],deepsize:[567,5,1,""],delay:[567,5,1,""],display_len:[567,5,1,""],fill:[567,5,1,""],format_grid:[567,5,1,""],format_table:[567,5,1,""],fuzzy_import_from_module:[567,5,1,""],get_all_cmdsets:[567,5,1,""],get_all_typeclasses:[567,5,1,""],get_evennia_pids:[567,5,1,""],get_evennia_version:[567,5,1,""],get_game_dir_path:[567,5,1,""],has_parent:[567,5,1,""],host_os_is:[567,5,1,""],inherits_from:[567,5,1,""],init_new_account:[567,5,1,""],int2str:[567,5,1,""],interactive:[567,5,1,""],is_iter:[567,5,1,""],iter_to_str:[567,5,1,""],iter_to_string:[567,5,1,""],justify:[567,5,1,""],latinify:[567,5,1,""],lazy_property:[567,1,1,""],list_to_string:[567,5,1,""],m_len:[567,5,1,""],make_iter:[567,5,1,""],mod_import:[567,5,1,""],mod_import_from_path:[567,5,1,""],object_from_module:[567,5,1,""],pad:[567,5,1,""],percent:[567,5,1,""],percentile:[567,5,1,""],pypath_to_realpath:[567,5,1,""],random_string_from_module:[567,5,1,""],repeat:[567,5,1,""],run_async:[567,5,1,""],run_in_main_thread:[567,5,1,""],safe_convert_to_types:[567,5,1,""],server_services:[567,5,1,""],str2int:[567,5,1,""],string_from_module:[567,5,1,""],string_partial_matching:[567,5,1,""],string_similarity:[567,5,1,""],string_suggestions:[567,5,1,""],strip_control_sequences:[567,5,1,""],strip_unsafe_input:[567,5,1,""],time_format:[567,5,1,""],to_bytes:[567,5,1,""],to_str:[567,5,1,""],unrepeat:[567,5,1,""],uses_database:[567,5,1,""],validate_email_address:[567,5,1,""],variable_from_module:[567,5,1,""],wildcard_to_regexp:[567,5,1,""],wrap:[567,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[567,3,1,""],update:[567,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[567,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[568,5,1,""],color:[568,5,1,""],datetime:[568,5,1,""],duration:[568,5,1,""],email:[568,5,1,""],future:[568,5,1,""],lock:[568,5,1,""],positive_integer:[568,5,1,""],signed_integer:[568,5,1,""],text:[568,5,1,""],timezone:[568,5,1,""],unsigned_integer:[568,5,1,""]},"evennia.utils.verb_conjugation":{conjugate:[570,0,0,"-"],pronouns:[571,0,0,"-"],tests:[572,0,0,"-"]},"evennia.utils.verb_conjugation.conjugate":{verb_actor_stance_components:[570,5,1,""],verb_all_tenses:[570,5,1,""],verb_conjugate:[570,5,1,""],verb_infinitive:[570,5,1,""],verb_is_past:[570,5,1,""],verb_is_past_participle:[570,5,1,""],verb_is_present:[570,5,1,""],verb_is_present_participle:[570,5,1,""],verb_is_tense:[570,5,1,""],verb_past:[570,5,1,""],verb_past_participle:[570,5,1,""],verb_present:[570,5,1,""],verb_present_participle:[570,5,1,""],verb_tense:[570,5,1,""]},"evennia.utils.verb_conjugation.pronouns":{pronoun_to_viewpoints:[571,5,1,""]},"evennia.utils.verb_conjugation.tests":{TestPronounMapping:[572,1,1,""],TestVerbConjugate:[572,1,1,""]},"evennia.utils.verb_conjugation.tests.TestPronounMapping":{test_colloquial_plurals:[572,4,1,""],test_colloquial_plurals_0_you:[572,3,1,""],test_colloquial_plurals_1_I:[572,3,1,""],test_colloquial_plurals_2_Me:[572,3,1,""],test_colloquial_plurals_3_your:[572,3,1,""],test_colloquial_plurals_4_they:[572,3,1,""],test_colloquial_plurals_5_they:[572,3,1,""],test_colloquial_plurals_6_yourself:[572,3,1,""],test_colloquial_plurals_7_myself:[572,3,1,""],test_default_mapping:[572,4,1,""],test_default_mapping_00_you:[572,3,1,""],test_default_mapping_01_I:[572,3,1,""],test_default_mapping_02_Me:[572,3,1,""],test_default_mapping_03_ours:[572,3,1,""],test_default_mapping_04_yourself:[572,3,1,""],test_default_mapping_05_yourselves:[572,3,1,""],test_default_mapping_06_he:[572,3,1,""],test_default_mapping_07_her:[572,3,1,""],test_default_mapping_08_their:[572,3,1,""],test_default_mapping_09_itself:[572,3,1,""],test_default_mapping_10_herself:[572,3,1,""],test_default_mapping_11_themselves:[572,3,1,""],test_mapping_with_options:[572,4,1,""],test_mapping_with_options_00_you:[572,3,1,""],test_mapping_with_options_01_you:[572,3,1,""],test_mapping_with_options_02_you:[572,3,1,""],test_mapping_with_options_03_I:[572,3,1,""],test_mapping_with_options_04_Me:[572,3,1,""],test_mapping_with_options_05_your:[572,3,1,""],test_mapping_with_options_06_yourself:[572,3,1,""],test_mapping_with_options_07_yourself:[572,3,1,""],test_mapping_with_options_08_yourselves:[572,3,1,""],test_mapping_with_options_09_he:[572,3,1,""],test_mapping_with_options_10_he:[572,3,1,""],test_mapping_with_options_11_we:[572,3,1,""],test_mapping_with_options_12_her:[572,3,1,""],test_mapping_with_options_13_her:[572,3,1,""],test_mapping_with_options_14_their:[572,3,1,""]},"evennia.utils.verb_conjugation.tests.TestVerbConjugate":{test_verb_actor_stance_components:[572,4,1,""],test_verb_actor_stance_components_00_have:[572,3,1,""],test_verb_actor_stance_components_01_swimming:[572,3,1,""],test_verb_actor_stance_components_02_give:[572,3,1,""],test_verb_actor_stance_components_03_given:[572,3,1,""],test_verb_actor_stance_components_04_am:[572,3,1,""],test_verb_actor_stance_components_05_doing:[572,3,1,""],test_verb_actor_stance_components_06_are:[572,3,1,""],test_verb_actor_stance_components_07_had:[572,3,1,""],test_verb_actor_stance_components_08_grin:[572,3,1,""],test_verb_actor_stance_components_09_smile:[572,3,1,""],test_verb_actor_stance_components_10_vex:[572,3,1,""],test_verb_actor_stance_components_11_thrust:[572,3,1,""],test_verb_conjugate:[572,4,1,""],test_verb_conjugate_0_inf:[572,3,1,""],test_verb_conjugate_1_inf:[572,3,1,""],test_verb_conjugate_2_inf:[572,3,1,""],test_verb_conjugate_3_inf:[572,3,1,""],test_verb_conjugate_4_inf:[572,3,1,""],test_verb_conjugate_5_inf:[572,3,1,""],test_verb_conjugate_6_inf:[572,3,1,""],test_verb_conjugate_7_2sgpres:[572,3,1,""],test_verb_conjugate_8_3sgpres:[572,3,1,""],test_verb_get_all_tenses:[572,3,1,""],test_verb_infinitive:[572,4,1,""],test_verb_infinitive_0_have:[572,3,1,""],test_verb_infinitive_1_swim:[572,3,1,""],test_verb_infinitive_2_give:[572,3,1,""],test_verb_infinitive_3_given:[572,3,1,""],test_verb_infinitive_4_am:[572,3,1,""],test_verb_infinitive_5_doing:[572,3,1,""],test_verb_infinitive_6_are:[572,3,1,""],test_verb_is_past:[572,4,1,""],test_verb_is_past_0_1st:[572,3,1,""],test_verb_is_past_1_1st:[572,3,1,""],test_verb_is_past_2_1st:[572,3,1,""],test_verb_is_past_3_1st:[572,3,1,""],test_verb_is_past_4_1st:[572,3,1,""],test_verb_is_past_5_1st:[572,3,1,""],test_verb_is_past_6_1st:[572,3,1,""],test_verb_is_past_7_2nd:[572,3,1,""],test_verb_is_past_participle:[572,4,1,""],test_verb_is_past_participle_0_have:[572,3,1,""],test_verb_is_past_participle_1_swimming:[572,3,1,""],test_verb_is_past_participle_2_give:[572,3,1,""],test_verb_is_past_participle_3_given:[572,3,1,""],test_verb_is_past_participle_4_am:[572,3,1,""],test_verb_is_past_participle_5_doing:[572,3,1,""],test_verb_is_past_participle_6_are:[572,3,1,""],test_verb_is_past_participle_7_had:[572,3,1,""],test_verb_is_present:[572,4,1,""],test_verb_is_present_0_1st:[572,3,1,""],test_verb_is_present_1_1st:[572,3,1,""],test_verb_is_present_2_1st:[572,3,1,""],test_verb_is_present_3_1st:[572,3,1,""],test_verb_is_present_4_1st:[572,3,1,""],test_verb_is_present_5_1st:[572,3,1,""],test_verb_is_present_6_1st:[572,3,1,""],test_verb_is_present_7_1st:[572,3,1,""],test_verb_is_present_participle:[572,4,1,""],test_verb_is_present_participle_0_have:[572,3,1,""],test_verb_is_present_participle_1_swim:[572,3,1,""],test_verb_is_present_participle_2_give:[572,3,1,""],test_verb_is_present_participle_3_given:[572,3,1,""],test_verb_is_present_participle_4_am:[572,3,1,""],test_verb_is_present_participle_5_doing:[572,3,1,""],test_verb_is_present_participle_6_are:[572,3,1,""],test_verb_is_tense:[572,4,1,""],test_verb_is_tense_0_inf:[572,3,1,""],test_verb_is_tense_1_inf:[572,3,1,""],test_verb_is_tense_2_inf:[572,3,1,""],test_verb_is_tense_3_inf:[572,3,1,""],test_verb_is_tense_4_inf:[572,3,1,""],test_verb_is_tense_5_inf:[572,3,1,""],test_verb_is_tense_6_inf:[572,3,1,""],test_verb_past:[572,4,1,""],test_verb_past_0_1st:[572,3,1,""],test_verb_past_1_1st:[572,3,1,""],test_verb_past_2_1st:[572,3,1,""],test_verb_past_3_1st:[572,3,1,""],test_verb_past_4_1st:[572,3,1,""],test_verb_past_5_1st:[572,3,1,""],test_verb_past_6_1st:[572,3,1,""],test_verb_past_7_2nd:[572,3,1,""],test_verb_past_participle:[572,4,1,""],test_verb_past_participle_0_have:[572,3,1,""],test_verb_past_participle_1_swim:[572,3,1,""],test_verb_past_participle_2_give:[572,3,1,""],test_verb_past_participle_3_given:[572,3,1,""],test_verb_past_participle_4_am:[572,3,1,""],test_verb_past_participle_5_doing:[572,3,1,""],test_verb_past_participle_6_are:[572,3,1,""],test_verb_present:[572,4,1,""],test_verb_present_0_1st:[572,3,1,""],test_verb_present_1_1st:[572,3,1,""],test_verb_present_2_1st:[572,3,1,""],test_verb_present_3_1st:[572,3,1,""],test_verb_present_4_1st:[572,3,1,""],test_verb_present_5_1st:[572,3,1,""],test_verb_present_6_1st:[572,3,1,""],test_verb_present_7_2nd:[572,3,1,""],test_verb_present_8_3rd:[572,3,1,""],test_verb_present_participle:[572,4,1,""],test_verb_present_participle_0_have:[572,3,1,""],test_verb_present_participle_1_swim:[572,3,1,""],test_verb_present_participle_2_give:[572,3,1,""],test_verb_present_participle_3_given:[572,3,1,""],test_verb_present_participle_4_am:[572,3,1,""],test_verb_present_participle_5_doing:[572,3,1,""],test_verb_present_participle_6_are:[572,3,1,""],test_verb_tense:[572,4,1,""],test_verb_tense_0_have:[572,3,1,""],test_verb_tense_1_swim:[572,3,1,""],test_verb_tense_2_give:[572,3,1,""],test_verb_tense_3_given:[572,3,1,""],test_verb_tense_4_am:[572,3,1,""],test_verb_tense_5_doing:[572,3,1,""],test_verb_tense_6_are:[572,3,1,""]},"evennia.web":{admin:[574,0,0,"-"],api:[586,0,0,"-"],templatetags:[594,0,0,"-"],urls:[596,0,0,"-"],utils:[597,0,0,"-"],webclient:[603,0,0,"-"],website:[606,0,0,"-"]},"evennia.web.admin":{accounts:[575,0,0,"-"],attributes:[576,0,0,"-"],comms:[577,0,0,"-"],frontpage:[578,0,0,"-"],help:[579,0,0,"-"],objects:[580,0,0,"-"],scripts:[581,0,0,"-"],server:[582,0,0,"-"],tags:[583,0,0,"-"],urls:[584,0,0,"-"],utils:[585,0,0,"-"]},"evennia.web.admin.accounts":{AccountAdmin:[575,1,1,""],AccountAttributeInline:[575,1,1,""],AccountChangeForm:[575,1,1,""],AccountCreationForm:[575,1,1,""],AccountTagInline:[575,1,1,""],ObjectPuppetInline:[575,1,1,""]},"evennia.web.admin.accounts.AccountAdmin":{add_fieldsets:[575,4,1,""],add_form:[575,4,1,""],fieldsets:[575,4,1,""],form:[575,4,1,""],get_form:[575,3,1,""],inlines:[575,4,1,""],list_display:[575,4,1,""],list_display_links:[575,4,1,""],list_filter:[575,4,1,""],media:[575,3,1,""],ordering:[575,4,1,""],puppeted_objects:[575,3,1,""],readonly_fields:[575,4,1,""],response_add:[575,3,1,""],save_model:[575,3,1,""],search_fields:[575,4,1,""],serialized_string:[575,3,1,""],user_change_password:[575,3,1,""],view_on_site:[575,4,1,""]},"evennia.web.admin.accounts.AccountAttributeInline":{media:[575,3,1,""],model:[575,4,1,""],related_field:[575,4,1,""]},"evennia.web.admin.accounts.AccountChangeForm":{Meta:[575,1,1,""],__init__:[575,3,1,""],base_fields:[575,4,1,""],clean_username:[575,3,1,""],declared_fields:[575,4,1,""],media:[575,3,1,""]},"evennia.web.admin.accounts.AccountChangeForm.Meta":{fields:[575,4,1,""],model:[575,4,1,""]},"evennia.web.admin.accounts.AccountCreationForm":{Meta:[575,1,1,""],base_fields:[575,4,1,""],clean_username:[575,3,1,""],declared_fields:[575,4,1,""],media:[575,3,1,""]},"evennia.web.admin.accounts.AccountCreationForm.Meta":{fields:[575,4,1,""],model:[575,4,1,""]},"evennia.web.admin.accounts.AccountTagInline":{media:[575,3,1,""],model:[575,4,1,""],related_field:[575,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline":{ObjectCreateForm:[575,1,1,""],extra:[575,4,1,""],fieldsets:[575,4,1,""],form:[575,4,1,""],has_add_permission:[575,3,1,""],has_delete_permission:[575,3,1,""],media:[575,3,1,""],model:[575,4,1,""],readonly_fields:[575,4,1,""],show_change_link:[575,4,1,""],verbose_name:[575,4,1,""],view_on_site:[575,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm":{Meta:[575,1,1,""],__init__:[575,3,1,""],base_fields:[575,4,1,""],declared_fields:[575,4,1,""],media:[575,3,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm.Meta":{fields:[575,4,1,""],model:[575,4,1,""]},"evennia.web.admin.attributes":{AttributeForm:[576,1,1,""],AttributeFormSet:[576,1,1,""],AttributeInline:[576,1,1,""]},"evennia.web.admin.attributes.AttributeForm":{Meta:[576,1,1,""],__init__:[576,3,1,""],base_fields:[576,4,1,""],clean_attr_value:[576,3,1,""],declared_fields:[576,4,1,""],media:[576,3,1,""],save:[576,3,1,""]},"evennia.web.admin.attributes.AttributeForm.Meta":{fields:[576,4,1,""]},"evennia.web.admin.attributes.AttributeFormSet":{save:[576,3,1,""]},"evennia.web.admin.attributes.AttributeInline":{extra:[576,4,1,""],form:[576,4,1,""],formset:[576,4,1,""],get_formset:[576,3,1,""],media:[576,3,1,""],model:[576,4,1,""],related_field:[576,4,1,""],verbose_name:[576,4,1,""],verbose_name_plural:[576,4,1,""]},"evennia.web.admin.comms":{ChannelAdmin:[577,1,1,""],ChannelAttributeInline:[577,1,1,""],ChannelForm:[577,1,1,""],ChannelTagInline:[577,1,1,""],MsgAdmin:[577,1,1,""],MsgForm:[577,1,1,""],MsgTagInline:[577,1,1,""]},"evennia.web.admin.comms.ChannelAdmin":{fieldsets:[577,4,1,""],form:[577,4,1,""],get_form:[577,3,1,""],inlines:[577,4,1,""],list_display:[577,4,1,""],list_display_links:[577,4,1,""],list_select_related:[577,4,1,""],media:[577,3,1,""],no_of_subscribers:[577,3,1,""],ordering:[577,4,1,""],raw_id_fields:[577,4,1,""],readonly_fields:[577,4,1,""],response_add:[577,3,1,""],save_as:[577,4,1,""],save_model:[577,3,1,""],save_on_top:[577,4,1,""],search_fields:[577,4,1,""],serialized_string:[577,3,1,""],subscriptions:[577,3,1,""]},"evennia.web.admin.comms.ChannelAttributeInline":{media:[577,3,1,""],model:[577,4,1,""],related_field:[577,4,1,""]},"evennia.web.admin.comms.ChannelForm":{Meta:[577,1,1,""],base_fields:[577,4,1,""],declared_fields:[577,4,1,""],media:[577,3,1,""]},"evennia.web.admin.comms.ChannelForm.Meta":{fields:[577,4,1,""],model:[577,4,1,""]},"evennia.web.admin.comms.ChannelTagInline":{media:[577,3,1,""],model:[577,4,1,""],related_field:[577,4,1,""]},"evennia.web.admin.comms.MsgAdmin":{fieldsets:[577,4,1,""],form:[577,4,1,""],get_form:[577,3,1,""],inlines:[577,4,1,""],list_display:[577,4,1,""],list_display_links:[577,4,1,""],list_select_related:[577,4,1,""],media:[577,3,1,""],ordering:[577,4,1,""],raw_id_fields:[577,4,1,""],readonly_fields:[577,4,1,""],receiver:[577,3,1,""],save_as:[577,4,1,""],save_on_top:[577,4,1,""],search_fields:[577,4,1,""],sender:[577,3,1,""],serialized_string:[577,3,1,""],start_of_message:[577,3,1,""],view_on_site:[577,4,1,""]},"evennia.web.admin.comms.MsgForm":{Meta:[577,1,1,""],base_fields:[577,4,1,""],declared_fields:[577,4,1,""],media:[577,3,1,""]},"evennia.web.admin.comms.MsgForm.Meta":{fields:[577,4,1,""],models:[577,4,1,""]},"evennia.web.admin.comms.MsgTagInline":{media:[577,3,1,""],model:[577,4,1,""],related_field:[577,4,1,""]},"evennia.web.admin.frontpage":{admin_wrapper:[578,5,1,""],evennia_admin:[578,5,1,""]},"evennia.web.admin.help":{HelpEntryAdmin:[579,1,1,""],HelpEntryForm:[579,1,1,""],HelpTagInline:[579,1,1,""]},"evennia.web.admin.help.HelpEntryAdmin":{fieldsets:[579,4,1,""],form:[579,4,1,""],inlines:[579,4,1,""],list_display:[579,4,1,""],list_display_links:[579,4,1,""],list_filter:[579,4,1,""],list_select_related:[579,4,1,""],media:[579,3,1,""],ordering:[579,4,1,""],save_as:[579,4,1,""],save_on_top:[579,4,1,""],search_fields:[579,4,1,""],view_on_site:[579,4,1,""]},"evennia.web.admin.help.HelpEntryForm":{Meta:[579,1,1,""],base_fields:[579,4,1,""],declared_fields:[579,4,1,""],media:[579,3,1,""]},"evennia.web.admin.help.HelpEntryForm.Meta":{fields:[579,4,1,""],model:[579,4,1,""]},"evennia.web.admin.help.HelpTagInline":{media:[579,3,1,""],model:[579,4,1,""],related_field:[579,4,1,""]},"evennia.web.admin.objects":{ObjectAdmin:[580,1,1,""],ObjectAttributeInline:[580,1,1,""],ObjectCreateForm:[580,1,1,""],ObjectEditForm:[580,1,1,""],ObjectTagInline:[580,1,1,""]},"evennia.web.admin.objects.ObjectAdmin":{add_fieldsets:[580,4,1,""],add_form:[580,4,1,""],fieldsets:[580,4,1,""],form:[580,4,1,""],get_fieldsets:[580,3,1,""],get_form:[580,3,1,""],get_urls:[580,3,1,""],inlines:[580,4,1,""],link_button:[580,3,1,""],link_object_to_account:[580,3,1,""],list_display:[580,4,1,""],list_display_links:[580,4,1,""],list_filter:[580,4,1,""],list_select_related:[580,4,1,""],media:[580,3,1,""],ordering:[580,4,1,""],raw_id_fields:[580,4,1,""],readonly_fields:[580,4,1,""],response_add:[580,3,1,""],save_as:[580,4,1,""],save_model:[580,3,1,""],save_on_top:[580,4,1,""],search_fields:[580,4,1,""],serialized_string:[580,3,1,""],view_on_site:[580,4,1,""]},"evennia.web.admin.objects.ObjectAttributeInline":{media:[580,3,1,""],model:[580,4,1,""],related_field:[580,4,1,""]},"evennia.web.admin.objects.ObjectCreateForm":{Meta:[580,1,1,""],__init__:[580,3,1,""],base_fields:[580,4,1,""],declared_fields:[580,4,1,""],media:[580,3,1,""]},"evennia.web.admin.objects.ObjectCreateForm.Meta":{fields:[580,4,1,""],model:[580,4,1,""]},"evennia.web.admin.objects.ObjectEditForm":{Meta:[580,1,1,""],base_fields:[580,4,1,""],declared_fields:[580,4,1,""],media:[580,3,1,""]},"evennia.web.admin.objects.ObjectEditForm.Meta":{fields:[580,4,1,""],model:[580,4,1,""]},"evennia.web.admin.objects.ObjectTagInline":{media:[580,3,1,""],model:[580,4,1,""],related_field:[580,4,1,""]},"evennia.web.admin.scripts":{ScriptAdmin:[581,1,1,""],ScriptAttributeInline:[581,1,1,""],ScriptForm:[581,1,1,""],ScriptTagInline:[581,1,1,""]},"evennia.web.admin.scripts.ScriptAdmin":{fieldsets:[581,4,1,""],form:[581,4,1,""],get_form:[581,3,1,""],inlines:[581,4,1,""],list_display:[581,4,1,""],list_display_links:[581,4,1,""],list_select_related:[581,4,1,""],media:[581,3,1,""],ordering:[581,4,1,""],raw_id_fields:[581,4,1,""],readonly_fields:[581,4,1,""],save_as:[581,4,1,""],save_model:[581,3,1,""],save_on_top:[581,4,1,""],search_fields:[581,4,1,""],serialized_string:[581,3,1,""],view_on_site:[581,4,1,""]},"evennia.web.admin.scripts.ScriptAttributeInline":{media:[581,3,1,""],model:[581,4,1,""],related_field:[581,4,1,""]},"evennia.web.admin.scripts.ScriptForm":{base_fields:[581,4,1,""],declared_fields:[581,4,1,""],media:[581,3,1,""]},"evennia.web.admin.scripts.ScriptTagInline":{media:[581,3,1,""],model:[581,4,1,""],related_field:[581,4,1,""]},"evennia.web.admin.server":{ServerConfigAdmin:[582,1,1,""]},"evennia.web.admin.server.ServerConfigAdmin":{list_display:[582,4,1,""],list_display_links:[582,4,1,""],list_select_related:[582,4,1,""],media:[582,3,1,""],ordering:[582,4,1,""],save_as:[582,4,1,""],save_on_top:[582,4,1,""],search_fields:[582,4,1,""]},"evennia.web.admin.tags":{InlineTagForm:[583,1,1,""],TagAdmin:[583,1,1,""],TagForm:[583,1,1,""],TagFormSet:[583,1,1,""],TagInline:[583,1,1,""]},"evennia.web.admin.tags.InlineTagForm":{Meta:[583,1,1,""],__init__:[583,3,1,""],base_fields:[583,4,1,""],declared_fields:[583,4,1,""],media:[583,3,1,""],save:[583,3,1,""]},"evennia.web.admin.tags.InlineTagForm.Meta":{fields:[583,4,1,""]},"evennia.web.admin.tags.TagAdmin":{fieldsets:[583,4,1,""],form:[583,4,1,""],list_display:[583,4,1,""],list_filter:[583,4,1,""],media:[583,3,1,""],search_fields:[583,4,1,""],view_on_site:[583,4,1,""]},"evennia.web.admin.tags.TagForm":{Meta:[583,1,1,""],base_fields:[583,4,1,""],declared_fields:[583,4,1,""],media:[583,3,1,""]},"evennia.web.admin.tags.TagForm.Meta":{fields:[583,4,1,""]},"evennia.web.admin.tags.TagFormSet":{save:[583,3,1,""],verbose_name:[583,4,1,""],verbose_name_plural:[583,4,1,""]},"evennia.web.admin.tags.TagInline":{extra:[583,4,1,""],form:[583,4,1,""],formset:[583,4,1,""],get_formset:[583,3,1,""],media:[583,3,1,""],model:[583,4,1,""],related_field:[583,4,1,""],verbose_name:[583,4,1,""],verbose_name_plural:[583,4,1,""]},"evennia.web.admin.utils":{get_and_load_cmdsets:[585,5,1,""],get_and_load_typeclasses:[585,5,1,""]},"evennia.web.api":{filters:[587,0,0,"-"],permissions:[588,0,0,"-"],root:[589,0,0,"-"],serializers:[590,0,0,"-"],tests:[591,0,0,"-"],urls:[592,0,0,"-"],views:[593,0,0,"-"]},"evennia.web.api.filters":{AccountDBFilterSet:[587,1,1,""],AliasFilter:[587,1,1,""],BaseTypeclassFilterSet:[587,1,1,""],HelpFilterSet:[587,1,1,""],ObjectDBFilterSet:[587,1,1,""],PermissionFilter:[587,1,1,""],ScriptDBFilterSet:[587,1,1,""],TagTypeFilter:[587,1,1,""],get_tag_query:[587,5,1,""]},"evennia.web.api.filters.AccountDBFilterSet":{Meta:[587,1,1,""],base_filters:[587,4,1,""],declared_filters:[587,4,1,""]},"evennia.web.api.filters.AccountDBFilterSet.Meta":{fields:[587,4,1,""],model:[587,4,1,""]},"evennia.web.api.filters.AliasFilter":{tag_type:[587,4,1,""]},"evennia.web.api.filters.BaseTypeclassFilterSet":{base_filters:[587,4,1,""],declared_filters:[587,4,1,""],filter_name:[587,3,1,""]},"evennia.web.api.filters.HelpFilterSet":{base_filters:[587,4,1,""],declared_filters:[587,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet":{Meta:[587,1,1,""],base_filters:[587,4,1,""],declared_filters:[587,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet.Meta":{fields:[587,4,1,""],model:[587,4,1,""]},"evennia.web.api.filters.PermissionFilter":{tag_type:[587,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet":{Meta:[587,1,1,""],base_filters:[587,4,1,""],declared_filters:[587,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet.Meta":{fields:[587,4,1,""],model:[587,4,1,""]},"evennia.web.api.filters.TagTypeFilter":{filter:[587,3,1,""],tag_type:[587,4,1,""]},"evennia.web.api.permissions":{EvenniaPermission:[588,1,1,""]},"evennia.web.api.permissions.EvenniaPermission":{MINIMUM_CREATE_PERMISSION:[588,4,1,""],MINIMUM_LIST_PERMISSION:[588,4,1,""],check_locks:[588,3,1,""],destroy_locks:[588,4,1,""],has_object_permission:[588,3,1,""],has_permission:[588,3,1,""],update_locks:[588,4,1,""],view_locks:[588,4,1,""]},"evennia.web.api.root":{APIRootRouter:[589,1,1,""],EvenniaAPIRoot:[589,1,1,""]},"evennia.web.api.root.APIRootRouter":{APIRootView:[589,4,1,""]},"evennia.web.api.serializers":{AccountListSerializer:[590,1,1,""],AccountSerializer:[590,1,1,""],AttributeSerializer:[590,1,1,""],HelpListSerializer:[590,1,1,""],HelpSerializer:[590,1,1,""],ObjectDBSerializer:[590,1,1,""],ObjectListSerializer:[590,1,1,""],ScriptDBSerializer:[590,1,1,""],ScriptListSerializer:[590,1,1,""],SimpleObjectDBSerializer:[590,1,1,""],TagSerializer:[590,1,1,""],TypeclassListSerializerMixin:[590,1,1,""],TypeclassSerializerMixin:[590,1,1,""]},"evennia.web.api.serializers.AccountListSerializer":{Meta:[590,1,1,""]},"evennia.web.api.serializers.AccountListSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""],read_only_fields:[590,4,1,""]},"evennia.web.api.serializers.AccountSerializer":{Meta:[590,1,1,""],get_session_ids:[590,3,1,""]},"evennia.web.api.serializers.AccountSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""],read_only_fields:[590,4,1,""]},"evennia.web.api.serializers.AttributeSerializer":{Meta:[590,1,1,""],get_value_display:[590,3,1,""]},"evennia.web.api.serializers.AttributeSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""]},"evennia.web.api.serializers.HelpListSerializer":{Meta:[590,1,1,""]},"evennia.web.api.serializers.HelpListSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""],read_only_fields:[590,4,1,""]},"evennia.web.api.serializers.HelpSerializer":{Meta:[590,1,1,""]},"evennia.web.api.serializers.HelpSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""],read_only_fields:[590,4,1,""]},"evennia.web.api.serializers.ObjectDBSerializer":{Meta:[590,1,1,""],get_contents:[590,3,1,""],get_exits:[590,3,1,""]},"evennia.web.api.serializers.ObjectDBSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""],read_only_fields:[590,4,1,""]},"evennia.web.api.serializers.ObjectListSerializer":{Meta:[590,1,1,""]},"evennia.web.api.serializers.ObjectListSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""],read_only_fields:[590,4,1,""]},"evennia.web.api.serializers.ScriptDBSerializer":{Meta:[590,1,1,""]},"evennia.web.api.serializers.ScriptDBSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""],read_only_fields:[590,4,1,""]},"evennia.web.api.serializers.ScriptListSerializer":{Meta:[590,1,1,""]},"evennia.web.api.serializers.ScriptListSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""],read_only_fields:[590,4,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer":{Meta:[590,1,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""]},"evennia.web.api.serializers.TagSerializer":{Meta:[590,1,1,""]},"evennia.web.api.serializers.TagSerializer.Meta":{fields:[590,4,1,""],model:[590,4,1,""]},"evennia.web.api.serializers.TypeclassListSerializerMixin":{shared_fields:[590,4,1,""]},"evennia.web.api.serializers.TypeclassSerializerMixin":{get_aliases:[590,3,1,""],get_attributes:[590,3,1,""],get_nicks:[590,3,1,""],get_permissions:[590,3,1,""],get_tags:[590,3,1,""],shared_fields:[590,4,1,""]},"evennia.web.api.tests":{TestEvenniaRESTApi:[591,1,1,""]},"evennia.web.api.tests.TestEvenniaRESTApi":{client_class:[591,4,1,""],get_view_details:[591,3,1,""],maxDiff:[591,4,1,""],setUp:[591,3,1,""],tearDown:[591,3,1,""],test_create:[591,3,1,""],test_delete:[591,3,1,""],test_list:[591,3,1,""],test_retrieve:[591,3,1,""],test_set_attribute:[591,3,1,""],test_update:[591,3,1,""]},"evennia.web.api.views":{AccountDBViewSet:[593,1,1,""],CharacterViewSet:[593,1,1,""],ExitViewSet:[593,1,1,""],GeneralViewSetMixin:[593,1,1,""],HelpViewSet:[593,1,1,""],ObjectDBViewSet:[593,1,1,""],RoomViewSet:[593,1,1,""],ScriptDBViewSet:[593,1,1,""],TypeclassViewSetMixin:[593,1,1,""]},"evennia.web.api.views.AccountDBViewSet":{basename:[593,4,1,""],description:[593,4,1,""],detail:[593,4,1,""],filterset_class:[593,4,1,""],list_serializer_class:[593,4,1,""],name:[593,4,1,""],queryset:[593,4,1,""],serializer_class:[593,4,1,""],suffix:[593,4,1,""]},"evennia.web.api.views.CharacterViewSet":{basename:[593,4,1,""],description:[593,4,1,""],detail:[593,4,1,""],name:[593,4,1,""],queryset:[593,4,1,""],suffix:[593,4,1,""]},"evennia.web.api.views.ExitViewSet":{basename:[593,4,1,""],description:[593,4,1,""],detail:[593,4,1,""],name:[593,4,1,""],queryset:[593,4,1,""],suffix:[593,4,1,""]},"evennia.web.api.views.GeneralViewSetMixin":{get_serializer_class:[593,3,1,""]},"evennia.web.api.views.HelpViewSet":{basename:[593,4,1,""],description:[593,4,1,""],detail:[593,4,1,""],filterset_class:[593,4,1,""],list_serializer_class:[593,4,1,""],name:[593,4,1,""],queryset:[593,4,1,""],serializer_class:[593,4,1,""],suffix:[593,4,1,""]},"evennia.web.api.views.ObjectDBViewSet":{basename:[593,4,1,""],description:[593,4,1,""],detail:[593,4,1,""],filterset_class:[593,4,1,""],list_serializer_class:[593,4,1,""],name:[593,4,1,""],queryset:[593,4,1,""],serializer_class:[593,4,1,""],suffix:[593,4,1,""]},"evennia.web.api.views.RoomViewSet":{basename:[593,4,1,""],description:[593,4,1,""],detail:[593,4,1,""],name:[593,4,1,""],queryset:[593,4,1,""],suffix:[593,4,1,""]},"evennia.web.api.views.ScriptDBViewSet":{basename:[593,4,1,""],description:[593,4,1,""],detail:[593,4,1,""],filterset_class:[593,4,1,""],list_serializer_class:[593,4,1,""],name:[593,4,1,""],queryset:[593,4,1,""],serializer_class:[593,4,1,""],suffix:[593,4,1,""]},"evennia.web.api.views.TypeclassViewSetMixin":{filter_backends:[593,4,1,""],permission_classes:[593,4,1,""],set_attribute:[593,3,1,""]},"evennia.web.templatetags":{addclass:[595,0,0,"-"]},"evennia.web.templatetags.addclass":{addclass:[595,5,1,""]},"evennia.web.utils":{adminsite:[598,0,0,"-"],backends:[599,0,0,"-"],general_context:[600,0,0,"-"],middleware:[601,0,0,"-"],tests:[602,0,0,"-"]},"evennia.web.utils.adminsite":{EvenniaAdminApp:[598,1,1,""],EvenniaAdminSite:[598,1,1,""]},"evennia.web.utils.adminsite.EvenniaAdminApp":{default_site:[598,4,1,""]},"evennia.web.utils.adminsite.EvenniaAdminSite":{app_order:[598,4,1,""],get_app_list:[598,3,1,""],site_header:[598,4,1,""]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[599,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[599,3,1,""]},"evennia.web.utils.general_context":{general_context:[600,5,1,""],load_game_settings:[600,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[601,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[601,3,1,""],make_shared_login:[601,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[602,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[602,4,1,""],test_general_context:[602,3,1,""]},"evennia.web.webclient":{urls:[604,0,0,"-"],views:[605,0,0,"-"]},"evennia.web.webclient.views":{webclient:[605,5,1,""]},"evennia.web.website":{forms:[607,0,0,"-"],tests:[608,0,0,"-"],urls:[609,0,0,"-"],views:[610,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[607,1,1,""],CharacterForm:[607,1,1,""],CharacterUpdateForm:[607,1,1,""],EvenniaForm:[607,1,1,""],ObjectForm:[607,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[607,1,1,""],base_fields:[607,4,1,""],declared_fields:[607,4,1,""],media:[607,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[607,4,1,""],fields:[607,4,1,""],model:[607,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[607,1,1,""],base_fields:[607,4,1,""],declared_fields:[607,4,1,""],media:[607,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[607,4,1,""],labels:[607,4,1,""],model:[607,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[607,4,1,""],declared_fields:[607,4,1,""],media:[607,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[607,4,1,""],clean:[607,3,1,""],declared_fields:[607,4,1,""],media:[607,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[607,1,1,""],base_fields:[607,4,1,""],declared_fields:[607,4,1,""],media:[607,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[607,4,1,""],labels:[607,4,1,""],model:[607,4,1,""]},"evennia.web.website.tests":{AdminTest:[608,1,1,""],ChannelDetailTest:[608,1,1,""],ChannelListTest:[608,1,1,""],CharacterCreateView:[608,1,1,""],CharacterDeleteView:[608,1,1,""],CharacterListView:[608,1,1,""],CharacterManageView:[608,1,1,""],CharacterPuppetView:[608,1,1,""],CharacterUpdateView:[608,1,1,""],EvenniaWebTest:[608,1,1,""],HelpDetailTest:[608,1,1,""],HelpListTest:[608,1,1,""],HelpLockedDetailTest:[608,1,1,""],IndexTest:[608,1,1,""],LoginTest:[608,1,1,""],LogoutTest:[608,1,1,""],PasswordResetTest:[608,1,1,""],RegisterTest:[608,1,1,""],WebclientTest:[608,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[608,4,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[608,3,1,""],setUp:[608,3,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[608,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[608,3,1,""],test_valid_access_multisession_2:[608,3,1,""],unauthenticated_response:[608,4,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[608,3,1,""],test_invalid_access:[608,3,1,""],test_valid_access:[608,3,1,""],unauthenticated_response:[608,4,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[608,4,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[608,4,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[608,3,1,""],test_invalid_access:[608,3,1,""],unauthenticated_response:[608,4,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[608,3,1,""],test_invalid_access:[608,3,1,""],test_valid_access:[608,3,1,""],unauthenticated_response:[608,4,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[608,4,1,""],authenticated_response:[608,4,1,""],channel_typeclass:[608,4,1,""],character_typeclass:[608,4,1,""],exit_typeclass:[608,4,1,""],get_kwargs:[608,3,1,""],login:[608,3,1,""],object_typeclass:[608,4,1,""],room_typeclass:[608,4,1,""],script_typeclass:[608,4,1,""],setUp:[608,3,1,""],test_get:[608,3,1,""],test_get_authenticated:[608,3,1,""],test_valid_chars:[608,3,1,""],unauthenticated_response:[608,4,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.HelpDetailTest":{get_kwargs:[608,3,1,""],setUp:[608,3,1,""],test_object_cache:[608,3,1,""],test_view:[608,3,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.HelpListTest":{url_name:[608,4,1,""]},"evennia.web.website.tests.HelpLockedDetailTest":{get_kwargs:[608,3,1,""],setUp:[608,3,1,""],test_lock_with_perm:[608,3,1,""],test_locked_entry:[608,3,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[608,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[608,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[608,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[608,4,1,""],url_name:[608,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[608,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[608,3,1,""],test_get_disabled:[608,3,1,""],url_name:[608,4,1,""]},"evennia.web.website.views":{accounts:[611,0,0,"-"],channels:[612,0,0,"-"],characters:[613,0,0,"-"],errors:[614,0,0,"-"],help:[615,0,0,"-"],index:[616,0,0,"-"],mixins:[617,0,0,"-"],objects:[618,0,0,"-"]},"evennia.web.website.views.accounts":{AccountCreateView:[611,1,1,""],AccountMixin:[611,1,1,""]},"evennia.web.website.views.accounts.AccountCreateView":{form_valid:[611,3,1,""],success_url:[611,4,1,""],template_name:[611,4,1,""]},"evennia.web.website.views.accounts.AccountMixin":{form_class:[611,4,1,""],model:[611,4,1,""]},"evennia.web.website.views.channels":{ChannelDetailView:[612,1,1,""],ChannelListView:[612,1,1,""],ChannelMixin:[612,1,1,""]},"evennia.web.website.views.channels.ChannelDetailView":{attributes:[612,4,1,""],get_context_data:[612,3,1,""],get_object:[612,3,1,""],max_num_lines:[612,4,1,""],template_name:[612,4,1,""]},"evennia.web.website.views.channels.ChannelListView":{get_context_data:[612,3,1,""],max_popular:[612,4,1,""],page_title:[612,4,1,""],paginate_by:[612,4,1,""],template_name:[612,4,1,""]},"evennia.web.website.views.channels.ChannelMixin":{access_type:[612,4,1,""],get_queryset:[612,3,1,""],model:[612,4,1,""],page_title:[612,4,1,""]},"evennia.web.website.views.characters":{CharacterCreateView:[613,1,1,""],CharacterDeleteView:[613,1,1,""],CharacterDetailView:[613,1,1,""],CharacterListView:[613,1,1,""],CharacterManageView:[613,1,1,""],CharacterMixin:[613,1,1,""],CharacterPuppetView:[613,1,1,""],CharacterUpdateView:[613,1,1,""]},"evennia.web.website.views.characters.CharacterCreateView":{form_valid:[613,3,1,""],template_name:[613,4,1,""]},"evennia.web.website.views.characters.CharacterDeleteView":{form_class:[613,4,1,""]},"evennia.web.website.views.characters.CharacterDetailView":{access_type:[613,4,1,""],attributes:[613,4,1,""],get_queryset:[613,3,1,""],template_name:[613,4,1,""]},"evennia.web.website.views.characters.CharacterListView":{access_type:[613,4,1,""],get_queryset:[613,3,1,""],page_title:[613,4,1,""],paginate_by:[613,4,1,""],template_name:[613,4,1,""]},"evennia.web.website.views.characters.CharacterManageView":{page_title:[613,4,1,""],paginate_by:[613,4,1,""],template_name:[613,4,1,""]},"evennia.web.website.views.characters.CharacterMixin":{form_class:[613,4,1,""],get_queryset:[613,3,1,""],model:[613,4,1,""],success_url:[613,4,1,""]},"evennia.web.website.views.characters.CharacterPuppetView":{get_redirect_url:[613,3,1,""]},"evennia.web.website.views.characters.CharacterUpdateView":{form_class:[613,4,1,""],template_name:[613,4,1,""]},"evennia.web.website.views.errors":{to_be_implemented:[614,5,1,""]},"evennia.web.website.views.help":{HelpDetailView:[615,1,1,""],HelpListView:[615,1,1,""],HelpMixin:[615,1,1,""],can_read_topic:[615,5,1,""],collect_topics:[615,5,1,""],get_help_category:[615,5,1,""],get_help_topic:[615,5,1,""]},"evennia.web.website.views.help.HelpDetailView":{get_context_data:[615,3,1,""],get_object:[615,3,1,""],page_title:[615,3,1,""],template_name:[615,4,1,""]},"evennia.web.website.views.help.HelpListView":{page_title:[615,4,1,""],paginate_by:[615,4,1,""],template_name:[615,4,1,""]},"evennia.web.website.views.help.HelpMixin":{get_queryset:[615,3,1,""],page_title:[615,4,1,""]},"evennia.web.website.views.index":{EvenniaIndexView:[616,1,1,""]},"evennia.web.website.views.index.EvenniaIndexView":{get_context_data:[616,3,1,""],template_name:[616,4,1,""]},"evennia.web.website.views.mixins":{EvenniaCreateView:[617,1,1,""],EvenniaDeleteView:[617,1,1,""],EvenniaDetailView:[617,1,1,""],EvenniaUpdateView:[617,1,1,""],TypeclassMixin:[617,1,1,""]},"evennia.web.website.views.mixins.EvenniaCreateView":{page_title:[617,3,1,""]},"evennia.web.website.views.mixins.EvenniaDeleteView":{page_title:[617,3,1,""]},"evennia.web.website.views.mixins.EvenniaDetailView":{page_title:[617,3,1,""]},"evennia.web.website.views.mixins.EvenniaUpdateView":{page_title:[617,3,1,""]},"evennia.web.website.views.mixins.TypeclassMixin":{typeclass:[617,3,1,""]},"evennia.web.website.views.objects":{ObjectCreateView:[618,1,1,""],ObjectDeleteView:[618,1,1,""],ObjectDetailView:[618,1,1,""],ObjectUpdateView:[618,1,1,""]},"evennia.web.website.views.objects.ObjectCreateView":{model:[618,4,1,""]},"evennia.web.website.views.objects.ObjectDeleteView":{access_type:[618,4,1,""],model:[618,4,1,""],template_name:[618,4,1,""]},"evennia.web.website.views.objects.ObjectDetailView":{access_type:[618,4,1,""],attributes:[618,4,1,""],get_context_data:[618,3,1,""],get_object:[618,3,1,""],model:[618,4,1,""],template_name:[618,4,1,""]},"evennia.web.website.views.objects.ObjectUpdateView":{access_type:[618,4,1,""],form_valid:[618,3,1,""],get_initial:[618,3,1,""],get_success_url:[618,3,1,""],model:[618,4,1,""]},evennia:{accounts:[226,0,0,"-"],commands:[231,0,0,"-"],comms:[254,0,0,"-"],contrib:[258,0,0,"-"],help:[462,0,0,"-"],locks:[467,0,0,"-"],objects:[470,0,0,"-"],prototypes:[474,0,0,"-"],scripts:[479,0,0,"-"],server:[487,0,0,"-"],set_trace:[224,5,1,""],settings_default:[537,0,0,"-"],typeclasses:[538,0,0,"-"],utils:[543,0,0,"-"],web:[573,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":[50,102,103,125,220],"0000":[102,103],"0004":83,"0005":77,"001":[83,367],"003":143,"005":[62,544],"010":1,"0157":220,"015public":1,"020t":1,"0247":83,"030a":1,"033":544,"034":83,"040f":1,"043thi":143,"050":[62,544],"050f":1,"054":62,"055":544,"0b16":206,"0d0":167,"0jyyngi":0,"0th":15,"0x045a0990":7,"100":[8,15,22,50,82,87,89,96,99,106,119,149,151,157,167,177,184,189,220,251,305,337,340,341,367,375,383,386,393,394,449,567,612,613],"1000":[0,8,45,149,167,178,212,220,337,404,416,477],"10000":612,"100000":[157,412],"1000000":[8,220,560],"100m":566,"100mb":217,"100x":0,"101":[22,473],"101m":566,"102":[119,394],"102m":566,"103m":566,"104m":566,"105m":566,"106m":566,"107m":566,"108m":566,"1098":50,"109m":566,"10m":208,"110":[119,394,544,552],"1100":394,"110m":566,"111":[57,239],"111m":566,"112m":566,"113":217,"113m":566,"114m":566,"115600":167,"115m":566,"116m":566,"117m":566,"118":49,"1184":205,"118m":566,"119m":566,"120":[22,376],"1200":[220,550],"1209600":220,"120m":566,"121m":566,"122m":566,"123":[13,86,126,195,473,554],"1234":[15,44,112,209,220,334],"123m":566,"124m":566,"125":[51,82,220],"125m":566,"126m":566,"127":[55,189,205,206,207,208,213,215,217,220,511],"127m":566,"128":62,"128m":566,"129m":566,"12s":21,"130m":566,"131m":566,"132m":566,"133m":566,"134":[57,239],"134m":566,"13541":500,"135m":566,"1369":0,"136m":566,"137m":566,"138m":566,"139m":566,"140":[0,7,50,224],"1400":550,"140313967648552":24,"140m":566,"141m":566,"142":[83,264],"142m":566,"143m":566,"144m":566,"145m":566,"146m":566,"147m":566,"148m":566,"149m":566,"150":549,"150m":566,"151m":566,"152m":566,"153m":566,"154m":566,"155m":566,"156m":566,"1577865600":175,"157m":566,"158m":566,"159m":566,"15th":101,"160":137,"1600":220,"160m":566,"161m":566,"162m":566,"163m":566,"164m":566,"165m":566,"166m":566,"167m":566,"168m":566,"169m":566,"16m":566,"170m":566,"171m":566,"172m":566,"1730":200,"173m":566,"174m":566,"175m":566,"1763":136,"1764":136,"176m":566,"177m":566,"178m":566,"179m":566,"17m":566,"180":376,"180m":566,"181m":566,"182m":566,"183m":566,"184m":566,"185m":566,"186m":566,"187m":566,"188m":566,"189m":566,"18m":566,"1903":136,"190m":566,"1912":0,"191m":566,"192m":566,"193m":566,"194m":566,"195m":566,"196m":566,"1970":[175,220],"197m":566,"198m":566,"199m":566,"19m":566,"1_7":11,"1d10":151,"1d100":[91,177,383],"1d2":167,"1d20":[91,152,161,383,416],"1d282":152,"1d4":[157,161,412],"1d6":[152,157,161,163,177,406,416],"1d8":[149,151,152,157,161,416],"1em":0,"1gb":217,"1kb":220,"1st":[33,60,101,175,554,567,570,571,572],"200":[119,220,394,608],"2000":[220,404],"2003":200,"2006":0,"2008":567,"200m":566,"2010":[3,566],"2011":[3,115,118,122,126,432,433,434,435,437,440],"2012":[3,77,79,80,81,91,92,95,126,278,280,311,312,344,345,382,383,396,398,399],"2013":3,"2014":[3,117,119,126,356,357,392,394],"2015":[3,97,113,122,126,206,324,325,388,389,390,430,437],"2016":[3,104,105,107,109,116,118,126,327,328,330,331,353,354,434,435],"2017":[3,78,85,86,90,99,101,108,114,120,121,123,124,126,175,217,266,267,275,276,297,299,314,315,336,337,338,339,340,341,359,361,385,386,445,446,456,457,459,461],"2018":[0,83,96,112,126,144,189,263,264,289,333,334,448,449],"2019":[0,67,94,95,107,126,200,301,344,345],"201m":566,"2020":[0,57,67,77,89,119,126,175,260,320,321,392,394,438],"2020_01_29":560,"2020_01_29__1":560,"2020_01_29__2":560,"2021":[52,67,87,88,110,125,126,294,295,317,318,362,570,571,615],"2022":[0,67,82,84,93,98,100,111,126,143,189,269,270,271,272,273,337,338,340,347,348,375,378,450,454,571],"2025":101,"202m":566,"203":217,"203m":566,"2048":208,"204m":566,"205":550,"2053":500,"205m":566,"206m":566,"2076":136,"207m":566,"208":186,"208m":566,"2099":77,"209m":566,"20m":566,"210m":566,"211m":566,"212":57,"2128":167,"212m":566,"213":51,"213m":566,"214":51,"214m":566,"215m":566,"216m":566,"217m":566,"218m":566,"219":189,"219m":566,"21m":566,"2207":[114,457],"220m":566,"221":545,"221m":566,"222":544,"222m":566,"223":57,"223m":566,"224m":566,"225":57,"225m":566,"226m":566,"227m":566,"228m":566,"229m":566,"22m":[544,566],"22nd":567,"230":62,"230m":566,"231m":566,"232m":566,"233":[57,239,554],"233m":566,"234":[86,126,267],"234m":566,"235m":566,"236m":566,"237":57,"237m":566,"238m":566,"239m":566,"23fwsf23sdfw23wef23":8,"23m":566,"2401":0,"240m":566,"241m":566,"2429":615,"242m":566,"243m":566,"244":45,"244m":566,"245m":566,"246m":566,"247m":566,"248m":566,"249m":566,"24m":566,"250m":566,"251m":566,"252m":566,"253m":566,"254m":566,"255":[206,544],"255m":566,"256":[57,62,238,544,566],"25m":566,"26m":566,"27m":566,"280":204,"28gmcp":515,"28m":566,"29m":566,"2d10":[91,126,416],"2d20":[149,161,416],"2d6":[91,161,169,383,416],"2gb":217,"2nd":[33,60,309,554,567,570,571,572],"2nd_person_pronoun":571,"2sgpre":572,"2xcoal":322,"300":[62,188,276,408,555],"302":608,"30m":[544,566],"30s":367,"31m":[544,566],"31st":175,"32bit":[206,215],"32m":[544,566],"32nd":169,"333":57,"33m":[544,566],"340":167,"343":33,"34m":[544,566],"358":52,"358283996582031":8,"35m":[544,566],"360":175,"3600":[175,220,408],"36m":[544,566],"37m":[544,566],"3872":136,"38m":566,"39m":566,"3c3ccec30f037be174d3":567,"3d10":[91,383],"3d6":[383,416],"3rd":[33,60,175,309,554,570,571,572],"3rd_person_pronoun":571,"3sgpast":570,"3sgpre":[570,572],"4000":[5,130,189,208,210,211,212,213,215,217,218,220],"4001":[5,51,52,53,54,55,75,165,189,192,194,195,197,207,208,210,211,212,213,215,217,218,220,520],"4002":[5,207,208,212,217,220],"4003":[217,220],"4004":[217,220],"4005":[217,220],"4006":[217,220],"403":13,"404":[55,197],"40m":[544,566],"41917":511,"41m":[544,566],"4201":217,"425":544,"42m":[544,566],"430000":175,"431":544,"43m":[544,566],"443":[207,208,218,220],"44m":[544,566],"45m":[21,544,566],"46m":[544,566],"474a3b9f":43,"47m":[544,566],"48m":566,"49m":566,"4er43233fwefwfw":189,"4th":[125,128,200],"500":[55,62,125,188,220,369,544,615],"500red":544,"502916":11,"503435":11,"505":544,"50m":566,"50mb":217,"516106":167,"51m":566,"520":62,"52m":566,"530":143,"53m":566,"543":[33,554],"5432":205,"54343":33,"5434343":554,"54m":566,"550":[544,550],"550n":1,"551e":1,"552w":1,"553b":1,"554i":1,"555":[62,114,457,544],"555e":1,"55m":566,"565000":175,"566":45,"56m":566,"577349":566,"57m":566,"58m":566,"593":567,"59m":566,"5d5":167,"5mb":77,"5x5":106,"600":567,"6000":220,"604800":408,"60m":566,"61m":566,"624660":52,"62cb3a1a":43,"62m":566,"63m":566,"64m":566,"64x64":55,"65m":566,"6666":64,"6667":[202,228,246,532],"66m":566,"67m":566,"686":60,"68m":566,"69m":566,"6d6":167,"6em":0,"70982813835144":8,"70m":566,"71m":566,"72m":566,"73m":566,"74m":566,"75m":566,"760000":175,"76m":566,"775":5,"77m":566,"78m":566,"79m":566,"7a3d54":55,"800":220,"8080":217,"80m":566,"8111":5,"81m":566,"82m":566,"83m":566,"84m":566,"85m":566,"8601":220,"86400":198,"86m":566,"87m":566,"8859":[18,73,220,253],"88m":566,"89m":566,"8f64fec2670c":217,"900":[96,449,550],"9000":607,"90m":566,"90s":568,"91m":566,"92m":566,"93m":566,"94608000":77,"94m":566,"95m":566,"96m":566,"97m":566,"981":[114,457],"98m":566,"990":550,"999":340,"99999":147,"999999999999":370,"99m":566,"\u6d4b\u8bd5":1,"abstract":[0,70,121,125,131,137,304,341,411,539,540,541,558,561,567],"ansl\u00f6t":67,"boolean":[0,15,16,20,24,33,53,82,96,133,161,194,236,383,449,469,473,484,511,539,542,544,545,561,568],"break":[0,7,11,17,33,34,50,53,56,57,62,67,72,106,110,126,141,143,144,147,149,157,161,163,168,169,173,186,209,218,220,224,241,248,249,295,331,363,372,405,433,500,544,550,551,552,567],"byte":[0,15,18,21,33,73,187,220,491,493,500,502,511,519,567],"case":[0,1,7,11,12,13,15,16,17,18,20,21,22,24,30,34,35,36,40,42,44,46,47,50,51,52,53,54,55,56,57,62,64,67,68,70,71,72,73,77,82,83,88,94,101,102,106,113,125,127,128,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,150,151,152,155,157,163,169,172,174,175,178,179,180,182,186,191,194,196,197,205,207,212,215,216,218,220,222,227,228,229,233,235,236,238,241,247,248,249,255,256,262,264,287,312,315,318,321,322,345,363,370,372,383,390,391,393,409,433,441,447,449,457,463,464,465,468,469,471,473,477,481,483,496,500,504,508,522,529,532,539,540,541,542,544,546,550,554,558,564,565,567,571,575,599],"catch":[0,2,9,18,21,30,39,45,49,140,152,169,173,183,186,228,247,255,302,441,482,491,496,503,529,530,539,549,551,552,558,563,616],"char":[0,11,15,46,71,84,97,101,106,125,136,139,167,169,177,178,194,198,204,220,227,241,247,304,305,325,369,372,404,416,441,473,488,501,514,515,536,544,553],"class":[0,1,2,3,7,9,14,15,19,20,22,25,28,30,31,33,34,40,42,44,45,46,48,51,52,54,55,56,57,58,64,67,70,75,79,82,84,85,87,88,89,91,94,95,97,98,100,104,109,110,113,114,116,117,119,123,124,125,126,128,129,130,131,132,133,134,135,136,137,140,141,142,145,147,152,155,157,158,161,163,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,190,191,194,195,196,198,204,220,227,228,229,230,231,234,235,236,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,255,256,257,262,264,265,268,270,271,272,273,274,276,277,280,281,283,284,286,287,289,295,296,298,299,302,303,304,305,306,307,308,309,312,313,315,316,318,319,321,322,323,325,326,328,329,331,332,334,335,337,338,339,340,341,342,345,346,348,354,355,357,358,360,361,363,364,367,369,370,371,372,375,376,377,379,381,383,384,387,389,390,391,393,394,399,400,404,405,406,407,408,409,410,411,412,413,415,416,417,419,420,421,422,423,424,425,426,427,428,431,433,435,436,438,439,440,441,442,446,447,449,451,452,455,457,458,460,461,463,464,465,469,470,471,472,473,475,477,478,480,481,482,483,484,485,486,488,489,491,493,494,497,498,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,522,524,527,529,530,531,532,534,535,536,538,539,540,541,542,544,545,546,547,548,549,550,551,552,553,554,555,557,558,559,560,561,562,563,564,565,566,567,572,575,576,577,579,580,581,582,583,585,587,588,589,590,591,593,596,598,599,601,602,607,608,611,612,613,615,616,617,618],"const":[299,416],"default":[0,3,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,28,30,34,38,39,40,42,44,45,46,47,48,50,51,52,54,56,57,58,59,62,64,65,66,67,68,70,71,73,74,75,76,77,78,79,82,83,84,85,86,87,88,89,90,92,94,95,96,97,98,99,100,101,102,103,105,106,107,109,110,111,113,117,119,120,121,123,124,126,128,129,130,131,132,133,134,135,136,137,138,140,142,143,144,145,149,150,151,152,155,157,161,163,165,167,168,169,172,174,175,178,179,180,181,182,183,185,186,187,188,189,191,192,193,194,195,196,197,201,202,204,205,207,208,210,211,212,213,215,217,218,219,221,224,225,227,228,230,231,232,233,234,235,236,255,256,257,264,267,270,271,272,273,274,276,280,284,286,287,295,299,302,304,305,306,307,309,312,315,318,321,325,328,331,334,337,338,339,340,341,345,348,354,357,360,361,363,366,369,370,371,372,375,379,383,386,389,390,393,394,404,406,407,408,410,411,412,416,431,433,435,439,441,445,446,447,449,451,461,462,463,464,465,466,467,469,471,473,477,478,481,482,484,485,486,489,491,493,495,496,497,501,513,514,515,520,522,523,529,530,531,532,536,537,539,540,541,542,544,546,547,549,550,551,552,553,554,557,558,560,561,562,563,564,565,567,568,572,575,587,593,598,599,607,613,615,616,617,618,619],"dezhv\u00f6zh":111,"elsd\u00f6rfer":77,"enum":[132,155,158,161,224,225,258,395,401,412,416],"export":[77,211],"final":[2,5,21,24,44,46,50,55,56,62,67,68,70,93,101,128,133,135,136,137,139,140,141,146,152,169,172,177,178,181,187,188,191,193,194,195,196,197,205,208,213,218,232,233,234,241,246,250,321,348,369,383,413,461,469,473,478,528,532,544,546,551,552],"float":[0,33,82,119,128,141,182,228,276,285,286,289,318,375,394,485,491,503,540,554,555,563,567],"function":[0,1,2,4,8,10,11,12,15,16,17,21,24,25,28,30,31,34,35,42,44,45,47,49,50,51,53,54,56,59,60,62,64,66,68,70,71,72,75,76,77,78,79,82,89,90,91,96,98,99,101,102,105,106,110,111,113,115,119,120,121,124,125,126,128,130,131,132,133,134,135,136,138,139,140,141,142,144,146,147,150,151,152,155,157,161,163,165,168,169,172,174,175,177,179,180,183,184,186,187,189,191,192,194,195,196,197,205,211,219,220,222,224,227,230,233,235,236,238,239,240,241,242,246,247,248,249,251,252,253,255,256,264,273,276,279,285,286,289,291,295,299,302,304,309,312,315,318,321,323,328,334,337,338,339,340,341,345,348,354,361,369,370,371,375,376,383,386,389,390,394,407,416,426,433,438,440,441,447,449,451,461,465,467,468,469,473,476,477,478,482,484,485,486,491,495,496,500,511,512,517,520,523,530,532,534,541,542,543,544,545,547,548,549,551,552,554,555,560,561,562,565,566,567,568,571,591,593,596,616,617,618,619],"g\u00e9n\u00e9ral":200,"god\u00f6g\u00e4k":111,"goto":[0,125,152,184,363,406,438,551],"import":[0,1,3,6,7,8,10,11,14,15,16,17,18,20,21,22,24,28,30,31,33,34,35,36,37,38,40,42,45,46,47,48,49,50,51,52,53,55,56,58,59,60,64,68,70,73,75,76,79,82,83,84,85,86,87,88,89,90,91,94,95,96,97,98,99,100,101,102,103,104,105,106,109,110,111,113,116,117,119,120,123,124,126,127,129,130,131,132,133,135,136,138,139,140,141,142,145,147,149,150,151,152,155,157,161,163,165,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,202,204,209,216,217,218,219,220,222,224,235,241,251,264,267,268,276,289,295,299,309,312,315,318,321,328,331,337,338,339,340,341,345,348,354,357,361,383,386,389,390,393,394,407,409,416,433,440,441,449,457,461,464,469,477,478,486,491,495,500,503,504,525,529,532,533,539,541,545,546,549,550,551,552,553,554,564,565,567,598,618],"int":[0,1,15,22,30,33,35,45,50,82,96,119,123,125,139,143,152,157,161,163,167,169,181,182,186,191,194,195,227,228,229,233,234,236,256,276,283,285,286,289,299,309,312,315,318,337,338,339,340,341,348,369,370,372,383,386,390,394,404,408,409,410,416,449,454,461,466,471,473,478,480,483,485,486,488,489,491,496,500,501,502,503,505,509,510,511,519,520,522,532,534,536,539,540,544,547,549,550,551,552,553,554,555,558,560,564,567,570],"k\u00e4kudhu":111,"k\u00f6dh\u00f6ddoson":111,"k\u00f6n":111,"kh\u00e4k":111,"long":[0,1,2,11,13,15,18,20,21,24,25,30,31,33,34,36,39,46,49,50,56,64,70,72,73,74,75,82,83,93,101,102,106,111,113,122,124,125,126,128,131,133,134,139,141,143,144,149,150,155,157,169,172,174,175,177,180,182,183,184,188,189,192,194,199,200,202,204,205,217,220,238,248,280,286,299,312,322,334,340,357,370,375,407,408,412,500,505,520,544,545,550,552,553,554,567,570],"n\u00fa\u00f1ez":77,"new":[1,2,3,5,8,10,12,13,14,15,16,17,20,21,22,24,25,26,27,28,30,34,36,37,38,40,42,43,44,46,47,48,51,52,53,57,58,59,63,64,67,68,71,72,74,75,80,83,84,87,88,94,95,96,103,106,111,112,113,116,117,120,122,124,125,126,127,128,130,131,132,133,134,135,136,137,140,141,142,143,144,145,146,147,148,150,151,152,155,158,161,163,164,166,168,172,174,175,176,177,178,179,180,181,182,186,187,189,190,191,193,195,199,200,201,202,203,204,205,206,208,209,211,212,213,215,216,217,219,220,221,227,228,229,234,235,236,238,239,241,246,248,249,252,253,255,256,264,270,272,280,283,286,295,302,303,304,307,309,315,318,321,328,331,334,337,339,341,345,348,354,357,361,363,369,370,371,372,379,389,390,391,394,404,405,406,407,408,411,413,417,439,440,441,449,451,454,457,461,463,465,469,471,472,473,475,477,478,480,481,484,485,486,488,491,500,501,502,503,509,510,511,516,523,531,532,536,539,540,541,542,544,545,547,550,551,552,553,558,560,561,567,575,577,580,581,608,613,615,617,619],"null":[51,70,78,133,207,375,576,583],"public":[0,1,13,20,55,77,78,94,133,138,149,169,195,201,202,208,212,217,218,220,227,246,255,473,536,553,619],"return":[0,1,5,7,8,9,11,15,18,20,21,24,25,28,31,33,34,35,36,40,42,44,45,47,48,50,51,53,54,55,56,60,62,64,67,72,74,82,83,87,88,89,96,101,105,106,111,114,119,120,124,125,128,131,132,133,134,135,139,140,141,142,145,146,151,152,155,157,161,163,165,169,170,171,172,173,175,176,177,178,179,180,181,182,183,184,186,187,191,192,194,195,196,197,200,204,212,215,220,222,223,227,228,229,230,232,233,234,235,236,238,241,246,248,251,252,255,256,257,262,264,270,272,273,276,279,283,284,285,286,289,291,299,302,303,304,305,307,309,312,315,318,321,328,334,337,338,339,341,345,348,354,361,363,369,370,371,372,375,376,379,383,386,389,390,393,394,399,404,405,406,408,409,410,411,412,413,416,417,429,433,438,439,440,441,446,447,449,454,457,461,463,464,465,466,468,469,471,472,473,475,476,477,478,480,482,483,484,485,486,488,489,491,496,497,500,501,503,504,505,506,508,509,510,511,512,514,515,516,518,519,520,522,523,529,530,532,534,535,536,539,540,541,542,544,545,546,547,548,549,551,552,553,554,555,558,560,561,562,563,564,565,566,567,568,570,571,575,576,577,579,580,581,583,585,587,588,590,596,598,600,607,612,613,615,616,618,619],"short":[7,15,30,39,40,48,53,60,62,68,74,76,83,101,102,113,123,125,126,134,139,143,149,152,161,168,169,171,172,175,181,191,204,209,218,220,222,246,264,286,299,304,315,331,370,389,390,451,478,545,567,570],"static":[34,51,53,54,55,75,77,80,106,113,118,126,128,138,139,149,169,193,196,220,224,225,251,258,264,283,373,390,392,393,417,435,464,477,478,536,547,587,588,590,596,605,616],"super":[1,11,22,40,50,63,64,83,84,85,89,101,139,144,151,161,168,169,170,175,180,182,183,191,196,210,264,315,390],"switch":[0,1,13,14,16,17,20,22,24,28,34,42,50,56,58,59,71,74,80,101,102,103,104,105,109,126,134,152,169,171,178,180,188,189,191,201,202,203,205,217,220,238,239,240,241,246,247,248,249,251,253,256,295,304,307,328,331,334,338,345,363,383,433,481,541,547,552,568,619],"t\u00f6zhkheko":111,"throw":[13,15,44,65,83,132,194,211,235,416,485,567],"true":[0,1,2,11,14,15,16,20,21,22,24,28,30,33,34,35,36,37,39,40,42,45,46,49,50,51,52,53,54,55,56,62,64,65,66,67,70,75,77,82,83,86,87,90,96,101,111,124,125,133,134,138,139,140,141,145,146,149,151,161,167,169,172,175,178,179,180,182,184,185,186,187,188,191,192,194,196,197,198,201,202,203,209,212,217,220,227,229,230,232,234,235,236,238,241,246,248,249,252,255,256,257,264,267,271,276,283,286,295,302,303,304,307,309,312,315,318,321,322,334,337,339,340,354,361,369,370,371,372,375,376,383,386,389,390,394,404,406,408,413,415,416,433,438,439,449,454,455,457,461,463,465,468,469,471,472,473,475,477,478,480,481,482,483,484,485,486,489,491,496,497,500,502,509,514,519,520,530,532,534,536,539,540,541,542,544,547,549,550,551,552,553,554,555,558,562,563,564,565,567,568,572,575,576,577,579,580,581,582,583,588,615],"try":[0,1,2,7,8,9,15,16,18,20,21,28,30,33,34,35,36,42,45,52,53,56,57,58,60,65,67,70,72,73,75,76,82,83,89,94,101,102,103,106,115,116,117,119,124,125,127,128,130,131,132,133,134,135,136,137,139,140,141,142,143,144,146,147,148,150,155,157,158,161,163,164,166,167,168,169,170,172,173,174,177,179,180,181,182,183,184,186,188,189,191,192,193,194,195,196,197,198,201,205,207,208,209,211,215,217,218,220,222,227,230,234,236,241,255,257,264,265,268,276,280,287,312,321,337,338,339,340,341,354,357,361,369,372,389,390,393,394,416,433,439,440,441,457,463,465,471,473,477,488,491,500,515,516,520,534,539,541,544,546,547,549,550,554,563,567,576,583],"var":[0,53,71,105,205,208,445,515,545],"void":167,"while":[0,1,8,13,15,16,17,20,22,24,26,28,30,33,38,42,45,51,53,56,60,62,67,68,70,72,74,77,82,83,96,101,103,106,111,112,113,122,124,125,127,128,130,132,134,135,137,138,139,142,143,144,145,146,147,149,151,152,161,167,168,169,171,172,174,175,178,180,182,183,186,189,193,194,195,196,205,208,211,213,216,217,220,222,227,238,241,248,249,252,287,312,321,334,338,341,361,369,372,390,404,406,408,409,411,412,416,433,439,441,449,457,473,477,478,484,515,538,539,541,542,550,551,553,554,565,567,568,576,583,616],AIs:200,AND:[36,42,96,136,177,196,241,449,469,539,542],ARE:30,AWS:[126,212,217,260],Added:0,Adding:[3,13,23,24,25,42,44,63,72,87,95,100,132,138,142,143,149,161,168,174,176,178,204,248,345,348,369,551,619],Age:[96,449,607],And:[1,2,5,7,20,24,25,30,46,56,70,82,83,85,101,102,103,106,120,139,143,144,150,168,172,175,177,179,186,188,194,197,235,315,337,338,339,340,341,372,461,619],Are:[24,132,134,147,200,551],Aye:102,BGs:188,Being:[101,127,143,146,169,191],But:[1,2,7,11,15,16,18,20,21,22,24,30,34,42,44,45,47,50,53,56,60,62,68,70,79,82,83,93,94,101,103,106,119,125,127,128,130,131,133,134,135,136,138,139,140,141,143,144,145,147,149,150,151,155,161,163,164,168,170,172,174,175,177,181,186,187,188,194,195,197,202,207,208,209,212,219,220,234,235,312,372,394,415,477,542,617],DNS:[208,217],DOING:[96,449],DoS:[8,220,509],Doing:[13,24,45,82,130,133,136,141,167,172,177,195,235,238],For:[0,1,4,5,6,7,8,9,13,14,15,16,17,19,20,21,22,24,30,33,34,36,38,40,41,44,45,46,50,51,52,53,54,55,57,58,59,60,61,62,67,68,70,71,73,74,75,76,77,78,82,83,85,89,91,94,96,97,101,102,103,105,106,111,118,120,125,127,128,130,131,133,134,135,136,138,139,141,143,144,145,149,151,152,155,157,161,167,168,169,171,172,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,202,203,205,207,208,212,213,214,217,218,220,222,227,234,235,236,241,246,248,251,255,256,257,264,289,304,315,323,325,338,345,354,370,372,375,383,390,394,404,406,410,412,417,435,439,449,451,461,463,465,468,469,473,478,485,511,515,520,539,541,544,548,550,551,554,561,563,565,567,592,600,607,617],GMs:[149,169],Going:[123,149,150,299,619],HPs:161,Has:[206,337,338,339,340,341],His:[97,168,325],IDE:[10,128,176],IDEs:168,IDs:[103,194,195,212,285,539,567,590],INTO:[96,241,363,449],IOS:206,IPs:[57,205,218,220,445,534],IRE:[71,515],Its:[9,24,36,40,45,46,60,68,70,97,175,197,246,325,433,478,549,551,567],NOT:[1,24,36,53,93,122,126,132,142,217,220,241,370,469,478,534,554],Near:137,Not:[0,20,35,48,49,53,60,62,72,101,133,136,143,144,147,150,152,163,168,173,190,194,206,207,209,217,228,235,249,473,488,501,502,503,505,506,507,513,515,518,539,540,561],OBS:[59,220],ONE:218,Obs:220,One:[0,1,4,6,12,30,33,36,39,45,46,49,57,60,79,83,91,94,101,102,103,111,119,120,126,128,131,133,134,136,139,140,143,144,145,149,152,161,168,169,172,180,182,186,188,190,191,196,197,205,207,215,222,224,230,232,248,304,312,318,321,369,370,372,375,383,389,394,405,406,408,417,439,440,461,471,477,478,501,529,539,540,544,545,551,552,554,567,576,583,615],PCs:[151,406,411],Such:[11,16,24,30,52,101,131,141,147,149,168,171,177,241,478,544,551],THAT:186,THE:[96,449],THEN:[96,235,449],THERE:[96,449],TLS:[218,220],That:[1,2,7,8,9,13,15,18,22,24,33,35,42,44,45,46,48,49,50,56,76,79,82,83,88,92,101,102,103,106,119,120,125,128,130,131,133,134,136,137,139,140,141,143,146,149,151,152,155,157,161,163,165,168,171,175,177,179,181,182,185,186,189,193,195,196,197,203,205,264,280,295,312,318,370,394,461,469,478,532,551,592],The:[0,1,3,5,6,7,9,10,11,12,13,14,15,18,19,20,21,22,24,25,27,31,35,36,37,38,39,40,43,46,47,48,49,50,51,53,54,55,57,60,62,63,64,65,66,67,70,71,72,73,74,76,77,78,79,80,82,83,85,88,89,90,91,92,94,95,96,97,98,99,100,103,104,105,106,112,113,114,115,116,117,119,120,121,122,123,124,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,148,149,151,152,155,158,161,163,166,167,168,171,172,173,174,175,176,177,179,180,183,186,187,188,189,190,192,193,194,195,196,198,199,200,202,203,205,206,207,208,209,211,212,213,214,215,216,217,218,219,220,221,222,227,228,229,230,232,233,234,235,236,238,241,245,246,247,248,249,250,251,252,253,255,256,257,264,270,271,272,273,274,276,279,280,283,284,285,286,289,291,299,302,303,304,305,307,309,312,315,318,321,322,325,328,334,337,338,339,340,341,345,348,354,357,361,363,366,369,370,371,372,375,376,379,383,386,389,390,394,399,404,406,407,408,409,410,411,412,413,415,416,417,429,431,433,438,439,440,441,449,451,454,457,461,462,463,464,465,466,468,469,471,472,473,475,476,477,478,480,481,482,483,484,485,486,488,489,490,491,493,495,496,498,500,501,502,503,504,505,506,507,508,509,510,511,513,514,515,516,518,519,520,522,523,528,529,530,531,532,536,539,540,541,542,544,545,546,547,548,549,550,551,552,553,554,555,556,558,560,561,562,563,564,565,566,567,568,570,571,572,576,577,583,587,588,590,592,593,596,598,607,615,616,619],Their:[30,44,55,97,177,218,325],Theirs:[97,325],Then:[7,8,11,13,18,47,53,55,67,83,87,95,98,100,101,102,103,108,111,125,128,139,161,167,181,186,189,192,196,197,205,212,213,215,345,348,364],There:[0,1,2,4,8,11,12,15,16,17,18,20,21,22,24,30,33,34,40,42,45,46,47,48,50,51,52,55,56,59,60,62,70,71,72,73,77,80,82,83,94,95,96,98,101,102,103,106,119,120,124,125,128,131,133,134,135,136,137,138,139,140,141,143,145,147,149,150,151,152,155,161,168,169,172,175,177,178,179,180,182,183,184,186,191,193,194,196,197,202,203,205,207,208,217,218,219,249,321,337,338,339,340,341,345,361,369,394,413,449,461,478,486,496,515,532,544,545,551,554],These:[0,1,8,11,13,15,16,19,24,25,26,30,33,34,35,38,44,45,46,47,48,50,52,53,54,55,60,64,66,68,70,71,83,85,87,89,94,101,103,106,111,112,113,115,125,126,128,133,134,135,136,138,143,144,145,149,151,161,172,176,177,180,181,182,186,194,197,201,208,212,214,216,217,218,220,222,226,227,232,234,236,238,240,242,246,250,256,264,276,289,321,328,334,367,369,370,372,389,390,394,407,411,412,416,433,441,446,463,464,469,473,477,478,486,490,497,516,519,520,522,531,532,533,539,541,544,548,550,551,552,553,554,560,561,562,567,571,575,584,617],Tying:[132,158],USING:321,Use:[0,1,3,6,8,11,13,14,16,17,22,30,33,34,38,40,44,46,50,53,57,60,62,79,81,82,83,92,104,105,107,114,115,118,125,128,132,134,136,141,143,144,146,158,169,178,189,191,192,197,201,205,206,207,208,209,210,212,213,215,217,220,221,227,233,238,239,241,246,247,248,251,253,255,264,265,276,280,299,302,312,321,328,331,334,338,339,340,341,365,375,390,406,422,435,457,463,471,472,473,491,493,497,502,519,520,522,526,539,541,544,551,553,554,558,564,567,580,619],Used:[0,24,152,163,180,220,232,235,241,253,331,361,368,369,372,375,416,449,461,471,472,484,493,511,539,541,552,553,565,567,575],Useful:[30,82,125,217,441,473],Uses:[25,93,163,241,253,280,439,445,491,539,553,554,558],Using:[0,3,9,21,25,30,36,38,42,49,60,63,66,83,89,102,115,126,130,132,136,139,140,141,142,143,144,148,149,155,158,166,169,170,172,175,176,180,186,191,210,217,224,225,258,299,338,373,374,390,392,433,473,511,538,550,551,619],VCS:5,VHS:[96,449],VPS:217,WILL:[186,206],WIS:[152,161,163,169,409],WITH:[30,96,205,449],Was:246,Will:[22,25,35,114,125,132,134,147,222,227,246,276,307,309,321,372,390,407,413,457,473,476,478,489,491,500,501,541,550,551,553,554,555,562,567],With:[0,15,18,20,30,39,55,59,77,101,106,125,130,133,136,140,145,146,147,149,151,155,157,161,163,168,184,191,196,205,207,212,220,224,227,264,321,370,390,478,539,544,554],Yes:[24,96,101,139,170,449,549,551],__1:560,__2:560,_________________:50,_________________________:30,___________________________:120,______________________________:30,_______________________________:120,________________________________:30,_________________________________:50,______________________________________:551,_________________________________________:30,______________________________________________:30,_______________________________________________:30,____________________________________________________:30,_________________________________________________________:184,__________________________________________________________:184,_______________________________________________________________:120,________________________________________________________________:120,__all__:[575,577,579,580],__defaultclasspath__:541,__deserialize_dbobjs__:[0,15,187,406],__dict__:491,__doc__:[24,34,236,249,251,252,464,465,547,551],__example__:9,__file__:220,__ge:136,__ge__:9,__getitem__:544,__gt:136,__iendswith:136,__in:136,__init_:553,__init__:[9,15,47,50,64,83,127,129,137,138,139,144,152,155,163,165,182,187,220,234,235,236,257,264,270,271,272,273,283,299,307,312,318,321,348,368,369,370,375,376,390,394,405,406,410,413,417,457,463,469,472,473,477,482,483,485,486,488,489,491,493,494,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,518,519,520,522,529,530,532,534,535,536,539,541,542,544,546,549,550,551,552,553,554,560,561,562,563,567,575,576,580,583,598,601],__istartswith:136,__iter__:15,__le:136,__lt:136,__multimatch_command:250,__noinput_command:[234,250,264,549,551,552],__nomatch_command:[250,264,302,441,549,551,552],__packed_dbobj__:52,__pycache__:138,__repr__:157,__serialize__dbobjs__:187,__serialize_dbobjs__:[0,15,187,406],__settingsclasspath__:541,__str__:615,__unloggedin_look_command:[27,253,280],_abil:152,_action_thre:30,_action_two:30,_actual_myfunc_cal:30,_all_:234,_always_:[321,554],_and_:[554,567],_answer:500,_ask_again:30,_asynctest:[442,517],_attrs_to_sync:531,_attrtyp:539,_buy_item:184,_by_tag:21,_cach:541,_cached_cmdset:235,_calculate_mod:82,_call_or_get:264,_callable_no:551,_callable_y:551,_callback:[21,486],_can_:542,_char_index:544,_check_password:30,_check_usernam:30,_clean_nam:262,_clean_str:544,_cleanup_charact:178,_code_index:544,_compress_cont:262,_copi:[241,473],_create_charact:194,_creation:50,_current_step:187,_damag:[82,375],_dashlin:33,_data:552,_default:[30,152,551],_defend:30,_destroy_:417,_differ:544,_dmg:[82,375],_errorcmdset:235,_event:[101,289],_every_:321,_evmenu:[0,1,30,184,551],_evmnenu:30,_file:560,_flag:477,_footer:24,_format_diff_text_and_opt:478,_funcnam:567,_gambl:30,_get_a_random_goblin_nam:44,_get_db_hold:[530,541],_get_top:197,_getinput:551,_gettabl:496,_guaranteed_:554,_handle_answ:30,_helmet_and_shield:152,_helper:554,_http11clientfactori:493,_init:2,_init_charact:178,_is_fight:172,_is_in_mage_guild:30,_ital:128,_italic_:209,_knave_:[406,410,411,412,414,416],_last_puppet:[52,580],_linklen:370,_load:[155,187],_loadfunc:549,_magicrecip:322,_maptest:367,_menutre:[0,551],_mockobj:393,_monitor:496,_monitor_callback:37,_nicklist_cal:228,_noprefix:236,_npage:552,_obj_stat:163,_oob_at_:558,_option:30,_overrid:75,_page_formatt:552,_pagin:552,_parsedfunc:554,_pending_request:536,_perman:36,_permission_hierarchi:468,_ping_cal:228,_playabel_charact:52,_playable_charact:[0,152,194,197,580],_postsav:558,_power_cal:33,_prefix:390,_process_cal:33,_quell:468,_quest:413,_quest_a_flag:413,_quitfunc:549,_random_:152,_raw_str:544,_reactor_stop:[508,529],_read:394,_recog_obj2recog:390,_recog_ref2recog:390,_regex:390,_repeat:496,_safe_contents_upd:472,_save:[155,187],_savefunc:549,_saver:[0,15,548],_saverdict:[15,394,548],_saverlist:[15,548],_saverset:548,_sdesc:390,_select:30,_select_ware_to_bui:417,_select_ware_to_sel:417,_sensitive_:599,_session:551,_set_attribut:30,_set_nam:30,_shared_login:0,_should:132,_skill_check:30,_some_other_monitor_callback:37,_start_delai:486,_static:128,_step:370,_stop_:567,_stop_serv:508,_swap_abl:152,_swordsmithingbaserecip:322,_temp_sheet:152,_templat:128,_test:[33,232],_test_environ:220,_to_evt:552,_traithandlerbas:393,_transit_:372,_try_again:30,_typeclass:55,_update_nam:152,_uptim:33,_validate_fieldnam:169,_weight:370,_yes_no_quest:551,a2enmod:207,a8oc3d5b:212,a_off:312,aaaaaargh:143,aardwolf:71,aaron:0,abandon:[149,302,413],abandoned_text:413,abat:150,abbrevi:[67,241,322,331,554],abcd:247,abi1:152,abi2:152,abi:409,abid:[188,550],abil:[0,15,22,24,31,36,44,53,56,72,101,113,117,125,126,132,134,138,143,146,149,151,155,157,158,161,163,167,168,169,171,177,191,195,212,217,220,337,338,339,341,357,389,390,404,405,409,411,416,473,484,491,539,611],abilit:152,ability_chang:152,ability_nam:[151,161],abival1:152,abival2:152,abl:[0,2,5,6,7,8,10,13,15,16,17,20,21,22,24,30,31,33,36,39,40,44,45,52,54,55,59,70,76,83,89,94,99,101,103,106,110,116,119,125,128,130,131,132,134,135,136,141,142,143,146,147,150,151,152,155,157,161,165,168,169,170,171,172,177,178,179,180,182,184,186,187,191,194,195,196,197,204,205,207,208,211,212,215,217,218,220,235,238,239,241,242,246,248,255,257,264,276,304,328,337,338,339,340,341,348,354,365,369,370,386,394,406,415,416,417,539,541,548,563,567,608],abort:[0,1,21,24,30,31,40,117,125,126,140,145,152,155,157,220,227,236,241,255,302,315,321,357,363,370,404,441,451,473,476,484,551,552,554,567],abound:149,about:[0,1,2,3,5,7,8,13,15,16,17,18,19,22,24,25,27,30,33,34,38,41,44,48,51,52,55,56,57,58,68,70,72,73,75,78,82,83,88,101,102,103,126,127,128,130,131,132,133,134,136,137,138,139,140,141,142,143,145,146,147,148,150,155,157,158,161,163,164,165,166,168,172,173,174,177,178,179,181,183,186,187,188,189,191,192,193,195,196,197,198,199,200,204,205,206,207,209,211,212,213,215,217,218,219,220,222,227,241,248,251,264,273,302,304,305,312,315,318,321,339,340,341,367,369,375,377,383,390,406,410,417,429,435,440,441,465,473,491,493,496,505,507,509,518,520,522,523,530,532,539,540,542,544,552,558,567,576,583,590],abov:[0,2,5,10,11,13,14,15,16,17,21,22,24,28,30,33,34,35,36,37,44,45,46,48,50,51,53,54,55,56,57,60,62,64,67,70,75,76,77,82,83,87,89,94,99,101,102,104,105,106,111,113,114,119,125,127,131,134,136,138,139,141,143,144,145,149,151,155,161,163,167,168,169,171,172,173,174,175,178,179,180,182,183,184,186,189,190,191,194,197,205,206,207,208,212,213,217,220,222,234,235,241,264,309,321,328,337,339,340,341,357,363,369,383,386,390,394,404,416,435,449,457,461,469,471,473,496,551,554,562,576],above_str:33,abruptli:[119,394],abs:161,absolut:[0,21,55,97,128,163,167,175,176,186,220,276,315,325,383,550,553,555,567],absorb:35,abspath:[220,567],abstractus:230,abus:[63,78,218],academi:200,acccept:140,acccount:185,accept:[0,15,17,20,21,22,30,33,35,36,49,50,71,79,82,83,87,96,101,111,113,117,125,127,141,143,149,152,169,194,195,205,209,217,220,227,232,233,251,284,287,312,357,369,370,372,383,389,407,439,441,449,457,473,491,496,509,535,536,540,545,551,554,563,567],accept_callback:[284,286],access:[0,1,2,11,12,13,15,16,17,20,21,22,24,25,27,30,31,33,34,35,36,37,38,39,42,44,45,46,47,48,50,51,53,54,55,57,59,64,65,68,70,72,75,77,82,83,87,89,99,101,103,106,119,125,126,127,129,131,133,135,136,137,138,139,140,141,143,146,149,151,155,163,167,168,169,172,177,178,179,180,181,182,184,186,187,188,191,192,194,195,196,197,204,205,207,208,212,217,218,219,220,227,229,230,234,235,236,238,239,241,246,247,248,249,251,253,255,256,257,264,283,285,295,299,302,315,321,323,334,337,338,339,340,341,345,348,361,372,375,386,389,390,393,394,404,406,408,411,412,441,463,464,465,466,467,468,469,472,473,476,477,478,481,483,485,486,488,491,500,501,530,532,538,539,541,542,545,546,547,554,560,566,567,571,576,577,583,588,590,593,607,613,615,618,619],access_obj:[468,539],access_object:36,access_opt:568,access_token_kei:[198,204],access_token_secret:[198,204],access_typ:[40,227,236,241,255,257,463,465,468,469,473,539,541,612,613,618],accessed_obj:[1,36,140,180,468,469],accessing_obj:[1,15,36,140,180,227,255,257,463,465,468,469,473,539,541],accessing_object:[15,36,468],accessor:[230,257,465,472,481,539,541,542,559],accessori:[85,213],accident:[18,22,60,125,149,191,239,241,322,530],accomod:553,accompani:191,accomplish:[1,57,122,130,147,149,182,187,554],accord:[22,24,106,113,136,149,161,178,188,264,309,315,338,369,389,457,485,544,545,554],accordingli:[0,10,169,182,217,299],account1:[11,608],account2:[11,608],account:[0,1,3,8,11,13,15,17,19,20,22,24,25,26,27,28,30,31,33,35,36,38,39,40,42,43,44,45,46,47,48,50,51,55,57,59,62,65,68,72,74,75,83,90,99,103,104,105,106,107,116,126,128,129,132,133,134,137,138,139,141,142,145,147,152,167,168,175,179,182,185,186,188,189,191,192,194,195,196,197,198,201,204,206,210,212,217,219,220,222,224,225,231,232,233,234,235,236,237,239,241,242,243,246,247,248,249,251,252,253,255,256,257,264,276,280,283,284,286,295,302,303,315,318,328,337,339,341,345,354,361,372,379,386,390,405,411,433,439,440,441,445,449,463,465,468,469,471,472,473,475,477,478,479,480,481,491,495,496,511,522,523,530,531,532,539,541,542,544,547,551,552,554,561,562,564,565,567,568,573,574,580,587,588,590,593,598,599,606,607,608,610,613,615,617,619],account_cal:[238,246,249,295,328],account_count:532,account_id:[194,473],account_nam:167,account_search:[229,390,473],account_subscription_set:230,account_typeclass:[565,608],accountadmin:[52,575],accountattributeinlin:575,accountchangeform:575,accountcmdset:[14,22,27,83,84,104,141,168,169,175,220,238,242,328],accountcreateview:611,accountcreationform:575,accountdb:[0,50,129,194,220,224,227,230,236,255,463,465,538,541,561,568,575,576,583,587],accountdb_db_attribut:575,accountdb_db_tag:575,accountdb_set:[539,542],accountdbfilterset:[587,593],accountdbmanag:[229,230],accountdbpasswordcheck:511,accountdbviewset:[196,593],accountform:[607,611],accountid:194,accountlist:169,accountlistseri:[590,593],accountmanag:[227,229],accountmixin:611,accountnam:[135,169,241,253,256,280],accountseri:[590,593],accounttaginlin:575,accross:125,accru:227,acct:145,accur:[83,236,270,271,272,273,283,307,318,338,341,368,394,405,406,410,413,417,463,477,478,485,489,491,493,494,502,511,512,514,516,519,520,539,542,544,562,563,601],accuraci:[0,102,121,186,338,339,340],accus:177,accustom:39,aceamro:0,acept:[96,449],achiev:[21,24,83,103,111,128,136,146,150,168,188,305,340,491],ack:31,acl:[77,262],acquaint:[150,168],acquir:546,across:[0,30,33,44,45,46,50,58,64,70,72,85,87,113,125,143,147,149,167,186,208,220,227,234,235,315,370,372,377,389,441,449,464,473,484,486,488,500,501,515,532,552,553,554,567],act:[0,8,14,16,20,22,30,45,46,54,63,96,101,106,119,120,125,133,135,136,139,143,147,149,152,157,167,169,172,182,191,205,207,222,224,227,241,246,257,279,291,304,305,364,369,370,371,372,394,395,408,411,412,449,461,473,488,500,501,520,539,542,546],action1:178,action2:178,action:[7,8,30,45,51,52,60,62,71,77,80,82,83,88,94,96,101,102,103,121,123,125,126,130,131,132,138,139,140,143,147,152,168,172,175,177,178,181,186,187,191,194,196,217,220,227,228,236,246,247,251,255,299,302,304,307,309,312,318,337,338,339,340,341,370,375,376,390,404,406,407,411,416,417,422,433,438,449,463,464,465,477,481,482,503,522,523,524,534,541,551,552,558,575,588,591,592,593],action_count:178,action_kei:[406,411],action_nam:337,action_preposit:304,action_queu:406,actiondict:178,actions_per_turn:[337,338,340,341],activ:[2,5,12,16,21,22,24,40,42,45,46,51,57,62,65,67,68,75,77,82,98,101,127,128,131,132,133,147,157,171,172,175,185,189,192,193,200,201,202,203,210,211,213,215,216,217,220,222,227,232,235,239,241,251,253,255,284,361,375,377,406,410,411,416,433,439,446,451,472,473,476,485,496,503,504,505,506,507,511,513,514,515,522,532,534,539,540,551,552,553,554,567],activest:566,actor:[0,33,63,82,341,375,473,554,570],actual:[0,2,5,7,8,9,10,11,12,13,14,15,16,17,20,21,25,30,33,34,36,38,39,40,42,44,46,48,49,52,53,54,55,56,59,60,62,64,68,70,71,73,77,82,83,84,94,102,106,110,124,125,126,128,131,133,134,135,136,137,138,140,141,143,144,145,146,147,149,150,151,152,155,158,161,163,164,169,170,172,174,177,178,179,180,182,183,184,185,186,187,188,191,193,194,195,196,197,200,204,207,212,213,215,217,220,227,232,236,238,241,246,247,249,251,252,253,255,257,264,289,302,307,312,315,321,322,331,334,337,338,339,340,341,345,348,357,361,366,367,369,370,371,375,389,390,393,404,407,408,410,417,433,435,440,441,449,461,463,465,468,469,472,473,478,511,514,520,522,528,530,531,532,536,537,539,541,544,546,549,558,561,562,563,565,567,585,618],actual_return:11,ada:34,adam:77,adapt:[64,103,161,177,194,197,321],add:[0,2,3,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,22,24,26,27,28,30,33,34,35,36,37,38,39,40,42,44,45,46,48,49,50,51,52,53,56,58,59,62,64,65,67,70,71,73,75,76,79,81,82,83,84,85,86,87,88,89,91,92,94,95,97,98,100,101,102,103,104,105,106,107,109,110,111,112,113,116,117,119,120,121,123,124,125,126,127,128,130,131,132,133,134,136,138,139,140,141,143,144,145,147,149,150,151,152,157,158,163,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,186,187,189,190,191,194,195,196,197,198,199,201,203,204,206,207,208,209,210,212,213,215,217,219,220,221,224,227,230,234,235,241,246,247,248,250,252,255,257,264,265,267,272,276,280,283,284,286,287,289,295,299,302,304,309,312,315,318,321,328,331,334,337,338,339,340,341,345,348,354,357,363,364,365,366,369,370,371,375,376,383,389,390,393,394,399,404,406,407,410,413,417,433,438,439,440,441,445,451,454,461,468,469,472,473,477,478,481,482,483,484,485,486,491,496,497,500,501,504,505,507,509,513,520,522,523,525,533,539,542,545,549,550,551,552,553,554,558,560,562,563,565,567,575,580,587,593,615,618,619],add_:553,add_act:178,add_alia:246,add_argu:[123,299],add_callback:[284,286],add_charact:178,add_choic:[264,265],add_choice_:264,add_choice_edit:[83,264],add_choice_quit:[83,264],add_collumn:236,add_column:[169,553],add_combat:406,add_condit:339,add_default:[22,140,179,180,184,235,272],add_dist:341,add_ev:286,add_fieldset:[575,580],add_form:[575,580],add_head:553,add_languag:[113,389],add_listen:273,add_map:371,add_msg_bord:309,add_object_listeners_and_respond:273,add_respond:273,add_row:[169,236,553],add_to_kei:187,add_user_channel_alia:[20,255],add_view:[575,577,580],add_xp:[177,404],addcallback:[24,473],addclass:[53,224,225,573,594],addcom:[0,110,133,169,295],added:[0,1,5,7,10,12,13,19,21,22,24,33,34,36,44,45,48,51,64,70,71,72,77,82,83,85,86,87,97,101,103,106,113,115,119,121,124,125,127,128,133,136,138,139,140,141,143,144,151,152,155,157,168,169,177,178,179,180,184,186,190,191,192,194,196,197,199,201,206,211,212,220,222,227,232,234,235,236,246,250,251,253,264,267,271,272,274,283,286,289,312,315,318,321,322,325,337,338,339,340,341,361,365,369,370,375,376,383,389,390,394,404,407,417,433,463,469,473,476,478,483,485,496,530,534,539,542,545,551,552,553,560,567,593,600,611,615],added_tag:274,addendum:127,adding:[0,5,8,9,10,11,12,15,17,19,21,22,26,27,30,36,44,48,49,50,53,55,62,64,67,70,72,82,83,89,90,94,96,101,102,103,104,119,120,121,125,136,140,141,143,144,149,151,152,155,161,165,168,169,174,175,178,179,180,186,188,189,191,194,196,197,210,219,220,234,235,239,241,248,264,276,283,286,299,321,328,337,340,363,377,386,389,390,394,406,441,449,461,471,473,477,478,483,491,522,539,547,553,567,576,583],addingservermxp:506,addit:[0,1,4,5,22,28,33,45,52,55,62,71,82,83,84,87,101,102,105,111,120,125,126,127,128,161,169,175,182,186,195,197,207,210,217,218,220,221,227,228,235,236,248,255,264,267,283,284,286,299,338,341,348,370,372,389,390,393,406,407,416,445,454,461,469,473,476,477,485,502,530,539,541,551,607,619],addition:[1,106,111,192,341],additionalcmdset:22,addl:[161,416],addpart:334,addquot:567,addr:[229,488,501,502,503,547],address:[0,3,13,24,39,46,57,60,64,75,92,97,126,152,161,165,182,186,189,205,208,217,218,220,227,229,239,255,280,325,411,473,488,501,503,511,531,534,567,568],address_and_port:511,addresult:334,addscript:45,addservic:64,adjac:[105,125,341,439],adject:[9,60,140,554,567,571],adjoin:390,adjud:405,adjust:[0,24,103,127,188,194,213,220,386,417,485,551,553,554],admin:[0,3,14,15,18,20,24,25,36,42,54,55,57,59,63,70,78,138,139,147,149,169,180,182,189,191,192,194,195,196,197,202,203,220,222,224,225,229,230,231,236,237,241,246,251,253,255,280,295,302,309,439,463,465,469,472,473,500,501,541,547,563,573,598,619],admin_sit:[575,576,577,579,580,581,582,583],admin_wrapp:578,adminconfig:598,admindoc:220,administr:[5,24,36,42,56,74,101,128,130,131,132,148,169,205,210,213,215,218,220,488,500,501],adminportal2serv:500,adminserver2port:500,adminsit:[52,220,224,225,573,597],adminstr:488,admintest:608,admittedli:[0,125,146],adopt:[0,2,83,126,131,168,257,414,515,570],advanc:[8,15,16,22,24,25,30,33,44,46,50,55,56,57,64,70,72,77,83,105,106,113,115,119,122,126,130,131,132,139,142,143,145,169,171,172,176,181,191,219,221,241,249,337,339,345,390,394,411,433,457,506,545,549,550,551,553],advantag:[4,15,17,18,30,34,44,60,102,113,125,130,132,133,140,149,165,167,169,175,177,178,181,183,191,194,196,197,217,218,264,312,337,406,409,416,445,461,542,545],advantage_matrix:406,advantav:161,adventur:[89,106,112,122,126,146,149],advic:200,advis:[1,83,103],aesthet:28,aewalisash:[111,454],affair:546,affect:[1,8,12,16,17,22,24,42,45,46,48,52,59,62,82,86,115,121,125,136,140,143,147,149,155,175,177,178,188,220,227,234,251,267,289,307,321,339,354,369,375,376,389,412,433,473,477,541,545,550,553,561],affili:485,affliat:485,afford:[46,184],affort:184,aforement:82,afraid:217,after:[0,1,2,4,5,6,11,12,13,15,17,18,21,22,24,28,30,36,45,47,54,55,56,62,67,68,70,77,79,82,83,85,89,96,98,101,102,103,115,119,121,122,125,126,128,130,133,134,138,139,140,141,143,144,146,147,149,150,152,155,157,161,169,171,172,173,178,179,180,181,182,184,186,188,189,191,193,194,196,207,208,212,213,214,215,217,218,220,227,234,235,236,237,238,241,248,249,251,252,253,255,264,276,277,280,286,299,302,307,308,312,315,321,322,323,334,337,338,339,342,345,348,361,367,370,375,376,377,386,389,390,391,393,394,400,404,406,407,408,410,412,413,422,433,439,440,441,449,451,461,463,472,473,477,478,480,482,484,485,491,513,514,517,522,529,530,531,532,534,536,539,544,545,546,549,550,551,552,558,562,567,588,591,611,613,618],after_:0,afterlif:149,afternoon:[95,345],afterward:[13,70,80,125,139,145,146,172,186,197,264],again:[0,7,10,12,15,16,17,20,24,30,38,45,46,54,57,62,70,83,88,94,101,103,106,114,115,122,124,125,126,131,133,134,135,137,139,140,141,143,144,147,149,152,157,161,167,168,169,170,171,172,174,175,177,178,179,180,181,182,184,186,187,188,191,192,194,196,197,203,205,208,209,210,212,215,217,220,222,228,235,246,252,276,286,318,337,361,375,417,433,457,484,491,508,511,514,534,544,545,548,563,565],againnneven:252,against:[0,13,15,22,24,50,67,68,101,121,127,136,146,149,161,163,168,169,178,179,217,218,220,227,233,234,236,322,337,338,339,341,390,406,416,469,471,473,477,478,509,534,539,541,542,564,567],age:[77,96,123,220,299,408,449,607],agenc:218,agent:5,agenta:544,ages:[96,449],aggrav:185,aggreg:[0,273],aggregate_func:273,aggress:[15,17,122,146,185,211,220,439,541],aggressive_pac:439,agi:[15,119,126,394],agil:15,agnost:[127,131],ago:[1,101,139,212,567],agre:[73,79,126,150,177,307,312],agree:312,ahead:[5,17,72,83,141,180,182,192,196,206,217,513],ai_combat_next_act:411,aid:[73,79,125,126,248,249,312,536],aim:[3,36,70,72,130,143,147,150,169,177,188,217,477],ain:102,ainnev:[0,119,126,136,177,394],air:[106,134,144,179],airport:145,ajax:[0,53,64,217,220,520,531],ajaxwebcli:520,ajaxwebclientsess:520,aka:[8,15,112,149,189,334,567],akin:82,alarm:134,alchin:77,ale:105,alert:[20,255,473],alex:77,alexandrian:200,algebra:182,algorith:389,algorithm:[0,34,125,149,369,370,471,567],alia:[0,3,13,14,20,22,24,27,33,39,40,45,46,48,50,52,74,83,106,110,113,125,133,134,143,145,168,169,174,179,189,215,217,230,233,236,238,241,246,247,248,249,252,255,274,283,295,318,337,338,339,340,341,345,346,354,361,363,370,390,393,394,400,439,441,468,472,473,478,481,486,496,522,540,541,542,547,554,563,564,565,571,575,576,577,579,580,581,583,587,589,590,591,593,607,611,612,613,618],alias1:[152,241,345],alias2:[152,241,345],alias3:345,alias:[0,1,13,14,16,20,21,22,24,25,30,33,34,35,39,40,44,52,60,74,76,83,87,89,101,105,106,132,133,134,140,169,172,174,178,179,184,191,220,227,234,236,238,239,240,241,246,247,248,249,250,251,252,253,255,256,264,280,284,295,298,299,302,304,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,361,363,370,375,379,383,390,406,407,433,435,439,440,441,449,451,461,463,464,465,466,471,472,473,478,522,540,541,542,547,549,551,552,560,564,565,571,587,590],aliaschan:295,aliasdb:227,aliasfilt:587,aliashandl:[542,583,590],aliasnam:478,aliasproperti:[0,542],aliasstr:[471,547],alien:111,align:[0,33,44,152,169,386,544,550,553,554,567],alist:9,aliv:[130,151,439],alkarouri:566,all:[0,2,3,5,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,26,28,30,33,34,35,36,38,39,40,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,64,66,67,68,70,71,72,73,74,75,76,77,78,80,82,83,85,87,89,91,93,94,95,96,98,100,102,103,106,110,111,112,113,114,116,119,120,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,141,143,144,145,146,147,150,151,152,155,157,158,161,163,164,165,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195,196,199,200,202,203,205,207,209,210,211,212,213,215,216,217,218,219,220,221,222,227,228,229,231,232,233,234,235,236,237,238,239,240,241,242,243,246,247,248,249,250,251,252,253,255,256,257,264,270,272,273,280,283,286,295,298,299,302,304,305,307,308,312,315,318,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,361,363,369,370,371,372,375,377,383,389,390,393,394,404,405,406,407,408,410,411,412,413,415,416,417,431,433,435,438,439,440,441,446,449,451,454,457,461,463,464,465,466,467,468,469,470,471,472,473,476,477,478,480,482,483,484,485,486,487,490,491,495,496,497,500,502,503,505,507,508,509,510,511,514,515,518,519,520,522,523,529,530,531,532,534,536,537,538,539,540,541,542,544,545,546,547,548,549,550,551,552,553,554,558,560,562,564,565,566,567,568,570,572,575,576,577,579,580,581,583,584,585,593,596,598,600,607,613,615,616,618],all_above_5:155,all_alias:48,all_attr:541,all_below_5:155,all_book:145,all_cannon:136,all_cloth:15,all_cmd:248,all_combat:406,all_connected_account:532,all_data:477,all_displai:486,all_famili:[136,196],all_fantasy_book:145,all_flow:145,all_from_modul:567,all_kei:248,all_map:[125,371],all_opt:562,all_receiv:473,all_room:[16,136],all_ros:145,all_script:45,all_scripts_on_obj:45,all_sessions_portal_sync:532,all_shield:157,all_to_categori:464,all_weapon:136,allcom:[110,133,295],allegi:411,allegiance_friendli:[163,409],allegiance_hostil:[163,409],allegiance_neutr:[163,409],allerror:[491,500],allevi:[11,15,72,536],allheadersreceiv:536,alli:[341,406],alloc:217,allow:[0,2,4,5,7,9,10,11,13,14,15,16,17,18,21,22,24,25,30,33,34,35,36,38,39,40,42,43,44,48,50,51,52,53,54,55,56,57,58,59,60,66,67,70,72,73,74,75,77,78,79,82,83,84,87,89,90,93,94,95,96,97,98,101,102,103,105,106,109,113,119,120,121,124,125,126,128,129,130,131,132,134,136,138,139,140,141,143,144,145,147,151,152,155,157,163,165,168,169,171,172,173,174,177,178,179,180,181,182,186,187,188,189,191,192,194,195,199,201,202,203,204,205,207,208,209,211,212,213,215,217,218,219,220,227,228,230,232,234,235,236,238,239,240,241,246,248,249,251,252,255,256,257,264,269,271,272,273,274,276,286,295,299,302,304,307,309,312,315,321,323,325,331,337,340,341,345,361,369,370,372,375,379,383,389,390,393,394,404,405,406,407,408,411,412,416,429,433,439,440,441,449,457,461,463,465,466,468,469,471,473,477,478,482,485,486,491,495,496,498,502,504,505,506,507,514,515,516,518,523,529,530,532,534,535,539,541,542,544,545,547,549,550,551,552,553,554,555,558,561,562,563,565,567,578,580,587,588,593,607,612,615],allow_abort:551,allow_combat:[408,415],allow_craft:321,allow_death:[151,408,415],allow_dupl:234,allow_extra_properti:394,allow_nan:520,allow_pvp:[406,415],allow_quit:551,allow_reus:321,allowed_attr:169,allowed_fieldnam:169,allowed_host:[217,218,220],allowed_propnam:191,allowedmethod:520,allowext:536,almost:[0,15,24,34,49,50,52,59,83,85,139,143,144,149,196,264,315,493,500,538,542],alon:[0,11,13,16,30,36,39,70,94,111,122,126,143,150,167,169,177,178,182,220,234,248,372,389,407,416,486,496,522,545,547,553,554,583],alone_suffix:527,along:[0,8,24,30,35,45,47,57,62,71,78,79,80,101,105,113,119,120,122,125,131,136,137,143,146,147,150,152,157,158,161,180,184,186,199,219,227,238,312,340,370,383,389,394,408,417,445,461,469,473,520,538,542,593],alongsid:[96,208,371,449],alonw:481,alpha:[0,132,148,209,210,217,220,544],alphabet:[18,73,106,544],alreadi:[0,1,2,10,11,12,13,14,15,16,18,21,22,24,28,30,33,34,36,45,46,48,50,53,55,64,71,75,78,83,85,94,101,102,103,111,122,125,127,128,131,132,133,134,135,136,138,139,140,141,143,144,145,147,150,152,155,161,167,168,169,170,172,174,176,177,178,179,180,182,186,189,191,192,193,194,195,196,197,198,202,209,210,212,213,216,218,220,222,227,229,234,235,238,241,249,251,255,256,295,304,309,312,315,318,321,322,337,338,340,341,348,361,369,370,372,389,390,394,406,407,408,410,417,439,440,457,469,473,477,478,491,500,508,509,511,516,519,524,529,530,532,539,542,544,547,552,560,565,567,588,599],alredi:64,alright:[79,312],also:[0,1,2,3,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,28,30,33,34,35,36,37,39,40,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,62,64,65,67,68,70,71,72,73,74,75,76,77,79,82,83,85,87,88,89,91,92,93,94,95,96,98,99,101,102,103,105,106,107,109,111,113,114,117,119,120,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,200,201,202,203,205,206,207,208,209,210,211,212,213,215,217,218,219,220,222,227,229,230,233,234,235,236,238,239,240,241,243,246,247,248,249,251,252,255,256,257,264,270,272,273,286,304,305,309,312,315,318,321,322,328,331,339,340,341,345,357,361,363,369,370,372,375,377,383,386,389,390,394,405,406,407,410,411,412,413,415,416,429,433,439,440,441,449,454,457,461,463,467,468,469,471,472,473,477,478,479,481,484,486,487,491,495,496,500,502,509,511,514,515,518,519,522,523,532,536,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,558,564,565,567,587,613,615,616,618],alt:544,alter:[53,82,98,100,101,103,106,126,131,192,205,220,348,441,473,539,550],alter_cach:82,altern:[3,15,20,24,30,34,39,45,48,52,67,76,84,87,89,93,106,112,119,123,126,128,132,133,140,144,149,163,168,174,182,183,194,205,215,217,246,249,255,256,279,291,334,341,379,390,394,433,464,468,469,471,509,544,547,567],although:[7,82,83,101,144,181,213,238,264,383,536,563,567],althougn:102,altogeth:[28,62,125,218],alwai:[0,1,9,11,12,14,15,16,17,20,21,22,24,30,33,34,35,36,38,40,42,44,45,46,47,49,50,53,57,60,62,70,71,75,82,87,89,101,103,104,111,113,116,119,125,127,128,131,133,134,139,140,141,143,144,145,147,151,152,157,161,168,169,170,173,175,177,179,180,181,182,186,188,191,192,195,197,202,205,207,217,220,227,234,235,236,238,240,241,246,248,249,252,255,256,257,302,307,321,323,328,354,369,370,372,375,377,389,390,394,408,409,416,433,466,468,469,471,472,473,477,478,486,491,493,496,500,508,511,514,515,519,520,523,530,532,537,539,540,541,542,544,547,554,558,563,564,567,568,588,600,616],always_fail:500,always_pag:552,always_return:491,amaz:211,amazon:[77,126,200,217],amazonaw:77,amazons3:77,ambianc:72,ambigu:[97,125,236,325,370,473,541],ambiti:[72,74],amend:13,amfl:17,ammo:179,among:[14,26,40,106,131,145,149,150,175,191,200,213,219,247,315,405,406,440,469,471,553,564],amongst:105,amor:287,amount:[20,45,58,62,132,147,151,155,161,177,191,218,251,318,322,337,339,340,375,377,404,410,473,532,549],amp:[0,43,46,64,68,220,224,225,487,488,491,499,501,509,517,529,532],amp_client:[220,224,225,487,500],amp_client_protocol_class:220,amp_host:220,amp_interfac:220,amp_maxlen:517,amp_port:[217,220],amp_serv:[220,224,225,487,499],amp_server_protocol_class:220,ampbox:500,ampclientfactori:488,ampersand:72,amphack:500,ampl:143,amplauncherprotocol:491,amplifybuff:82,ampmulticonnectionprotocol:[488,500,501],ampprotocol:488,ampserverclientprotocol:[220,488,500],ampserverfactori:501,ampserverprotocol:[220,501],amsterdam:217,amulet:339,amulet_of_weak:339,amus:133,anaconda:189,analog:[68,182],analys:30,analysi:446,analyz:[18,24,30,36,89,122,149,152,155,232,248,321,390,417,473,477,478,482,491,552,567,570],anchor:[0,236,255,341,463,465,541],anchor_obj:341,ancient:[62,105],andr:206,andrei:77,andrew:77,androgyn:454,android:[210,221,619],anew:[100,106,141,143,215,255,348,491],angl:[74,125,304,315],angri:34,angular:251,ani:[0,1,7,9,11,12,13,14,15,17,18,20,21,22,24,28,30,33,34,35,36,37,38,39,40,42,44,45,46,47,48,49,50,51,53,56,57,58,59,62,64,67,68,70,71,74,75,76,77,78,82,83,84,85,88,89,91,92,94,96,98,99,101,103,109,111,113,119,121,122,123,124,125,126,127,128,131,133,134,135,136,138,139,140,141,143,144,145,146,148,149,150,151,152,155,157,161,163,167,168,169,172,173,174,177,178,179,180,181,182,183,184,186,188,191,192,193,194,195,196,200,201,202,203,205,206,207,209,210,212,213,215,216,217,218,219,220,227,230,232,233,234,235,236,238,239,241,247,248,251,252,255,256,257,264,270,272,273,274,280,285,299,302,304,307,309,312,315,318,321,325,328,331,337,338,339,340,341,345,348,357,361,369,370,372,375,379,386,389,390,394,399,406,410,411,412,413,416,426,427,431,433,439,441,445,446,449,451,457,463,466,468,469,471,473,476,477,478,481,482,484,485,486,488,489,491,493,495,496,500,501,503,509,510,511,514,515,519,520,522,529,530,531,532,536,539,540,541,542,544,545,546,548,549,550,551,552,553,554,560,561,562,563,564,567,575,585,592,593,598,611,612,613,615,616,617,618,619],anim:[21,31,54,322],anna:[60,169,183,185,191,202,213,241],anna_object:60,annoi:[57,94,133,144,149,186],annot:[132,142,200],announc:[1,12,178,191,239,246,251,255,337,473],announce_al:[509,532],announce_move_from:[1,40,155,473],announce_move_to:[1,40,155,473],annoy:227,annoyinguser123:20,anonym:[65,197,220,390],anonymous_add:390,anoth:[0,5,7,8,9,10,11,15,16,17,22,24,25,30,34,36,40,44,46,48,51,53,56,58,60,62,72,73,76,82,83,89,94,96,101,102,103,106,111,114,120,124,125,127,131,133,134,135,136,138,139,140,143,144,145,149,151,152,155,161,163,167,168,169,170,171,172,175,178,179,180,181,182,186,190,191,193,197,199,203,207,208,217,227,234,235,238,241,246,247,255,264,285,304,307,312,315,321,328,337,338,339,340,341,361,363,368,370,390,404,406,407,408,411,413,422,440,449,457,461,463,465,466,473,476,532,539,541,545,549,551,552,554,565,567,593],another_batch_fil:545,another_list:136,another_nod:551,another_script:45,anotherusernam:51,ansi:[0,35,53,63,66,86,129,143,206,220,224,225,238,267,268,331,386,496,503,511,514,519,520,543,553,554,566,567],ansi_bg_cod:566,ansi_color_cod:566,ansi_escap:544,ansi_map:544,ansi_map_dict:544,ansi_pars:544,ansi_r:[220,544],ansi_regex:544,ansi_sub:544,ansi_xterm256_bright_bg_map:544,ansi_xterm256_bright_bg_map_dict:544,ansimatch:544,ansimeta:544,ansipars:544,ansistr:[0,224,544,553],ansitextwrapp:553,answer:[1,2,11,15,24,30,50,102,103,143,147,149,150,177,179,183,197,208,215,218,489,551,565],ant:101,antechamb:122,anthoni:77,anti:215,anticip:125,anul:207,anvil:[321,322],any_options_her:128,anybodi:218,anychar:340,anyhow:155,anymor:[114,140,155,157,189,220,286,334,361,412,457,551,563],anyobj:340,anyon:[1,7,36,57,67,94,149,157,169,178,179,183,191,209,217,220,406],anyth:[2,7,10,12,13,15,16,20,22,24,30,36,39,40,45,50,52,53,55,58,59,64,68,75,77,83,94,102,103,105,106,120,125,127,131,133,134,138,139,140,143,144,145,147,149,150,152,155,163,167,178,180,182,183,186,191,192,193,194,197,205,210,212,213,216,217,220,234,236,250,264,273,321,337,339,340,341,369,375,390,394,461,469,503,537,539,545,551,554],anywai:[17,20,30,67,72,76,92,103,125,130,134,186,192,211,280,312,369],anywher:[24,30,45,50,82,125,131,132,139,140,143,163,184,195,369,549],aogier:0,apach:[0,77,217,218,221,536,619],apache2:207,apache_wsgi:207,apart:[14,15,21,36,50,93,122,126,130,188,195,210,212,219,341,363],api:[0,3,7,11,15,16,18,20,21,25,31,34,38,40,44,45,46,50,54,60,80,89,106,144,145,176,177,187,194,198,204,220,224,225,227,240,251,253,257,280,321,463,530,539,541,545,546,552,573,619],api_kei:204,api_secret:204,apicli:591,apirootrout:[196,589],apirootview:589,apocalyps:149,apostroph:[18,33,111],app:[0,36,55,64,67,70,75,77,192,193,195,204,217,220,598],app_dir:220,app_id:194,app_modul:598,app_nam:[196,598],app_ord:598,appar:[101,169,188],apparit:441,appeal:[30,62],appear:[0,1,2,10,13,20,21,30,33,34,36,44,45,52,53,55,56,61,62,65,83,85,87,105,106,116,125,128,132,133,136,143,146,147,152,155,173,179,188,189,191,201,202,212,213,215,217,219,224,238,248,268,286,315,322,354,361,370,390,411,415,473,515,516,541,553,560,583],appearance_templ:473,append:[1,8,9,21,22,28,36,40,64,71,78,83,84,85,126,152,155,161,178,181,182,184,186,191,194,197,208,217,220,236,241,248,272,315,328,390,411,469,471,524,545,550,560,567],appendto:53,appform:194,appi:152,appl:[79,149,304,312,407,473],appli:[0,5,10,12,16,22,24,33,34,36,44,49,50,55,58,68,80,83,86,98,101,103,106,119,125,126,127,132,141,149,150,180,183,188,189,192,194,205,207,220,224,227,232,234,249,258,267,302,304,337,339,361,369,370,373,374,376,393,394,405,406,416,417,469,473,477,478,481,486,532,539,540,541,544,545,553,555,564,567],applic:[12,36,48,51,64,70,75,82,95,137,193,194,195,200,207,212,213,218,220,227,304,321,341,345,449,491,494,504,508,529,530,536,604],applicationdatareceiv:514,applied_d:194,applier:82,apply_damag:337,apply_turn_condit:339,appnam:[15,36,220],appreci:[11,13,45,83,127,199,558],approach:[1,10,30,49,83,126,149,167,172,181,186,194,264,341,370],appropri:[5,10,22,24,60,74,99,101,126,140,152,180,186,189,194,196,204,205,207,227,239,304,386,390,491,530,561,563,567,596],approrpri:64,approv:[13,101,194,195],approxim:[251,567],apr:67,april:[3,94,126,175],apt:[13,207,208,211,213,215,217,218],arbitrari:[0,9,15,16,21,33,36,50,53,59,76,82,84,101,102,106,119,120,125,131,135,139,212,227,255,302,306,315,318,341,345,375,379,390,394,404,412,431,441,461,473,478,484,489,500,520,534,539,548,560,563,567],arcan:74,arch:63,archer:478,architectur:[36,150,478],archiv:[138,200,218],archwizard:478,area:[14,83,122,124,125,126,146,147,150,169,182,200,206,361,363,369,372,439,468,550,551,553,567],aren:[13,96,103,172,181,192,193,194,196,197,218,227,286,315,334,339,449,560,563,570],arg1:[33,36,236,249,252,255,302,375,407,539],arg2:[33,236,249,252,302,375,407,539],arg:[0,1,7,24,30,33,34,35,36,38,44,49,53,56,64,66,68,71,74,82,83,87,101,111,119,128,133,138,140,141,145,157,161,163,169,170,173,177,178,179,180,181,190,191,204,220,227,228,229,230,233,236,241,249,250,251,252,255,256,257,272,273,276,283,286,299,302,304,305,312,315,318,325,334,337,338,339,340,341,345,354,357,361,365,370,371,372,375,376,379,389,390,394,399,404,406,407,408,411,412,413,415,431,433,435,439,440,441,451,457,461,464,465,466,468,469,471,472,473,476,477,478,480,481,484,485,486,488,491,496,497,498,500,501,502,503,508,509,511,512,514,515,516,519,520,524,530,532,534,536,539,540,541,542,544,551,553,554,555,557,558,560,563,565,567,568,575,576,580,583,589,590,607,613,617,618],arg_regex:[174,220,236,241,247,248,251,252,253,302,315,321,390,549,551],arglist:249,argn:539,argpars:[123,299],argtyp:567,argu:15,arguabl:[125,143],argument:[0,1,7,8,11,17,20,21,22,24,28,31,33,35,36,39,40,44,45,49,50,56,57,60,64,68,71,74,78,82,83,84,94,96,101,102,105,106,111,114,123,126,132,133,134,135,136,140,142,144,145,152,161,165,168,169,172,175,176,179,184,187,191,195,197,205,220,227,228,229,232,233,235,236,238,239,241,246,247,248,249,251,252,255,256,264,276,279,283,285,286,291,295,299,302,304,306,307,309,315,321,325,337,339,340,341,345,348,354,363,371,372,375,376,379,386,389,390,404,406,407,410,411,412,431,441,446,449,451,454,457,469,471,473,477,478,480,482,484,485,486,489,491,496,500,502,503,509,510,511,514,515,519,520,522,523,530,531,532,534,535,539,540,541,542,544,545,547,549,550,551,552,553,554,558,561,563,564,567,593,616,619],argumentpars:[123,126,299],argumnet:553,argv:220,aribtrarili:567,ariel:77,aris:218,arithmet:[33,119,394],arm:[2,24,112,149,161,179,184,334],armchair:140,armi:184,armor:[0,15,85,121,132,149,152,158,161,163,172,196,315,338,404,407,409,410,411,412,416],armour:172,armpuzzl:[112,334],armscii:[18,73],arn:77,arnold:39,around:[0,7,16,17,18,22,33,36,40,44,54,55,56,62,73,74,85,94,101,103,106,125,128,130,131,132,133,136,138,139,140,141,142,143,144,145,147,149,158,163,169,172,177,178,179,180,181,182,186,191,193,197,204,205,215,217,241,249,276,285,315,322,334,341,348,361,367,370,390,405,407,433,439,440,441,473,544,545,553],arrai:[51,71,186,370,515,567],arrang:83,arrayclos:[71,515],arrayopen:[71,515],arrest:125,arriv:[1,46,68,101,103,155,172,177,185,241,305,363,503],arriving_obj:185,arriving_object:473,arrow:[7,53,125,143],art:[62,550],articl:[11,13,18,73,168,179,181,192,200,559,619],article_set:559,artifact:[339,553],artifici:177,artist:0,artsi:150,arx:200,arxcod:[176,619],as_listen:273,as_respond:273,as_view:[55,196,236,255,463,465,541],ascii:[18,53,73,105,125,126,189,227,253,348,369,550,553,567],asciiusernamevalid:[220,227],asdf:241,ash:322,ashlei:[0,85,96,99,120,121,126,314,315,336,337,338,339,340,341,385,386,448,449,459,461],asian:[0,567],asid:189,ask:[0,2,7,8,9,13,25,28,34,37,56,60,92,101,102,107,125,126,127,130,134,139,141,147,149,150,151,161,169,177,186,194,197,205,207,209,213,214,217,234,236,241,276,284,299,312,404,411,457,489,491,518,551,555,567],ask_again:30,ask_choic:489,ask_continu:489,ask_input:489,ask_nod:489,ask_yes_no:[0,551],ask_yesno:489,asn:445,aspect:[30,44,55,70,131,138,143,149,152,163,168,177,321,386],aspeect:161,assert:[11,178,554],assertequ:[11,151,155,161,163],assertionerror:[554,565],asset:[77,132,193,218,495,596],assetown:189,assign:[0,5,9,14,15,16,20,30,36,39,40,42,44,45,48,49,53,57,63,82,86,96,113,122,125,126,134,136,138,139,140,141,143,145,149,167,169,178,180,191,227,232,233,235,241,246,248,249,255,267,302,337,338,339,340,341,345,375,390,394,405,408,441,449,469,472,473,477,478,496,503,509,511,514,530,539,542,548,560,565],assist:217,associ:[0,15,30,46,68,75,82,111,133,139,145,172,192,200,217,220,227,231,241,255,283,286,390,473,530,532,540,613],assort:[25,63,98],assum:[0,1,9,10,11,12,13,15,16,17,18,20,21,22,24,30,34,35,36,37,40,44,45,46,49,57,59,60,64,72,73,83,84,88,89,94,101,102,103,106,113,117,119,125,127,128,130,134,136,138,140,145,150,152,155,157,161,165,167,169,171,172,175,176,177,178,179,180,181,182,183,185,187,189,191,194,195,196,198,208,211,212,216,217,218,220,222,232,234,235,236,238,241,246,248,252,255,257,264,302,304,318,322,357,371,372,390,394,406,410,416,417,440,441,463,468,473,478,482,515,532,544,545,551,554,567,571,588,599,615,618],assumpt:[151,161,233],assur:[50,78,126,182],ast:[33,406,554],asterisk:[14,57,128,141,239],astronom:175,async:[63,194,567,619],asynccommand:56,asynchron:[0,8,21,24,43,63,88,126,131,171,172,228,318,473,500,501,515,560,567],at_:[50,558],at_access:[227,473],at_account_cr:[14,227],at_ad:[270,272],at_after_mov:473,at_after_travers:473,at_again_posit:304,at_already_clos:304,at_already_consum:304,at_already_mov:304,at_already_open:304,at_appli:[304,375],at_befor:0,at_before_drop:473,at_before_g:473,at_before_get:473,at_before_mov:473,at_before_sai:473,at_cannot_appli:304,at_cannot_mov:304,at_cannot_posit:304,at_cannot_read:304,at_cannot_rot:304,at_channel_cr:255,at_channel_msg:255,at_char_ent:185,at_clos:304,at_cmdset_cr:[1,22,24,83,84,85,95,97,98,100,101,104,109,110,113,116,117,133,140,141,168,169,173,174,175,178,179,180,184,191,234,242,243,244,245,264,295,302,312,315,321,328,331,334,337,338,339,340,341,345,348,354,357,363,383,390,407,433,435,438,439,440,441,451,522,549,551,552],at_cmdset_createion:295,at_cmdset_get:[227,473,530],at_code_correct:304,at_code_incorrect:304,at_consum:304,at_damag:[151,404,411],at_db_location_postsav:472,at_death:[151,404],at_defeat:[151,337,404,411],at_desc:473,at_disconnect:[227,530],at_dispel:[82,375],at_do_loot:[151,404,411],at_drink:304,at_drop:[338,341,473],at_empty_target:370,at_end:481,at_err:[56,567],at_err_funct:56,at_err_kwarg:[56,567],at_expir:375,at_failed_login:227,at_failed_travers:[40,354,408,440,473],at_first_login:227,at_first_sav:[227,255,473],at_first_start:541,at_focu:304,at_focus_:[302,304],at_focus_climb:304,at_focus_clos:304,at_focus_cod:304,at_focus_combin:304,at_focus_drink:304,at_focus_eat:304,at_focus_feel:304,at_focus_insert:304,at_focus_kneel:304,at_focus_li:304,at_focus_listen:304,at_focus_mov:304,at_focus_open:304,at_focus_press:304,at_focus_push:304,at_focus_read:304,at_focus_rot:304,at_focus_shov:304,at_focus_sip:304,at_focus_sit:304,at_focus_smel:304,at_focus_turn:304,at_focus_us:304,at_get:[101,315,341,375,473,539],at_giv:[338,341,473],at_green_button:304,at_heard_sai:183,at_hit:439,at_idmapper_flush:[541,558],at_init:[47,50,82,227,255,272,375,377,439,440,441,473,541],at_initial_setup:[138,219,220,495],at_initial_setup_hook_modul:[220,495],at_left:304,at_lock:304,at_login:[50,64,502,503,511,514,519,520,530],at_look:[227,379,473],at_loot:[151,404],at_message_rec:227,at_message_send:227,at_mix:304,at_mix_failur:304,at_mix_success:304,at_msg_rec:[227,325,473],at_msg_send:[227,228,325,431,473],at_new_arriv:439,at_no_cod:304,at_nomatch:304,at_now_add:70,at_object_cr:[1,15,22,36,40,50,91,119,132,140,169,177,179,180,181,182,184,190,191,241,304,305,325,337,338,339,340,345,354,367,383,390,394,408,411,412,433,435,439,440,441,473,541],at_object_delet:473,at_object_leav:[155,305,361,404,441,473],at_object_post_copi:473,at_object_rec:[40,155,185,305,361,404,408,441,473],at_open:304,at_pai:[151,404],at_password_chang:227,at_paus:[45,82,375,376,484],at_posit:304,at_post_all_msg:255,at_post_channel_msg:[20,227,255],at_post_check:[82,375,376],at_post_cmd:[0,24,173,232,236,249,565],at_post_command:24,at_post_disconnect:227,at_post_login:[1,227],at_post_mov:[40,155,473],at_post_msg:255,at_post_object_leav:361,at_post_portal_sync:529,at_post_puppet:[272,473],at_post_travers:[40,440,473],at_post_unpuppet:[272,473],at_post_us:[157,412],at_pr:[0,82,473],at_pre_channel_msg:[20,227,255],at_pre_check:[82,375],at_pre_cmd:[24,87,232,236,249,565],at_pre_command:24,at_pre_drop:[338,341,473],at_pre_g:[338,341,473],at_pre_get:[40,341,473],at_pre_leav:40,at_pre_login:227,at_pre_loot:404,at_pre_mov:[0,1,40,140,155,315,337,473],at_pre_msg:[20,255],at_pre_object_leav:[0,155,404,473],at_pre_object_rec:[0,155,404,473],at_pre_puppet:473,at_pre_sai:[390,473],at_pre_unpuppet:473,at_pre_us:157,at_prepare_room:[124,361],at_read:304,at_red_button:304,at_reload:[251,529],at_remov:[82,270,272,375,376],at_renam:541,at_repeat:[45,50,178,180,198,228,276,286,306,312,337,399,406,408,484,524,555],at_return:[56,567],at_return_funct:56,at_return_kwarg:[56,567],at_right:304,at_rot:304,at_sai:[183,304,473],at_script_cr:[45,178,180,198,228,276,286,306,312,337,361,371,389,399,406,408,457,477,484,524,555],at_script_delet:484,at_search:[138,219],at_search_result:[220,250,567],at_server_cold_start:529,at_server_cold_stop:529,at_server_connect:509,at_server_init:[0,220,529],at_server_reload:[45,220,222,227,228,473,484],at_server_reload_start:529,at_server_reload_stop:[1,529],at_server_shutdown:[45,222,227,228,473,484],at_server_start:[45,220,286,361,484,529],at_server_startstop:[1,138,219,220],at_server_startstop_modul:220,at_server_stop:[220,529],at_set:539,at_shutdown:529,at_smel:304,at_speech:304,at_start:[45,178,228,481,484],at_startstop_modul:486,at_stop:[45,178,180,337,484],at_sunris:175,at_sync:[530,531],at_talk:411,at_tick:[49,82,375,376,486],at_travers:[0,40,357,361,408,473],at_traverse_coordin:361,at_trigg:[82,375,376],at_turn_start:339,at_unfocu:304,at_unpaus:[82,375,376],at_upd:[339,482],at_us:[157,412],at_weather_upd:190,athlet:152,ating:252,atlanti:206,atleast:[113,389],atom:[132,203,393],atop:[124,361],atribut:548,att:[30,67],attach:[3,15,25,40,46,67,76,82,88,120,126,131,133,135,136,140,141,143,145,167,169,179,185,192,222,236,241,249,262,318,325,328,361,375,376,461,469,473,483,528,539,542,576,583],attachd:140,attachmentsconfig:192,attack:[0,17,30,82,87,88,102,120,121,132,141,146,147,151,157,161,163,171,172,173,177,178,195,217,218,220,235,318,337,338,339,340,341,376,390,404,406,407,411,416,439,440,461,473,478,509],attack_count:340,attack_nam:340,attack_skil:478,attack_typ:[157,161,163,341,406,412,416,417],attack_type_nam:163,attack_valu:[337,338,339,341],attempt:[10,14,22,30,39,75,83,87,103,125,186,198,206,218,220,238,241,302,337,338,339,340,341,345,354,406,416,446,451,488,491,496,529,534,541,554,567,613],attemt:33,attent:[40,106,128,167,169,218,302],attibuteproperti:157,attitud:168,attr1:[241,334],attr2:[241,334],attr3:241,attr:[0,15,30,36,44,53,83,136,152,169,182,241,248,257,264,305,441,468,477,478,530,539,541,558,563],attr_categori:576,attr_eq:468,attr_g:[36,468],attr_gt:[36,468],attr_kei:576,attr_l:[36,468],attr_lockstr:576,attr_lt:[36,468],attr_n:[36,468],attr_nam:241,attr_obj:[539,541],attr_object:541,attr_typ:576,attr_valu:576,attrcreat:[36,539],attread:15,attredit:[15,36,539],attrhandler_nam:539,attrib:469,attribiut:539,attribut:[0,1,3,7,14,20,21,25,28,30,35,36,37,38,39,40,44,45,46,48,49,50,57,70,72,82,83,84,87,88,93,102,103,109,113,119,121,126,132,134,135,140,143,149,151,152,155,161,163,167,168,169,170,171,173,177,178,181,182,185,186,187,191,194,195,196,197,220,224,225,227,229,230,235,241,250,251,255,264,270,271,272,274,285,286,304,318,321,322,331,334,337,338,339,340,341,345,357,361,370,375,377,379,390,394,404,405,406,408,409,410,411,412,433,439,440,441,468,471,472,473,476,477,478,480,481,482,485,496,530,538,540,541,542,547,548,549,555,560,561,564,567,573,574,575,577,580,581,583,590,592,593,607,612,613,615,618,619],attribute1:191,attribute2:191,attribute_list:539,attribute_nam:[227,390,471,473,564],attribute_stored_model_renam:220,attribute_valu:471,attributeerror:[7,15,70,139,140,530,539,542],attributeform:576,attributeformset:576,attributehandl:[0,15,50,87,187,270,361,404,406,408,411,412,539,562,567,590],attributeinlin:[575,576,577,580,581],attributemanag:15,attributeproperti:[0,87,151,157,161,170,224,271,274,361,375,377,404,406,408,411,412,539],attributeseri:590,attributproperti:15,attrkei:478,attrlist:539,attrnam:[15,30,36,44,50,119,161,241,394,468,471,541],attrread:[15,36,539],attrtyp:[15,539,540],attrvalu:30,attryp:540,atttribut:182,atyp:469,auction:196,audibl:[113,389],audienc:151,audio:[0,53],audit:[0,224,225,255,258,411,443,473,619],audit_allow_spars:78,audit_callback:[78,445],audit_in:78,audit_mask:78,audit_out:78,auditedserversess:[78,445,446],auditingtest:447,aug2010:0,aug:[3,67,189],august:[189,567],aura:322,aut:31,auth:[51,78,220,227,229,230,246,511,575,598,599,607,613,618],auth_password:511,auth_password_valid:220,auth_profile_modul:230,auth_user_model:220,auth_username_valid:[0,220],authent:[0,46,47,55,64,78,135,194,218,220,227,502,509,511,514,520,530,532,599,612,613,615,618],authenticated_respons:608,authentication_backend:220,authenticationmiddlewar:220,author:[0,77,101,149,188,217,227,283,286,570],auto:[0,7,9,13,15,17,20,22,23,24,27,30,38,40,44,45,46,48,54,57,62,85,103,119,125,126,128,135,137,146,149,152,179,194,196,204,208,215,220,224,227,230,236,240,241,248,251,252,363,369,370,375,389,390,394,408,417,433,462,465,469,473,478,481,486,488,491,502,512,519,520,529,532,541,546,551,552,553,554,593,599],auto_close_msg:433,auto_create_character_with_account:[0,84,152,220],auto_help:[24,30,34,174,197,236,248,252,303,438,449,475,551,552],auto_help_display_kei:[236,252,551],auto_id:[577,579,581,583,607],auto_look:[30,303,438,449,475,551],auto_now_add:70,auto_puppet:220,auto_puppet_on_login:[0,84,220],auto_quit:[30,303,438,449,475,551],auto_step_delai:363,auto_transl:[113,389],autobahn:[0,502,508,519],autoconnect:220,autocr:[15,157,170,271,375,539],autodoc:[0,51,619],autofield:[194,220],autologin:599,autom:[4,17,33,51,52,70,163,168,169,200,208,210,212,218,222,613],automat:[0,3,6,9,12,15,17,20,21,22,28,30,33,34,36,37,44,45,46,50,52,55,56,59,65,70,75,76,79,82,83,85,87,101,102,103,105,106,112,118,122,125,126,127,130,131,133,136,137,138,139,140,141,143,144,145,146,151,152,169,170,172,173,175,176,178,180,183,188,191,193,201,202,204,205,208,210,212,213,214,217,220,227,234,235,236,241,246,247,249,251,264,272,274,285,286,287,299,304,312,315,321,323,334,341,363,371,375,377,389,390,407,435,451,457,469,472,473,483,485,486,496,505,508,511,516,529,532,534,545,549,551,552,553,554,565,567,592,593,600,619],automatical:486,autopaus:[82,375],autostart:[45,480,483,547],autumn:[95,345],avaiabl:136,avail:[0,1,7,8,10,11,12,13,15,16,20,22,24,25,30,33,34,35,36,38,40,44,45,46,50,51,53,55,56,58,60,62,64,66,67,71,72,73,77,79,83,89,94,95,97,98,100,101,102,103,104,106,109,113,114,119,125,129,131,133,134,135,138,139,140,141,143,144,145,146,147,149,150,151,152,155,157,161,163,168,169,174,175,178,179,180,181,182,184,186,191,194,195,196,199,200,201,202,203,205,207,210,211,212,213,215,216,217,219,220,222,224,227,232,233,234,235,236,238,241,243,246,247,248,249,251,252,253,264,279,286,291,302,304,309,312,321,322,325,328,331,337,339,341,345,348,365,375,389,390,394,406,407,411,417,433,435,440,441,451,454,457,461,469,473,476,477,478,481,496,520,522,523,534,545,546,551,552,553,554,565,567,585,600,612,615],available_chan:246,available_choic:[30,551],available_funct:477,available_languag:389,available_weapon:440,avatar:[71,131,135,138,139,143,473,511,593],avatarid:511,avenu:[85,315],averag:[8,16,82,113,123,125,126,217,251,286,299,389],average_long_link_weight:[125,370],avers:412,avoid:[0,2,7,9,11,13,15,21,22,24,30,42,44,50,55,62,64,74,94,106,124,125,127,139,140,143,144,147,149,155,187,188,205,212,220,234,241,299,361,370,389,406,433,457,468,472,500,510,520,530,539,541,542,544,545,546,549,552,554,558,567,590],awai:[2,7,13,15,17,18,30,34,36,44,45,46,56,65,70,89,101,102,103,106,120,124,125,126,139,140,144,146,163,171,172,177,179,180,182,189,191,192,197,217,220,247,257,307,338,341,361,369,372,406,411,424,433,439,441,461,473,481,531,544,567,575,619],await:56,awak:149,awar:[0,2,13,15,17,22,24,30,50,71,82,97,125,126,132,149,172,188,190,194,222,299,304,325,361,363,370,372,390,439,457,473,541,544],award:149,awesom:[55,75,143],awesome_func:144,awesomegam:208,awhil:101,aws:[77,217],aws_access_key_id:77,aws_auto_create_bucket:77,aws_bucket_nam:77,aws_default_acl:77,aws_s3_cdn:[224,225,258,259,260],aws_s3_custom_domain:77,aws_s3_object_paramet:77,aws_s3_region_nam:77,aws_secret_access_kei:77,aws_storage_bucket_nam:77,awsstorag:[224,225,258,259,619],axe:149,axel:77,axes:[125,369],axi:[105,369],axio:51,ayi:[111,454],azur:[77,212,217],b64decod:563,b64encod:563,b_offer:312,baaad:11,back:[0,2,4,9,10,13,15,16,17,20,21,22,24,28,30,33,35,39,45,46,50,51,53,54,55,56,57,67,68,70,73,75,82,83,101,102,103,106,108,119,120,122,124,125,126,128,131,132,134,135,136,138,139,141,143,144,146,147,148,149,150,151,152,155,157,161,163,165,167,169,172,174,177,178,179,180,182,183,184,186,187,188,191,194,196,197,205,208,212,216,217,220,222,223,224,227,235,238,241,246,250,264,304,307,312,318,321,340,354,363,390,394,406,408,411,417,431,433,461,475,491,496,500,503,509,511,514,529,541,548,551,552,560,567,571],back_exit:[101,103,408],backbon:[194,220,545],backend:[0,5,11,44,45,51,52,55,75,77,205,220,224,225,539,567,573,587,593,597],backend_class:539,background:[2,19,30,55,56,62,86,143,152,188,194,208,217,218,220,222,267,386,544,554,616],backpack:[22,152,155,157,163,407,409,410,417],backpack_item_s:155,backpack_usag:155,backport:0,backtick:[128,554],backtrack:[13,132],backup:[13,40,46,56,138,139,216,217,250,545],backward:[0,20,28,30,169,180,229,560],bad:[11,45,67,83,103,125,127,131,143,145,149,150,161,169,184,206,446,493],bad_back:469,baddi:146,badli:394,bag:[34,82,133,321,567],baier:111,bak:111,bake:[89,126,369],baker:149,balanc:[82,147,149,167,171,172,178,200,553],balk:157,ball:[22,219,233,234,322,478],ballon:[170,334],balloon:334,ban:[0,1,20,36,63,110,133,149,227,239,246,252,255,295,469,619],ban_us:246,band:[0,53,71,220,511,514,515],bandit:[102,185],bandwidth:[77,504],banid:239,bank:[132,147],banlist:[20,255],bar:[0,13,15,20,30,33,37,45,48,53,68,71,75,113,120,125,126,133,138,145,220,241,361,385,386,387,390,404,406,408,411,412,461,466,491,515,539,551,554,567,619],bardisk:105,bare:[24,99,130,132,141,155,158,169,177,219,338,386],barehandattack:167,bargain:70,bark:322,barkeep:[7,105,390],barrel:[105,146],barriento:77,barstool:140,barter:[45,132,147,151,224,225,258,310,619],bartl:200,base:[3,5,7,11,13,16,19,20,24,25,30,33,34,36,38,40,45,46,49,50,53,54,55,58,68,70,72,73,74,77,82,83,84,88,89,90,93,94,97,101,106,111,116,119,126,128,129,130,131,132,134,135,136,138,139,144,145,146,147,150,151,152,155,158,163,165,167,168,169,170,171,173,174,176,177,179,181,182,188,189,191,192,193,194,195,196,197,200,202,205,208,210,211,212,216,217,218,220,224,227,228,229,230,232,234,235,236,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,255,256,257,262,264,265,268,270,271,272,273,274,276,277,280,281,283,284,286,287,289,295,296,298,299,302,303,304,305,306,307,308,312,313,315,316,318,319,321,322,323,325,326,328,329,331,332,334,335,337,338,339,340,341,342,345,346,348,354,355,357,358,360,361,363,364,367,368,369,370,371,372,375,376,377,379,381,383,384,387,389,390,391,393,394,399,400,404,405,406,407,408,409,410,411,412,413,415,416,417,419,420,421,422,423,424,425,426,427,428,431,433,435,436,438,439,440,441,442,446,447,449,451,452,454,455,457,458,460,461,463,464,465,469,471,472,473,475,477,478,480,481,482,483,484,485,486,488,489,491,493,494,497,498,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,522,523,524,527,529,530,531,532,534,535,536,539,540,541,542,544,545,546,549,550,551,552,553,554,555,557,558,559,560,561,562,563,564,565,566,567,572,575,576,577,578,579,580,581,582,583,585,587,588,589,590,591,592,593,598,599,601,602,607,608,611,612,613,615,616,617,618,619],base_account_typeclass:[14,135,220],base_batchprocess_path:220,base_channel_typeclass:[20,220],base_char_typeclass:198,base_character_class:151,base_character_typeclass:[151,194,195,198,220,227,241],base_exit_typeclass:[125,220],base_field:[575,576,577,579,580,581,583,607],base_filt:587,base_guest_typeclass:[65,220],base_object_typeclass:[44,135,139,220,478,541],base_room_typeclass:[125,220],base_script_path:468,base_script_typeclass:[45,220],base_session_class:220,base_set:189,base_system:[77,83,86,87,90,92,101,107,110,123,175,220,224,225,258,619],base_systesm:101,base_word:567,baseapplic:304,basebuff:[82,375,376],baseclass:440,basecommand:133,baseconsum:304,basecontain:546,baseevenniacommandtest:[11,252,265,281,287,296,298,308,313,316,323,326,329,332,335,342,346,355,358,381,384,391,423,436,442,565],baseevenniatest:[11,151,155,161,163,220,268,274,277,287,308,316,319,342,360,367,387,391,400,420,421,422,424,425,426,427,428,442,447,455,458,460,517,565,591,608],baseevenniatestcas:[11,220,323,393,565],baseinlineformset:[576,583],baselin:[152,189],baseline_index:[0,567],basenam:[196,593],baseobject:50,baseopt:561,basepath:567,basepermiss:588,baseposition:304,basequest:413,basest:307,basetyp:[473,545],basetype_posthook_setup:[272,473],basetype_setup:[36,181,227,228,255,272,473],basetypeclassfilterset:587,bash:[5,128,213,440],basi:[24,101,125,127,138,175,193,217,220,249,257,370,390,520,541,550],basic:[0,5,12,14,18,19,22,24,36,39,53,55,58,59,60,64,68,70,73,75,84,94,96,102,103,105,106,111,121,125,126,133,134,138,141,142,143,144,146,147,151,152,155,163,165,167,168,169,175,176,177,178,180,181,188,189,194,195,196,197,213,222,227,228,241,246,248,255,257,269,285,321,334,338,340,348,375,440,449,451,454,468,470,473,522,607,616,619],basic_map_s:[100,348],basicauthent:220,basiccombatrul:[337,338,339,340,341],basicmapnod:[125,370],bat:[189,215],batch:[25,27,106,126,138,149,220,224,225,240,252,396,478,500,539,542,543,619],batch_add:[478,539,542],batch_cmd:[17,138],batch_cod:[16,545],batch_code_insert:16,batch_create_object:478,batch_exampl:545,batch_import_path:[16,17],batch_insert_fil:17,batch_update_objects_with_prototyp:478,batchcmd:[27,147,149,240],batchcmdfil:[17,545],batchcod:[0,17,27,80,106,133,149,164,200,240],batchcode_map:106,batchcode_world:106,batchcodefil:16,batchcodeprocessor:545,batchcommand:[0,17,27,80,83,122,133,146,164,240,545],batchcommandprocessor:545,batchfil:[17,18,106,545],batchprocess:[224,225,231,237],batchprocessor:[16,80,220,224,225,240,258,395,543,619],batchscript:[16,545],batteri:227,battl:[126,146,149,151,157,178,218,337,338,339,340,341,376,406,408,619],battlecmdset:[337,338,339,340,341],bayonet:89,baz:[120,461],bazaar:72,beach:[106,554],bear:[439,457],beat:[141,147,149,161,178,416],beaten:[151,178,441],beauti:[83,101,182,194],beazlei:200,becam:188,becasu:9,becaus:[0,1,5,7,14,15,16,18,22,30,33,34,36,40,44,47,49,50,51,52,55,56,57,58,60,64,67,72,83,87,94,102,103,106,124,125,128,131,133,136,139,140,141,143,144,150,151,152,155,157,167,170,171,172,177,178,179,183,186,187,188,189,193,194,195,207,208,209,220,235,248,253,255,280,285,307,340,361,367,369,389,417,473,484,503,509,522,532,544,554,561,563,567,575,576,583,593,598],becom:[0,7,12,30,36,39,44,48,53,56,66,70,71,83,97,103,106,112,113,119,120,128,131,133,137,138,139,141,143,146,147,149,152,155,157,161,163,167,177,182,184,187,199,219,220,238,255,318,322,325,334,338,389,390,394,408,417,461,473,478,530,545,551,554,565],beeblebrox:[111,454],been:[5,7,8,12,16,17,30,33,34,45,46,59,67,75,78,82,83,98,101,102,103,105,112,113,119,125,126,128,136,141,143,145,151,152,169,178,179,182,184,186,188,191,192,194,195,197,205,207,218,223,227,234,235,236,240,241,246,249,255,257,264,286,321,334,337,341,348,361,370,390,394,406,408,416,441,457,463,465,469,472,473,477,478,485,486,493,505,509,511,519,529,530,531,532,534,539,541,545,549,550,567,570,572,583,598,614,619],befit:50,befor:[0,1,3,6,7,8,9,10,11,13,15,16,17,18,20,21,22,24,30,34,36,37,42,44,45,47,48,49,50,52,53,55,56,57,67,69,70,72,73,75,77,78,82,83,84,89,92,97,101,102,105,106,115,120,124,125,126,127,128,133,134,136,139,140,141,142,143,144,147,149,151,152,155,157,161,167,168,169,171,172,178,179,180,182,186,187,188,190,191,192,194,195,196,197,204,205,208,211,212,216,217,218,219,220,227,232,233,236,241,246,248,249,253,255,257,262,273,276,279,280,285,289,291,307,315,318,321,323,325,337,341,345,361,369,370,375,386,389,390,393,394,404,406,407,408,410,433,438,440,441,445,446,449,461,468,469,472,473,476,477,478,480,484,485,486,491,500,509,511,517,523,525,527,529,530,534,536,539,544,545,546,547,550,551,552,553,555,559,560,563,567,598,612,618],beforehand:[15,185,210,546],beg:17,beggar:103,begin:[0,1,2,7,8,10,11,16,17,24,28,34,36,47,56,83,101,102,103,106,111,113,128,132,134,136,143,147,148,163,169,170,176,178,186,192,195,197,202,220,247,248,285,337,339,348,369,376,379,389,390,454,461,471,473,500,544,545,551,554,564,567],beginn:[0,3,24,128,130,138,140,147,153,154,156,159,160,162,186,189,370,401,551,619],begun:376,behav:[15,16,47,53,83,101,126,134,141,143,144,151,175,186,197,222,340,567],behavior:[0,8,22,24,25,28,34,40,44,53,62,75,85,87,96,101,103,113,125,138,155,188,197,227,236,252,299,315,321,339,341,370,390,441,449,473,491,539,551,552,576,583],behaviour:[22,24,36,105,188,220,480,537,547,553,567],behind:[9,13,15,24,35,44,48,57,62,101,111,114,125,126,130,144,146,155,179,182,188,220,240,394,441,454,457,481,486,558],behindthenam:454,being:[0,1,5,7,8,13,15,16,22,24,30,33,34,38,42,44,45,47,49,50,54,56,60,68,71,74,77,80,82,83,85,89,91,97,101,103,106,108,111,113,119,121,125,126,131,135,137,138,139,140,143,144,146,149,150,151,153,154,155,156,159,160,161,162,167,171,179,183,186,187,188,194,196,197,208,209,215,217,218,220,227,233,241,247,251,252,255,276,325,328,337,338,339,340,341,348,370,375,377,383,389,390,394,404,411,417,431,433,441,465,473,480,493,496,503,523,532,534,539,541,544,545,547,551,552,553,554,567,570,572,576,583,587,590,598],beipmu:206,belong:[17,68,76,125,131,136,143,152,155,157,194,218,235,361,390,408,461,465,476],belongs_to_fighter_guild:48,below:[1,5,7,8,10,11,13,15,16,17,18,20,21,22,24,28,30,33,34,35,36,39,42,44,45,46,50,56,57,59,62,67,71,76,77,78,79,82,83,86,89,90,91,99,101,103,105,106,110,113,119,120,122,125,128,131,140,141,143,144,147,149,152,155,161,168,169,172,175,177,181,182,183,187,189,191,193,194,195,197,205,207,208,212,213,216,217,220,222,230,241,249,257,264,299,309,315,321,322,337,338,339,340,341,369,370,375,377,383,386,389,390,394,400,461,465,472,473,481,503,523,539,541,542,551,553,554,559,592],ben:[93,149,416],beneath:21,benefici:[182,339],beneficiari:406,benefit:[67,72,150,199,208,212,217,218,220,235,539,545,551],bernat:111,berserk:[119,394],besid:[10,17,22,42,67,82,99,103,106,126,141,340,386],best:[2,28,45,55,67,72,75,82,83,93,101,120,123,126,127,135,138,147,149,150,163,168,169,172,176,189,194,202,206,208,216,218,219,220,248,264,299,389,417,461,478,491,511,553,561,619],bet:[22,36,46,52,541],beta:[0,26,132,148,209,217,220,619],betray:30,better:[0,1,7,8,18,30,33,34,36,44,45,48,53,60,62,70,72,82,89,103,117,121,125,127,128,130,131,133,136,137,138,139,140,141,147,150,151,169,174,177,186,189,194,195,205,322,338,357,370,406,441,473,478,508,511,514,522,539,545,567,598],bettween:177,between:[0,1,5,8,13,14,15,17,20,22,24,25,33,34,39,44,45,46,48,53,56,60,62,64,67,71,73,76,78,79,82,83,86,94,101,102,103,104,105,109,111,114,119,120,121,125,126,128,131,132,133,135,138,139,143,144,146,149,152,155,161,163,167,168,169,171,177,178,180,181,186,187,188,191,197,208,212,213,217,220,233,236,241,246,248,251,252,256,257,267,285,286,289,312,315,321,322,328,331,337,341,367,369,370,371,372,377,389,390,393,394,406,411,451,457,461,473,478,486,491,500,503,510,511,514,515,522,523,530,542,544,545,547,551,553,554,555,567,571,601],bew:345,bewar:181,beyond:[1,14,24,31,40,52,71,83,101,127,131,168,189,195,217,236,241,252,257,264,302,322,375,390,407,433,441,461,473,477,522,539,541,551,553],bglist:566,bias:241,bidirect:500,big:[0,16,17,20,24,36,50,52,55,76,89,122,127,133,134,137,141,144,146,149,150,158,161,168,171,172,177,189,220,233,248,250,393,394,410,417,433,471,545,552,564,567],bigautofield:[0,220],bigger:[64,113,119,136,152,179,191,197,367,369,389,394,416],biggest:[161,202,394,567],biggui:24,bigmech:179,bigsw:172,bikesh:136,bill:[217,218],bin:[5,131,137,189,192,211,212,213,216],binari:[8,125,205,215,502,504,519],bind:208,birth:607,birthdai:0,bit:[2,7,10,13,15,19,26,44,45,53,55,57,60,67,83,101,102,103,111,122,133,135,136,137,138,140,142,143,144,147,149,150,151,152,161,172,175,180,189,192,195,197,211,213,215,220,246,253,280,322,469,473,545],bitbucket:168,bite:[106,147],bitten:136,black:[0,62,144,177,188,220,544],blackbox:321,blackhaven:125,blacklist:[20,218,246],blacksmith:[42,542],blade:[149,172,322,440],blanchard:111,blank:[30,70,78,96,195,196,227,449,544],blankmsg:[96,449],blargh:44,blast:[321,322],blatant:57,blaufeuer:136,bleed:[13,138,394,553],blend:[112,334],blender:[112,126,334],blind:[62,115,183,433],blind_target:433,blindcmdset:433,blindli:469,blink:[134,433],blink_msg:433,blist:9,bloat:152,blob:102,block:[0,1,8,9,25,28,30,33,36,45,55,57,62,74,94,95,116,130,131,133,137,140,143,165,169,171,186,191,194,195,197,217,218,222,239,240,241,303,304,309,341,345,361,367,370,404,406,408,438,439,440,466,475,510,545,551,554,567,616,619],blockedmaplink:[125,370],blocker:125,blocking_cmdset:1,blockingcmdset:1,blockingroom:1,blocknam:55,blockquot:619,blocktitl:197,blog:[0,127,130,132,200,203,217,220],blowtorch:206,blue:[16,62,141,143,168,188,220,315,416,440,544],blueprint:[53,106,168],blunt:152,blurb:[94,149,209,220],board:[36,38,132,147,180,182,200],boat:[22,180,235],bob:[24,51,239,309,542],bodi:[19,21,24,30,44,55,74,82,83,102,143,155,157,165,169,194,284,328,375,376,407,409,410,412,464,466,493,547],bodyfunct:[45,81,134,224,225,258,395,619],bodymag:322,bog:[147,179],boi:48,boiler:[30,50,55],bold:[209,619],bolt:[340,478],bone:[30,130,177],boni:152,bonu:[122,155,157,161,177,217,338,339,405,409,410,411,416,481],bonus:[149,161,163,172,338,410],bonus_typ:[161,416],book:[44,55,75,145,149,157,165,175,177,182,186,200,304],bool:[0,14,22,24,30,35,37,45,82,96,125,161,227,228,229,230,232,233,234,235,236,246,248,255,256,257,264,276,283,286,304,307,309,312,315,318,321,337,339,340,341,348,361,369,370,371,372,375,383,386,389,390,394,404,406,410,413,416,449,454,457,461,463,464,465,469,471,472,473,477,478,480,481,482,483,484,485,486,491,496,497,502,503,508,509,510,514,519,520,528,530,532,534,539,540,541,542,544,545,547,549,551,552,553,554,555,558,560,562,564,566,567,570,575,577,580,581,588,615],booleanfield:[194,575,581],booleanfilt:587,boom:[139,179],boost:[406,466],boot:[20,36,63,110,133,139,192,212,222,239,246,255,295,486],boot_us:246,bootstrap:[0,25,55,63,215,220,619],border:[53,106,169,220,238,304,307,309,449,550,553,565],border_bottom:553,border_bottom_char:553,border_char:553,border_color:220,border_left:553,border_left_char:553,border_right:553,border_right_char:553,border_top:553,border_top_char:553,border_width:553,borderless:169,borderstyl:449,bore:[57,130,147,218],borrow:[22,234,500],bort:[30,31,551],boss:[149,169],bot:[8,137,194,201,202,218,220,224,225,226,230,246,496,502,503,510,532,613],bot_data_in:[228,496],both:[0,1,2,5,9,10,11,12,18,20,21,22,24,30,33,34,35,37,39,42,46,48,50,51,55,59,60,64,70,71,79,80,82,83,86,87,98,101,103,104,105,106,107,111,116,119,120,125,126,127,128,136,138,140,141,143,144,146,149,150,155,157,163,167,168,169,172,175,178,180,182,186,187,192,193,194,195,197,201,204,205,208,217,218,219,220,222,232,234,241,246,251,255,256,257,267,304,309,312,321,328,334,340,341,354,363,369,370,372,375,386,394,406,407,411,413,417,441,454,461,469,471,473,477,478,479,481,484,486,500,509,519,520,522,529,531,534,539,540,544,547,551,553,554,562,567,590,593],bother:[12,151,218,416,539],botnam:[202,246,503,532],botnet:218,boto3:77,boto:77,botstart:228,bottl:105,bottom:[8,10,31,50,52,53,55,77,85,106,124,125,132,133,140,143,149,152,168,169,181,192,194,197,208,209,235,328,340,361,369,478,545,550,552,553,619],bottommost:125,bought:417,bouncer:[21,550],bound:[21,72,119,138,139,168,283,339,340,369,394,463,567],boundari:[119,125,161,393,394,567],bow:[149,406,478],bowl:[89,321],box1:170,box2:170,box:[0,7,10,33,36,38,39,44,51,65,75,89,102,103,106,130,134,135,136,139,142,143,144,158,165,169,170,177,185,189,191,197,204,217,219,220,241,302,363,369,390,468,500,545,607,619],brace:[1,83,101,103,186,473,544],bracket:[74,86,128,251,267,554],branch:[0,5,13,98,114,120,125,126,127,128,133,189,212,220,307,408,451,457,461,619],branch_check_tim:408,branch_max_lif:408,branchnam:13,brandmudai:200,brandymail:[104,126,328],brawni:152,braymer:77,bread:[58,89,126,321],breadrecip:321,breadth:341,break_lamp:433,break_long_word:553,break_on_hyphen:553,breakag:149,breakdown:251,breaker:500,breakpoint:[10,58,224],breath:[139,144],breathi:152,breez:[45,190],breviti:[143,169],bribe:30,bridg:[46,68,83,122,129,146,183,205,441],bridgecmdset:441,bridgeroom:441,brief:[1,13,52,58,59,70,96,102,134,137,142,165,169,179,222,299,411,449,473,535],briefer:[40,222],briefli:[58,63,139,217,222,433],brigandin:152,bright:[62,86,115,125,143,188,220,267,433,544],brightbg_sub:544,brighten:62,bring:[0,120,125,150,166,180,182,191,193,194,205,212,341,370,439,461,533],broad:[161,181],broadcast:[78,220,227,255,406,500],broadcast_server_restart_messag:220,broader:[181,390,473],brodowski:77,broken:[0,34,62,72,128,132,147,220,389,410,433],brought:149,brown:544,brows:[0,1,10,53,126,137,165,169,175,181,184,186,189,191,193,197,217,218,220,375,613],browser:[0,2,25,51,53,54,55,58,61,75,128,131,132,137,138,165,189,193,194,195,197,207,208,210,211,213,215,217,218,220,306,519,520,615,616],brush:161,brutal:299,bsd:[0,77,199,571],bsubtopicnna:252,btn:19,bucket:[77,262,445],budur:[111,454],buf:549,buff:[0,224,225,258,373,619],buffabl:377,buffableobject:[82,377],buffableproperti:[82,375],buffcach:[82,375,376],buffclass:[82,375],buffer:[24,28,53,83,250,262,493,520,549,615],buffhandl:[82,375],buffkei:[82,375,376],bufflist:375,bufftyp:375,bug:[0,2,7,9,11,13,16,56,77,94,122,127,143,147,150,168,189,191,199,209,222,473,541],bugfix:[0,77],buggi:[15,551],bui:[79,149,157,161,184,196,312,417],build:[0,4,5,6,8,10,15,16,17,18,20,21,22,24,25,27,30,34,38,39,40,44,46,48,50,53,55,56,60,63,70,72,73,74,76,80,82,84,89,96,105,113,122,125,126,130,131,132,133,135,136,137,138,139,141,142,143,146,148,150,158,161,164,166,168,176,189,191,193,197,200,211,212,213,214,215,220,224,225,231,233,237,239,240,247,248,263,264,265,284,299,307,309,345,348,354,363,364,366,367,369,370,371,389,408,411,417,439,469,473,477,478,491,502,503,545,553,607,619],build_forest:105,build_link:370,build_match:233,build_mountain:105,build_techdemo:[224,225,258,395,401],build_templ:105,build_world:[224,225,258,395,401],buildchannel:20,builder:[0,1,14,15,17,20,33,34,36,42,44,48,51,52,59,72,83,85,96,101,112,123,125,126,132,135,139,140,147,150,167,169,184,191,192,220,239,241,246,247,251,264,299,315,334,345,354,361,363,375,390,433,441,449,469,473,522,541,542,545,588,619],buildier:478,building_menu:[83,224,225,258,259,619],buildingmenu:[83,264,265],buildingmenucmdset:264,buildprotocol:[488,501,502,503],built:[0,8,16,21,25,30,33,58,64,75,111,112,126,128,131,132,138,140,143,146,147,150,168,169,177,180,191,196,209,211,212,218,230,257,334,369,370,371,377,389,465,472,481,486,539,541,542,545,549,551,559],builtin:504,bulk:[34,218,220],bullet:[128,147],bulletin:[36,38,132,147],bulletpoint:128,bump:174,bunch:[18,21,53,72,73,136,140,141,144,169,375],buri:[72,146],burn:[82,146,147,150,177,217,440],burnt:149,busi:[78,79,105,131,217,312],butter:[58,321],button:[0,10,13,16,17,22,24,36,39,51,52,53,54,55,68,71,75,80,101,126,132,138,141,142,143,189,194,195,241,304,322,432,433,440,523,552,580,619],button_expos:440,buyer:184,buyitem:417,byngyri:[113,389],bypass:[0,9,36,42,56,59,116,134,139,140,146,169,178,188,192,220,227,229,241,255,354,469,471,541,547,564,567,599],bypass_mut:[20,255],bypass_perm:567,bypass_superus:36,byt:473,bytecod:544,bytes_or_buff:615,bytestr:[500,567],bytestream:567,c123:[86,126],c20:246,c_creates_button:523,c_creates_obj:523,c_dig:523,c_examin:523,c_help:523,c_idl:523,c_login:[8,523],c_login_nodig:523,c_logout:[8,523],c_look:[8,523],c_measure_lag:523,c_move:523,c_moves_:523,c_moves_n:523,c_score:191,c_social:523,cabinet:43,cach:[0,11,15,24,45,50,53,54,55,57,70,125,139,181,187,220,227,236,251,255,257,272,345,348,369,375,376,377,393,439,440,469,472,473,477,495,534,539,541,542,543,556,558,567,576,583,600],cache_dir:220,cache_inst:558,cache_lock_bypass:469,cache_s:[534,558],cachecontrol:77,cached_properti:567,cachekei:82,cachevalu:375,cactu:[145,340],cake:22,calcul:[0,1,21,45,56,82,95,100,119,125,136,149,155,170,177,178,181,191,235,276,289,337,338,340,341,345,348,367,370,389,393,394,478,550,555,558,567,612,618],calculate_path_matrix:369,calculated_node_to_go_to:30,calculu:167,calendar:[0,90,101,126,176,276,289,555,619],call:[0,1,2,5,7,8,11,12,13,14,15,16,17,20,21,22,28,30,33,35,36,37,40,44,45,46,47,49,50,51,53,54,56,58,60,64,66,68,70,71,72,75,80,82,83,89,102,103,105,106,110,114,115,118,119,120,123,124,125,126,128,131,132,133,134,135,136,137,138,140,141,143,144,145,147,149,150,151,152,155,157,161,163,165,167,168,169,170,171,172,173,175,177,178,179,180,181,182,183,184,185,186,187,188,190,191,194,195,196,197,198,201,202,204,205,211,212,213,216,217,219,220,222,227,228,232,233,234,235,236,238,241,246,249,250,251,252,253,255,257,264,270,272,273,276,279,280,283,284,285,286,287,289,291,295,299,302,304,305,306,307,309,312,315,318,321,322,323,325,334,337,338,339,340,341,345,348,354,361,367,370,372,375,377,379,383,389,390,394,399,404,405,406,407,408,410,411,412,413,431,433,435,438,439,440,441,449,457,461,468,469,472,473,476,477,478,480,482,484,485,486,488,491,493,495,496,500,501,502,503,504,505,506,507,509,510,511,512,513,514,515,516,518,519,520,522,523,524,529,530,531,532,533,536,539,541,542,544,545,546,547,549,551,552,553,554,555,558,560,562,563,564,565,567,576,583,588,593,607,611,613,616,617,618],call_async:56,call_command:11,call_ev:[103,285],call_inputfunc:[68,530,532],call_task:485,callabl:[0,25,28,30,37,44,49,54,55,60,66,96,120,126,152,182,184,191,220,264,273,286,307,339,340,369,449,461,473,476,477,478,482,486,489,491,493,501,532,546,549,551,552,554,555,560,562,563,567],callables_from_modul:567,callbac:83,callback1:551,callback:[21,24,25,28,30,35,37,49,56,78,83,88,90,96,120,126,172,175,228,251,264,265,273,276,283,284,285,286,287,289,318,438,446,449,461,473,482,485,486,489,491,493,496,500,501,502,504,518,519,522,533,551,555,560,565,567],callback_nam:[283,286],callbackhandl:[224,225,258,259,282],called_bi:232,calledbi:567,caller:[0,1,7,15,16,20,21,24,28,33,34,36,39,40,49,50,56,60,68,70,71,74,80,83,87,88,89,96,99,101,105,106,120,124,125,128,133,139,140,141,145,152,167,169,170,171,172,173,174,177,178,179,180,182,184,186,191,204,228,232,233,234,236,238,241,242,246,247,248,249,251,252,264,265,284,299,302,303,304,305,318,321,328,334,348,361,375,386,390,405,406,407,411,417,433,435,438,440,441,449,461,469,473,475,477,478,539,545,549,551,552,554,561,565,567],callerdepth:567,callertyp:232,callinthread:536,calllback:285,callsign:[30,304,496],calm:106,came:[1,101,106,130,133,143,155,179,189,190,200,361,375,408,439,473],camp:[106,149],campfir:106,campsit:106,can:[0,1,2,4,5,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,22,24,25,26,28,30,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,59,60,61,62,64,65,66,67,68,70,71,72,73,75,76,77,78,79,80,82,84,85,86,87,88,89,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,111,112,113,114,115,116,119,120,121,122,123,124,125,126,127,128,131,132,133,134,135,136,137,138,139,141,142,143,146,147,150,151,152,155,157,158,161,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,218,219,220,222,226,227,228,229,230,233,234,235,236,238,239,241,246,247,248,249,250,251,252,253,255,256,257,262,264,267,271,272,274,276,279,285,286,289,291,295,299,303,304,305,306,307,309,312,315,318,321,322,325,328,334,337,338,339,340,341,345,348,354,361,363,365,366,369,370,372,375,376,377,379,383,386,389,390,394,404,405,406,407,408,410,411,412,413,415,417,425,431,433,439,440,441,445,449,454,457,461,463,465,468,469,471,472,473,476,477,478,479,480,481,482,484,486,491,500,502,506,509,511,514,515,519,520,522,523,529,530,531,532,533,536,537,538,539,540,541,542,544,545,546,547,549,550,551,552,553,554,561,562,563,564,565,567,568,570,571,575,588,590,593,607,612,613,615,616,618,619],can_:[101,285],can_be_wield:48,can_delet:101,can_eat:101,can_ent:542,can_list_top:[248,615],can_mov:101,can_part:101,can_read_top:[248,615],can_sai:101,can_travers:101,can_us:406,cancel:[0,21,35,101,140,161,172,251,285,315,337,341,416,473,485],candid:[0,24,83,145,155,194,233,334,390,466,471,473,564],candidate_entri:466,candl:235,cannon:136,cannot:[0,1,9,11,12,15,16,17,21,22,24,28,30,33,38,42,44,48,52,56,59,67,82,83,94,95,96,102,116,122,125,127,132,138,139,141,145,146,147,150,151,161,167,171,174,177,179,181,184,189,191,194,197,215,217,219,220,227,228,235,238,241,248,264,283,286,307,321,341,345,354,363,412,439,440,449,461,464,469,471,473,477,486,539,546,548,550,553,558,567],cantanker:561,cantclear:[96,449],cantillon:200,cantmov:1,canva:182,cap:220,capabl:[36,46,68,71,82,118,126,131,132,147,169,182,220,238,435,496,518,607],capac:410,cape:168,capfirst:197,capit:[0,1,33,57,60,71,97,113,114,131,143,144,149,152,172,189,191,241,309,325,389,394,417,457,515,544,554,567,571],captcha:194,caption:128,captur:[1,78,186,220,560],car:[39,89,180],carac:378,carbon:[321,322],card:[125,218,371,372],cardin:[125,169,174,182,241,369,370,371],care:[15,24,30,56,57,70,78,82,101,103,119,125,128,131,139,143,149,150,161,167,168,175,178,180,182,186,188,190,199,205,221,222,227,234,255,302,321,334,345,348,354,357,363,369,390,394,407,438,439,441,451,468,473,522,541,545,549,551,552,553,567],career:150,carefulli:[8,46,52,82,101,106,126,152,194,220],carri:[22,36,48,132,134,138,140,147,155,161,163,178,196,257,315,322,338,339,410,412,439,468,530,540],carried_weight:170,carrying_capac:170,carv:89,cascad:[220,558],case_insensit:304,case_sensit:[113,390],caseinsensitivemodelbackend:[220,599],cast:[44,120,121,144,157,171,224,225,258,310,320,340,406,412,461],caster:[322,340,412],castl:[16,48,106,122,125,135,146,345,441],cat:[208,211],catchi:[192,220],categor:[48,131,216,473,572],categori:[0,5,15,24,27,30,34,44,48,70,76,87,89,120,125,126,127,128,133,136,145,155,157,171,181,187,197,220,229,236,237,238,239,240,241,246,247,248,249,250,251,252,253,256,264,271,274,280,284,295,298,299,302,305,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,363,375,379,383,390,394,407,412,413,433,435,439,440,441,449,451,461,463,464,465,466,468,471,473,477,478,480,482,522,539,540,542,547,549,551,552,554,559,561,564,567,587,615],categoris:167,category2:559,category2_id:559,category_id:559,category_index:461,cater:[150,172],caught:[7,9,30,140,256],cauldron:322,caus:[0,7,11,22,36,53,57,76,82,92,131,133,139,172,173,178,191,205,217,220,235,255,268,280,318,322,361,370,406,433,473,522,551,553,567],caution:[53,101,175,220,551],cave:[102,125,363,364],caveat:[25,56,77,140,170,221],caveman:167,cblue:13,cboot:[57,110,133,295],cc1:215,cccacccc:550,ccccc2ccccc:169,cccccccc:550,ccccccccccc:169,cccccccccccccccccbccccccccccccccccc:550,ccccccccccccccccccccccccccccccccccc:550,ccreat:[0,110,133,169,201,202,203,295],cdesc:[110,133,295],cdestroi:[110,133,295],cdfaiwmpbaaj:0,cdmset:22,cdn:[77,218],ce2d001e3510f9e8a27fa27418d49dd5bb334d6b:[252,451],ceas:241,cel:550,celebr:147,cell:[0,2,106,122,146,169,197,449,550,553],cell_opt:550,celltext:550,cemit:133,censu:540,center:[33,44,55,58,106,125,181,182,200,307,309,348,363,369,386,544,553,567],center_justifi:44,centos7:208,centr:[34,106],central:[0,11,20,35,62,89,106,125,131,140,152,190,212,227,235,241,252,255,256,257,305,321,367,405,406,473,478,500,547,551,558,596],centre_east:106,centre_north:106,centre_south:106,centre_west:106,centric:[36,46,113,189,191,390],cert:[207,512,516],certain:[1,9,15,16,17,22,24,36,45,46,47,49,58,59,61,71,72,79,88,89,98,115,119,126,128,131,132,138,140,142,149,155,157,161,172,180,205,211,217,220,241,256,312,318,322,361,369,389,394,404,417,433,440,445,468,471,477,484,491,497,514,515,518,533,539,540,549,553,554,564,567,576,593,607],certainli:18,certbot:[208,217],certfil:[512,516],certif:[207,217,221,512,516],certonli:208,cfg:208,cflag:211,cgi:217,cha:[30,152,161,163,169,409],chain:[0,30,44,56,102,103,125,136,149,172,285,286,370,491,523,551],chain_1:[101,103],chain_2:[101,103],chain_3:101,chain_:[101,103],chain_flood_room:101,chain_open_door:103,chain_x:[101,103],chainedprotocol:511,chainsol:136,chair:[16,40,48,50,80,132,142,147,176,186],challeng:[94,122,126,144,146,149,177,196,200,305,406],chamber:122,chan:[20,27,246],chanalia:295,chanc:[8,13,22,33,49,65,83,89,146,147,149,152,161,171,177,178,179,209,234,322,337,338,339,340,341,408,433,440,441,523],chance_of_act:[8,523],chance_of_login:[8,523],chandler:178,chang:[2,3,5,6,7,8,11,14,15,16,17,18,20,22,24,25,26,28,30,33,34,35,36,37,38,39,40,44,45,46,47,48,49,50,53,57,58,59,60,62,63,65,68,70,75,77,78,79,80,81,82,83,85,86,87,88,89,90,91,92,93,94,96,97,98,99,100,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,131,132,133,134,136,138,140,141,143,144,147,151,155,157,158,161,163,165,168,170,171,172,173,174,176,177,178,179,180,181,182,183,186,187,188,189,190,191,192,194,195,196,199,204,205,207,208,209,210,211,212,213,215,216,217,220,221,222,227,235,236,238,239,241,247,252,255,264,279,280,283,286,291,295,299,304,307,312,315,321,325,331,337,338,339,340,341,345,348,354,357,361,370,371,372,375,379,386,389,390,393,394,405,406,407,408,410,439,440,441,451,461,463,465,471,472,473,477,478,481,482,484,485,486,491,496,507,522,529,530,537,539,541,545,548,549,550,552,553,554,560,561,562,563,575,576,577,580,581,583,616,618,619],change_name_color:461,changelock:[20,246],changelog:[137,216,619],changem:220,changepag:195,channel:[0,3,14,15,22,24,25,27,36,38,39,47,48,50,54,55,57,59,70,110,126,127,129,130,132,133,138,139,142,145,147,191,200,204,217,220,221,224,225,227,228,234,235,241,246,252,254,255,256,257,286,295,433,502,503,510,523,529,530,532,539,547,560,564,573,577,606,608,610,619],channel_:[20,255],channel_ban:[20,246,295],channel_color:1,channel_connectinfo:[0,220,530],channel_detail:612,channel_handler_class:0,channel_list:612,channel_list_ban:246,channel_list_who:246,channel_log_num_tail_lin:220,channel_log_rotate_s:220,channel_msg:[20,227],channel_msg_nick_pattern:[20,255],channel_msg_nick_replac:[20,246,255],channel_msg_pattern:246,channel_mudinfo:[0,220],channel_prefix:[1,20,255],channel_prefix_str:[20,255],channel_search:256,channel_typeclass:608,channeladmin:577,channelalia:[20,246,255],channelattributeinlin:577,channelcl:246,channelcmdset:[0,22,133],channelconnect:257,channelcr:295,channelcreateview:255,channeldb:[50,129,224,255,257,538,577],channeldb_db_attribut:577,channeldb_db_tag:577,channeldb_set:[539,542],channeldbmanag:[256,257],channeldeleteview:255,channeldetailtest:608,channeldetailview:[255,612],channelform:577,channelhandl:[0,20],channelkei:256,channellisttest:608,channellistview:612,channelmanag:[255,256],channelmessag:255,channelmixin:612,channelnam:[20,135,202,227,228,246,255,502],channeltaginlin:577,channelupdateview:255,char1:[11,177,247,565,608],char2:[11,177,247,608],char_health:441,char_nam:194,charac:37,charact:[0,3,5,7,8,9,11,14,15,17,18,19,21,22,24,25,28,30,34,35,36,39,42,45,46,48,50,51,55,59,62,64,67,70,71,73,74,75,81,82,83,85,87,88,89,91,93,94,95,96,97,101,103,104,105,106,109,111,112,113,114,115,119,120,121,122,124,125,126,129,130,132,133,134,136,137,138,142,143,144,145,148,155,157,158,161,163,167,168,170,171,172,173,175,176,178,179,180,181,182,183,184,185,186,187,189,193,196,197,198,204,205,220,224,225,226,227,229,233,234,236,238,241,242,243,247,248,249,251,253,255,258,264,283,285,286,302,304,305,307,315,318,325,328,331,334,337,338,339,340,341,345,348,361,363,367,369,370,372,375,379,383,386,389,390,393,394,395,399,401,405,406,407,408,410,411,412,413,416,417,419,420,421,424,433,435,439,440,441,445,449,457,461,463,465,468,469,473,484,496,517,530,535,539,541,542,544,545,550,551,553,554,565,567,568,573,587,593,606,607,608,610,615,617,618,619],character1:177,character2:177,character_cleanup:[305,307],character_cmdset:[95,98,100,345,348],character_cr:[84,224,225,258,373,619],character_encod:220,character_ent:307,character_exit:305,character_form:613,character_gener:152,character_id:473,character_leav:307,character_list:613,character_manage_list:613,character_sai:101,character_sheet:416,character_typeclass:[227,274,393,565,608],charactercmdset:[0,1,20,22,27,52,79,83,85,91,94,95,97,98,100,101,104,109,110,113,116,117,125,133,139,140,141,168,169,173,174,175,179,183,191,220,243,264,295,315,322,328,331,337,338,339,340,341,345,348,354,357,383,390,407,441],charactercreateview:[608,613],characterdeleteview:[608,613],characterdetailview:613,characterform:[607,613],characterlistview:[608,613],charactermanageview:[608,613],charactermixin:613,characterpermiss:196,characterpuppetview:[608,613],charactersheet:30,characterupdateform:[607,613],characterupdateview:[608,613],characterviewset:[196,593],characterwithcompon:274,charapp:194,charat:[96,449],charclass:151,charcreat:[27,102,103,133,152,197,238,379],charcter:20,chardata:169,chardelet:[27,133,238],chardeleteview:[465,541],chardetailview:[236,463,465,541],charfield:[70,194,563,575,576,577,579,580,581,583,607],charfilt:587,charg:217,chargen:[84,151,152,194,220,224,225,255,258,378,379,395,401,416,421,427,465,541],chargen_menu:84,chargen_step:84,chargen_t:152,chargencmdset:191,chargenroom:191,chargenview:[465,541],charisma:[149,151,152,161,163,404,409,411,416],charnam:[169,238,554],charpuppetview:541,charrac:151,charset:567,charsheet:[169,416],charsheetform:169,charupdateview:[465,541],charwithsign:274,chase:[146,406],chat:[0,2,14,42,55,105,127,130,147,149,150,169,191,200,201,202,203,220,411,520,560],chatroom:168,chatzilla:202,chdir:220,cheap:150,cheaper:49,cheapest:[125,217],cheapli:441,cheat:[3,128,177,205],chec:565,check:[0,1,2,4,5,6,7,8,9,10,11,12,13,16,17,20,21,22,24,25,30,33,38,39,40,44,45,48,49,50,51,57,59,60,64,67,70,78,83,84,87,89,96,98,101,102,103,106,126,127,128,132,138,139,140,141,149,150,151,152,155,163,167,169,170,171,172,177,178,180,181,182,184,185,186,187,191,192,193,194,196,197,201,203,204,208,209,210,212,213,217,218,220,221,222,227,229,232,233,234,235,236,238,240,241,246,247,248,249,251,252,253,255,257,272,280,286,299,304,305,307,312,315,318,321,328,337,345,348,361,367,370,372,375,376,377,394,399,404,406,408,410,411,412,413,416,426,433,439,441,449,451,468,469,472,473,477,478,481,483,484,485,490,491,495,500,506,511,529,530,532,534,535,536,539,541,542,544,545,547,554,561,562,565,567,568,570,575,576,583,588,615,618],check_attr:241,check_character_flag:304,check_circular:520,check_cooldown:171,check_databas:491,check_db:491,check_defeat:177,check_end_turn:178,check_error:490,check_evennia_depend:567,check_flag:[304,305],check_from_attr:241,check_grid:182,check_has_attr:241,check_light_st:441,check_lock:[196,588],check_lockstr:[0,36,192,469],check_main_evennia_depend:491,check_mixtur:304,check_obj:241,check_perm:305,check_permiss:477,check_permstr:[227,541],check_progress:187,check_to_attr:241,check_warn:490,checkbox:194,checker:[3,18,182,468,511,568,572],checklockstr:133,checkout:[13,98,126,189,212,213,216,451],checkoutdir:5,cheer:105,chemic:322,cheng:77,chest:[42,94,144,145,186],chicken:[161,302],child:[0,20,24,30,36,44,84,125,131,133,135,139,140,141,144,157,178,183,196,228,230,236,241,252,302,304,307,321,441,472,478,481,536,539,559,590],childhood:30,children:[24,48,50,131,132,135,157,179,230,372,472,473,481,491,540,541,559,564,585,613],chillout:241,chime:21,chines:[0,1,67,73],chip:[163,169,619],chisel:152,chld:[135,139],chmod:5,choci:264,choic:[18,24,30,33,44,45,46,47,73,74,96,98,105,120,126,130,132,140,141,143,144,161,178,184,186,190,199,205,217,220,227,238,241,264,265,299,312,337,405,406,449,489,549,551,554],choice1:74,choice2:74,choice3:74,choicefield:[575,576,580,581,583,585],choos:[10,15,16,30,33,55,56,75,76,78,100,118,120,125,126,128,131,132,136,149,158,168,175,177,178,182,184,188,189,191,194,202,221,337,338,339,340,341,348,379,406,408,433,435,439,461,504,551,554,565,619],chop:[24,440],chore:147,chose:[30,70,143,151,152,169,184,194,209,210,218,461,551],chosen:[10,30,71,83,84,101,111,178,190,386,449,551,554],chown:212,chractercmdset:441,chraract:369,chri:77,chrislr:[0,87,126,269,270,271,272,273],christa:77,christian:77,chrome:[0,206],chronicl:[96,449],chroot:208,chug:24,chunk:[16,80,106,197,493,545],church:21,church_clock:21,churn:140,cid:523,cillum:31,cinemat:[307,309],circl:181,circuit:53,circul:417,circular:[82,493,546],circumst:[30,66,102,138,141,143,168,234,340,607],circumv:239,cis:570,citi:[34,125,149,369,417],citymap:125,cjust:[33,554],clang:211,clank:[101,103],clarifi:1,clariti:[70,144,186,191,211,322],clash:[22,34,205,217,241,541,551],class_from_modul:567,classic:[0,16,46,49,139,149,165,178,184,200],classifi:220,classless:93,classmethod:[181,227,255,270,321,323,346,372,411,465,473,484,541,558,601],classnam:[15,67,144],classobj:541,clatter:30,claus:[77,199],clean:[0,1,13,15,19,20,30,82,106,122,139,141,146,178,222,234,236,241,251,305,307,312,322,337,361,375,390,408,410,412,440,441,473,481,491,495,509,519,532,541,544,549,551,558,563,566,567,575,576,583,607],clean_attr_valu:576,clean_attribut:[50,227,541],clean_cmdset:[50,541],clean_senddata:532,clean_stale_task:485,clean_str:544,clean_usernam:575,cleaned_data:194,cleaner:[0,140,144,186,191],cleanli:[46,87,96,131,222,232,236,295,410,449,493,502,508,519,532,549],cleanup:[0,15,24,28,30,64,82,83,140,270,306,307,312,318,321,375,408,413,438,441,473,551,575],cleanup_buff:375,cleanupscript:306,clear:[0,12,15,18,20,24,28,48,49,50,53,57,60,64,73,74,82,83,87,96,106,125,127,128,131,147,149,150,155,177,190,197,222,235,238,239,241,247,253,257,318,363,371,375,390,393,394,408,415,416,441,449,457,469,471,472,473,477,482,485,486,493,530,534,539,541,542,551,558],clear_all_sessid:471,clear_attribut:539,clear_client_list:527,clear_cont:[40,473],clear_exit:[40,473],clear_room:408,clearal:[74,247],clearer:67,clearli:[12,57,101,127,139,558],cleartext:[78,229,446,547],clemesha:536,clever:[0,20,22,30,56,161,469],cleverli:46,click:[0,5,10,12,13,51,52,53,54,55,61,66,75,128,132,137,194,197,217,220,551,619],click_top:248,clickabl:[0,63,66,128,220,248,619],clickable_top:248,client:[0,1,5,8,12,24,25,28,31,33,35,37,46,47,51,54,57,61,62,63,64,72,73,78,83,106,125,126,128,130,131,134,138,139,141,143,149,152,165,173,176,178,186,188,189,193,200,201,202,205,207,208,209,210,211,212,213,215,218,219,220,221,224,225,227,228,236,238,241,246,248,251,253,348,370,372,446,487,488,492,494,496,500,501,502,503,504,505,506,507,509,511,513,514,515,516,518,519,520,522,523,529,530,531,532,548,549,551,567,587,590,616,619],client_address:64,client_class:591,client_default_height:[31,220],client_default_width:220,client_disconnect:520,client_encod:205,client_gui:[0,496],client_height:0,client_nam:0,client_opt:[71,496,515],client_secret:201,client_typ:304,client_width:[0,24,236],clientconnectionfail:[488,502,503],clientconnectionlost:[488,502,503],clienthelp:53,clientkei:522,clientraw:[0,251],clientsess:[519,520],clientwidth:133,cliff:[105,122,134,241],climat:48,climb:[8,24,130,220,241,304,440],climbabl:[304,440],clipboard:52,clock:[21,24,57,110,133,177,295],cloer:341,clone:[6,12,67,128,131,137,189,210,213,216],close:[0,1,10,13,17,28,30,33,46,50,53,54,64,83,94,101,102,103,115,116,121,126,128,131,139,143,144,181,194,197,208,210,212,215,218,220,222,251,253,262,264,280,304,306,312,341,354,386,433,438,493,501,502,509,511,519,520,532,539,545,551,554],close_menu:[438,551],closer:[15,341,389],closest:[62,119,128,135,181,394,416,567],cloth:[15,109,152,224,225,258,310,545,619],clothedcharact:[85,315],clothedcharactercmdset:[85,315],clothes_list:315,clothing_overall_limit:85,clothing_typ:[85,315],clothing_type_autocov:85,clothing_type_cant_cover_with:85,clothing_type_count:315,clothing_type_limit:85,clothing_type_ord:[85,315],clothing_wearstyle_maxlength:85,cloud:[45,77,126,190,212,217,218],cloud_keep:[105,126],cloudi:45,cloudkeep:0,clr:[33,309,477,554],cls:[181,227,394],club:321,clue:440,clump:144,clunki:[13,341],cluster:205,clutter:[128,235],cma:13,cmd:[0,1,8,17,20,22,24,34,36,57,71,80,83,98,133,140,143,169,172,174,175,180,191,204,210,220,222,234,236,238,239,240,241,246,247,248,249,250,251,252,253,264,280,284,295,298,299,302,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,363,375,379,383,390,407,433,435,439,440,441,449,451,461,462,473,515,519,520,522,545,549,551,552,615],cmd_arg:186,cmd_channel:24,cmd_cooldown:171,cmd_help_dict:248,cmd_help_top:615,cmd_ignore_prefix:[24,220,233],cmd_kei:186,cmd_last:[46,220],cmd_last_vis:[46,220],cmd_loginstart:[24,220],cmd_multimatch:[24,232],cmd_na_m:71,cmd_name:[0,71,515],cmd_noinput:[24,232,551],cmd_nomatch:[24,232,441,551],cmd_noperm:24,cmd_on_exit:[30,303,438,449,461,475,551],cmd_or_top:[248,615],cmd_total:[46,220],cmdabout:251,cmdaccept:312,cmdaccess:247,cmdaccount:251,cmdaddcom:295,cmdallcom:295,cmdapproach:341,cmdarmpuzzl:334,cmdasync:56,cmdattack:[172,177,178,191,337,338,339,340,341,440],cmdattackturnbas:407,cmdban:239,cmdbare:133,cmdbatchcod:240,cmdbatchcommand:240,cmdbigsw:172,cmdblindhelp:433,cmdblindlook:433,cmdblock:1,cmdboot:239,cmdbridgehelp:441,cmdbuff:[82,375],cmdcallback:[101,284],cmdcast:[322,340],cmdcboot:295,cmdcdesc:295,cmdcdestroi:295,cmdchannel:[20,246,295],cmdchannelcr:295,cmdcharcreat:238,cmdchardelet:238,cmdclimb:440,cmdclock:295,cmdcloselid:433,cmdcolortest:238,cmdcombathelp:[337,338,339,340,341],cmdconfirm:24,cmdcopi:241,cmdcover:315,cmdcpattr:241,cmdcraft:[89,321],cmdcraftarmour:172,cmdcreat:241,cmdcreatenpc:191,cmdcreateobj:302,cmdcreatepuzzlerecip:334,cmdcwho:295,cmddarkhelp:441,cmddarknomatch:441,cmddeclin:312,cmddefend:178,cmddelcom:295,cmddesc:[241,345],cmddestroi:241,cmddiagnos:173,cmddice:[91,169,383],cmddig:241,cmddisengag:[178,337,338,339,340,341],cmddoff:338,cmddon:338,cmddrop:247,cmddummi:298,cmddummyrunnerechorespons:522,cmdeast:441,cmdecho:[24,128,133,141,172,565],cmdedit:[83,264],cmdeditnpc:191,cmdeditorbas:549,cmdeditorgroup:549,cmdeditpuzzl:334,cmdemit:239,cmdemot:[302,390],cmdentertrain:180,cmdevalu:312,cmdevenniaintro:441,cmdevmenunod:551,cmdevscaperoom:302,cmdevscaperoomstart:[94,302],cmdexamin:241,cmdexiterror:174,cmdexiterroreast:174,cmdexiterrornorth:174,cmdexiterrorsouth:174,cmdexiterrorwest:174,cmdextendedlook:0,cmdextendedroom:0,cmdextendedroomdesc:[95,345],cmdextendedroomdetail:[0,95,345],cmdextendedroomgametim:[95,345],cmdextendedroomlook:[0,95,345],cmdfeint:178,cmdfight:[337,338,339,340,341],cmdfind:241,cmdfinish:312,cmdfocu:302,cmdfocusinteract:302,cmdforc:239,cmdget:[0,1,141,170,247,302],cmdgetinput:551,cmdgetweapon:440,cmdgit:451,cmdgitevennia:451,cmdgive:[247,407],cmdgiveup:302,cmdgmsheet:169,cmdgoto:363,cmdgrapevine2chan:246,cmdhandler:[22,24,40,68,138,224,225,227,231,233,234,235,236,238,249,250,251,252,253,302,315,334,345,348,375,407,441,472,473,481,565,567],cmdhelp:[34,178,220,248,302,337],cmdhit:[133,141,178],cmdhome:247,cmdic:238,cmdid:496,cmdinsid:180,cmdinterrupt:252,cmdinventori:[247,315,407],cmdirc2chan:246,cmdircstatu:246,cmdjumpstat:302,cmdlaunch:179,cmdlearnspel:340,cmdleavetrain:180,cmdlen:[233,250],cmdlight:440,cmdline:491,cmdlineinput:549,cmdlink:241,cmdlistarmedpuzzl:334,cmdlistcmdset:241,cmdlistpuzzlerecip:334,cmdlock:241,cmdlook:[9,173,247,302,345,441],cmdlookbridg:441,cmdlookdark:441,cmdmail:[0,104,328],cmdmailcharact:[0,104,328],cmdmakegm:169,cmdmap:[100,348,363],cmdmapbuild:105,cmdmask:390,cmdmobonoff:439,cmdmore:552,cmdmoreexit:552,cmdmultidesc:[109,168,331],cmdmvattr:241,cmdmycmd:[34,167],cmdmylook:11,cmdname2:233,cmdname3:233,cmdname:[0,35,53,64,68,71,133,140,191,220,232,233,236,241,249,250,252,496,514,515,519,520,532,565],cmdnamecolor:[120,461],cmdnewpassword:239,cmdnick:247,cmdnoinput:264,cmdnomatch:264,cmdnositstand:140,cmdnpc:191,cmdnudg:433,cmdobj:[232,233,250,565],cmdobj_kei:232,cmdobject:[0,232,233,241],cmdobjectchannel:[20,246],cmdoffer:312,cmdooc:238,cmdooclook:238,cmdopen:[241,354,363],cmdopenclosedoor:354,cmdopenlid:433,cmdopenshop:184,cmdoption:[238,302],cmdpage:246,cmdparri:178,cmdparser:[219,220,224,225,231],cmdpass:[337,338,339,340,341],cmdpassword:238,cmdperm:239,cmdplant:[123,299],cmdpose:[178,247,390],cmdpressbutton:440,cmdpush:101,cmdpushlidclos:433,cmdpushlidopen:433,cmdpy:251,cmdquell:238,cmdquickfind:145,cmdquit:238,cmdread:440,cmdrecog:[0,390],cmdreload:251,cmdremov:[315,407],cmdrerout:302,cmdreset:251,cmdrest:[337,338,339,340,341],cmdroll:186,cmdrss2chan:246,cmdsai:[178,247,390],cmdsaveyesno:549,cmdscript:[0,241],cmdsdesc:390,cmdser:551,cmdserverload:251,cmdservic:251,cmdsession:238,cmdset:[0,1,7,9,14,17,20,22,24,27,30,34,40,45,46,64,67,79,83,89,91,94,95,97,100,101,104,110,112,115,117,125,129,132,137,138,139,140,142,152,168,174,175,178,179,180,184,191,197,220,224,225,227,231,232,233,235,236,241,242,243,244,245,249,250,251,252,264,284,295,299,302,312,315,321,325,328,334,337,338,339,340,341,345,348,354,357,363,383,390,407,433,435,438,439,440,441,451,472,473,481,522,529,530,541,549,551,552,565,567,585],cmdset_account:[14,220,224,225,231,237],cmdset_charact:[220,224,225,231,237,315,337,338,339,340,341],cmdset_creat:79,cmdset_fallback:220,cmdset_mergetyp:[30,303,438,449,475,551],cmdset_path:220,cmdset_prior:[30,303,438,449,475,551],cmdset_sess:[46,220,224,225,231,237],cmdset_stack:235,cmdset_storag:[230,472,530],cmdset_storage_str:220,cmdset_trad:312,cmdset_unloggedin:[24,92,107,220,224,225,231,237,280],cmdsetattribut:241,cmdsetclimb:440,cmdsetcrumblingwal:440,cmdsetdesc:247,cmdsetevenniaintro:441,cmdsetevscaperoom:302,cmdsetflag:302,cmdsethandl:[46,224,225,231],cmdsethelp:248,cmdsethom:241,cmdsetkei:22,cmdsetkeystr:234,cmdsetlegacycomm:[110,295],cmdsetlight:440,cmdsetmor:552,cmdsetobj:[234,235,242,243,244,245,264,295,302,312,315,321,334,337,338,339,340,341,345,348,354,357,363,383,390,407,433,435,438,439,440,441,451,522,549,551,552],cmdsetobjalia:241,cmdsetpow:191,cmdsetread:440,cmdsetsit:140,cmdsetspe:[117,357],cmdsettestattr:28,cmdsettrad:[79,312],cmdsettrain:180,cmdsetweapon:440,cmdsetweaponrack:440,cmdsheet:169,cmdshiftroot:440,cmdshoot:[179,341],cmdshutdown:251,cmdsit2:140,cmdsit:140,cmdsmashglass:433,cmdsmile:24,cmdspawn:241,cmdspeak:302,cmdspellfirestorm:171,cmdstand2:140,cmdstand:[140,302],cmdstatu:[312,340,341],cmdstop:[117,357],cmdstring:[24,133,169,232,236,249,252,565],cmdstyle:238,cmdtag:241,cmdtalk:[407,435],cmdtask:251,cmdteleport:[241,363],cmdtest:[7,172,186],cmdtestid:24,cmdtestinput:30,cmdtestmenu:[30,96,449,551],cmdticker:251,cmdtime:[175,251],cmdtrade:312,cmdtradebas:312,cmdtradehelp:312,cmdtunnel:241,cmdtutori:441,cmdtutorialgiveup:441,cmdtutoriallook:441,cmdtutorialsetdetail:441,cmdtweet:204,cmdtypeclass:241,cmdunban:239,cmdunconnectedconnect:[253,280],cmdunconnectedcr:[253,280],cmdunconnectedencod:253,cmdunconnectedhelp:[253,280],cmdunconnectedinfo:253,cmdunconnectedlook:[253,280],cmdunconnectedquit:[253,280],cmdunconnectedscreenread:253,cmduncov:315,cmdunlink:241,cmdunwield:338,cmduse:339,cmdusepuzzlepart:334,cmdwait:24,cmdwall:239,cmdwear:315,cmdwerewolf:1,cmdwest:441,cmdwhisper:247,cmdwho:[238,302],cmdwield:338,cmdwieldorwear:407,cmdwipe:241,cmdwithdraw:341,cmdxyzopen:363,cmdxyzteleport:363,cmdyesnoquest:551,cmp:[87,272],cmset:[235,585],cmud:206,cnf:[5,205],coal:[321,322],coast:[106,146],coastal:106,cobj:302,cockpit:179,code:[0,4,6,8,9,10,11,14,17,18,22,24,25,30,33,34,36,37,40,42,44,46,48,49,50,51,52,53,54,55,56,57,58,59,62,63,64,67,70,71,74,75,77,79,80,82,84,88,89,93,94,98,102,103,105,106,114,119,122,125,126,129,130,131,132,134,137,138,139,140,141,142,144,145,146,148,150,151,152,155,157,158,161,164,166,167,168,169,170,171,172,174,175,176,178,180,181,182,183,186,188,189,190,191,193,195,196,197,200,203,205,212,213,215,216,218,219,220,222,224,225,227,231,232,235,238,240,241,246,248,251,254,258,264,269,276,283,286,299,304,307,310,312,318,320,339,369,375,376,383,386,401,408,410,416,441,451,457,469,473,478,481,500,502,503,519,530,533,541,543,544,549,551,553,564,565,566,567,574,616,619],code_exec:545,code_hint:304,code_tri:304,codebas:[13,74,76,128,130,167,220,252],codeblock:128,codec:544,codefunc:549,codeinput:304,coder:[0,3,94,126,147,150,167,200,232,473],coding_styl:128,coerc:562,coexist:188,coher:164,coin:[79,126,127,132,144,145,147,151,155,157,163,312,404,407,411,412,417],col:[58,165,553],cola:0,colb:0,cold:[57,149,220,222,251,478,482,486,529],cole:567,coll_date_func:251,collabor:[13,94,131,147,149,150,192,217,248],collaps:[151,408],collat:[34,68,477],collect:[0,2,15,22,33,34,51,53,82,112,125,144,152,193,232,234,248,251,334,375,394,405,417,539,567,593,615],collect_top:[248,615],collector:[193,417],collectstat:[53,55,193,491,495],collid:[22,44,119,155,209,217,304,394,410,542,551,554],collis:[0,22,24,140,534],collist:144,colon:[21,36,101,134,143,469],color:[0,3,20,24,27,30,33,35,44,53,58,63,66,74,99,100,106,120,125,126,128,129,132,133,134,163,169,176,182,197,220,236,238,266,267,268,299,309,322,348,369,370,372,386,390,438,461,473,477,496,503,511,514,519,520,544,553,554,561,565,567,568,619],color_ansi_bright_bg_extra_map:[86,267],color_ansi_bright_bgs_extra_map:267,color_ansi_extra_map:[86,220,267],color_ansi_xterm256_bright_bg_extra_map:[86,220],color_markup:[86,224,225,258,259,619],color_no_default:[86,220,267],color_typ:544,color_xterm256_extra_bg:[86,220,267],color_xterm256_extra_fg:[86,220,267],color_xterm256_extra_gbg:[86,220,267],color_xterm256_extra_gfg:[86,220,267],colorlist:566,colour:[21,63,241,518,544,553],column:[0,53,58,60,70,101,102,106,124,125,128,131,169,182,197,220,236,238,361,372,553,567],column_names_color:220,com:[0,6,11,12,13,43,51,55,56,58,67,72,75,77,83,94,102,106,128,130,145,147,163,181,189,194,200,203,205,207,208,209,211,212,213,217,218,220,224,246,251,264,280,318,451,454,466,500,503,506,515,519,536,553,566,567,607],coman:77,combat:[0,1,13,17,22,30,44,48,50,72,93,102,106,121,122,126,130,131,133,135,138,146,149,161,171,176,177,200,235,337,338,339,340,341,406,407,411,415,422,439,481,619],combat_:[337,406],combat_can_us:406,combat_cleanup:337,combat_cmdset:178,combat_get_help:406,combat_handl:178,combat_handler_:178,combat_handler_class:[337,339,340,341],combat_help_text:[337,339,341],combat_movesleft:337,combat_post_us:406,combat_pr:406,combat_pre_us:406,combat_rul:[337,338,340,341],combat_scor:191,combat_spel:340,combat_status_messag:341,combat_turnbas:[224,225,258,395,401],combatact:[406,411],combatactionattack:406,combatactionblock:406,combatactiondonoth:406,combatactionfle:406,combatactionstunt:406,combatactionswapwieldedweaponorspel:406,combatactionuseitem:406,combatant_act:406,combatant_kei:406,combatcmdset:178,combatfailur:406,combathandl:[178,406,411],combatscor:191,combin:[11,15,21,22,24,37,38,44,48,49,57,62,82,89,111,112,119,125,126,130,134,136,137,141,143,149,157,168,169,171,173,183,207,208,217,220,232,233,234,241,304,321,322,331,334,370,372,389,394,406,413,433,469,477,480,486,491,540,542,547,554,561,565,567],combo:46,come:[1,8,13,14,18,21,24,30,31,34,36,45,46,53,54,55,56,58,62,64,68,71,74,75,94,95,101,102,106,111,122,125,126,130,131,134,135,138,139,140,143,144,147,149,150,152,163,165,168,169,172,175,177,178,179,180,182,183,186,188,191,194,195,196,197,205,208,210,212,227,234,337,341,345,390,454,457,477,478,500,509,514,519,520,522,528,544,552,590,616],comet:[53,64,520],comfi:140,comfort:[13,18,130,150,186,197,221],comg:51,comlist:295,comm:[20,24,27,38,126,129,131,135,137,139,204,220,224,225,231,237,294,295,296,547,573,574,598,612,619],comma:[0,20,33,52,60,70,101,102,134,143,144,195,205,241,249,289,321,328,469,473,554,567],comman:134,command:[2,3,5,8,10,11,12,13,14,15,16,18,20,21,28,30,31,35,36,38,39,40,42,43,44,46,48,50,52,53,54,56,57,59,60,61,62,64,65,66,67,68,70,71,72,73,74,76,78,79,80,82,85,87,88,89,91,94,96,97,98,102,103,104,105,106,109,112,113,115,116,117,118,120,121,122,124,125,126,128,130,131,135,137,142,145,146,147,149,150,151,152,158,163,167,168,176,177,179,182,183,184,188,189,192,193,196,197,198,201,202,203,205,206,207,208,210,211,212,213,215,216,217,218,219,220,222,224,225,227,228,255,256,258,259,264,279,280,282,285,287,291,294,295,297,298,299,300,301,303,304,309,312,315,318,321,322,323,325,328,331,334,337,338,339,340,341,343,345,348,354,357,361,362,364,365,375,379,383,390,395,401,405,411,423,431,433,435,438,439,440,441,446,449,451,461,462,463,464,465,466,468,469,473,477,478,481,488,491,496,500,501,509,511,514,515,519,520,522,523,529,530,541,543,544,547,549,551,552,561,564,565,567,593,615,616,619],command_default_arg_regex:[0,24,220],command_default_class:[1,220],command_default_help_categori:[34,220],command_default_lock:220,command_default_msg_all_sess:220,command_handler_class:338,command_pars:[220,233],command_rate_warn:220,commandhandl:[35,235,250],commandmeta:236,commandnam:[24,35,68,134,236,299,491,500,530,532],commandset:[36,40,133,235],commandss:174,commandtest:0,commandtestmixin:565,comment:[1,16,17,30,50,80,82,133,140,183,189,206,207,216,217,220,369,545,551],commerc:200,commerci:[10,93,149,150,161,217],commerror:256,commit:[0,1,5,6,12,18,65,72,84,98,127,128,131,203,205,212,216,445,451,576,583],commmand:[116,337,338,339,340,341,354],commom:25,common:[0,2,9,11,13,18,20,21,24,25,30,35,36,44,45,46,47,49,50,56,57,58,60,64,68,71,73,79,82,89,93,111,113,117,126,128,129,131,134,135,136,138,139,143,144,145,147,148,149,150,151,161,173,175,177,178,186,191,194,196,197,208,210,215,217,220,234,241,246,253,312,321,357,375,389,390,469,471,481,496,519,523,540,541,550,552,562,564,567,593,600,616],common_ware_prototyp:411,commonli:[12,33,34,39,45,46,47,49,55,60,68,70,101,119,125,131,136,141,149,170,205,219,370,394,473,565,593],commonmark:128,commonmiddlewar:220,commonpasswordvalid:220,commun:[0,10,20,24,38,43,53,54,64,68,71,73,77,78,83,126,129,130,131,133,137,138,149,150,168,186,202,205,207,217,220,227,243,246,253,254,255,256,257,302,328,371,411,438,472,480,488,500,501,511,512,514,515,516,517,530,532,547,548,563,619],compact:[136,152,155,184,195,433],compactli:161,compani:[71,131],compar:[0,9,11,13,16,18,21,22,68,101,105,113,119,125,136,150,169,172,174,177,178,186,189,191,236,334,337,338,339,341,389,394,468,469,478,522,544,565,567],comparison:[8,16,33,136,137,163,393,468,478,551,565],compartment:169,compass:[100,126,134,348],compat:[0,17,30,77,93,119,120,149,241,394,550,553,560,567],compatabil:0,compet:[18,71,149,411],compil:[8,24,67,72,128,138,167,189,211,213,215,236,241,247,248,251,253,302,315,321,390,473,544,549,551,566],compilemessag:67,complain:[7,12,70,186,222],complement:[0,2,47,150,394],complementari:[25,33,44,45,73],complet:[0,1,5,8,12,13,14,15,16,17,18,21,22,24,25,28,40,42,44,46,47,52,54,56,71,78,83,84,86,88,93,99,101,105,106,111,122,126,127,131,136,143,146,147,149,150,158,161,163,169,175,176,182,187,191,192,205,208,217,219,220,222,227,234,235,236,249,251,252,267,286,300,318,338,345,370,386,401,405,413,433,441,449,454,473,485,491,493,501,502,519,539,545,550,551,552,564,567,588,607],complete_task:286,completed_text:413,complex:[8,15,17,18,22,24,33,49,60,70,72,82,87,94,101,106,114,118,125,126,128,131,134,136,138,140,141,143,144,145,147,149,152,161,172,175,177,178,191,212,219,235,255,287,304,375,377,407,433,435,457,478,523,539],complianc:[206,345],compliant:[181,515],complic:[56,83,96,103,106,120,136,182,186,194,195,196,197,217,253,280,449,461,539],compon:[0,2,8,11,24,38,45,51,52,53,55,63,64,75,125,128,135,137,147,150,152,164,166,169,172,176,178,182,191,217,220,222,224,225,241,251,256,257,258,259,276,315,321,334,343,362,369,371,389,390,393,412,471,473,478,479,480,481,484,491,520,547,550,554,564,567,570,596,619],component_handl:272,component_nam:[87,269,272],component_prefix:560,componenta:9,componentdoesnotexist:272,componenthandl:272,componenthold:272,componentholdermixin:[87,272,274],componentid:53,componentisnotregist:272,componentnam:53,componentproperti:[87,272],componentregistererror:270,componentst:53,componenttesta:274,componenttestb:274,componentwithsign:274,compos:[96,212,449],composit:[87,517,540],comprehens:[8,11,36,38,50,130,155,218],compress:[35,405,496,500,504,563],compress_object:563,compris:227,compromis:[218,445],comput:[13,49,56,57,73,131,136,137,149,167,177,182,190,202,212,213,215,221,239,251,567,568],computation:49,comsystem:257,con:[27,126,152,155,161,163,169,200,253,280,409,619],con_bonu:161,con_defens:410,concaten:[138,544],concept:[0,13,43,49,64,67,82,88,102,109,126,127,128,132,140,142,143,144,147,148,151,168,172,176,181,196,197,318,331,394,619],conceptu:[30,182],concern:[50,67,71,82,101,125,126,143,144,213,234,457,465],conch:[511,514,522],concis:150,conclud:[140,161,312,551],conclus:[132,142,148,158],concret:101,concurr:205,conda:189,conder:545,condit:[0,3,8,33,60,91,101,102,121,126,130,133,136,140,141,147,149,155,177,182,184,186,191,207,232,248,339,375,376,377,383,390,469,473,484,490,491,536,542,567],condition:1,condition_result:383,condition_tickdown:339,conditional_flush:558,conduct:193,conductor:180,conf:[0,1,5,8,11,13,26,35,36,44,45,52,55,64,67,70,75,78,84,86,89,94,101,105,107,111,125,128,132,139,140,151,152,175,180,189,192,194,195,197,198,201,205,207,208,209,210,215,216,217,218,220,221,227,267,321,364,366,491,497,498,537,545],confer:[200,567],confid:[7,127,181],config:[0,5,6,10,13,14,64,189,192,203,207,208,215,217,218,220,394,491,493,497,498,509,582],config_1:14,config_2:14,config_3:14,configdict:[511,532],configur:[0,1,3,5,11,14,52,100,101,103,128,131,132,138,141,175,193,197,198,209,212,217,220,227,230,233,238,299,348,394,445,446,493,498,509,532,534,536,537,540,607,619],configut:10,confirm:[0,24,53,77,92,125,134,207,215,218,241,280,334,379,406,417,515,518],conflict:[7,149,188,451],confus:[2,8,9,13,15,22,24,39,42,45,53,56,62,67,76,83,92,101,125,128,131,136,139,144,151,161,163,169,186,188,193,217,221,246,280,370,617],congratul:[132,148,192],conid:510,conj:[33,60,151,473,554],conjug:[0,33,60,151,224,225,473,543,554,569,572],conjunct:101,conjur:[121,340],conn:[27,253,280],conn_max_ag:220,conn_tim:[46,220],connect:[0,1,3,8,11,14,16,19,20,22,24,25,27,35,40,42,43,45,46,47,50,52,53,54,55,57,62,64,65,66,67,68,71,78,92,94,99,101,102,103,105,106,107,117,122,125,130,131,132,134,136,137,138,139,141,149,152,158,168,182,186,187,188,189,191,192,193,196,197,198,205,206,207,208,210,212,213,215,218,219,220,221,222,227,228,229,230,238,239,241,246,253,255,256,257,273,279,280,283,284,286,291,295,357,367,369,370,372,386,408,446,472,473,479,487,488,491,493,500,501,502,503,504,509,510,511,514,519,520,522,523,529,530,531,532,533,536,539,541,547,563,590,593,619],connection_cr:47,connection_screen:[0,26,92,107,138,219,220,224,225,258,259,278,280,290],connection_screen_modul:[92,107,220,280],connection_set:209,connection_tim:[227,473],connection_wizard:[224,225,487],connectiondon:493,connectionlost:[493,500,501,511,514,522],connectionmad:[488,500,511,514,522],connectionwizard:489,connector:[488,502,503,509,532],conquer:146,cons3:323,consecut:30,consequ:[217,235],consid:[2,8,9,15,16,17,20,21,22,24,30,33,35,36,42,44,45,46,48,49,50,52,54,56,57,60,62,64,70,73,75,82,89,96,102,103,112,113,119,125,127,130,131,136,138,139,143,145,147,149,150,151,168,170,174,180,181,194,195,199,205,213,217,218,220,227,234,235,270,299,318,334,341,367,369,370,389,390,394,406,449,473,477,478,481,496,511,514,540,542,545,546,550,551,552,554],consider:[0,70,78,106,139,149,219,478,553],consist:[0,14,15,19,24,30,34,36,43,44,53,60,70,75,82,102,105,113,125,128,143,146,149,174,175,178,191,220,222,227,233,248,249,255,256,276,312,322,334,371,389,462,469,478,515,520,530,539,541,547,553,554,565,567,576,583,618],consitut:[139,152,163],consol:[0,2,7,9,10,53,59,62,67,77,128,131,132,139,143,144,189,191,205,210,211,212,213,215,217,248,251,371,390,491],consolid:149,conson:[113,389,454,554],constant:[71,103,163,220,409,500,565],constantli:[417,441],constitu:[235,249],constitut:[15,149,151,152,155,161,163,404,409,410,411,416],constraint:[103,205],construct:[5,82,131,140,172,194,478,535,539,544,552,607],constructor:[24,82,83,89,119,264,321,394,502],consum:[56,89,126,132,158,161,184,220,304,321,322,323,409,412,493,567],consumable_kwarg:321,consumable_nam:321,consumable_tag:[89,321,322],consumable_tag_categori:[89,321],consume_flag:304,consume_on_fail:321,consumer_kei:[198,204],consumer_secret:[198,204],consumpt:[8,205,534],contact:[20,40,212,217,220],contain:[0,1,2,9,12,15,16,17,19,22,24,25,27,30,33,34,36,38,40,44,46,53,54,55,56,58,64,70,74,78,82,83,87,94,96,97,101,102,103,105,111,113,114,117,120,121,123,124,125,126,127,128,129,130,131,133,134,136,137,138,140,141,143,144,149,152,155,161,163,167,168,175,179,181,183,186,188,189,191,193,194,195,197,200,210,211,213,215,219,220,224,225,227,228,229,231,232,233,234,235,237,240,241,246,248,254,264,270,271,272,273,283,284,285,286,287,289,299,302,321,325,334,339,357,361,369,370,371,372,375,389,390,394,406,410,411,416,417,433,440,446,447,449,457,461,463,464,467,473,475,477,478,485,487,490,494,496,522,534,535,536,539,540,541,542,543,544,545,548,550,551,552,553,554,564,565,566,567,568,590,596,605,615,616,618],container:212,containin:220,contempl:167,content:[3,8,13,16,19,21,33,38,40,50,52,53,54,55,58,80,94,101,126,128,132,136,138,140,141,142,143,145,148,149,150,155,158,164,165,166,167,169,170,179,180,181,182,184,185,186,191,194,195,196,197,208,217,236,239,241,262,304,305,315,363,390,410,413,463,471,472,473,542,544,545,546,549,551,553,564,565,573,583,590,596,605],content_typ:[0,472,473],contentof:553,contents_cach:472,contents_get:[145,473],contents_set:473,contentshandl:[0,472],contenttyp:220,contest:[94,302],context:[0,55,62,101,102,130,142,186,188,194,197,217,264,286,375,377,406,512,516,600,612,613,615,616,618],context_processor:[220,600],contextu:48,contibut:[80,126],continu:[0,3,7,15,21,24,30,48,49,55,56,61,70,77,84,101,102,105,125,126,127,133,140,141,143,157,169,178,179,182,184,191,193,196,197,204,211,213,215,216,217,220,370,473,489,500,536,539,551,560,567,619],contrari:[51,101,103,119,138,149,175,251,394,405,542],contrast:[42,45,73,167,217,515],contrib:[3,16,17,52,60,77,78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,128,129,130,134,137,138,143,146,149,151,152,155,157,158,161,163,168,169,171,175,177,178,181,182,187,192,199,200,210,216,220,224,225,227,229,230,251,252,533,544,545,575,576,577,579,580,581,582,583,598,599,607,613,618,619],contribchargenaccount:[84,379],contribcloth:315,contribcmdcharcr:[84,379],contribrpcharact:[113,390],contribrpobject:[113,390],contribrproom:[113,390],contribu:13,contribut:[2,11,13,67,77,78,79,81,82,83,84,85,88,89,91,94,95,96,97,98,99,100,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,131,137,189,193,199,213,258,267,299,312,315,328,334,345,354,357,383,390,435,445,446,454,457],contributor:[0,77,199,264,394],control:[0,3,4,5,7,9,12,14,16,17,20,22,24,28,30,31,33,34,35,36,40,43,44,45,46,51,52,57,59,60,62,68,70,72,75,77,79,80,82,89,98,115,125,126,127,128,129,131,132,134,137,138,139,140,141,147,149,150,155,168,169,177,179,180,183,189,191,192,196,208,215,216,217,218,220,222,227,228,238,240,241,246,285,295,304,312,361,372,390,406,412,433,439,441,468,473,481,491,530,532,541,551,554,565,588,607,619],convei:[390,473],convenei:47,conveni:[10,20,30,34,35,36,40,42,44,45,50,55,56,64,70,72,76,82,83,105,125,128,130,133,135,139,141,143,145,155,157,161,168,171,172,179,187,189,194,197,203,220,222,227,241,251,264,307,309,321,328,406,410,473,523,534,545,546,551,552,554,560,563,564],convent:[22,47,70,103,136,152,188,220],convention:[236,473,541],convers:[20,30,33,39,53,82,89,118,126,149,180,389,407,435,519,520,544,567],convert:[0,12,15,20,21,39,44,62,64,68,71,73,90,96,125,127,131,132,136,139,152,157,161,175,181,182,188,196,200,210,213,216,218,220,229,239,276,369,383,417,449,461,468,471,477,478,480,482,500,502,511,514,515,532,536,544,548,551,552,553,554,555,563,566,567,570,590],convert_linebreak:566,convert_url:566,convinc:30,cooki:220,cool:[2,83,101,147,165,179,189,200,241,246],cool_gui:42,cooldown:[0,172,176,178,224,225,258,310,619],cooldown_storage_categori:171,cooldown_storage_kei:171,cooldowncommandmixin:171,cooldownhandl:[88,318],coord:[181,367,369,370,372,408],coordi:181,coordin:[0,53,105,124,125,126,176,182,341,361,363,369,370,371,372,619],coordx:181,coordz:181,cope:340,copi:[0,1,2,5,8,12,13,16,17,24,27,28,30,44,46,51,52,53,55,75,77,84,94,103,106,111,126,128,131,133,134,137,138,152,170,175,191,193,194,196,205,208,210,212,216,217,219,220,240,241,286,315,337,338,339,340,341,441,471,473,480,491,500,537,539,544,615,616],copper:149,copy_object:[471,473],copy_script:480,copy_word_cas:567,copyright:[199,217],core:[0,10,13,40,50,59,67,71,84,90,98,104,126,127,137,139,144,161,176,182,196,199,219,220,227,230,251,257,258,322,328,361,379,427,451,465,472,473,481,487,498,508,515,529,539,541,542,545,552,559,565,607,618,619],corner:[19,122,124,125,168,181,200,361,369,550,553],corner_bottom_left_char:553,corner_bottom_right_char:553,corner_char:553,corner_top_left_char:553,corner_top_right_char:553,corpu:[113,389],corpul:152,correct:[0,17,21,22,24,28,33,55,56,62,73,122,127,128,139,140,144,150,151,170,179,180,186,188,191,205,232,238,241,256,304,334,345,369,377,390,400,455,469,506,509,511,517,531,544,565,567],correctli:[0,5,7,21,24,28,30,48,49,125,128,138,175,180,182,186,188,189,191,202,207,217,220,222,227,230,235,238,321,377,411,482,491,500,536,563,590],correl:478,correspond:[24,36,46,55,75,82,105,112,125,134,220,270,276,334,375,461,576,583,588,607],correspondingli:12,corrupt:167,cosi:106,cosin:567,cosmet:[0,361],cost:[124,125,149,171,217,340,361,390,417],cottag:[61,106],couchdb:77,could:[0,1,5,7,8,10,11,12,14,15,16,17,18,20,22,24,30,33,34,36,37,38,39,40,42,44,45,48,49,50,53,55,56,57,59,60,62,64,68,70,71,72,73,74,75,76,79,82,83,89,94,100,101,102,103,106,111,114,117,119,120,125,126,128,130,131,132,133,134,135,136,138,139,140,141,143,144,147,149,150,151,152,155,157,161,163,165,168,169,171,172,173,174,175,177,178,179,180,181,182,183,184,186,188,189,190,191,193,194,196,197,198,200,201,202,203,204,208,215,217,220,227,235,241,248,256,257,264,289,304,305,312,321,348,357,361,370,372,383,386,389,390,393,394,406,410,412,416,417,433,441,457,461,469,473,484,496,515,520,536,541,542,544,545,549,550,553,554,555,558,562,567,571],couldn:[59,76,131,133,143,174,186,188,195,457],count:[20,51,54,82,111,121,131,136,139,143,155,178,198,229,234,315,318,339,375,406,410,461,473,505,509,522,526,532,534,540,544,551,554,560,571],count_loggedin:509,count_queri:526,count_slot:[132,410],countdown:[45,134],counter:[12,45,46,83,152,172,178,197,224,228,258,373,392,393,406,441,509,522,523,530,551],countermeasur:220,counterpart:[0,16,62,496,532,548],countertrait:394,countri:239,coupl:[13,42,53,83,117,197,212,255,357],cours:[2,6,8,10,18,24,49,55,57,72,76,78,82,83,84,89,101,102,103,122,125,126,128,131,139,141,143,146,147,168,179,186,189,190,191,199,210,220,338,341,375,411,438],court:122,courtesi:[0,57],cousin:[74,101,126,186],cover:[2,13,16,17,34,55,63,64,69,70,85,101,115,125,127,136,137,138,141,143,145,149,150,155,161,163,168,172,189,198,200,205,207,215,217,304,315,322,345,370,433,441,473,567],coverag:[0,11],coveral:11,cpanel:217,cpattr:[27,133,241],cprofil:3,cpu:[8,57,217,218,251],cpython:8,crack:70,craft:[0,36,60,82,96,106,112,132,147,172,224,225,258,310,449,619],craft_recipe_modul:[89,321],craft_recipes_modul:321,craft_result:321,crafted_result:321,crafter:[321,322,323],crafting_consumable_err_msg:321,crafting_materi:[89,321,322],crafting_recipe_modul:89,crafting_result:321,crafting_skil:89,crafting_tool:[89,321],crafting_tool_err_msg:321,craftingcmdset:321,craftingerror:321,craftingrecip:[89,321,322,323],craftingrecipebas:[89,321],craftingvalidationerror:[89,321],craftrecip:321,cram:146,crank:49,crash:[2,106,143,147,218,220,495,539],crate:[39,134],crawl:218,crawler:[220,253,505],crazi:161,cre:[27,253,280],creat:[0,1,2,3,6,7,8,10,11,13,15,16,17,18,20,22,25,26,27,28,30,33,34,36,38,39,42,44,45,46,47,48,51,52,53,55,58,59,63,64,65,72,74,75,76,77,79,80,83,84,85,87,89,94,95,96,102,105,108,109,110,111,112,113,114,115,118,119,120,122,124,125,126,127,128,130,131,132,136,138,140,141,142,144,145,146,147,148,150,151,155,158,161,163,166,167,168,169,170,172,174,175,176,177,178,179,181,182,183,184,185,186,187,189,190,192,193,195,198,199,201,202,204,205,209,210,211,213,214,217,218,219,220,221,224,225,227,228,229,230,233,234,235,236,238,241,246,247,248,249,250,251,252,253,255,256,257,262,264,265,268,270,272,276,280,285,286,287,289,295,299,302,303,304,305,306,307,309,312,315,321,322,323,325,328,331,334,337,338,339,340,345,348,354,361,367,369,370,371,372,375,377,379,383,389,390,394,399,401,405,406,408,411,412,417,424,433,435,438,439,440,441,446,449,457,461,463,464,465,469,471,472,473,475,476,477,478,480,481,483,484,485,486,488,491,495,496,501,503,504,509,511,512,516,523,529,531,532,534,536,539,540,541,542,543,544,545,546,549,550,551,553,554,555,560,565,567,575,580,587,592,593,608,611,613,615,616,617,618,619],creataion:367,create_:[0,50],create_account:[21,47,50,129,135,224,229,547,565],create_attribut:539,create_cal:227,create_channel:[20,21,129,135,224,246,255,256,547],create_char:565,create_charact:[135,227,473],create_default_channel:529,create_delai:485,create_evscaperoom_object:309,create_exit:[241,354],create_exit_cmdset:473,create_fantasy_word:309,create_forward_many_to_many_manag:[230,257,465,472,481,539,541,542,559],create_from_obj:417,create_from_prototyp:417,create_game_directori:491,create_grid:[182,348],create_help:464,create_help_entri:[21,34,129,224,547],create_kwarg:478,create_match:233,create_messag:[21,38,129,224,256,547],create_obj:565,create_object:[11,15,16,21,36,40,50,80,89,105,106,111,129,132,135,140,151,152,155,163,187,191,194,224,307,309,321,433,471,473,478,495,545,547],create_out_exit:408,create_prototyp:[477,478],create_room:565,create_script:[21,45,50,101,129,135,167,178,224,480,484,545,547,565],create_secret_kei:491,create_settings_fil:491,create_superus:491,create_tag:540,create_wild:[124,361],createbucket:77,created_on:283,createobj:302,creater:129,createview:617,creation:[0,9,13,15,17,25,30,36,40,46,50,70,76,78,84,93,105,106,125,126,128,132,134,135,137,139,147,149,157,158,161,169,191,192,194,200,210,220,224,227,230,241,246,248,255,306,321,334,337,338,339,340,341,354,363,369,372,379,390,394,408,411,440,441,446,465,471,472,473,478,481,486,524,541,547,549,550,551,553,575,576,580,583,607,611,613,618,619],creation_:547,creation_throttle_limit:220,creation_throttle_timeout:220,creativ:[72,93,149,161],creativecommon:454,creator:[0,30,36,76,106,126,129,150,191,192,200,248,255,337,379,411,473,553,619],creatur:[161,221],cred:[13,511],credenti:[13,54,55,77,217,218,227,511],credentialinterfac:511,credit:[13,127,132,142,143,158,217,218,566,567],creset:13,crew:136,criteria:[30,114,126,136,256,285,457,477,540,564],criterion:[13,136,139,141,146,227,312,390,464,471,473,480,483,564,567],critic:[2,9,12,22,45,46,59,62,94,149,157,161,208,416,469,490,491,560],critical_failur:[161,163,409],critical_success:[161,163,409],critici:541,cron:208,crontab:208,crop:[0,33,62,169,369,550,553,554,567],crop_str:553,cross:[106,122,125,322,367,370,441,553],crossbario:519,crossbow:172,crossmaplink:[125,370],crossov:0,crossroad:106,crowd:147,crt:[207,208],crucial:[49,186],crucibl:322,crucible_steel:322,cruciblesteelrecip:322,crud:[592,593],crude:[103,321,322],crumblingwal:440,crumblingwall_cmdset:440,crunchi:149,crush:179,crypt:146,cryptocurr:218,cscore:191,csessid:[220,509,519,520,532],csession:[519,520],csrf:[217,220],csrf_token:194,csrf_trusted_origin:217,csrfviewmiddlewar:220,css:[0,19,52,53,55,62,66,75,130,138,193,220,566,596],cssclass:53,ctestobj:163,ctrl:[0,8,55,143,208,210,212,217,222,522],cuddli:[139,144],culpa:31,cumbersom:[12,30,141,163,172,180,461],cumul:523,cup:127,cupidatat:31,cur_valu:386,cure:[121,339,340],cure_condit:339,curi:182,curiou:72,curl:215,curli:[86,267],curly_color_ansi_bright_bg_extra_map:267,curly_color_ansi_bright_bgs_extra_map:267,curly_color_ansi_extra_map:[86,267],curly_color_ansi_xterm256_bright_bg_extra_map:86,curly_color_xterm256_extra_bg:[86,267],curly_color_xterm256_extra_fg:[86,267],curly_color_xterm256_extra_gbg:[86,267],curly_color_xterm256_extra_gfg:[86,267],curr_sess:532,curr_tim:345,currenc:[149,184,198],current:[0,1,8,10,11,12,13,14,16,17,20,21,22,24,27,28,30,33,35,40,42,45,46,49,53,54,55,57,59,60,62,70,77,79,82,83,84,87,95,96,98,99,101,102,103,105,114,119,121,125,126,131,133,134,136,137,138,139,140,141,144,145,151,152,155,161,163,169,170,171,172,173,178,179,180,182,183,185,189,191,194,208,210,212,213,216,220,227,229,230,232,233,235,236,238,239,241,246,247,248,250,251,253,255,264,272,286,289,295,302,304,307,312,315,321,331,337,338,339,340,341,345,348,354,357,361,363,370,372,386,390,393,394,405,406,408,410,411,413,415,429,431,438,440,441,449,451,457,461,464,471,472,473,478,481,485,486,491,496,501,507,508,511,512,515,523,530,532,534,540,541,549,551,553,554,555,560,561,564,567,575,590,612,613,615,616],current_:[151,161],current_choic:264,current_cmdset:241,current_coordin:361,current_kei:[476,477],current_slot_usag:155,current_step:[187,413],current_tim:522,current_us:194,current_weath:45,current_weight:370,currentroom:180,curriculum:200,curs:[7,155],curtain:34,curv:[130,167],curx:182,cushion:140,custom:[0,1,2,3,9,14,15,17,18,19,21,22,24,25,26,27,35,39,40,44,48,50,54,57,58,60,63,65,68,70,76,77,78,84,85,88,96,97,101,103,105,113,119,121,122,124,125,126,128,129,130,131,132,134,135,136,138,140,141,142,146,147,149,152,155,157,167,169,173,176,177,178,179,180,182,183,185,188,190,191,192,193,194,197,199,200,201,204,212,217,219,220,222,224,225,227,228,229,230,232,234,235,236,241,246,247,248,253,255,258,275,276,277,286,289,302,303,304,305,307,312,315,318,321,325,334,345,361,365,369,370,373,375,376,388,390,394,406,410,411,433,438,440,441,445,446,449,463,464,471,473,475,476,477,478,480,486,491,495,497,500,522,531,539,541,546,549,551,552,553,558,561,562,565,567,574,575,577,582,592,593,598,599,616,619],custom_add:286,custom_cal:[286,289],custom_combat_act:406,custom_evennia_launcher_command:491,custom_gametim:[0,90,101,175,224,225,258,259,619],custom_helpstr:304,custom_kei:477,custom_map:550,custom_pattern:165,customis:[224,225,258,343,359],customiz:[19,82,83,99,113,126,264,386,390,433,449],customlog:207,customt:565,cut:[20,28,64,89,106,149,186,191,220,369,478],cute:193,cutoff:567,cutthroat:149,cvc:[111,454],cvcc:389,cvccv:389,cvccvcv:389,cvcvcc:389,cvcvccc:389,cvcvccvv:389,cvcvcvcvv:389,cvcvvcvvcc:[113,389],cvv:389,cvvc:[113,389],cwho:[110,133,295],cyan:[62,163,188],cyberpunk:[20,145],cyberspac:200,cycl:[0,1,16,17,147,167,175,190,337,375,408],cycle_logfil:0,cyril:18,d20:[149,161,416],daemon:[0,8,78,207,208,212,218,222,508,536],daffodil:145,dagger:48,dai:[0,21,50,72,90,95,101,126,132,147,161,167,175,188,190,198,208,212,218,229,276,322,345,412,555,560,567,568],daili:39,dailylogfil:560,dali:[113,389],dalnet:246,dalton:136,dam:167,damag:[0,17,82,87,121,146,149,151,155,163,171,177,178,179,218,322,337,338,339,340,341,375,376,404,406,411,439,440],damage_rang:340,damage_rol:[157,163,412,417],damage_taken:167,damage_valu:[337,338,339],damagebuff:82,damascu:322,danc:125,dandelion:33,dandi:76,danger:[9,16,22,46,101,128,149,220,234,408,411],dare:[24,133,570],dark:[16,17,19,22,34,62,106,119,125,143,146,149,150,177,188,200,235,345,394,433,441,481,544,545],darkcmdset:441,darker:188,darkgrai:188,darkroom:441,darkroom_cmdset:441,darkstat:441,dash:[101,114,128,457,461],dashcount:461,dashlin:33,data:[0,1,3,4,8,9,12,14,16,18,20,21,25,33,34,39,44,45,48,50,51,52,53,55,56,68,70,71,73,75,78,82,83,88,89,96,99,111,119,125,126,131,135,138,139,144,147,150,152,155,157,161,163,167,168,169,194,195,196,205,208,211,212,217,218,219,220,227,228,229,236,241,248,251,285,286,315,318,321,340,369,370,371,375,386,390,393,394,412,413,416,417,445,446,449,454,471,472,473,475,477,479,484,486,488,489,493,497,498,500,501,502,503,504,509,510,511,512,514,515,516,518,519,520,522,524,529,530,531,532,534,538,539,540,541,542,544,545,546,547,548,550,551,552,553,554,557,560,561,562,563,567,576,577,579,581,583,587,590,593,598,607,611,613,615,616,618],data_default_valu:394,data_in:[64,68,446,500,502,503,509,510,514,519,520,530,531,532],data_out:[64,446,509,511,514,515,520,530,531,532],data_to_port:[488,500],data_to_serv:501,databa:491,databas:[0,3,4,5,6,8,11,13,15,16,18,19,20,21,22,25,35,36,37,38,39,40,45,46,47,48,49,50,51,52,54,55,57,59,63,75,76,77,78,82,95,101,103,106,124,125,126,128,130,131,132,133,135,137,138,141,142,143,145,147,149,151,155,157,167,168,169,176,178,179,181,186,187,191,192,193,194,195,210,212,214,219,220,221,222,227,229,230,234,235,241,248,251,255,256,257,285,286,340,345,361,371,372,389,390,417,441,462,463,464,465,468,471,472,473,477,479,480,481,482,485,486,491,495,497,508,522,529,538,539,540,541,542,545,547,548,556,558,563,564,567,573,577,580,581,583,593,619],dataclass:554,datareceiv:[493,500,514,522],dataset:477,datastor:70,date:[12,13,15,34,57,67,70,77,175,182,188,194,205,208,211,219,220,235,239,251,445,555,560,568],date_appli:194,date_cr:[50,227,230,257,465,481,539,541],date_join:[230,575],date_s:38,datetim:[50,175,194,220,276,346,539,555,560,561,567,568],datetime_format:[220,567],datetimefield:[70,194,230,257,465,472,481,539,541,567,575],davewiththenicehat:[0,615],david:[77,200],dawn:134,day_rot:560,daylight:149,db3:[8,12,13,106,138,205,210,220],db3_backup:8,db_:[37,50,70,136,390,471,473,482,496,564],db_account:[274,306,315,367,377,393,471,472,481,575,580],db_account__db_kei:580,db_account__id:587,db_account__usernam:587,db_account_id:[472,481],db_account_subscript:[257,577],db_attribut:[47,88,230,257,318,472,481,541,575,577,580],db_attribute_categori:394,db_attribute_kei:394,db_attributes__db_kei:136,db_attributes__db_value__gt:136,db_attrtyp:[539,590],db_attryp:39,db_categori:[70,136,539,542,583,590],db_category__iequ:70,db_cmdset_storag:[230,274,315,367,377,393,472,575,580],db_data:[542,583,590],db_date_cr:[70,230,257,274,306,315,367,377,393,465,472,481,539,541,575,577,579,580,581,590],db_desc:[306,481,587],db_destin:[136,274,315,367,377,393,472,575,580],db_destination__isnul:198,db_destination_id:472,db_entrytext:[465,579,590],db_field_nam:270,db_header:[257,577],db_help_categori:[465,579,590],db_help_dict:248,db_help_top:615,db_hide_from_account:[257,577],db_hide_from_object:[257,577],db_hide_from_receiv:257,db_hide_from_send:257,db_home:[274,315,367,377,393,472,575,580,590],db_home__db_kei:587,db_home__id:587,db_home_id:472,db_index:70,db_interv:[306,481,581,587,590],db_is_act:[306,481,587,590],db_is_bot:[230,575,587],db_is_connect:[230,575,587],db_kei:[37,50,51,70,125,135,136,139,197,230,257,274,285,306,315,367,377,393,465,472,481,482,498,539,541,542,575,577,579,580,581,582,583,587,590,607],db_key__contain:50,db_key__exact:136,db_key__icontain:[70,136],db_key__iexact:136,db_key__in:136,db_key__startswith:50,db_locat:[37,51,136,139,274,315,367,377,393,472,575,580,590],db_location__db_kei:[580,587],db_location__db_tags__db_key__iexact:136,db_location__id:587,db_location__isnul:198,db_location_id:472,db_lock_storag:[230,257,274,306,315,367,377,393,465,472,481,539,541,575,577,579,580,581],db_messag:[257,577],db_model:[539,542,583],db_name:272,db_obj:[306,481,548,581],db_obj__db_kei:587,db_obj__id:587,db_obj_id:481,db_object_subscript:[257,577],db_permiss:70,db_persist:[306,481,581,587,590],db_properti:496,db_prot_id:477,db_protototyp:477,db_receiver_extern:[0,257,577],db_receivers_account:[257,577],db_receivers_accounts__db_kei:577,db_receivers_object:[257,577],db_receivers_objects__db_kei:577,db_receivers_script:[257,577],db_receivers_scripts__db_kei:577,db_repeat:[306,481,581,590],db_sender_account:[257,577],db_sender_accounts__db_kei:577,db_sender_extern:[257,577],db_sender_object:[257,577],db_sender_objects__db_kei:577,db_sender_script:[257,577],db_sender_scripts__db_kei:577,db_sessid:[274,315,367,377,393,471,472,575,580],db_start_delai:[306,481,581,590],db_strvalu:539,db_tag:[136,230,257,465,472,481,541,542,575,577,579,580],db_tags__db_categori:[136,181,587],db_tags__db_kei:[136,181,577,587],db_tags__db_key__iexact:136,db_tags__db_key__in:181,db_tagtyp:[542,583,587,590],db_text:70,db_typeclass_path:[70,198,230,257,274,306,315,367,377,393,472,481,541,567,575,577,580,581,587,590],db_valu:[37,39,136,498,539,582,590,593],dbef:[241,480,564],dbentri:248,dbfield:[87,224,225,258,259,269,270],dbhandler:607,dbholder:539,dbid:[50,228,246,541],dbid_to_obj:567,dbkei:[82,375],dbmodel:540,dbobj:[0,15,539],dbobject:[15,540,541],dbprototyp:[241,477],dbprototypecach:477,dbref:[0,12,16,25,33,36,38,44,57,65,82,96,101,105,106,125,132,134,139,146,169,178,180,196,220,227,229,230,239,241,246,256,257,334,354,361,363,372,390,441,449,468,471,472,473,478,480,481,483,540,541,547,554,564,567],dbref_search:[229,471,480,540],dbref_to_obj:567,dbrefmax:241,dbrefmin:241,dbsafe_decod:563,dbsafe_encod:563,dbserial:[0,9,15,187,224,225,482,543],dbshell:[12,70,205,222],dbstore:393,dbunseri:[15,187,548],ddesc:167,deactiv:[95,131,215,216,220,246,345,439,551],dead:[149,151,161,394,416,439,440,473,529,532,558],deadli:146,deal:[18,20,25,30,34,46,48,55,56,57,73,78,79,82,83,96,131,149,163,177,178,186,188,195,197,227,264,276,312,337,338,339,340,341,369,370,375,449,472,473,530,541,544,561,618],dealt:[249,339,340],dealth:339,deasmhumhnaigh:[111,454],death:[30,132,147,151,177,198,404,411],death_map:416,death_msg:439,death_pac:439,death_tabl:[151,161],debat:186,debian:[13,205,207,208,213],debuff:[119,394],debug:[0,3,10,17,21,25,30,35,45,55,75,78,80,101,126,141,143,186,202,220,221,232,236,240,251,302,303,348,438,449,475,491,496,502,503,514,536,545,551,560,567,619],debugg:[0,3,7,18,222,224],dec:[3,77],decemb:217,decend:232,decent:[8,128,389],decic:[113,389],decid:[0,1,17,18,24,30,33,46,48,70,71,89,101,102,121,126,132,136,147,161,169,174,177,178,188,192,197,217,218,232,312,337,406,407,408,410,469,552],decis:[49,84,94,149,177,590],declar:[0,62,87,563],declared_field:[575,576,577,579,580,581,583,607],declared_filt:587,declin:[30,79,312,407],decod:[18,515,544,567,615],decode_gmcp:515,decode_msdp:515,decoded_text:567,decompos:194,decompress:[500,563],deconstruct:[146,252,277,308,323,342,367,391,393,400,422,517,591],decor:[0,13,24,25,47,63,89,101,102,103,125,155,161,170,172,187,196,220,230,273,309,406,472,473,480,481,488,500,501,541,547,551,552,565,567],decoupl:[0,189,477],decreas:[62,340,341,441,549],decrease_ind:549,dedent:[0,28,34,567],dedic:[42,101,135,143,144,155,177,208,217],deduc:549,deduce_ind:549,deduct:[177,337,338,339,411],deem:[13,74,127,168,258,611,613,618],deep:[34,137,149,200,619],deeper:[25,77,120,144,146,149,163,461],deepest:241,deepli:[15,101,126],deepsiz:567,def:[1,7,8,11,15,21,22,24,28,30,33,35,36,37,40,42,44,45,47,50,56,64,79,82,83,84,87,88,89,91,95,97,98,100,101,105,106,110,113,116,117,119,123,124,128,133,139,140,141,143,144,145,151,152,155,157,161,163,165,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,187,190,191,192,194,195,196,197,198,200,204,264,295,299,304,318,345,348,354,357,361,375,383,390,394,407,413,476,520,533,549,551,552,554,565,567],def_down_mod:339,defafultobject:139,defalt_cmdset:204,defauklt:0,default_access:[15,471,480,539,547],default_action_class:406,default_authentication_class:220,default_auto_field:220,default_categori:464,default_channel:[0,135,220],default_charact:[97,325],default_client_width:33,default_cmd:[1,9,20,79,83,84,85,91,95,97,98,100,101,104,110,113,116,117,125,129,133,141,168,169,170,171,172,173,174,175,178,179,224,264,279,291,295,315,328,345,348,354,357,383,390,407],default_cmdset:[1,26,46,79,83,84,85,91,94,95,96,97,98,100,101,105,109,110,113,116,117,120,138,139,140,141,168,169,173,174,175,191,220,235,264,295,315,322,331,337,338,339,340,341,345,348,354,357,383,390,449,461],default_command:[1,138],default_confirm:[241,334],default_cr:[270,272],default_create_permiss:[51,220],default_destroy_lock:220,default_error_messag:563,default_filter_backend:220,default_help_categori:[34,220,248,463,615],default_hom:[44,220],default_in:53,default_kei:[119,394],default_kwarg:[33,554],default_list_permiss:[51,220],default_out:53,default_pagination_class:220,default_pass:[229,547],default_permission_class:220,default_screen_width:24,default_set:[11,138,165],default_single_tag:274,default_sit:598,default_tag:274,default_transaction_isol:205,default_unload:53,default_update_lock:220,default_view_lock:220,default_weight:[125,370],default_xyz_path_interrupt_msg:363,defaultaccount:[0,14,50,129,131,135,139,141,220,224,227,228,242,379,473,565,590,607,611],defaultchannel:[0,20,50,129,135,139,220,224,246,255,612],defaultcharact:[1,15,40,50,70,83,87,97,101,119,129,133,135,139,140,141,151,155,168,169,170,175,177,183,187,191,196,220,224,227,243,264,274,315,325,337,338,339,340,341,361,390,393,394,404,406,407,408,411,412,473,539,542,565,607,613],defaultd:0,defaultdict:482,defaultexit:[40,50,101,125,129,135,139,220,224,354,357,361,372,408,440,441,473,565],defaultguest:[129,224,227],defaultmod:560,defaultobject:[0,2,3,15,33,36,40,48,50,70,101,106,119,128,129,131,135,136,137,139,140,144,145,155,157,170,180,187,196,220,224,227,304,315,338,341,377,390,394,412,431,433,435,440,473,541,565,590,607,618],defaultpath:567,defaultplay:220,defaultroom:[40,50,101,125,129,135,139,167,181,182,185,190,220,224,305,345,361,372,390,415,441,473,565],defaultrout:[589,592],defaultscript:[0,45,50,129,135,139,167,178,180,198,220,224,228,276,286,306,312,334,337,361,371,389,399,406,408,457,477,483,484,524,555,565],defaultsess:[141,244],defaulttyp:536,defaultunloggedin:[141,245],defeat:[94,132,146,147,151,177,178,337,404,411,439],defeat_msg:439,defeat_msg_room:439,defeated_combat:406,defeated_enemi:404,defend:[30,146,157,161,178,337,338,339,341,406,416,440,473],defend_typ:157,defender_defens:161,defens:[0,121,149,155,157,161,178,337,338,339,341,376,409,410,416],defense_typ:[157,161,406,412,416,417],defense_type_nam:163,defense_valu:[337,338,339,341],defer:[0,21,24,56,172,194,230,232,251,257,345,357,465,472,473,481,485,488,498,500,501,532,536,539,541,542,559,560,575],deferredlist:536,defin:[0,1,5,7,8,9,10,11,14,15,16,17,21,25,26,28,34,35,40,42,44,49,50,51,53,55,56,57,61,63,64,68,71,73,74,75,77,78,82,83,85,86,87,89,96,101,102,103,105,106,111,113,119,120,124,129,130,131,133,134,135,136,138,139,140,141,143,144,147,149,152,155,157,161,167,168,169,173,174,175,177,179,180,182,186,188,191,193,194,196,197,199,219,220,224,226,230,232,234,235,236,238,241,247,248,249,251,252,253,255,256,257,262,264,267,276,279,285,286,289,291,302,308,315,321,334,339,340,345,348,369,375,379,383,389,390,394,399,407,416,435,440,441,449,454,457,461,462,463,464,465,467,468,469,470,471,472,473,477,478,480,481,484,486,487,488,491,498,501,522,523,530,531,532,535,538,539,540,541,542,544,545,546,549,551,554,555,559,562,564,567,571,577,579,580,590,593,600,607,615,616],define_charact:30,definin:143,definit:[0,7,14,17,24,25,34,39,40,42,44,49,56,57,61,71,82,88,101,103,125,130,138,140,181,197,220,234,236,241,249,256,283,295,318,334,389,440,467,469,472,477,478,483,545,547,551,554,563],deflist:536,degre:[34,132],deindent:567,del:[15,27,42,57,101,115,119,140,146,169,172,178,239,241,331,334,345,393,394,541],del_callback:[284,286],del_detail:345,del_pid:491,delaccount:0,delai:[0,24,27,63,82,88,96,103,115,117,126,171,198,220,251,276,286,318,357,375,433,440,449,485,486,503,509,532,546,567],delaliaschan:295,delay_cmd_loginstart:220,delayed_import:532,delchanalia:295,delcom:[110,133,169,295],deleg:[230,257,465,472,481,539,541,542,559],delet:[0,11,12,13,14,15,16,20,22,27,28,30,33,36,39,40,45,46,47,48,50,52,57,65,80,83,89,101,106,119,125,138,139,140,141,146,155,157,178,192,203,205,210,212,215,216,220,227,235,238,239,240,241,246,247,248,251,255,257,270,283,284,286,287,295,305,309,318,321,328,331,334,345,354,371,375,393,394,408,412,440,441,465,469,473,477,480,482,483,484,485,486,497,509,530,539,541,544,545,551,558,575,576,583,588,592,608,613,617,618],delete_attribut:539,delete_default:[22,235],delete_dupl:309,delete_prototyp:477,delete_script:480,deleteobject:77,deletet:345,deleteview:617,deliber:[7,74,567],delic:[85,152,315],delimit:[3,67,186,249,545],deliv:[217,328,390],delpart:334,delresult:334,deltatim:567,delux:217,demand:[45,49,95,147,149,169,171,172,173,177,217,220,227,255,345,377,394,473,533,546],demo:[55,83,94,126,130,132,142,146,148,158,164,166,438,551],democommandsetcomm:438,democommandsethelp:438,democommandsetroom:438,demon:44,demonstr:[83,96,103,140,188,192,194,196,264,339,445,449],demowiki:192,deni:[20,207,218,285,289],denomin:567,denot:[11,167,195,369,545],denounc:550,dep:560,depart:[101,182],depend:[0,3,8,9,10,17,18,20,21,22,24,30,33,35,38,45,46,49,50,53,56,57,58,62,63,64,67,68,71,82,83,89,94,95,101,102,103,106,111,113,115,119,124,125,127,130,131,135,138,139,140,141,146,147,149,152,168,169,177,178,182,183,191,192,194,195,197,202,205,210,211,212,217,218,219,220,226,232,234,236,238,251,264,284,345,361,369,370,372,383,389,394,406,412,433,441,463,469,473,477,486,491,511,514,520,522,532,541,542,549,551,552,554,567,571,619],depict:[305,348],deplet:[119,339,394],deploi:[4,6,102,128,214,217,218],deploy:[5,10,78,212,217],deprec:[0,21,30,216,224,225,478,487,544,560,567],deprecationwarn:490,depth:[5,19,34,58,125,146,196,248,408,461,466,478,567],dequ:[15,534],deriv:[11,50,72,149,167,205,208,212,213,299,544,568],desc1:30,desc2:30,desc3:30,desc:[0,17,20,27,35,36,37,40,44,45,52,83,89,95,101,105,106,109,110,124,125,126,133,134,135,136,139,152,163,168,169,178,179,184,195,196,197,198,220,235,238,241,246,248,252,256,258,264,295,304,315,321,322,331,334,339,340,345,354,361,373,392,406,412,413,417,433,461,473,480,481,489,545,547,549,550,551,607,613,618],desc_add_lamp_broken:433,desc_al:439,desc_closed_lid:433,desc_dead:439,desc_open_lid:433,descend:[136,607],describ:[6,13,15,16,17,20,22,24,30,33,36,42,43,44,50,52,53,55,62,67,70,71,73,75,83,94,101,102,106,119,125,127,128,130,131,133,138,139,144,152,157,169,173,175,178,179,187,189,194,197,200,204,205,211,213,217,220,222,234,241,245,247,257,276,295,303,315,321,322,340,345,369,370,390,394,404,406,433,457,473,478,484,488,509,511,514,524,551,566,567,580],descripion:439,descript:[11,17,18,20,30,35,36,44,48,52,55,60,74,75,79,83,85,101,102,103,105,106,108,109,113,119,120,124,125,126,128,130,132,134,135,136,137,139,147,152,163,168,169,179,181,182,184,188,194,195,196,209,212,217,220,227,238,241,246,247,255,256,264,295,299,303,312,315,331,345,346,354,361,369,372,390,393,394,408,411,412,413,415,431,433,438,439,440,441,457,461,473,480,481,545,547,551,561,562,575,580,589,593],description_str:106,descriptor:[271,272,274,361,404,406,408,411,412,539,542],descvalidateerror:331,deselect:84,deseri:[0,9,15,187,477,561,590],deserunt:31,design:[2,17,24,40,44,55,58,72,74,82,83,84,89,106,122,126,130,136,138,140,146,147,149,150,168,181,183,186,194,200,205,235,241,264,285,375,376,390,440,445,473,545,561,567],desir:[0,21,48,49,53,62,72,86,88,125,168,169,180,182,186,191,194,220,241,255,256,267,309,318,389,469,491,536,539,547,553,568],desired_effect:322,desired_perm:469,desktop:[18,58],despit:[15,16,46,131,168,192,215,441],desrib:220,dest:[299,473],destin:[0,1,24,35,40,44,52,83,101,103,105,106,117,125,135,136,140,145,155,180,182,186,241,315,337,354,357,363,364,369,370,372,404,408,440,441,445,471,472,473,478,547,593,613],destinations_set:472,destroi:[20,27,40,89,103,110,112,115,133,134,161,178,218,227,228,241,246,295,334,339,473],destroy:[111,116,126,354],destroy_channel:246,destroy_compon:304,destroy_lock:588,destruct:[22,234],detach:10,detail:[0,2,8,12,13,14,15,18,20,24,30,34,36,40,44,45,46,50,52,57,59,62,71,74,75,82,83,89,101,102,106,111,113,126,127,128,131,134,135,137,138,139,141,143,145,146,147,149,150,151,155,169,173,178,186,189,193,195,205,210,213,217,220,224,225,235,236,241,255,258,264,304,321,334,338,343,345,346,359,369,377,390,394,410,416,441,457,463,465,466,478,485,493,494,530,532,541,544,549,554,567,570,575,580,592,593,608,615,617,618],detail_color:241,detail_desc:346,detailkei:[345,441],detailview:[615,617],detect:[4,20,22,24,40,46,71,128,132,140,147,183,220,233,236,503,554,592],determ:540,determin:[0,8,14,16,18,20,21,22,24,28,30,31,34,36,39,44,45,53,68,82,89,101,105,113,125,134,140,141,161,177,178,181,182,191,193,205,215,220,222,227,234,235,236,238,246,248,249,255,312,337,338,339,340,341,357,370,389,390,406,408,413,440,461,463,465,469,473,515,539,540,541,544,549,552,554,560,565,567,571,575,577,580,587,588,596],determinist:370,deton:[82,375],detour:[68,144,179,532],detract:[151,157],dev:[0,34,84,127,130,131,143,150,163,168,187,203,204,205,208,213,215,217,220,619],devel:[0,138],develop:[0,1,4,5,7,8,9,10,11,13,15,18,20,21,24,33,34,42,44,51,53,55,58,59,60,67,70,71,72,75,80,82,98,101,106,121,126,127,128,130,131,134,135,137,138,139,141,143,144,147,149,150,153,154,156,158,159,160,162,165,167,169,176,186,188,189,193,194,200,202,204,205,209,213,215,216,217,220,221,236,239,240,246,247,248,251,255,283,284,289,302,416,445,451,463,465,473,478,537,541,542,545,551],deviat:150,devoid:544,dex:[15,30,139,143,152,157,161,163,169,406,409,550],dexbuff:[82,375],dext:143,dexter:[139,149,151,152,161,163,337,404,406,409,411,416],dhudozkok:111,diagnos:[9,173],diagon:[125,367],diagram:50,dialog:53,dialogu:[101,103],dice:[30,89,132,144,149,151,152,158,176,177,178,186,224,225,258,373,411,416,619],dice_rol:161,dicecmdset:383,dicenum:383,dicetyp:383,dict1:82,dict2:82,dict:[0,1,11,15,16,22,30,33,34,44,45,47,51,55,71,78,82,89,90,102,103,105,113,119,125,129,133,152,155,172,187,220,227,228,234,236,241,248,255,276,283,286,289,306,315,321,339,341,345,369,370,371,375,379,389,390,394,404,411,417,431,441,445,446,449,461,463,466,472,473,475,476,477,478,484,486,488,489,491,496,500,501,502,504,509,511,514,519,520,531,532,534,540,545,546,548,550,551,552,554,562,565,567,607,612,615,616,618],dict_of_kwarg_convert:33,dictat:[22,175,220],dictionari:[1,9,15,16,22,36,44,56,78,82,90,95,96,101,103,105,111,113,126,130,152,167,175,177,178,182,195,197,239,241,276,283,286,289,315,339,340,345,375,376,389,390,441,445,446,447,449,454,461,469,478,485,496,509,518,530,531,532,534,540,544,546,550,551,558,561,562,563,567,607,616,618],did:[13,14,67,83,106,131,133,134,139,140,141,143,144,152,161,168,172,179,186,191,220,227,312,473,485,542,563,567,572],did_declin:312,didn:[7,13,30,36,76,83,125,128,133,134,135,139,140,141,143,144,146,149,151,152,157,163,169,174,180,182,186,188,193,194,202,212,216,371,407],die:[10,146,149,151,161,177,185,186,383,389,411,416,532],dierol:[161,416],dies:[149,151,404,439],diesiz:[161,416],diff:[13,211,383,478],differ:[0,1,7,8,10,11,14,15,16,17,18,21,22,24,25,28,30,33,34,36,37,39,44,45,46,47,48,49,53,58,59,62,63,64,65,66,68,71,73,74,76,80,82,83,84,88,89,94,101,102,103,104,106,111,113,119,121,124,125,126,127,128,130,131,132,133,134,135,136,138,139,140,141,143,144,147,150,151,152,157,161,168,169,171,175,177,178,179,180,181,182,183,186,187,188,189,193,194,196,197,200,206,207,209,212,216,218,220,222,224,227,232,234,235,238,241,248,250,251,252,253,255,264,276,280,286,287,299,303,304,307,318,321,328,337,339,340,341,357,361,367,369,370,372,375,383,390,394,405,406,409,411,416,417,451,457,461,471,473,475,478,480,481,486,489,493,515,520,522,539,541,545,547,551,554,560,563,567,571,572,575,576,583,587,592,593,616,618,619],differenti:[113,120,121,126,138,139,149,167,168,169,220,315,390,461,473,554,567,571],differnt:304,difficuli:15,difficult:[8,149,181,192,194,218,340,341],difficulti:[89,161,194],dig:[8,22,24,27,40,44,64,76,80,103,116,125,133,134,135,138,146,168,169,180,191,241,302,354,523],digit:[33,57,114,217,457,535,544,554,560,567],digitalocean:[208,217],dijkstra:[125,369,370],diku:[101,126,130,131,176,619],dikumud:74,dime:72,dimens:[130,182],dimension:[125,169],dimenst:144,diminish:62,dimli:106,dinner:[102,149],dip:143,dir:[0,3,5,6,12,13,40,45,55,67,78,94,128,131,139,142,143,144,169,176,179,195,200,205,208,209,211,212,213,217,220,560,567,596,619],direcetli:554,direct:[12,22,30,35,44,53,56,57,60,71,83,100,101,103,105,125,126,127,130,134,163,165,169,174,178,180,182,183,189,197,200,207,212,217,241,285,304,348,361,363,367,369,370,371,372,408,409,446,469,471,484,491,553,554,560,564,565,567,619],direction_alias:[125,370],direction_nam:370,direction_spawn_default:370,directli:[0,7,9,12,13,14,15,16,17,21,24,28,30,34,36,38,40,44,45,50,52,53,54,55,62,64,71,77,79,84,87,89,101,102,106,113,119,124,125,126,127,128,131,133,134,135,136,137,138,139,143,144,145,147,151,152,155,163,167,169,173,174,175,178,179,183,191,196,202,205,207,212,217,219,222,229,236,252,256,264,289,299,302,307,309,312,322,340,341,370,371,372,375,383,390,393,394,407,433,441,461,464,469,471,472,473,477,480,481,497,502,511,514,519,522,524,530,539,541,545,547,551,552,554,565,567],director:[63,113,390,473],directori:[1,4,5,6,8,10,11,12,13,16,21,50,53,55,75,77,98,101,126,127,131,137,138,169,175,189,191,193,194,195,197,205,207,211,212,213,215,216,220,221,241,445,451,491,511,512,536,545,560,567],directorylist:536,dirlang:220,dirnam:[220,491],dis:[220,416],disabl:[0,1,8,10,11,28,36,53,62,66,78,96,103,119,120,140,149,192,206,215,220,221,236,252,299,390,393,394,433,449,461,469,477,514,534,552,554,558,568],disableloc:514,disableremot:514,disadvantag:[113,149,161,169,178,217,341,406,416],disadvantage_matrix:406,disallow:192,disambigu:[236,473,541],discard:544,disconcert:150,disconnect:[0,9,12,14,15,20,43,46,47,48,53,57,64,149,168,178,191,210,220,222,227,238,241,246,249,251,255,273,473,501,502,503,509,510,511,514,519,520,523,529,530,531,532],disconnect_al:509,disconnect_all_sess:532,disconnect_duplicate_sess:532,disconnect_session_from_account:227,discontinu:206,discord:[127,130,135,150,200],discordia:72,discourag:[131,149,211],discours:149,discov:[146,149,186,539,619],discoveri:446,discret:[38,138,593],discrimin:218,discssion:127,discuss:[1,2,20,24,50,55,125,127,130,140,145,178,197,200,205,213,220],discworld:71,disembark:[0,180],disengag:[178,227,337,338,339,340,341,406],disfigur:[161,416],disguis:[60,113,126],disk:[13,15,21,70,72,78,212,222,369,389,445,463,475,550],dislik:168,dismember:161,dispel:[82,188,375],dispens:411,displai:[0,1,7,8,19,22,24,25,28,30,34,36,40,45,51,53,54,55,61,62,68,71,75,83,84,95,99,101,102,103,106,125,126,128,139,140,147,155,163,169,173,178,184,186,191,193,194,195,196,197,219,220,227,236,238,241,246,248,251,253,264,279,280,284,286,291,299,303,307,309,312,315,328,345,361,367,369,370,372,379,386,390,394,410,412,415,416,433,438,440,441,449,451,461,463,473,477,478,489,491,508,526,529,534,541,542,549,550,551,552,553,560,561,562,563,565,567,568,577,579,581,582,583,590,607,612,616,617,618],display:486,display_all_channel:246,display_backpack:410,display_buff:549,display_choic:264,display_formdata:449,display_help:549,display_helptext:[475,551],display_len:567,display_loadout:410,display_map:367,display_met:[99,386],display_nam:554,display_nodetext:551,display_slot_usag:410,display_subbed_channel:246,display_symbol:[125,369,370,372],display_symbol_alias:370,display_titl:264,dispos:[106,112,334],disput:178,disregard:24,dissect:133,dist:[125,215,367,369],distanc:[11,21,50,102,113,121,125,126,131,135,136,139,181,182,340,341,367,369,389,408,473,567,585],distance_dec:341,distance_inc:341,distance_to_room:181,distant:[182,345,441],distinct:[46,76,130,131,136,341,587],distinguish:[83,236,341,461],distribut:[7,11,12,18,20,22,77,126,131,137,189,199,205,207,215,220,255,256,257,390,544,547,567,570],distribute_messag:255,distro:[202,205,208,220],disturb:[21,76],distutil:215,distutilserror:215,ditto:213,div:[19,33,44,53,58,82,128,165,375],dive:[83,142,144,145,163,619],diverg:68,divid:[0,16,33,80,82,84,131,196,197,276,416,441,567],dividend:276,divis:393,divisiblebi:197,divisor:276,django:[1,2,5,11,12,14,15,18,25,45,47,48,50,51,52,53,54,55,63,67,70,73,77,105,119,130,132,138,139,142,145,165,176,177,181,189,192,193,195,197,198,200,205,215,216,217,218,219,220,221,227,229,230,236,253,255,257,262,280,361,367,372,394,404,406,408,411,412,463,465,471,472,477,480,481,490,491,497,498,511,517,519,520,527,533,534,535,536,539,541,542,545,548,552,557,558,559,563,565,567,572,573,574,575,576,577,578,579,580,581,582,583,587,588,590,592,593,598,599,602,607,611,612,613,615,616,617,618],django_admin:608,django_extens:220,django_filt:[220,587,593],django_nyt:192,djangofilterbackend:[220,593],djangonytconfig:192,djangoproject:[205,220,607],djangotempl:220,djangowebroot:536,dkefault:106,dmg:[82,177,375,376,405],dnf:[207,208,215],do_attack:439,do_batch_delet:539,do_batch_finish:539,do_batch_update_attribut:539,do_craft:[89,321],do_create_attribut:539,do_delete_attribut:539,do_flush:[541,558],do_gmcp:515,do_hunt:439,do_mccp:504,do_msdp:515,do_mssp:505,do_mxp:506,do_naw:507,do_nested_lookup:241,do_not_exce:1,do_noth:438,do_patrol:439,do_pickl:548,do_power_attack:[88,318],do_sav:187,do_search:248,do_sit:140,do_stand:140,do_task:[251,485,567],do_task_act:251,do_unpickl:548,do_update_attribut:539,do_xterm256:544,doabl:17,doc:[0,1,3,6,11,19,20,24,25,30,34,40,44,50,52,55,58,70,74,77,78,92,102,103,105,107,125,127,129,131,136,137,140,141,144,150,155,193,196,198,205,216,220,222,224,241,251,269,299,363,411,457,473,502,567,607,619],docker:[0,210,217,220,221,619],dockerfil:212,dockerhub:212,docstr:[1,29,32,34,35,133,137,139,140,141,155,236,241,252,264,284,299,302,322,369,375,389,390,394,407,433,441,461,466,522,551,619],document:[0,1,2,3,8,9,10,11,13,19,25,27,31,34,45,50,51,52,54,55,58,62,63,67,70,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,130,131,132,135,137,138,139,143,144,146,161,163,165,168,169,170,176,180,189,191,192,193,194,196,200,205,206,210,217,218,219,220,235,249,264,299,318,395,401,406,457,466,539,542,550,558,587,612,615],dodg:[171,338],dodoo:77,doe:[0,1,2,11,14,15,20,22,24,30,33,34,36,38,40,42,44,45,48,50,53,54,55,60,61,62,64,71,73,74,76,77,82,86,87,89,91,92,94,105,106,109,120,124,125,126,127,128,131,132,133,134,137,138,139,140,141,143,144,146,147,151,152,157,161,163,167,168,169,170,172,177,178,179,180,181,182,186,188,189,190,191,193,194,196,197,199,205,206,208,209,213,215,219,220,222,227,228,238,249,251,253,267,273,280,299,302,309,315,318,321,331,334,337,340,341,345,348,361,369,370,375,394,406,412,440,441,461,473,477,478,482,484,485,490,491,495,496,497,500,503,511,512,518,539,541,542,546,550,551,554,560,563,565,567,599,607,615,618],doesn:[2,5,12,15,16,18,24,30,33,38,40,50,53,54,55,70,71,82,83,89,101,102,103,106,125,127,133,136,139,140,143,144,147,149,151,152,163,168,177,180,181,182,186,187,188,189,191,193,194,197,199,202,204,210,211,213,215,217,218,220,222,235,246,255,257,285,286,318,321,322,339,345,369,370,375,416,469,473,491,504,511,515,539,542,544,551,562,567,575],doesnotexist:[227,228,230,255,257,274,276,286,304,305,306,312,315,325,334,337,338,339,340,341,345,354,357,361,367,371,372,377,379,389,390,393,399,404,406,408,411,412,415,431,433,435,439,440,441,457,465,471,472,473,477,481,484,498,524,539,542,547,555,559],doff:338,dog:21,doing:[5,8,9,11,14,15,21,22,24,27,30,40,46,49,50,53,55,56,60,62,82,84,89,101,102,120,125,127,128,131,132,133,136,139,143,144,148,149,151,152,155,158,161,163,168,169,172,181,182,188,192,194,195,197,200,215,217,220,222,227,238,255,285,304,309,312,315,321,337,338,339,340,341,361,379,390,404,406,412,431,439,440,461,468,473,486,522,551,558,563,572,598],doll:[89,321],dolor:31,dolphin:133,dom:53,domain:[55,130,207,208,217,218,220,229,547],domexcept:217,domin:149,dominion:189,dominyka:[111,454],dompc:189,don:[0,1,2,7,8,9,10,11,12,13,15,20,21,22,24,28,30,33,34,36,42,45,46,50,55,56,62,67,68,70,71,75,76,77,80,82,83,84,89,93,100,101,102,103,106,113,119,121,122,124,125,126,127,128,131,132,133,134,136,138,139,140,141,143,144,146,147,149,150,151,152,155,157,158,161,165,169,171,172,173,174,175,177,178,179,181,184,185,186,188,189,190,191,192,193,194,195,196,197,202,205,208,209,210,211,213,214,216,217,218,219,220,227,228,234,235,241,246,247,248,249,250,253,255,264,285,289,295,299,304,305,318,322,338,339,340,348,361,363,369,370,383,389,390,393,394,404,406,407,410,411,415,420,433,441,469,472,473,477,478,486,496,503,508,509,514,516,523,530,537,541,544,545,551,558,560,563,567,576,588,607,616,619],donald:8,donat:[217,619],done:[0,1,2,5,8,11,12,13,15,22,24,30,33,34,36,39,47,49,52,53,54,55,56,67,72,82,83,101,111,113,115,124,125,127,128,130,131,132,134,138,139,140,142,143,144,149,152,155,163,167,168,169,172,173,174,175,177,178,179,180,181,182,183,186,187,188,189,191,192,193,194,196,197,198,205,208,212,217,220,222,227,236,238,246,257,279,291,312,341,361,369,371,375,377,383,389,404,410,413,416,469,472,473,484,485,486,491,495,504,508,510,512,516,520,526,529,530,532,537,539,544,545,552,554,558,565,567,572,616],donoth:484,dont:513,doom:[125,478],door:[21,24,34,36,40,83,101,103,116,125,126,134,145,147,182,241,309,353,354,370],doorwai:[116,354],dot:[9,55,83,235,241,545,567],dotal:[544,566],dotpath:567,doubl:[9,33,83,128,143,155,168,194,234,253,410,567],doublet:[234,235],doubt:[83,125,299],down:[4,8,9,10,15,22,24,28,30,53,57,70,72,81,82,83,89,98,100,101,103,106,120,121,124,126,128,130,132,135,137,140,142,143,146,147,148,149,157,158,164,166,168,169,177,179,181,182,184,186,191,192,193,212,215,217,219,222,227,241,246,251,286,304,318,338,339,348,361,367,369,370,375,440,445,461,466,468,473,478,484,486,491,493,500,501,508,509,529,530,532,544,552,553,567],download:[2,6,12,13,131,137,189,200,202,205,211,212,213,217],downmaplink:[125,370],downtim:[406,555],downward:238,dozen:[1,72,130],drag:[0,53],dragon:[133,135,139,141,144,149,161,167,220],drain:[119,394],drama:34,dramat:[0,136,140,147,220,477,478],dramati:34,drape:[85,315],draw:[17,77,105,125,126,128,177,181,182,183,348,406,407,422,553],draw_exit:348,draw_room_on_map:[182,348],drawback:[15,17,30,70,119,135,149,157,169,171,177,205,220,394,545],drawn:[106,169,182,348],drawtext:177,dread:105,dream:[2,74,130,147,150],dress:[85,315],drf:[587,590],drift:149,drink:[149,304,412,539,541],drinkabl:304,drive:[13,33,59,77,131,144,147,149,150,179,180,189,194,212,213,215],driven:[1,118,126,149,150,191,417,435,475],driver:205,drizzl:[45,190],drop:[0,1,12,17,24,27,36,38,39,40,53,64,70,71,77,80,101,108,112,115,118,127,130,133,134,138,139,140,141,143,149,155,168,169,170,179,180,183,184,185,189,197,205,217,220,241,247,253,315,334,338,341,404,433,435,473,500,541,545,567],drop_whitespac:553,dropbox:77,dropdown:[0,10],droplet:208,dropper:[338,341,473],drum:217,dry:208,dtobj:567,duck:[21,143],duckclient:206,due:[8,22,24,47,50,57,64,76,83,131,143,149,169,172,175,186,188,213,215,217,219,220,235,251,412,472,473,477,493,529,532,544,560,576],duel:149,dufresn:77,duh:72,dull:[2,48,101,106,134],dum:466,dumb:[134,532,544],dummi:[0,8,13,24,36,89,143,149,155,157,161,163,189,209,298,321,390,412,469,491,496,509,522,523,530],dummycharact:393,dummycli:522,dummyfactori:522,dummyrunn:[0,3,220,224,225,487,491,509,521,523,525],dummyrunner_act:522,dummyrunner_actions_modul:522,dummyrunner_echo_respons:522,dummyrunner_set:[8,220,224,225,487,491,521],dummyrunner_settings_modul:[8,220],dummyrunnercmdset:522,dummysess:532,dump:[30,445,500],dungeon:[48,125,130,132,138,145,149,152,158,161,176,200,224,225,258,395,401,415,424],dungeon_orchestr:408,dungeonmap:125,dungon:408,dupic:22,duplic:[0,22,234,241,248,486,541,560],durat:[56,161,171,190,251,318,339,375,376,377,561,568],dure:[9,15,22,36,46,47,53,64,65,75,76,82,84,95,101,105,122,125,128,144,147,149,152,157,161,172,178,189,190,191,193,200,212,215,220,227,234,246,252,255,299,302,321,334,345,369,370,375,405,406,413,416,422,439,441,469,471,485,500,510,545,547,551,560,580,607],duti:131,dwarf:106,dwarv:151,dying:[149,161,337],dynam:[0,11,14,25,33,45,49,53,54,55,60,70,82,100,101,119,120,125,126,128,132,136,138,158,165,176,194,217,220,227,230,236,248,251,252,257,279,291,337,348,367,370,372,390,394,406,411,449,461,464,465,472,473,477,481,486,539,541,542,547,549,550,551,559,561,567,575,580,596,618,619],dyndns_system:217,dyson:[111,454],each:[4,5,7,8,9,11,14,15,16,20,21,22,24,25,30,33,34,36,40,44,46,48,49,50,52,53,55,56,59,62,64,68,70,72,76,79,82,83,85,86,87,89,94,95,96,100,101,103,105,106,111,112,113,119,121,124,125,126,128,130,131,132,133,135,136,137,139,141,142,143,144,147,152,155,157,161,163,167,168,169,172,174,175,177,178,180,181,182,184,185,188,190,191,193,194,197,212,219,220,227,233,234,235,239,241,246,248,250,255,267,270,272,304,309,312,315,318,321,334,337,339,340,341,345,348,361,367,369,370,371,372,377,389,390,394,400,406,408,412,413,416,417,433,449,461,463,465,466,469,472,473,476,477,478,483,486,493,496,509,511,514,518,523,530,531,532,539,541,542,544,545,547,549,550,551,552,553,554,558,565,567,590,593,596],eagl:140,eaoiui:[113,389],eaoui:389,earler:[134,417],earli:[0,4,93,140,150,161,337,338,339,340,341,493],earlier:[0,5,10,16,20,22,30,34,35,119,131,133,141,143,144,147,155,157,163,165,169,175,180,189,191,195,209,220,370,394,404,463,496],earn:[149,150],earnest:145,earth:170,eas:[22,24,70,139,181,188,212,217],easi:[0,2,10,12,16,19,24,30,34,40,45,50,55,56,60,71,72,73,76,82,84,85,94,102,103,106,119,125,126,128,130,133,140,141,143,144,147,149,150,151,152,161,167,172,175,177,178,181,183,187,188,191,194,195,197,200,202,205,208,212,217,235,239,307,315,321,394,411,449,461,551,558,619],easier:[0,1,15,30,34,44,45,51,52,55,56,57,70,83,94,101,113,120,125,127,130,132,133,136,139,140,141,143,144,146,147,149,150,151,152,155,167,168,169,174,175,177,181,186,188,193,197,213,216,217,219,241,322,337,338,339,341,363,372,389,404,408,416,440,461,533,539,542,567],easiest:[1,12,13,18,21,51,55,57,67,75,77,89,98,102,103,125,127,155,169,173,191,194,208,215,445,541],easili:[0,1,10,13,16,17,19,20,21,24,30,34,36,38,40,44,46,47,53,55,57,60,67,68,71,72,76,82,83,85,89,99,100,101,102,103,106,116,119,120,126,127,128,134,136,138,139,141,145,146,147,149,151,152,155,165,169,175,177,181,182,184,185,186,187,191,192,193,194,196,203,212,215,217,218,246,255,257,264,285,299,312,315,337,340,341,348,354,363,386,389,394,449,461,463,464,465,486,545,551,562],east:[1,77,105,106,125,135,174,182,241,348,369,370,441],east_exit:441,east_room:105,east_west:106,eastern:[106,175,369,371],eastward:441,eat:[101,161,302,304,412],eaten:376,echo1:172,echo2:172,echo3:172,echo:[0,2,5,21,24,28,30,33,44,56,57,60,76,81,91,108,128,133,134,141,143,149,171,172,174,178,182,183,190,191,201,203,204,212,217,219,220,222,227,228,239,241,246,251,315,363,383,390,410,417,431,439,440,441,473,489,496,511,514,549,551,565,567],echocmdset:133,echowoo:133,econom:[70,130,135,138,144,200],economi:[45,72,132,147,177,184,198,312],ecosystem:212,edg:[13,21,48,58,125,322,369,370,416,553,565,567],edgi:182,edibl:304,edit:[0,1,2,9,10,12,13,15,16,17,20,24,25,26,27,34,36,42,44,51,53,54,64,67,70,75,77,78,79,80,81,82,84,85,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,123,124,125,126,127,132,139,149,151,152,167,169,173,175,187,189,192,193,194,195,197,205,208,209,210,211,212,213,219,220,239,241,248,251,264,265,280,283,284,286,287,331,334,405,449,469,473,475,477,478,539,549,579,580,588,607,613,617,618,619],edit_callback:[284,286],edit_handl:241,editcmd:83,editi:[119,394],editor:[9,13,18,24,25,33,34,44,51,67,72,83,102,103,106,128,129,143,144,168,176,179,189,196,208,215,241,248,250,251,264,331,481,545,549],editor_command_group:549,editorcmdset:549,editsheet:169,edu:570,effect:[0,11,12,15,17,20,21,22,26,39,45,47,49,55,56,62,74,76,77,82,89,93,101,105,106,111,115,119,121,122,125,126,128,140,143,144,147,149,151,157,163,167,168,169,171,172,177,178,181,188,219,220,227,234,235,241,250,255,286,304,318,322,338,339,340,370,375,376,383,394,406,410,412,416,439,441,471,473,479,481,504,567],effic:172,effici:[2,8,15,39,45,48,49,50,70,79,117,125,131,136,140,144,145,155,157,167,170,181,183,190,200,312,357,369,370,372,390,469,473,486,539,540,542,549,552],effort:[13,138,167,192,195,613],egg:[161,211,321],egg_info:215,egi:493,egiven:471,eight:[111,304],eightbal:145,eirik:77,either:[0,8,9,12,13,16,19,21,22,24,30,33,36,40,42,44,45,46,48,50,53,55,57,60,61,68,80,83,101,102,103,104,106,111,113,116,125,126,127,128,130,133,135,136,138,139,140,143,144,146,149,151,152,157,161,167,168,169,171,172,177,178,180,181,182,184,186,188,189,191,192,197,205,215,217,218,220,222,227,228,234,235,236,241,246,256,264,283,289,321,328,337,341,354,369,370,371,372,389,390,394,408,411,413,417,433,454,461,469,473,476,478,481,483,484,486,489,500,512,516,523,540,541,542,551,553,554,560,562,564,567,570],elabor:[83,101,128,186,191],electr:217,eleg:127,element:[8,15,19,30,33,55,58,61,83,89,125,130,139,141,143,145,161,186,233,238,248,264,276,369,371,372,389,406,416,457,473,478,539,540,542,545,550,551,552,554,565,567],elev:[101,102],elif:[30,45,103,133,145,155,161,169,177,178,182,191],elig:[77,554],elimin:[212,544],elimit:567,ellipsi:0,ellow:544,els:[1,7,13,14,20,21,24,30,34,36,37,42,45,49,53,55,56,57,59,60,77,79,82,83,88,89,101,102,103,106,124,128,132,133,134,140,141,143,145,147,150,151,152,155,161,163,169,173,177,178,179,180,181,182,184,185,186,189,191,194,195,197,205,217,218,220,246,252,312,315,318,337,339,340,341,361,375,449,457,472,520,541,551,567],elsennsometh:252,elsewer:161,elsewher:[0,14,22,48,55,137,139,152,169,172,194,235,370,441,491,532,539],elv:151,elvish:[113,389],emac:17,email:[0,13,38,126,131,135,138,145,208,210,214,220,227,229,230,278,280,281,547,561,567,568,575,607,619],email_login:[92,224,225,258,259,619],emailaddress:567,emailfield:[575,607],emb:[44,60,95,113,125,128,155,169,345,478],embark:180,embed:[0,33,44,50,55,66,125,138,220,248,255,369,476,550,554,567],embrac:151,emerg:[42,67,218],emi:[113,389],emit:[1,53,72,133,227,235,239,255,325,473,530],emit_to_obj:[235,473],emo:179,emoji:206,emot:[0,20,24,27,33,34,60,79,126,130,139,149,150,178,227,247,302,312,388,389,390,406,539,554],emoteerror:390,emoteexcept:390,empathi:322,emphas:128,emphasi:[128,410],empir:220,emploi:568,empow:82,empti:[0,7,11,12,13,14,17,20,22,24,30,37,40,45,49,50,52,53,55,56,70,71,82,89,94,99,103,119,125,126,128,131,133,136,138,139,140,141,143,144,145,151,152,155,157,161,163,165,169,177,182,186,189,191,195,197,208,209,210,212,214,220,229,232,233,239,241,246,252,264,283,306,321,348,369,370,386,390,394,408,410,411,412,422,473,477,478,489,496,500,522,523,539,545,547,550,551,553,564,567,576,583],emptor:77,empty_color:386,empty_permit:[577,579,581,583,607],empty_symbol:369,empty_threadpool:536,emptyset:22,emul:[8,46,74,119,121,131,191,211,251,394],enabl:[0,10,53,77,78,82,87,88,96,188,195,204,205,206,207,212,218,220,227,262,318,390,393,449,514,568],enable_recog:390,enableloc:514,enableremot:514,enact:302,encamp:102,encapsul:561,encarnia:200,encas:549,enclos:[26,28,143,253,280,554],encod:[0,21,25,27,63,106,125,169,220,253,370,500,502,515,519,520,544,563,567,615,619],encode_gmcp:515,encode_msdp:515,encoded_text:567,encompass:[0,21,416],encount:[149,235,370,451,471,554,568],encourag:[0,82,83,165,181,186,206],encrypt:[68,77,135,207,208,218,246,511,512,516],end:[0,1,2,8,12,13,16,17,21,22,24,28,30,33,34,36,39,44,46,47,53,56,59,61,62,64,67,68,70,71,72,75,76,77,80,82,83,101,109,113,120,121,124,125,126,128,131,132,134,136,138,140,141,143,144,145,146,149,152,155,161,163,169,170,171,172,175,177,178,179,180,181,183,184,186,188,189,191,194,195,197,201,205,207,208,209,210,212,217,220,227,228,234,235,241,247,248,255,256,304,307,312,315,322,331,337,338,339,340,341,348,369,370,386,390,405,406,407,408,413,416,417,435,441,454,461,464,495,502,503,511,514,515,522,525,530,534,536,540,544,545,547,551,552,553,554,560,567,616],end_convers:30,end_direct:370,end_turn:178,end_xi:[125,369],endblock:[55,165,194,195,197],endclr:554,endcolor:33,endcoord:367,endfor:[194,195,197],endhour:1,endif:[194,195,197],endless:55,endlessli:218,endpoint:[51,194,196,218,592,593],endsep:567,endswith:544,enemi:[15,30,44,82,132,146,147,161,172,178,183,339,340,341,404,406,411,416,439,440,441],enemynam:30,enforc:[0,11,24,42,56,132,147,177,188,271,274,511,514,552,553,565,613],enforce_s:[550,553],enforce_singl:[87,271],engag:[130,341,439],engin:[0,5,11,24,30,34,40,76,94,126,131,132,141,146,167,177,193,200,205,219,220,232,235,248,250,251,300,321,411,416,421,427,441,446,464,491,502,508,511,514,519,529,531,545,547,571],english:[0,9,18,33,60,67,73,140,151,200,253,567,570,571],enhanc:[0,62,143,445,544,617],enigmat:134,enjoi:[10,147,149,150,186],enough:[7,11,20,36,37,39,48,49,72,89,124,125,127,128,130,131,132,133,136,137,139,140,141,142,144,147,168,169,170,171,179,181,186,188,191,193,197,208,213,217,220,235,241,321,340,361,370,389,410,416,433,457,551,552,553,565],enpoint:590,ensdep:567,ensur:[10,82,87,182,188,197,205,212,220,375,377,461,534,565,613],ensure_ascii:520,ensurepip:215,enter:[0,1,5,7,8,12,13,16,17,18,20,21,22,24,26,30,33,34,39,40,42,44,53,54,55,60,65,68,74,75,79,83,85,94,96,98,101,102,103,106,107,124,125,126,131,141,143,146,152,155,165,169,172,174,175,178,179,183,184,185,186,189,191,194,197,205,211,212,214,220,224,227,233,235,240,248,249,251,264,289,304,307,312,315,337,345,361,406,408,439,441,449,461,468,473,478,481,489,530,551,596,607],enter_guild:30,enter_nam:30,enter_wild:[124,361],enterpris:4,entertain:149,enthusiasm:150,enthusiast:[0,149],entir:[0,11,15,16,17,21,24,28,30,33,34,36,44,49,50,55,56,59,70,72,82,83,87,101,102,106,111,112,113,120,125,126,137,138,140,143,147,149,155,172,182,186,191,193,196,197,216,217,255,264,299,369,370,371,372,375,389,390,408,461,469,473,477,541,542,545,551,553,558,567,616],entireti:[30,170,177,303,449,551],entit:[256,547,619],entiti:[0,11,15,20,21,30,33,34,36,37,38,39,40,42,44,45,46,47,48,50,52,55,60,82,125,126,129,131,132,135,136,137,138,139,140,145,147,151,152,155,161,178,187,188,196,220,226,227,236,241,246,251,255,256,257,304,321,354,371,372,375,390,404,411,412,416,431,463,465,466,468,471,473,475,476,477,478,479,480,481,482,484,486,532,539,540,542,547,551,552,554,557,564,567,583,593],entitiess:131,entitii:47,entitl:217,entranc:[106,125,149,408],entri:[0,1,13,18,21,22,24,25,30,36,47,55,105,132,133,137,139,142,145,149,161,169,180,186,197,202,206,209,220,227,236,248,249,252,304,321,337,339,340,386,457,461,462,463,464,465,466,469,473,486,510,523,534,539,545,547,549,551,553,560,561,564,567,568,579,587,590,593,608,612,615],entriest:238,entrypoint:212,entrytext:[34,197,463,464,465,547],enul:207,enumber:157,enumer:[163,195,567],env:[491,501],environ:[0,1,3,4,5,11,12,16,54,77,128,131,143,147,150,161,189,192,201,210,212,213,214,215,217,218,220,251,252,265,274,296,308,313,316,319,323,335,342,346,360,367,377,381,391,400,413,420,421,422,423,426,427,438,452,491,501,517,526,545,551,565,591,608],environment:491,envvar:214,eof:511,epilog:299,epoch:[21,175,220,555],epollreactor:536,equal:[1,9,22,24,33,58,59,62,82,91,101,102,103,111,125,126,134,136,139,140,141,149,161,163,180,181,186,234,246,337,338,339,341,345,390,393,394,405,410,473,567],equip:[17,62,85,121,132,138,149,152,157,158,161,168,176,224,225,258,315,337,338,341,395,401,404,405,406,411,412,425],equipmentcombatrul:338,equipmenterror:[155,410],equipmenthandl:[132,152,158,410],equival:[0,12,13,15,16,33,39,52,55,56,60,62,64,71,125,137,141,143,145,215,218,219,222,226,229,241,318,363,369,370,375,464,471,480,509,515,539,567,588,616],equval:139,eras:[189,341],erik:77,err:[135,169,220,500,522,545,560],err_travers:[40,473],errback:[56,488,491,500,501,567],errmessag:234,errmsg:191,erron:[0,73,191,500,553],error:[0,2,7,9,11,12,13,15,17,18,20,21,22,24,25,30,33,35,36,39,40,42,44,46,50,55,56,67,68,70,73,75,82,83,89,101,105,106,120,125,128,131,132,134,135,139,140,141,142,144,145,146,150,151,155,161,163,167,168,169,176,186,187,189,191,194,196,198,204,205,206,207,208,211,215,217,219,220,224,225,227,229,232,234,235,241,246,253,255,286,299,321,323,348,368,370,371,372,390,394,404,409,410,411,440,455,457,461,469,471,473,476,477,478,480,484,485,488,490,491,493,495,496,500,514,522,541,544,545,547,550,551,554,560,563,567,568,573,588,590,606,610,615,619],error_check_python_modul:491,error_class:[577,579,581,583,607],error_cmd:174,error_consumable_excess_messag:321,error_consumable_missing_messag:321,error_consumable_order_messag:321,error_msg:534,error_tool_excess_messag:321,error_tool_missing_messag:321,error_tool_order_messag:321,errorlist:[577,579,581,583,607],errorlog:207,escal:[14,42,59,238,468,542],escap:[0,62,94,125,126,197,220,247,251,299,302,305,406,544,554,566,607],escape_char:554,escaperoom:[94,200,305],escript:[83,264],esit:406,especi:[0,8,18,36,42,46,48,83,106,111,113,138,139,143,145,147,149,172,205,207,213,215,386,389,545],esqu:139,ess:31,essai:200,essenti:[10,60,73,138,149,167,182,200,208,211,256,491,547],est:[31,252],establish:[24,46,121,126,147,149,152,157,161,163,177,208,220,227,337,473,488,500,502,509,511,514,519,522,529,531],estim:[173,220,369,478,558],esult:473,etc:[0,1,11,13,14,15,20,21,24,26,30,33,34,36,37,38,39,40,42,44,45,46,47,50,52,53,54,55,57,60,64,66,68,70,71,72,77,80,82,83,89,90,94,96,98,99,100,101,113,116,119,125,126,127,128,129,130,131,133,134,135,136,137,138,140,147,149,151,152,157,161,167,168,169,172,175,177,178,182,188,190,192,196,198,200,205,207,208,212,213,218,220,222,227,230,232,233,234,235,238,240,241,246,249,251,253,256,267,276,299,304,305,312,322,334,338,340,348,354,369,370,371,372,386,389,390,394,404,406,412,416,433,441,449,451,473,477,478,509,511,514,518,519,520,530,531,539,541,544,545,547,548,549,550,551,554,560,567,571,576,583,587,593,596,618],etern:30,ethic:78,euclidian:125,eunpyo:77,ev_channel:228,evadventur:[149,151,152,155,157,158,161,163,187,224,225,258,395,619],evadventureamor:157,evadventurearmor:[157,412],evadventurecharact:[151,152,155,404,411,429],evadventurecharactergenerationtest:421,evadventurecharactersheet:416,evadventurecmdset:407,evadventurecombathandl:[406,411],evadventurecommand:407,evadventureconsum:[157,412],evadventuredungeonbranchdelet:408,evadventuredungeonexit:408,evadventuredungeonorchestr:408,evadventuredungeonroom:408,evadventuredungeonstartroom:408,evadventuredungeonstartroomexit:408,evadventurehelmet:[155,157,412],evadventureimprov:416,evadventuremixin:[419,422,423,424,425,426],evadventuremob:[151,411],evadventurenpc:[151,411],evadventureobject:[155,157,410,412,417,429],evadventureobjectfil:412,evadventurepvproom:415,evadventurequest:413,evadventurequestgiv:411,evadventurequesthandl:413,evadventurequestobject:[157,412],evadventurequesttest:426,evadventurerollengin:[151,161,416],evadventurerollenginetest:427,evadventureroom:[155,408,415],evadventureruneston:[157,412],evadventureshield:[157,412],evadventureshopkeep:[411,417],evadventurestartroomresett:408,evadventuretalkativenpc:411,evadventuretreasur:[157,412],evadventureturnbasedcombatactiontest:422,evadventureturnbasedcombathandlertest:422,evadventureweapon:[155,157,412],eval:[33,44,312,567],evalstr:469,evalu:[24,30,33,79,128,136,150,233,312,375,376,469,551,554],evbot:[246,532],evcel:[0,550,553],evcolumn:[0,553],evdemo:94,eve:567,evedit:0,eveditor:[25,27,34,83,101,129,224,225,264,543,619],eveditorcmdset:549,even:[0,1,2,7,8,10,15,17,20,21,22,28,30,34,36,42,45,46,49,50,51,52,53,57,59,62,67,70,72,74,75,81,82,83,85,90,95,96,101,102,113,119,122,125,126,127,130,131,137,139,140,143,144,146,147,149,150,155,158,161,163,167,168,169,172,175,177,178,179,181,182,183,186,188,189,191,196,197,209,213,215,217,220,222,227,234,236,239,246,248,255,276,299,315,321,337,338,339,340,341,345,369,370,372,389,390,394,410,441,449,473,477,478,514,551,553,554,558,567,615],evenli:[21,125,276,370,567],evenn:212,evenna:189,evennia:[4,5,6,8,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,40,42,43,45,46,47,48,49,50,52,54,55,56,59,60,61,62,63,64,65,68,70,71,72,73,74,75,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,102,103,104,105,106,107,108,110,111,112,114,115,116,117,118,119,120,121,123,124,125,126,129,131,132,133,134,135,136,138,139,140,141,142,144,145,146,147,148,150,152,155,157,158,161,163,164,165,166,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,187,190,191,192,193,194,195,196,197,198,199,206,208,213,214,215,218,219,221],evennia_access:207,evennia_admin:[220,578],evennia_channel:[201,202,203,246],evennia_default_urlpattern:196,evennia_dir:[98,220,567],evennia_error:207,evennia_gener:193,evennia_launch:[0,10,224,225,487,489],evennia_logo:[55,193],evennia_runn:[0,10],evennia_server_port:43,evennia_superuser_email:214,evennia_superuser_password:214,evennia_superuser_usernam:214,evennia_vers:491,evennia_websocket_webcli:519,evennia_wsgi_apach:207,evenniaadminapp:[220,598],evenniaadminsit:598,evenniaapiroot:589,evenniacommandmixin:[11,565],evenniacommandtest:[11,565],evenniacommandtestmixin:565,evenniacreateview:[611,617,618],evenniadeleteview:[617,618],evenniadetailview:[617,618],evenniaform:[607,613],evenniagameindexcli:493,evenniagameindexservic:494,evenniaindexview:[55,616],evennialogfil:560,evenniapasswordvalid:[220,535],evenniapermiss:[196,220,588,593],evenniareverseproxyresourc:536,evenniaserv:43,evenniatest:[11,274,377,393,447,452,565],evenniatestcas:[11,565],evenniatestmixin:[11,565],evenniatestsuiterunn:220,evenniaupdateview:[617,618],evenniausernameavailabilityvalid:[220,227,535],evenniawebtest:608,event:[0,30,34,47,53,78,82,90,126,131,150,177,218,220,224,228,276,285,286,287,289,304,312,375,390,433,445,481,484,533,560],event_level:560,event_nam:[285,289],event_push:101,eventcharact:101,eventexit:101,eventfunc:[103,224,225,258,259,282,286],eventfuncs_loc:101,eventhandl:[101,286],eventi:[236,264,299],eventobject:101,eventroom:101,events_calendar:101,events_dis:101,events_valid:101,events_with_valid:101,events_without_valid:101,eventu:[15,24,42,50,57,59,67,68,71,91,146,147,149,150,161,169,172,178,191,193,194,217,220,222,227,232,233,241,250,256,304,305,383,389,433,441,469,473,478,488,496,522,530,531,542,546,547,551,553,605],evenv:[5,10,131,192,211,213,215,216],evenwidth:553,ever:[12,13,15,16,17,18,24,33,45,46,48,50,57,70,73,83,106,113,125,131,135,136,139,149,161,168,177,183,186,205,210,220,222,302,305,370,389,486,502,503,509,539,551],everi:[0,2,5,6,8,11,12,13,16,20,21,22,24,30,33,34,35,38,44,45,49,50,60,70,72,73,75,77,78,81,82,88,90,96,101,102,103,106,111,125,127,128,131,133,134,136,138,139,143,144,146,149,151,152,155,157,161,163,168,171,175,177,178,179,180,181,182,184,185,186,190,191,193,194,195,197,198,205,208,211,212,213,217,219,220,227,241,246,255,286,303,318,323,337,339,361,369,370,377,389,399,406,408,412,438,449,461,473,478,484,486,496,513,523,529,538,539,541,542,551,552,553,554,565,567,576,583],everror:286,everyon:[12,13,20,24,30,34,36,39,45,59,60,67,94,131,139,144,145,147,149,150,151,161,169,172,177,178,179,180,190,191,199,203,204,206,222,241,246,247,248,304,305,307,337,338,339,340,341,383,406,408,509],everyong:60,everyth:[0,2,5,7,9,11,12,13,15,22,25,30,33,39,42,44,49,51,52,53,55,59,68,73,75,94,106,119,125,126,128,130,131,132,133,135,138,139,140,141,143,144,145,146,147,149,150,151,152,158,164,169,170,174,177,178,179,182,186,189,192,193,196,197,200,202,208,211,212,217,218,219,220,222,231,236,246,247,249,251,252,253,280,321,322,394,441,468,472,481,495,522,530,539,541,545,551],everywher:[132,138,167,170,189,208,213],evesdrop:149,evform:[0,21,25,129,224,225,543,619],evgam:246,evgamedir:128,evict:534,evid:202,evil:[8,17,208,433,478],evilus:246,evmenu:[3,21,24,25,83,96,107,118,120,122,126,129,132,146,149,158,169,184,224,225,251,264,303,379,407,411,435,438,449,461,475,543,552,565,619],evmenucmdset:551,evmenuerror:551,evmenugotoabortmessag:551,evmenugotomessag:551,evmor:[0,25,27,34,129,220,224,225,477,543,619],evok:187,evscaperoom:[0,200,224,225,258,300,619],evscaperoom_start_st:94,evscaperoom_state_packag:94,evscaperoommenu:303,evscaperoomobject:[304,305],evtabl:[0,3,21,24,25,96,106,129,182,224,225,236,246,449,477,543,550,552,567,619],ewmaplink:[125,370],ewonewaymaplink:[125,370],exact:[0,8,13,24,30,42,74,119,136,139,145,196,220,227,229,233,241,246,250,256,321,341,390,394,464,471,473,477,478,540,541,563,564,567],exact_consum:321,exact_consumable_ord:[321,322],exact_tool:321,exact_tool_ord:321,exactli:[7,8,12,14,30,33,34,42,45,49,52,56,59,61,62,64,68,70,89,102,106,111,119,125,128,131,133,136,137,139,143,145,149,157,169,175,177,186,187,191,193,196,197,212,220,222,246,321,369,370,390,394,471,473,491,541,564],exam:[27,241],examin:[0,10,13,14,15,24,27,36,49,53,57,68,76,83,94,132,133,134,136,151,169,177,186,191,220,227,241,302,312,433,440,441,523,539,554,565,575,588],exampl:[0,1,3,4,5,6,8,9,10,11,13,14,15,16,17,18,19,20,21,22,24,25,27,34,35,37,38,39,40,44,46,48,49,50,51,52,56,59,60,61,62,63,64,67,68,70,71,74,75,76,77,78,79,82,85,90,91,93,94,96,97,101,103,106,111,113,117,119,120,121,122,123,126,127,128,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,149,150,151,152,155,157,161,163,167,168,169,170,171,172,173,174,175,176,179,180,182,183,184,185,186,188,190,191,192,193,194,196,203,204,205,207,208,212,214,218,219,220,222,224,225,227,230,233,234,235,236,239,240,241,246,247,248,249,250,251,252,255,257,258,264,276,295,299,302,304,309,312,315,318,321,322,323,325,328,334,337,338,339,340,341,343,345,348,354,357,359,362,363,367,369,370,371,372,373,375,377,379,383,386,388,390,393,394,395,396,398,399,404,406,407,408,411,412,413,416,433,435,439,441,445,449,454,457,461,463,465,466,469,472,473,478,481,484,486,491,496,511,514,515,520,523,532,536,539,541,542,543,544,546,550,551,552,553,554,555,559,560,561,564,565,567,568,570,571,576,583,592,593,607,616,619],example1_build_forest:105,example1_build_mountain:105,example1_build_templ:105,example1_legend:105,example1_map:105,example2_build_forest:105,example2_build_horizontal_exit:105,example2_build_verticle_exit:105,example2_legend:105,example2_map:105,example_batch_cmd:80,example_batch_cod:[16,80,224,225,258,395,396],example_menu:[84,224,225,258,373,378,379],example_recip:[224,225,258,310,320,321],example_recipi:321,example_styl:[111,454],excalibur:184,exce:[151,220,262,337,338,339,340,341,534,558],exceed:534,excel:[36,72,167,200,208],excempt:234,except:[0,9,15,17,21,22,24,28,30,33,34,36,40,44,45,51,52,55,56,59,62,68,82,83,89,101,102,106,124,125,128,131,134,136,138,141,143,144,145,149,155,169,178,179,180,181,183,186,188,189,191,192,194,195,196,198,211,215,217,220,227,228,230,232,235,236,249,250,255,256,257,270,272,274,276,285,286,289,299,304,305,306,312,315,321,325,331,334,337,338,339,340,341,345,354,357,361,367,368,369,370,371,372,377,379,389,390,393,394,399,404,406,408,410,411,412,415,416,431,433,435,439,440,441,457,465,468,469,471,472,473,477,478,480,481,484,485,491,496,498,500,512,514,516,520,524,536,539,542,544,547,550,551,553,554,555,559,560,562,567,575],excepteur:31,excerpt:28,excess:[36,44,83,140,249,321,472,545,567],exchang:[16,54,79,149,217,312,548],excit:[26,133,134,149,209],exclam:179,exclud:[0,60,101,131,136,145,191,198,220,255,315,334,340,375,406,441,471,472,473,549,551,585,587],exclude_cov:315,excluded_par:585,excluded_typeclass_path:241,excludeobj:471,exclus:[30,34,36,38,147,155,433,473,481,540,551,564,567],exclusiv:[480,547],excplicitli:36,exe:[10,12,215],exec:[30,33,478,567],exec_str:526,execcgi:207,execut:[0,1,5,10,12,16,17,22,24,28,30,33,39,40,44,45,53,54,55,56,57,59,61,66,68,80,82,83,94,101,102,103,105,106,123,131,138,140,143,146,149,151,163,172,175,186,189,197,211,215,220,227,228,230,231,232,236,239,240,249,251,252,257,264,286,298,299,302,322,340,375,390,406,407,431,433,441,461,465,468,469,472,473,478,479,481,485,488,496,498,501,502,508,511,514,519,522,523,526,529,530,539,541,542,545,551,552,554,559,565,567,596],execute_cmd:[14,24,40,183,185,191,227,228,236,473,496,530],execute_command:24,executor:5,exemplifi:[34,64,122,125,126,144,146,171],exercis:[7,106,143,161,169,178,179,190,191,262,323,393,517,527,559],exhaust:[20,83,458],exhaustedgener:457,exidbobj:473,exis:216,exist:[0,1,2,5,8,9,12,13,14,15,16,20,21,22,24,25,26,27,30,36,44,45,46,48,49,55,57,64,67,70,77,82,83,87,89,94,95,98,101,102,103,106,109,112,113,117,119,125,127,131,132,134,135,136,138,140,141,143,146,147,150,155,157,158,165,167,168,169,171,174,178,179,181,182,191,193,195,196,197,201,202,205,210,212,213,220,221,226,227,228,229,234,235,236,241,246,248,249,251,262,264,283,285,286,289,303,309,318,321,322,328,331,334,340,345,357,361,369,370,371,372,375,379,389,390,394,406,407,408,411,417,440,451,466,468,469,472,473,475,477,478,480,485,491,495,497,511,512,514,516,524,529,530,532,539,540,541,542,545,547,549,550,551,553,554,560,562,567,575,593,619],existen:530,exit:[0,3,10,11,12,22,25,28,30,36,44,50,51,52,70,79,83,84,101,105,106,116,122,124,125,126,129,132,133,134,138,139,142,143,144,145,146,152,169,170,176,179,180,181,182,184,186,191,196,205,212,215,220,224,232,234,235,241,251,258,264,265,287,299,305,312,318,341,343,348,354,356,358,361,363,364,369,370,371,372,408,424,433,439,440,441,461,468,471,472,473,478,495,511,523,539,547,549,551,552,565,587,590,593,608,619],exit_alias:[241,354],exit_back:169,exit_cmd:[0,30,552],exit_command:473,exit_dest_x_coordin:125,exit_dest_y_coordin:125,exit_dest_z_coordin:125,exit_direct:408,exit_nam:[182,241,348,354],exit_name_as_ordin:348,exit_obj:[0,473],exit_on_lastpag:552,exit_ther:169,exit_to_her:241,exit_to_ther:241,exit_typeclass:[361,565,608],exitbuildingmenu:83,exitcmdset:[22,473],exitcommand:473,exitnam:354,exitobject:174,exitviewset:[196,593],exixt:509,exot:24,exp:550,expand:[0,13,25,35,40,51,60,62,75,76,92,94,103,106,116,121,126,131,132,133,134,136,138,139,141,143,144,147,149,150,151,157,158,163,164,168,169,174,179,182,185,190,191,198,205,217,219,224,225,241,258,280,337,338,339,340,341,354,363,373,392,473,544,553,619],expand_tab:553,expandtab:[544,553],expans:[147,149,174],expect:[0,8,9,11,12,24,33,38,39,40,47,49,55,56,60,67,68,71,73,93,100,101,103,114,125,126,128,136,138,139,140,143,145,146,147,149,150,151,158,161,163,167,169,185,186,187,188,189,191,195,208,211,217,220,241,249,252,264,283,285,318,321,348,361,367,369,370,413,457,468,473,477,478,489,491,539,541,551,552,554,558,565,567,572,576,583,593,599,618],expected1:565,expected2:565,expected_1st_or_2nd_person:572,expected_3rd_person:572,expected_direct:367,expected_input:565,expected_path:367,expected_return:11,expectlst:367,expectstr:367,expedit:149,expemplifi:187,expens:[49,217,471,564],experi:[7,30,33,75,89,106,108,121,122,126,132,133,136,143,144,146,147,155,158,161,168,175,177,210,217,246,304,416,431],experienc:[3,15,30,131,142,143,200],experienced_betray:30,experienced_viol:30,experiment:[35,55,211,220,251,577,580],expert:[119,394],expir:[77,220,318,375],explain:[13,24,27,30,51,55,70,74,83,101,125,130,131,134,138,169,176,180,181,183,188,193,195,196,204],explan:[1,15,22,24,52,62,101,131,137,151,181,197,212,220,305,535],explanatori:52,explicit:[22,64,71,74,83,103,128,133,186,193,197,204,205,219,457,477,478,491,513,539,551,571],explicitli:[0,9,15,22,33,34,36,37,39,42,44,45,48,49,50,68,70,119,125,139,141,144,149,169,179,189,192,208,235,236,241,248,256,370,394,411,457,463,473,478,480,486,539,541,544,547,563,565,590],exploit:[0,149,220,376,542,544,554,567],explor:[3,7,14,50,55,56,68,103,106,122,125,132,134,139,142,143,145,146,149,178,197,213,219,251],explos:82,exponenti:408,expos:[88,195,218,318,433,615],express:[24,30,33,36,44,54,75,76,78,90,114,128,136,139,145,165,167,195,220,241,276,341,457,539,567,596],ext:30,extend:[0,20,21,33,45,50,52,55,70,72,78,82,86,105,106,111,126,128,130,132,133,137,138,141,142,143,148,149,155,158,164,165,166,167,176,177,181,183,185,194,195,197,220,230,236,248,252,255,267,286,289,318,321,322,344,345,361,369,375,377,454,472,473,541,561,580,607,616,617,619],extended_room:[0,95,224,225,258,343,619],extendedloopingcal:486,extendedroom:[95,149,345,346],extendedroomcmdset:[0,95,345],extendng:322,extens:[0,9,11,30,34,71,106,125,128,130,131,134,138,139,147,163,165,167,189,205,216,219,220,230,337,348,364,446,464,506,514,547,557,566],extent:[83,101,167,177],extern:[0,4,10,18,38,44,61,64,72,101,106,125,126,138,140,144,147,149,150,168,201,202,203,205,207,208,209,217,220,221,224,235,246,254,256,257,406,445,477,489,491,493,547,565,619],external_discord_hello:496,external_receiv:257,extes:220,extra1:33,extra2:33,extra:[0,1,2,15,17,20,22,24,30,33,34,36,40,47,50,53,55,58,66,77,79,94,98,111,119,125,126,127,128,132,133,142,143,144,149,151,152,158,161,168,169,170,179,184,187,188,191,193,195,205,207,210,213,216,217,220,227,230,236,248,252,255,312,321,325,331,345,375,390,393,394,406,411,412,433,441,473,476,477,486,488,540,544,545,549,551,552,553,554,560,561,562,566,567,575,576,583,619],extra_context:196,extra_environ:545,extra_launcher_command:[0,125,220,364,365],extra_opt:551,extra_spac:567,extract:[0,9,15,33,47,110,126,167,186,236,295,296,304,321,369,390,446,469,505,519,567],extrainfoauthserv:511,extral:257,extran:449,extrem:[2,12,144,167,186,222,337,338,341,504,561],eye:[9,34,62,105,106,147,478,552],eyed:[55,140,193],eyes:[24,127,168],eyesight:[36,62,169],f6d4ca9b2b22:212,face:[97,101,125,133,146,149,152,208,217,220,253,325,535,551],facil:560,fact:[10,17,24,40,45,50,56,68,76,130,136,137,138,139,147,161,168,169,179,188,191,195,218,532,534,554],factor:[103,175,220,338,340,488,502,503],factori:[64,394,488,493,501,502,503,509,510,511,512,514,522],factory_path:228,fade:[72,113,389],fail:[0,15,16,17,20,21,22,30,33,34,40,44,47,56,57,73,89,115,122,125,132,140,141,146,147,161,163,178,180,186,189,192,206,218,220,221,222,227,235,246,250,255,298,321,323,354,383,390,393,394,406,408,416,433,440,458,468,469,473,477,488,489,491,495,502,503,513,534,539,541,552,554,560,561,563,567,570,576,613],failmsg:534,failtext_templ:177,failur:[17,56,89,149,157,161,163,177,213,227,321,406,441,493,500,502,503,522,534,544,567],failure_effect:322,failure_messag:321,failure_teleport_msg:441,failure_teleport_to:441,faint:45,fair:[91,149,177,383],fairli:[85,96,197,211,315,338,449,461],fake:[11,86,125,155,220,267,370,522,532,539,544],fall:[0,2,9,22,45,73,97,101,106,122,125,128,131,139,155,170,174,175,177,224,227,250,321,325,390,433,441,567,607],fall_exit:441,fallback:[0,95,182,220,232,236,257,345,390,469,484,491,520,539,551,554,562,567],fallback_account_typeclass:220,fallback_channel_typeclass:220,fallback_character_typeclass:220,fallback_exit_typeclass:220,fallback_object_typeclass:220,fallback_room_typeclass:220,fallback_script_typeclass:220,fallen:151,fals:[0,1,11,14,15,20,21,22,24,28,30,33,34,35,36,37,40,42,45,49,50,53,70,78,82,83,84,86,96,113,124,125,133,134,139,140,145,151,152,155,157,161,169,170,172,174,175,178,179,180,182,183,187,191,192,194,198,218,220,227,229,230,232,233,234,235,236,241,246,248,255,257,264,265,267,271,276,283,286,299,302,303,304,307,312,315,318,321,328,337,340,341,348,354,361,369,370,372,375,376,383,389,390,404,406,410,411,415,416,438,449,454,461,463,464,465,468,469,471,472,473,475,477,478,480,481,482,484,485,486,488,491,493,497,500,501,508,509,510,511,514,520,522,528,529,530,532,534,536,539,540,541,542,544,545,547,549,551,552,553,554,555,558,562,563,564,565,566,567,568,570,572,575,576,577,579,580,581,583,587,588,607,615],falsestr:[96,449],falsi:[133,140,141,255,321,369],fame:[146,150],famili:[30,111,126,140,168,189,454],familiar:[3,22,24,50,101,106,110,126,128,135,136,139,141,143,144,150,151,152,165,169,176,181,186,194,217,295],famou:[31,549],fan:[149,161],fanci:[5,18,19,20,51,77,85,125,170,177,315,370],fantasi:[0,93,126,145,149,389,454],fantasy_nam:[111,454,455],faq:[3,128,513,619],far:[10,13,16,20,22,24,55,62,71,83,101,102,103,105,106,124,125,130,134,136,137,138,139,143,144,157,163,168,172,179,181,182,186,187,209,211,212,217,234,341,361,369,372,493,518,539,549,558],fare:[139,161],fart:140,fascilit:371,fashion:[44,106],fast:[2,13,15,18,21,40,49,72,125,126,131,143,149,150,167,175,184,205,220,239,466,477,523],faster:[3,8,15,125,145,149,171,175,205,220,257,312,539],fastest:[128,210,370],fatal:491,fate:149,fault:150,faulti:143,favor:[21,125,370],favorit:[127,179],fear:21,fearsom:135,feasibl:205,feat:149,featgmcp:515,featur:[0,1,2,5,7,11,12,13,18,19,21,22,24,28,44,47,50,53,55,61,62,74,82,83,87,94,101,102,103,106,113,120,122,125,126,127,128,130,131,133,134,146,147,149,167,168,175,182,186,191,192,199,202,218,220,224,225,227,235,236,258,286,299,345,373,375,377,378,390,416,461,486,508,529,533,541,549,567,614,619],feb:[3,67],februari:175,fed:[24,36,56,509,539,548,550],fedora:[13,207,208,215],fee:149,feed:[12,18,30,82,152,155,157,177,182,203,220,228,246,369,376,407,493,510,511,541,552],feedback:[7,13,40,127,147,150,183,220,256,549],feedpars:[203,220,510],feedread:228,feel:[13,19,50,56,67,72,83,101,102,103,113,120,127,128,130,131,136,139,140,142,146,147,149,150,163,166,168,177,181,186,191,194,197,204,217,304,338,389,433,441,461],feelabl:304,feend78:328,feint:[178,406],fel:67,felin:21,fellow:550,felt:[45,190],femal:[60,97,325,554,571],feminin:[111,454],fermuch:0,festiv:149,fetch:[12,13,15,51,54,55,136,155,187,194,212,213,217,371,410,539,541,552],few:[2,4,5,7,8,13,15,18,19,22,24,28,33,34,35,36,40,52,55,56,62,65,70,71,78,82,94,103,113,127,128,130,131,134,136,137,139,143,147,149,150,151,155,157,177,178,180,182,184,186,188,189,191,192,205,208,218,222,251,276,389,412,416,433,472,506,515,534,544,553,567,616],fewer:[72,143,369,412,532,540],fiction:[30,130,149,175,551],fictional_word:389,fictiv:389,fictou:309,fiddl:441,fiddli:149,field:[0,10,12,15,33,34,35,37,38,39,40,44,45,47,48,50,52,55,67,70,75,87,111,119,126,132,135,139,142,151,165,167,169,194,196,205,209,220,230,257,271,283,341,361,363,390,394,404,406,408,411,412,439,449,465,466,468,471,472,473,477,478,481,482,486,498,539,540,541,542,550,559,563,564,575,576,577,579,580,581,583,587,590,595,607,618],field_class:607,field_nam:[87,466,587],field_or_argnam:35,field_ord:607,fieldevmenu:449,fieldfil:[96,224,225,258,443,619],fieldnam:[37,96,169,449,482,541,558,607],fieldset:[575,577,579,580,581,583],fieldtyp:[96,449],fifo:567,fifth:182,fight:[22,45,121,126,132,141,146,147,172,178,183,337,338,339,340,341,415,440],fighter:[121,151,337,339,341],figur:[7,8,9,13,24,34,57,60,68,94,113,127,132,137,139,147,150,151,152,155,157,161,163,165,180,182,183,186,187,194,197,217,220,276,312,321,370,390,413,477,491,570],file:[0,1,2,4,5,6,7,8,10,11,12,14,20,21,22,25,27,30,42,43,51,52,53,54,55,59,64,65,67,70,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,131,132,133,134,137,138,141,143,144,149,163,165,167,168,169,174,175,179,180,189,191,192,193,194,195,196,197,198,200,201,202,203,205,207,208,209,210,211,212,215,216,217,218,221,222,224,225,227,240,248,255,262,264,267,270,271,272,273,276,280,299,305,315,321,361,389,394,417,445,451,463,478,490,491,511,512,515,516,523,524,525,529,536,537,543,550,551,560,563,564,567,571,576,577,579,581,583,593,596,600,607,615,619],file_end:[545,567],file_help_entry_modul:[34,220,248,463],file_help_top:615,file_to_revert:13,fileentri:248,filehelp:[34,224,225,462],filehelpentri:[248,463,615],filehelpstorag:0,filehelpstoragehandl:463,filenam:[13,21,80,113,137,255,389,545,550,560],filename1:491,filename2:491,filepath:550,filesystem:[212,215,218],filip:77,fill:[0,5,10,28,55,67,75,82,96,105,106,119,125,126,143,169,182,194,201,220,298,369,372,376,394,412,449,539,544,550,551,552,553,554,567,583],fill_char:553,fill_color:386,fillabl:[126,449,619],fillchar:[33,544,554,567],filo:567,filter:[0,10,22,38,50,51,70,78,82,101,111,125,136,181,194,196,197,198,220,224,225,234,239,264,345,372,375,390,406,472,473,567,573,586,593,613],filter_backend:593,filter_famili:[50,136],filter_nam:587,filter_xyz:[125,372],filter_xyz_exit:[125,372],filterset:587,filterset_class:593,filthi:[152,199],final_valu:56,find:[0,1,2,7,8,9,11,12,13,15,16,17,19,21,22,24,27,28,33,34,35,36,37,38,39,40,44,45,48,50,52,55,56,57,61,64,67,70,72,75,76,82,83,89,95,102,103,105,116,120,122,125,127,128,130,132,133,134,135,136,137,138,139,140,141,142,144,146,147,149,150,155,157,158,161,165,167,168,169,172,175,177,179,182,183,184,186,187,191,193,194,195,196,197,199,205,206,208,211,212,213,215,216,217,218,220,222,227,233,241,248,276,299,304,307,321,345,354,363,364,369,370,372,375,390,394,408,441,461,473,477,478,480,483,491,505,539,540,542,544,546,554,564,567,598,619],find_apropo:464,find_the_red_kei:187,find_topicmatch:464,find_topics_with_categori:464,find_topicsuggest:464,findtheredkei:187,fine:[15,18,24,40,45,46,48,49,57,70,79,102,111,125,126,128,131,134,138,139,140,141,143,144,146,151,172,174,191,228,229,370,441,539,547,567],finer:[57,369,370],finish:[12,17,24,47,54,56,89,122,146,147,152,155,157,169,176,187,191,192,193,194,212,224,227,236,238,249,251,253,302,307,312,315,321,322,334,345,348,370,413,440,441,473,491,503,514,529,536,546,551,567,596,619],finish_chargen:30,finit:186,fire:[0,10,14,21,24,30,45,47,49,82,87,88,90,101,102,106,134,139,140,144,147,161,169,171,172,179,183,185,190,198,227,228,232,286,318,339,340,375,377,473,478,491,500,502,519,552,558,567],fire_spell_last_us:171,firebal:[89,149,321,322],fireball_recip:89,fireballrecip:322,firebreath:[139,144,169],firebuff:82,firefox:[0,55,202],firemag:322,firesick:82,firestorm:171,firestorm_last_cast:171,firewal:[205,208,217,221],first:[0,2,7,8,9,10,12,13,14,15,16,17,18,21,22,24,26,28,30,33,34,36,40,42,44,45,46,47,50,52,53,55,56,57,58,59,60,64,67,68,70,72,73,75,82,86,94,101,105,111,119,121,124,126,127,128,132,133,134,135,136,137,138,140,141,142,144,145,146,147,149,150,151,152,155,157,161,163,165,166,167,169,170,172,175,177,178,179,180,181,182,183,186,188,189,190,191,192,193,194,195,196,197,198,201,203,204,205,206,211,212,213,214,215,216,217,218,219,220,221,222,227,228,230,233,234,241,248,249,252,253,255,257,264,267,276,279,280,291,299,304,305,306,307,312,315,318,337,338,339,340,341,345,348,354,361,364,367,369,370,375,376,377,389,390,393,394,399,404,406,407,408,412,413,416,417,422,433,435,439,440,441,454,457,465,468,472,473,477,478,480,481,484,491,495,496,498,509,511,514,519,520,522,523,529,532,539,541,542,544,545,547,549,550,551,553,554,555,558,559,565,567,588],first_lin:191,first_nam:[111,230,454,455,575],firsthand:36,firstli:[9,40,55,135,136,189,217],fish:[152,177,235,334],fist:[141,157,412,422,478],fit:[0,6,33,34,42,71,74,88,138,140,149,150,155,166,169,180,181,194,205,318,322,338,341,410,550,552,553,567],five:[24,106,136,150,166,171,217,235,461,567,568],fix:[0,2,3,7,9,15,16,17,21,24,30,44,50,58,68,77,94,113,125,127,131,140,143,144,147,149,163,168,180,191,199,211,215,217,222,372,389,411,491,550,552,553,563],fix_sentence_end:553,fixer:136,fixtur:[252,262,277,308,323,342,367,391,393,400,422,517,527,559,591],fizz:149,flabbi:152,flag:[0,16,17,22,24,30,35,48,49,52,64,68,70,72,111,134,139,143,147,169,172,173,187,189,191,220,227,232,234,236,241,302,304,305,307,321,323,406,433,439,468,469,473,491,498,502,511,514,519,530,549,551,567],flagnam:[302,304,305],flair:140,flakei:0,flame:[171,322,340],flash:[17,115,220,433],flat:[0,3,21,50,83,129,137,167,224,410,478,570],flatfil:167,flatpag:[220,598],flatpagefallbackmiddlewar:220,flatten:478,flatten_diff:478,flatten_prototyp:478,flattened_diff:478,flavor:[0,60,82,111,134,217,340,375,376,377],flavour:[39,188],flaw:[180,376],fled:[178,439],fledg:[18,66,72,122,126,149,164,187,191,194,217,240],flee:[161,178,341,406,422,439],fleeing_combat:406,fleeing_target:406,fleevalu:178,flesh:[134,169],flexibl:[0,16,30,44,45,71,72,83,96,106,120,125,139,144,149,168,172,177,178,179,181,195,217,230,241,264,312,321,340,449,461,515,539,551,567,616],fli:144,flick:568,flicker:433,flip:[27,30,253],flood:[21,28],floor:[101,103,302,304,390,393],flour:[89,126,321],flourish:539,flourrecip:321,flow:[5,19,25,49,53,64,68,70,94,125,132,140,147,256,547,551],flower:[39,40,57,128,132,134,135,136,145,147,241,554],flowerpot:[57,168],fluent:200,fluffi:[139,141,144],fluid:[19,58,111,454,455],flurri:390,flush:[12,24,106,205,220,251,408,539,541,558],flush_cach:558,flush_cached_inst:558,flush_from_cach:558,flush_instance_cach:558,flusher:558,flushmem:251,fluttersprit:0,fly:[0,15,21,22,24,30,33,34,44,45,57,82,89,131,136,138,139,140,145,157,165,170,179,227,247,249,257,377,406,417,465,473,477,486,498,509,512,516,539,545,555,567],fnmatch:539,focu:[93,94,126,139,142,147,178,192,196,302,304],focus:[10,94,149,167,168,172,191,200,302,304,341,590],focused_object:302,foe:[151,338],foilag:125,fold:[120,461],folder:[0,3,10,11,12,16,17,21,52,53,55,67,70,75,84,87,94,105,106,121,125,126,127,128,131,132,134,137,138,139,143,151,158,165,168,169,173,177,178,179,182,183,191,193,194,195,196,197,207,210,211,212,213,215,216,218,222,337,338,339,340,341,491,565,598],follow:[1,5,7,8,10,12,13,14,15,16,17,19,20,22,24,28,30,33,34,35,36,40,42,45,48,50,52,53,55,56,58,59,62,64,67,70,71,75,77,80,82,83,84,85,86,88,93,94,97,98,101,102,103,104,105,111,113,119,120,125,126,127,128,130,132,133,134,135,136,137,138,139,140,141,143,144,147,149,150,151,152,155,158,161,163,169,175,177,178,180,181,182,185,186,189,191,192,194,195,197,198,200,201,204,205,207,208,209,210,211,212,213,215,216,217,218,220,222,227,228,230,232,233,236,241,248,249,252,255,256,257,264,267,279,280,286,291,315,318,321,325,328,339,340,369,370,376,390,394,405,413,441,461,463,465,466,468,469,472,473,476,477,478,481,482,495,496,500,506,515,519,520,523,533,539,541,544,545,547,550,551,552,553,560,567,592],follwo:469,fond:175,font:[1,53,106,128,138,370],foo1:15,foo2:15,foo:[0,13,15,20,24,30,33,34,37,45,47,48,64,68,71,120,125,133,136,137,138,139,143,145,220,241,361,369,371,375,376,404,406,408,411,412,461,466,473,491,539,551,554,565],foo_bar:71,foobar:30,foobarfoo:57,food:[89,101,149,161,321,412],fooerror:551,fool:149,foolish:433,footer:[0,55,125,194,197,220,227,236,473,552],footer_fil:220,footer_star_color:220,footer_text_color:220,footnot:[18,128],footprint:251,footwear:168,for_cont:473,forbidden:13,forc:[0,11,22,24,45,50,56,67,82,103,112,113,125,133,144,149,150,169,177,178,180,186,191,207,212,213,218,222,228,235,239,241,246,312,322,325,334,345,346,369,389,390,394,408,469,473,477,483,502,503,509,514,532,534,552,553,558,560,567],force_init:473,force_repeat:[45,178],force_str:[0,563],forceutcdatetim:346,forcibl:483,fore:529,forebod:345,foreground:[0,7,62,86,188,212,220,221,267,491,544,554],foreign:[50,136,152],foreignkei:[230,472,481,541,559,576,583],forens:446,forest:[16,33,48,76,105,106,125,135,138,182,345],forest_meadow:48,forest_room:48,forestobj:76,forev:[82,149,161],forget:[1,3,16,21,24,56,70,133,139,143,144,165,175,189,191,202,209,212,220,390,545],forgo:440,forgot:[0,15],forgotten:[127,139,155,182,184],fork:[3,77,189,619],forloop:197,form:[0,9,11,13,15,16,20,21,22,24,25,30,33,34,35,36,40,42,44,48,49,50,52,54,60,66,68,71,73,74,75,87,89,94,97,109,111,113,119,125,126,127,128,129,130,131,132,133,135,138,140,141,144,145,147,150,152,161,169,178,183,191,196,220,224,225,227,228,229,233,235,236,239,241,246,249,252,255,256,257,302,309,312,321,325,372,375,389,390,394,407,446,449,463,465,468,469,471,473,477,478,482,484,486,489,509,511,515,519,530,532,539,540,541,544,545,547,548,549,550,551,553,554,555,560,563,564,567,568,570,571,573,575,576,577,579,580,581,583,585,590,606,611,613,618,619],form_char:550,form_class:[55,611,613],form_dict:550,form_template_to_dict:449,form_url:575,form_valid:[611,613,618],formal:[0,36,132,147,473,515],format:[0,7,13,17,19,20,21,22,24,25,33,34,53,59,62,67,68,71,72,73,74,82,83,86,101,102,106,119,123,124,125,127,128,130,132,136,139,141,152,163,169,177,183,191,194,196,197,203,205,218,234,236,238,241,248,252,255,256,264,267,276,289,299,303,309,321,339,361,369,375,390,394,416,431,438,445,449,461,463,465,473,475,477,478,482,491,496,506,511,531,533,539,541,544,545,547,549,551,552,553,555,560,562,567,568,590,593],format_:241,format_account_kei:241,format_account_permiss:241,format_account_typeclass:241,format_alias:241,format_appear:[415,473],format_attribut:241,format_available_protfunc:477,format_callback:283,format_channel_account_sub:241,format_channel_object_sub:241,format_channel_sub_tot:241,format_char:241,format_current_cmd:241,format_destin:241,format_diff:478,format_email:241,format_exit:241,format_extern:255,format_grid:[0,567],format_help:299,format_help_entri:248,format_help_index:248,format_hom:241,format_kei:241,format_loc:241,format_lock:241,format_log_ev:560,format_merged_cmdset:241,format_messag:255,format_nattribut:241,format_output:241,format_permiss:241,format_script:241,format_script_desc:241,format_script_is_persist:241,format_script_timer_data:241,format_send:255,format_sess:241,format_single_attribut:241,format_single_attribute_detail:241,format_single_cmdset:241,format_single_cmdset_opt:241,format_single_tag:241,format_stored_cmdset:241,format_styl:566,format_t:567,format_tag:241,format_text:264,format_th:241,format_typeclass:241,format_usag:299,formatt:[0,323,449,477,551,552],formcallback:[96,449],formchar:[169,550],formdata:[96,449],former:[19,131,155,188,205,321],formfield:563,formhelptext:449,formset:[576,583],formstr:169,formtempl:[96,449],formul:195,formula:82,fort:0,forth:[13,21,241,340],fortress:106,fortun:[12,24,101,139,146,181,192,197],forum:[0,12,67,126,127,130,149,150,168,200,203,217,220],forward:[7,16,17,28,30,132,134,149,155,175,180,188,197,217,220,227,230,257,328,408,445,465,472,481,536,539,541,542,550,552,559],forwardfor:208,forwardmanytoonedescriptor:[472,481,559],forwardonetoonedescriptor:[472,481,559],foster:20,foul:44,found:[0,1,7,9,11,12,14,15,16,17,18,20,21,22,24,30,34,35,36,40,41,42,44,48,50,51,52,53,55,56,60,64,67,68,75,77,79,83,94,105,122,125,126,128,130,136,137,138,139,140,141,143,145,146,152,155,157,158,161,163,168,169,174,177,178,181,182,186,189,191,192,195,199,200,205,217,219,220,221,224,227,229,231,232,233,234,236,241,246,249,250,253,255,264,272,283,285,286,312,369,370,371,372,376,390,394,441,463,465,469,471,473,476,477,478,480,483,486,490,491,497,506,509,520,530,532,539,540,541,542,544,545,546,547,551,553,554,558,562,564,567,596],foundat:[130,182,200,337],four:[17,21,39,64,70,82,95,106,128,135,145,164,177,181,235,257,345,469],fourth:181,fqdn:217,fractal:167,fragil:145,frai:406,frame:53,framework:[0,51,53,54,55,58,126,131,150,151,165,193,194,220,252,337,340,563,587,588,590,592,593,619],frankli:74,free:[6,10,30,34,48,67,77,83,103,109,113,120,126,127,130,131,136,147,149,161,168,178,188,191,194,200,217,302,312,338,390,461,477],freed:220,freedn:217,freedom:[2,17,174,213],freeform:[85,149,177,178,315],freeli:[62,125,200,212,218,545],freenod:[202,217,228,246,532],freetext:[38,256,564],freez:[7,24,101,172,285],french:67,frequenc:[8,111,389],frequent:[100,101,186,264,348],fresh:[12,22,94,125,139,152,161,169,176,210,216,491],freshli:106,fri:57,friend:[127,133,147,150,169,218,411],friendli:[83,119,127,128,143,151,163,194,199,230,394,406,409],friendlier:[255,473],frighten:339,from:[0,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,26,28,31,33,35,36,37,38,39,40,42,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,62,64,65,67,68,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,132,133,135,136,137,138,139,140,141,142,144,145,146,147,149,150,151,152,155,157,158,161,163,165,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,195,196,197,198,200,202,203,204,205,207,208,209,210,211,213,215,216,218,219,220,221,222,224,225,227,228,229,230,231,232,233,234,235,236,238,239,240,241,246,247,248,249,250,251,252,253,255,256,257,264,267,270,272,273,276,280,285,286,289,295,296,299,302,303,304,305,307,309,312,315,318,321,322,323,325,328,331,334,337,338,339,340,341,345,348,354,357,361,363,364,369,370,371,372,375,376,377,379,383,386,389,390,393,394,404,405,406,407,408,409,410,411,412,414,415,417,422,424,433,439,440,441,445,446,447,449,451,454,457,461,463,464,465,468,469,470,471,472,473,477,478,480,481,482,483,485,486,488,491,495,496,497,498,500,501,502,503,504,508,509,510,511,514,519,520,522,523,525,529,530,531,532,534,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,552,553,554,555,558,559,560,561,563,564,565,566,567,568,570,571,576,577,583,585,587,588,590,593,596,598,607,613,615,618,619],from_channel:228,from_db_valu:563,from_exit:408,from_nod:551,from_obj:[60,68,151,183,227,228,236,325,431,473],from_pickl:548,from_prototyp:0,from_tz:568,frombox:500,fromstr:500,fromtimestamp:[346,555],front:[13,16,36,44,53,133,136,143,177,218,220,221,223,255],frontend:[51,120,461,539],frontpag:[52,55,137,145,224,225,573,574,584],frozen:[24,172,286],fruit:[112,126,334],ftabl:567,ftp:[77,566],fuel:[119,179,340,394],fugiat:31,fulfil:[89,139,146,150,426,491],full:[0,1,2,6,9,11,12,13,16,17,18,19,21,24,27,30,33,36,37,40,42,44,45,46,49,50,58,60,66,71,72,75,79,80,89,94,95,99,101,106,111,113,119,120,121,122,123,125,126,127,128,130,131,133,134,136,137,143,144,149,152,155,157,161,163,164,168,169,170,176,177,178,179,180,187,189,191,192,193,194,195,196,200,205,206,210,211,212,217,220,222,228,233,235,236,240,241,246,248,250,251,252,255,264,279,291,295,299,303,307,309,312,321,331,340,345,361,369,371,372,386,389,390,394,404,406,408,411,412,416,417,438,454,461,469,471,478,482,503,509,522,532,533,539,541,545,549,551,553,554,565,567,619],full_desc:304,full_justifi:44,full_nam:[39,111,454,455],full_result:383,full_system:[94,220,224,225,258,619],fullbodi:85,fullchain:208,fuller:169,fullest:150,fullfil:471,fulli:[0,8,15,24,30,59,67,70,94,125,130,140,142,149,157,158,169,217,218,222,227,256,389,416,469,473,484,519,531,547,567],fun:[2,8,82,106,134,147,149,193,200],func1:[241,469,523],func2:[241,469,523],func:[0,1,7,24,28,30,33,36,56,60,68,83,88,101,123,128,133,138,140,141,145,167,169,170,171,173,174,175,177,178,179,180,184,186,191,204,220,232,236,238,239,240,241,246,247,248,249,250,251,252,253,264,273,276,280,284,295,298,299,302,312,315,318,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,363,375,379,383,390,407,433,435,439,440,441,449,451,461,468,469,473,502,522,523,527,536,549,551,552,554,555,565,567,616],func_test_cmd_task:252,funcdef:554,funciton:340,funcnam:[30,33,35,66,138,220,469,476,477,486,551,554,567],funcpars:[0,25,44,60,66,68,106,129,132,219,220,224,225,473,476,532,543,567,572],funcparser_cal:[476,554],funcparser_callable_add:554,funcparser_callable_an:554,funcparser_callable_center_justifi:554,funcparser_callable_choic:554,funcparser_callable_clr:554,funcparser_callable_conjug:554,funcparser_callable_crop:554,funcparser_callable_div:554,funcparser_callable_ev:554,funcparser_callable_int2str:554,funcparser_callable_justifi:554,funcparser_callable_left_justifi:554,funcparser_callable_mult:554,funcparser_callable_pad:554,funcparser_callable_plur:554,funcparser_callable_pronoun:554,funcparser_callable_pronoun_capit:554,funcparser_callable_randint:554,funcparser_callable_random:554,funcparser_callable_right_justifi:554,funcparser_callable_round:554,funcparser_callable_search:554,funcparser_callable_search_list:554,funcparser_callable_spac:554,funcparser_callable_sub:554,funcparser_callable_toint:554,funcparser_callable_y:554,funcparser_callable_you_capit:554,funcparser_escape_char:220,funcparser_max_nest:220,funcparser_outgoing_messages_modul:[220,532],funcparser_parse_outgoing_messages_en:[66,220],funcparser_prototype_parsing_modul:220,funcparser_start_char:220,function_nam:251,function_or_method:567,functioncal:500,functionnam:[33,500],functionpars:[33,477],functool:215,fundament:[24,40,138,139,143,144,149,168,220,473],fur:322,furnac:[321,322],furnitur:[16,48,50],furst:394,further:[6,7,10,13,20,21,22,33,34,44,46,50,51,63,68,70,77,89,103,106,125,126,128,136,139,145,152,161,168,172,174,182,186,189,196,212,217,219,220,222,235,241,337,339,341,370,372,389,478,491,515,567],furthermor:[128,145,188],fuss:212,futur:[13,15,28,39,56,124,128,132,134,140,141,142,143,145,147,148,150,158,164,166,169,174,175,189,191,205,238,286,322,361,375,406,440,496,540,561,568],futurist:175,fuzzi:[0,34,229,246,321,464,471,564,567],fuzzy_import_from_modul:567,gadea:77,gag:[206,220],gagprompt:220,gain:[8,113,132,136,140,147,172,220,236,251,257,339,390,404,406,417,469,473],gain_advantag:406,gain_disadvantag:406,galosch:389,gambl:[30,383],game:[1,3,4,5,6,7,8,9,10,14,16,17,18,19,22,24,25,26,27,28,30,31,33,36,38,39,40,42,43,44,46,47,48,49,50,51,52,53,54,56,59,60,62,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,89,90,91,93,95,96,97,99,102,103,105,111,112,113,114,117,120,121,122,123,125,126,127,128,129,131,133,134,135,137,139,140,141,142,143,144,145,146,148,151,152,161,163,164,165,166,167,170,171,172,173,174,176,178,179,180,182,183,184,186,190,192,194,195,196,197,199,201,202,203,204,205,206,207,208,211,213,215,218,220,221,222,224,225,226,227,228,229,230,232,234,235,236,238,239,240,241,245,246,247,248,251,252,253,254,255,256,257,258,264,276,277,279,280,284,285,286,287,291,299,300,302,303,304,307,310,312,315,320,322,328,337,338,339,340,341,343,345,357,364,366,369,370,371,372,375,383,386,389,390,401,412,416,417,433,438,441,449,451,454,457,461,463,464,465,470,471,472,473,480,481,483,484,487,491,493,494,495,496,502,503,508,510,511,514,515,522,523,524,529,530,532,540,541,542,545,546,547,549,550,555,558,560,565,567,575,576,583,588,593,600,616,619],game_dir:[5,98,220,560,567],game_epoch:[21,555],game_index_cli:[224,225,487],game_index_en:[0,209,220],game_index_list:[209,220],game_nam:[209,220],game_slogan:[55,189,220],game_statu:[209,220],game_system:[79,85,88,89,97,104,109,112,121,127,220,224,225,258,619],game_templ:[55,128,137,216,220,451],game_websit:[209,220],gamedir:[0,30,44,55,125,220,491,537,565],gamedirnam:169,gameim:[126,619],gameindexcli:494,gamemap:105,gameplai:[77,126,132,142,149,161,217,302],gamer:[201,202],gamesrc:[0,21],gametim:[21,33,90,95,126,129,220,224,225,275,276,286,345,543],gametime_to_realtim:276,gametimescript:276,gameworld:141,gammon:[200,506],gandalf:30,gap:376,garbag:[375,539],garbl:[113,126],garden:200,garment:[85,315],gate:[34,122,125,147,370],gatekeep:34,gatewai:[222,520],gather:[11,24,34,54,68,82,190,193,206,220,232,233,441,489,493,547,564],gaug:[224,258,373,392,393],gaugetrait:394,gaunt:152,gave:[0,131,135,139,155,179,186,188,570,572],gbg:544,gcc:[143,144,213,215],gcreat:241,gear:[10,152,157,193,196,217,228,235,253,280,409,412,417],gees:554,gemb:77,gemer:[114,457],gen:19,gender:[60,97,111,126,325,454,455,554,571],gendercharact:[97,325],gendersub:[224,225,258,310,619],gener:[1,5,8,10,11,15,20,22,24,25,27,30,34,36,39,42,44,45,46,48,52,53,55,56,57,62,67,68,70,71,77,78,79,80,81,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,107,108,109,110,112,113,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,137,138,141,145,146,147,151,155,158,163,168,169,172,175,176,177,178,182,188,189,192,195,196,205,208,215,217,219,220,224,225,227,228,229,231,236,237,238,241,248,249,250,252,253,255,262,264,280,286,298,299,302,304,305,312,315,321,322,325,328,331,337,338,339,340,341,345,348,354,357,363,370,377,379,383,389,390,404,405,406,407,408,411,415,416,417,421,424,433,435,438,439,441,445,446,449,451,454,455,456,457,458,461,464,465,469,471,473,475,477,478,480,502,509,511,514,515,519,522,530,531,532,536,539,542,543,544,546,547,549,552,553,554,560,562,563,567,591,592,593,599,607,611,612,613,615,616,617,619],general_context:[220,224,225,573,597],generalviewsetmixin:593,generate_prototype_kei:370,generate_sessid:509,generatedstatbuff:82,generic_mud_communication_protocol:515,genericbuildingcmd:[83,264],genericbuildingmenu:264,genesi:[111,217,454],geniu:[112,334],genr:[127,131,505],genuin:149,geoff:[123,126,299],geograph:76,geographi:181,geoip:445,geometr:106,geometri:106,get:[0,1,2,6,7,8,9,10,11,12,13,14,15,16,18,19,20,22,24,27,28,33,34,35,36,37,38,39,43,45,46,47,48,50,51,53,55,56,57,58,60,62,64,67,68,70,71,75,79,83,85,87,89,91,93,94,98,102,103,104,106,111,113,114,115,117,118,119,120,121,122,124,125,126,128,130,131,132,133,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,157,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,191,193,194,195,196,197,200,201,202,204,205,207,209,211,212,213,215,217,218,219,220,221,222,227,228,229,230,234,235,236,238,239,241,242,246,247,248,253,255,256,257,264,272,283,285,286,289,302,304,305,307,315,328,334,337,338,341,348,357,361,363,367,369,370,371,372,375,376,383,390,393,394,399,404,405,406,409,410,411,412,413,415,416,417,426,429,433,435,440,441,451,457,461,463,464,465,469,471,472,473,475,477,478,480,481,483,486,489,491,496,500,501,505,509,511,514,515,517,519,520,528,530,531,532,534,539,540,541,542,544,545,546,549,551,553,554,555,557,558,560,561,562,564,567,570,572,575,577,580,581,585,587,590,592,607,615,616,619],get_absolute_url:[195,255,465,541],get_account:[469,530],get_account_from_email:229,get_account_from_nam:229,get_account_from_uid:229,get_al:[82,375,539],get_alia:540,get_alias:590,get_all_attribut:539,get_all_cached_inst:558,get_all_categori:464,get_all_channel:256,get_all_charact:305,get_all_cmd_keys_and_alias:234,get_all_cmdset:567,get_all_lockfunc:0,get_all_mail:328,get_all_puppet:227,get_all_script:480,get_all_scripts_on_obj:480,get_all_sync_data:532,get_all_top:464,get_all_typeclass:[0,567],get_and_load_cmdset:585,get_and_load_typeclass:585,get_and_merge_cmdset:235,get_app_list:598,get_attack:[337,338,339,341],get_attr:241,get_attribut:[540,590],get_available_act:406,get_branch:451,get_browserstr:520,get_buff:549,get_by_alia:540,get_by_attribut:540,get_by_cachevalu:[82,375],get_by_nick:540,get_by_permiss:540,get_by_sourc:[82,375],get_by_stat:[82,375],get_by_tag:540,get_by_trigg:[82,375],get_by_typ:[82,375],get_cach:539,get_cache_kei:534,get_cached_inst:558,get_callback:286,get_carri:196,get_channel:256,get_channel_alias:246,get_channel_histori:246,get_charact:530,get_character_sheet:404,get_client_opt:496,get_client_s:530,get_client_sess:[519,520],get_client_sessid:520,get_cmd_signatur:304,get_combat_summari:406,get_command_info:[0,236,249],get_component_class:269,get_components_with_symbol:369,get_connected_account:229,get_cont:[471,590],get_content_nam:473,get_context_data:[55,612,615,616,618],get_current_slot:410,get_damag:[337,338,339],get_db_prep_lookup:563,get_db_prep_valu:563,get_dbref_rang:[229,471,480,540],get_def:485,get_default:563,get_defens:[337,338,339,341],get_detail:417,get_direct:[125,370],get_display_:473,get_display_charact:[390,473],get_display_desc:[315,361,412,473],get_display_exit:473,get_display_foot:[408,415,473],get_display_head:[412,415,473],get_display_nam:[7,33,60,83,101,102,113,125,169,227,361,372,390,473,530,541],get_display_symbol:[125,370],get_display_th:[315,390,473],get_enemy_target:406,get_err_msg:[36,134],get_ev:286,get_evennia_pid:567,get_evennia_vers:567,get_event_handl:289,get_exit:[125,371,590],get_exit_spawn_nam:[125,370],get_extra_info:[236,473,541],get_famili:[50,136],get_fieldset:580,get_form:[575,577,580,581],get_formatted_obj_data:241,get_formset:[576,583],get_friendly_target:406,get_game_dir_path:567,get_height:553,get_help:[24,34,157,197,236,252,284,299,304,406,412,413,551],get_help_categori:615,get_help_text:535,get_help_top:615,get_hint:307,get_id:[194,485,540],get_info_dict:[508,529],get_initi:618,get_input:[0,551,565],get_inputfunc:[71,496,515,532],get_internal_typ:563,get_kwarg:608,get_linked_neighbor:370,get_location_nam:[124,361],get_log_filenam:255,get_map:[125,371],get_message_by_id:256,get_messages_by_receiv:256,get_messages_by_send:256,get_min_height:553,get_min_width:553,get_msg_by_receiv:38,get_msg_by_send:38,get_new:510,get_new_coordin:361,get_next_by_date_join:230,get_next_by_db_date_cr:[230,257,465,472,481,539,541],get_next_wait:289,get_nick:[540,590],get_nicklist:[228,503],get_node_from_coord:369,get_numbered_nam:473,get_obj_coordin:361,get_obj_stat:[157,163,429],get_object:[196,307,593,612,615,618],get_object_with_account:[471,564],get_objs_at_coordin:361,get_objs_with_attr:471,get_objs_with_attr_match:471,get_objs_with_attr_valu:471,get_objs_with_db_properti:471,get_objs_with_db_property_match:471,get_objs_with_db_property_valu:471,get_objs_with_key_and_typeclass:471,get_objs_with_key_or_alia:471,get_oth:312,get_permiss:[540,590],get_pid:491,get_player_count:505,get_posed_sdesc:390,get_posit:304,get_previous_by_date_join:230,get_previous_by_db_date_cr:[230,257,465,472,481,539,541],get_puppet:[14,227,530],get_puppet_or_account:530,get_queryset:[612,613,615],get_rang:341,get_recently_connected_account:229,get_recently_created_account:229,get_redirect_url:613,get_respons:601,get_return_exit:473,get_room:[125,371],get_room_at:181,get_rooms_around:181,get_schema_view:196,get_sdesc:[0,390],get_serializer_class:593,get_sess:532,get_session_id:590,get_short_desc:304,get_shortest_path:[125,369],get_spawn_xyz:370,get_stat:139,get_statu:[451,501],get_subscript:256,get_success_url:618,get_sync_data:531,get_system_cmd:234,get_tag:[540,590],get_tag_queri:587,get_time_and_season:345,get_typeclass_tot:540,get_uptim:505,get_url:580,get_usable_objects_from_backpack:410,get_username_valid:[0,227],get_valu:[71,496,515],get_value_displai:590,get_vari:[283,286],get_view_detail:591,get_visible_cont:473,get_visual_rang:[125,369],get_wearable_objects_from_backpack:410,get_weight:370,get_width:553,get_wieldable_objects_from_backpack:410,get_wilderness_script:360,get_worn:196,get_worn_cloth:315,get_x:196,get_xyz:[125,372],get_xyz_exit:[125,372],get_xyzgrid:[125,371],getattr:[37,152,155,161,187],getbootstrap:58,getchild:536,getclientaddress:[64,511],getcwd:220,getdefaultencod:615,getel:53,getenv:[220,491,501],getgl:53,getinput:551,getkeypair:511,getloadavg:211,getlogobserv:560,getobject:77,getobjectacl:77,getpeer:511,getpid:567,getportallogobserv:560,getserverlogobserv:560,getsizof:558,getsslcontext:[512,516],getstartedwiths3:77,getston:24,getter:[40,82,230,257,272,315,338,341,377,390,472,473,498,539,572],gettext:67,gfg:544,ghost:34,ghostli:441,giant:[176,619],giantess:139,gid:[8,212,523],gidcount:522,gift:197,gig:149,girl:473,gist:[55,389,567],git:[1,3,6,12,67,70,72,126,128,189,200,205,211,212,216,217,221,450,451,452,619],git_integr:[98,224,225,258,443,619],gitcmdset:[98,451],gitcommand:451,github:[0,1,3,6,67,94,102,127,128,137,147,168,189,200,203,210,211,213,264,318,451,500,519,536,567,619],gitignor:13,gitpython:98,give:[0,1,2,6,8,9,11,12,14,15,16,18,20,21,24,27,30,31,36,40,42,44,45,46,47,48,49,50,52,55,56,57,59,60,71,73,76,79,82,83,84,101,102,103,105,106,111,113,114,120,121,122,124,125,126,128,130,131,132,133,134,136,137,138,139,141,142,143,144,145,146,147,150,152,158,161,163,165,168,169,171,173,174,175,176,177,178,179,181,183,184,185,186,189,191,193,194,195,197,200,203,205,211,212,213,215,217,218,220,222,227,232,234,235,238,241,246,247,249,255,256,264,302,304,305,307,315,322,337,338,339,340,341,345,361,369,370,375,379,389,390,404,405,406,407,409,433,435,441,457,461,471,473,480,481,495,517,523,530,536,539,542,544,551,553,564,565,567,570,572,590,619],give_advantag:406,given:[0,1,2,7,8,9,11,14,15,16,17,21,22,24,25,28,30,33,34,35,36,37,38,40,42,44,45,46,49,50,55,56,57,60,61,67,68,70,71,73,75,76,81,83,88,90,93,94,96,100,101,102,103,108,111,112,119,120,125,126,128,131,133,134,135,138,139,143,144,146,149,152,155,157,161,169,175,177,178,179,181,182,188,191,192,194,195,196,212,214,217,220,222,227,229,232,233,234,235,236,238,239,241,246,248,250,251,252,255,256,257,264,273,276,279,280,283,285,289,291,295,299,302,304,305,307,309,315,318,321,322,325,334,337,338,339,340,341,345,348,354,363,369,370,371,372,375,383,386,389,390,394,406,408,410,411,413,416,429,431,433,440,441,449,457,461,466,468,469,471,473,475,477,478,480,482,483,484,486,489,491,496,497,500,509,514,515,520,523,526,530,531,532,533,534,535,536,539,540,541,542,544,545,547,548,549,550,551,552,553,554,555,558,560,562,563,564,565,567,570,571,572,575,588,596,599,612,613,615],given_class:595,giver:[118,126,149,187,338,341,407,473],glad:186,glade:[125,138],glanc:[21,22,24,83,113,169,181,186,264,390],glance_exit:83,glass:[115,145,334,433],glitter:149,glob:[30,247,551],global:[0,8,13,16,24,26,30,33,35,40,44,45,46,49,50,53,72,76,77,83,89,95,101,125,131,132,135,145,147,151,167,190,198,208,219,220,241,255,286,306,321,345,354,363,371,390,413,457,471,473,477,478,479,480,481,485,488,491,496,498,501,522,523,545,546,547,551,554,555,564,565,567,600],global_script:[0,25,124,135,220,224,546],global_search:[16,21,83,169,186,227,390,473,540],globalscriptcontain:546,globalth:565,globe:[193,217],glori:146,glorifi:[119,394],gloriou:136,gloss:139,glove:85,glow:106,glu:43,glue:406,glyph:500,gmcp:[0,35,68,515],gmsheet:169,gmt:[77,138,560],gmud:206,gno:83,gnome:[67,206],gnu:17,go_back:[461,551],go_up_one_categori:461,goal:[45,122,128,140,147,149,150,186,218,389],goals_of_input_valid:607,goblin:[30,44,138,171,241,478],goblin_arch:478,goblin_archwizard:478,goblin_wizard:478,goblinwieldingclub:44,god:[34,42,134,210,463],godhood:[132,142],godlik:[113,390],goe:[2,7,24,25,45,64,70,83,85,103,106,124,125,131,144,149,152,155,163,172,177,180,182,183,189,191,197,211,217,220,234,235,304,307,341,361,369,370,410,473,511,514,529,530,566,567,618],goff:[101,114,126,457],going:[1,2,30,33,52,55,64,71,83,101,102,103,106,113,125,133,134,136,137,139,143,145,147,149,158,161,165,169,175,178,180,182,184,186,194,196,197,201,208,212,217,220,222,264,337,338,339,340,341,361,390,404,406,433,438,441,473,488,493,544,551,590,619],goings:493,gold:[30,44,144,173,184,545],gold_necklac:15,gold_val:184,gold_valu:184,golden:412,goldenlayout_config:53,goldenlayout_default_config:53,gone:[36,57,82,101,134,139,143,145,146,149,174,196,212,220,305,369,375],good:[1,2,8,9,10,11,13,14,15,17,20,21,22,24,30,33,36,38,39,44,45,50,52,55,57,62,64,79,83,87,88,89,101,102,103,106,122,126,127,128,130,132,133,134,136,137,140,143,147,149,150,155,158,163,167,168,177,179,180,181,182,186,188,189,191,194,195,196,197,200,202,209,210,217,218,220,222,227,234,235,236,252,285,312,318,367,390,514,523,551,554],goodby:[30,511],goodgui:469,googl:[0,77,128,211,217,220,246,553],googlegroup:43,googli:[55,193],goos:554,gorgeou:125,gossip:[201,220,246],got:[0,12,13,16,51,56,120,133,139,141,143,144,178,196,440,461],goto_cal:[30,551],goto_cleanup_cmdset:438,goto_command_demo_comm:438,goto_command_demo_help:438,goto_command_demo_room:438,goto_funct:152,goto_next_room:180,gotostr_or_func:551,gotten:[130,150,341,390,440,473,518],gpath:220,gpl2:570,graaah:185,graah:185,grab:[15,24,27,48,82,133,134,140,149,155,161,177,184,194,247,440,590,618],gracefulli:[2,140,238,251,390,473,491,567],gradual:[0,16,17,113,119,147,163,172,389,394],grai:[188,220,406],grain:[49,229,547],grammar:[60,113,304,389],grammat:[60,113,140,150,151,389,390],grand:[15,34,105],grant:[13,25,36,42,59,82,149,205,257,337,341,406,468,469,477,539,588,611,617],granular:341,grapevin:[0,200,220,221,224,225,228,246,487,499,619],grapevine2chan:[27,34,133,201,220,246],grapevine_:246,grapevine_channel:[201,220,228,246],grapevine_client_id:[201,220],grapevine_client_secret:[201,220],grapevine_en:[201,220,246],grapevinebot:228,grapevinecli:502,graph:[13,182,369],graphic:[0,7,12,36,37,51,52,54,68,75,106,132,142,150,169,224,280,386,515],grasp:[188,194],grave:122,graviti:170,grayscal:[86,220,267],great:[17,30,33,34,45,47,52,58,72,77,83,89,96,101,103,122,125,126,127,143,147,150,163,168,177,179,181,186,191,195,197,200,264,339,376,449,536],greater:[9,22,36,46,82,83,136,149,468,551,554],greatli:[101,199],greek:18,green:[13,22,36,44,62,111,125,143,185,188,220,241,251,304,340,440,454,544],greenforest:125,greenskin:478,greet:[26,46,101,102,185,189,219],greetjack:39,greg:[0,200],grei:[44,62,125,188,544],grenad:40,grep:[13,211],greyscal:[62,544],greyskinnedgoblin:44,griatch:[0,70,79,80,81,86,89,90,91,92,93,94,95,97,107,108,109,110,113,115,116,117,118,119,122,125,126,133,136,146,266,267,275,276,278,280,294,295,301,311,312,320,321,324,325,328,330,331,337,338,340,344,345,353,354,356,357,362,382,383,388,389,390,392,394,396,398,399,430,432,433,434,435,437,438,440,550,558,563,566,570,571],grid:[0,58,95,100,105,116,117,124,132,191,221,224,225,248,258,341,567,619],gridmap:125,gridpoint:[367,369],gridsiz:367,grief:57,griefer:195,grin:[24,539,554,572],grip:[128,322],gritti:24,ground:[101,106,122,130,132,134,136,141,149,155,179],group:[0,2,15,20,24,27,34,44,48,50,52,56,57,59,76,78,82,101,102,113,131,132,133,138,141,142,145,149,152,155,161,179,186,187,189,196,212,220,229,230,237,241,247,248,255,256,334,345,389,404,407,416,440,441,473,477,478,500,523,539,542,544,547,575,583],groupd:539,grow:[1,2,16,20,130,136,141,147,200,222,369,394,408,502,503,553,567],grown:[1,30,74,189],grudg:177,grungi:327,grungies1138:[104,118,126,328,434,435],grunt:[241,478],gsg:77,gstart:241,gtranslat:67,guarante:[15,42,45,70,91,127,208,217,220,286,383,405,477,509,530,541,554],guard:[30,125,149,322,370,376],guardian:122,guess:[18,28,73,83,102,163,186,197,218,264,478],guest1:[65,220],guest9:[65,220],guest:[0,42,63,129,220,227,619],guest_en:[42,65,220],guest_hom:[65,194,220],guest_list:[65,220],guest_start_loc:[65,220],guestaccount:48,gui:[0,53,54,68,149,168,220,328],guid:[5,12,92,107,193,194,196,587],guidelin:[128,151,200],guild:[0,20,70,94,126,149,183,200,246],guild_memb:30,gun:[60,135,179],gun_object:60,gunk:410,guru:130,gush:101,gzip:262,habit:167,habitu:49,hack:[130,177,178,500],hacker:[200,218],hackish:0,had:[2,12,13,17,18,22,45,59,75,89,127,130,132,134,136,139,141,142,143,144,147,149,151,157,161,163,179,189,191,207,212,217,236,240,252,302,315,370,440,478,481,491,541,545,552,570,572,607],hadn:[13,147,175],hair:[152,322],half:[72,405,465],hall:[34,182],hallwai:182,halt:[106,132],hammer:[89,321,322],hand:[18,30,39,40,46,60,64,72,79,101,105,126,127,132,136,141,144,148,149,155,158,161,163,167,168,169,177,187,195,236,241,247,249,251,312,322,406,407,410,417,425,590],hand_in_quest:187,hander:136,handi:[7,143,194,196,211,339],handl:[0,8,9,12,14,15,16,18,20,21,24,25,28,30,33,35,36,39,40,46,49,50,53,54,55,60,63,64,68,70,71,72,74,77,78,79,83,89,101,103,115,118,125,127,129,130,131,132,133,136,137,138,140,141,143,144,145,147,150,151,152,158,161,167,174,175,176,178,182,183,184,186,187,188,189,190,192,196,206,207,208,211,212,219,220,221,227,228,229,231,232,234,235,241,242,246,247,250,255,273,280,286,289,298,299,304,309,312,321,322,337,338,339,340,341,345,354,363,370,390,406,410,416,433,435,440,441,446,461,462,463,472,473,476,477,478,481,482,485,488,491,495,496,500,501,503,504,511,514,515,518,520,522,531,532,539,541,544,545,547,548,549,551,552,553,554,555,558,566,567,576,583,601],handle_answ:30,handle_appli:304,handle_consum:304,handle_egd_respons:493,handle_eof:511,handle_error:[246,286,485],handle_ff:511,handle_foo_messag:551,handle_int:511,handle_messag:551,handle_mix:304,handle_numb:551,handle_posit:304,handle_quit:511,handle_setup:[220,495],handler:[0,14,15,22,24,25,36,37,38,39,40,42,45,46,48,49,50,53,68,70,87,88,101,119,126,131,135,137,138,139,155,171,176,177,219,220,224,225,227,232,235,250,254,257,258,272,273,283,286,287,289,307,312,318,361,373,374,376,390,393,394,404,406,411,413,422,425,439,468,469,472,473,478,482,483,485,486,496,508,509,529,532,538,539,541,542,546,547,550,561,562,567,576,583,615,619],handlertyp:542,handshak:[31,68,206,501,507,509,514],handshake_don:514,hang:[48,128,144,147,150,165,406],happen:[0,2,7,8,9,12,20,21,22,24,30,33,36,42,45,46,47,49,54,55,57,59,68,70,71,72,88,90,91,101,103,106,125,126,130,131,133,134,135,139,140,141,143,149,150,152,155,161,163,168,169,171,174,175,177,178,181,186,187,188,191,194,202,209,217,220,227,234,235,246,255,276,304,306,307,318,337,341,357,361,369,375,376,377,404,406,410,415,416,439,441,473,485,493,500,503,523,528,530,531,532,541,550,551,552,558,560,567,588],happend:478,happi:[16,152,407,551],happier:186,happili:[20,133],haproxi:[217,218,221,619],hard:[8,9,13,16,18,21,22,24,33,34,44,45,48,49,56,59,64,67,71,77,96,120,128,131,136,139,144,145,147,149,150,161,169,180,189,194,212,213,215,217,250,411,449,461,481,491,539,541],hardcod:[76,106,139,168,169,196,212,406,539],hardcor:125,harden:215,harder:[8,57,125,136,139,140,147,149,167,440],hardwar:[217,504],hare:200,harm:[15,122,172,339],harsh:[111,149,454],harvest:613,has:[0,1,5,7,8,9,11,12,13,14,15,16,17,18,20,21,22,24,28,30,33,34,35,36,38,39,40,42,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,62,64,67,68,70,71,73,74,75,77,78,79,81,82,83,84,85,88,94,96,101,102,103,104,105,112,113,119,120,121,124,125,126,127,128,129,130,131,133,134,135,136,138,139,140,141,143,144,145,146,149,150,152,155,157,161,164,167,168,169,170,172,174,175,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,199,200,201,204,205,207,208,209,211,212,215,216,217,218,219,220,222,223,226,227,228,233,234,235,236,238,240,241,246,248,249,251,252,253,255,256,257,262,264,272,276,280,286,299,302,304,312,315,318,321,328,334,337,338,339,340,341,345,348,361,367,369,370,371,372,375,383,390,394,399,406,407,408,410,412,413,415,416,433,439,440,441,449,457,461,463,465,468,469,471,472,473,477,478,480,481,484,485,486,491,493,496,500,503,505,509,513,518,519,523,529,530,531,532,534,539,541,542,547,549,550,551,553,554,558,560,561,564,565,567,572,575,576,583,587,588,593,607,608,615,617,618],has_account:[40,439,468,472,473],has_add_permiss:575,has_attribut:539,has_cmdset:235,has_connect:[20,255],has_consum:304,has_delete_permiss:575,has_drawn:[182,348],has_nick:539,has_obj_typ:412,has_object_permiss:[196,588],has_par:567,has_perm:[249,469],has_permiss:[196,588],has_sharp_edg:48,has_sub:255,has_tag:542,has_thorn:[15,145],hasattr:24,hasbutton:304,hash:[17,44,77,125,217,478,486,519,523,532,540],hashabl:409,hasher:8,hasn:[83,182,440,457,539,583,614],hassl:175,hast:339,hat:[85,315],hau:[201,220,228,246,502],have:[0,1,2,4,5,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,24,26,28,30,33,34,35,36,37,38,39,40,42,43,44,45,46,48,49,50,52,53,54,55,56,57,58,59,60,62,64,65,67,68,70,71,72,73,74,75,76,77,78,79,82,83,84,85,87,89,92,94,95,96,97,98,101,102,103,106,109,111,113,115,119,120,122,123,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,145,146,147,148,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,184,185,186,187,188,189,190,192,193,194,195,196,197,199,201,202,203,204,205,208,209,210,211,212,213,214,215,216,217,218,219,220,222,227,228,232,234,235,236,238,241,243,246,249,250,251,252,253,255,256,257,264,276,280,285,286,289,295,299,304,305,312,315,318,321,322,325,331,337,338,339,340,345,361,369,370,375,376,389,390,394,404,406,407,408,410,411,412,413,416,417,426,433,441,445,446,449,457,461,463,464,465,466,468,471,472,473,476,477,478,479,480,481,484,485,486,496,501,504,505,509,511,514,515,529,530,531,532,537,538,539,540,541,542,544,545,546,547,548,550,551,552,553,554,560,563,564,565,567,568,570,572,576,583,588,590,593,598,600,607,615,616,618,619],haven:[7,11,12,44,77,83,105,106,125,133,136,140,151,152,155,175,184,194,195,196,198,208,534],havint:52,hay:77,head:[10,22,34,67,101,102,134,136,150,155,157,179,180,191,196,197,210,407,409,412,619],header:[0,16,17,21,33,34,38,40,52,67,74,128,133,143,189,213,218,220,227,236,248,256,257,328,390,412,415,473,545,547,552,553],header_color:241,header_fil:220,header_line_char:553,header_star_color:220,header_text_color:220,headi:553,heading1:[128,553],heading2:[128,553],heading3:128,headless:473,heal:[82,87,93,119,121,126,132,145,149,151,322,339,340,404,406,417,420,441],heal_from_rest:[161,416],healer:404,healing_rang:340,healingrecip:322,health:[0,37,44,71,82,87,119,126,138,149,151,157,161,173,174,177,178,217,322,375,385,386,387,393,394,406,411,478,515,619],health_bar:[99,224,225,258,373,619],healthi:394,heap:151,hear:[20,102,147,172,183,565],heard:[106,146],heart:[34,139,188],heartbeat:[49,502],heat:322,heavi:[0,15,21,24,36,77,79,101,131,134,149,161,170,177,178,191,196,205,312,338,390,504,567],heavier:[45,338],heavili:[0,21,64,70,77,122,125,127,146,168,189,211,219,264,337,338,339,340,341,541],heck:133,heed:[46,469],hei:[79,134,312,328,389],height:[0,31,35,53,100,220,224,348,369,496,511,530,550,553],hel:0,held:[22,94,178,369,468],hello:[20,30,33,35,39,46,68,71,72,74,102,103,113,128,132,135,142,144,149,172,183,186,191,202,246,247,255,390,496,544,565],hello_valu:72,hello_world:[72,143,144],helmet:[15,152,155,157,172,407,409,410,412],help:[0,7,8,11,13,15,16,17,18,20,21,23,24,25,26,27,28,30,33,36,42,44,45,46,47,48,51,53,55,57,59,60,67,70,72,73,79,83,89,94,96,101,102,103,104,106,113,115,122,123,125,128,129,130,131,132,133,135,137,139,141,142,143,144,145,146,147,149,150,152,155,157,158,161,163,168,169,174,176,178,181,182,186,187,188,189,191,192,194,200,202,204,205,208,210,216,217,220,222,224,225,231,232,234,236,237,238,246,249,251,252,253,269,270,271,272,273,276,280,283,284,286,299,302,304,307,312,318,328,337,338,339,340,341,365,368,389,394,405,406,410,412,413,417,426,433,438,441,445,449,471,475,477,485,489,491,493,494,502,509,511,512,514,516,519,520,522,523,539,540,542,544,547,548,549,551,552,554,562,563,564,565,571,573,574,575,577,578,581,587,590,593,598,601,606,607,608,610,619],help_:413,help_a:413,help_b:413,help_categori:[24,34,83,133,169,178,191,197,204,236,238,239,240,241,246,247,248,249,250,251,252,253,264,280,284,295,298,299,302,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,363,375,379,383,390,407,433,435,439,440,441,449,451,461,463,464,465,473,522,549,551,552,564,615],help_cateogori:549,help_clickable_top:220,help_detail:615,help_end:413,help_entri:[34,220,463,549,615],help_entry1:463,help_entry_dict:[34,463],help_file_modul:463,help_kei:241,help_list:615,help_messag:248,help_mor:[220,248],help_more_en:[34,220],help_search_with_index:466,help_sstem:197,help_start:413,help_summary_text:94,help_system:197,help_text:[248,286,406,412,607],help_top:615,helpact:299,helparg:252,helpdetailtest:608,helpdetailview:615,helpentri:[34,36,51,196,197,248,463,464,465,547,579,590,612,615],helpentry_db_tag:579,helpentry_set:542,helpentryadmin:579,helpentryform:579,helpentrymanag:[464,465],helper:[0,11,30,33,42,44,59,101,113,119,125,126,133,135,136,139,141,145,149,152,155,169,184,185,187,220,224,227,235,238,241,246,248,256,264,276,304,309,321,323,337,341,368,370,371,372,375,389,394,416,419,473,477,478,488,500,501,520,532,545,551,552,554,560,565,566,567,577,585,591],helpfil:248,helpfilterset:[587,593],helplistseri:[590,593],helplisttest:608,helplistview:615,helplockeddetailtest:608,helpm:[98,100,126,347,348,450],helpmixin:615,helppopup:220,helpseri:[590,593],helptaginlin:579,helptext:[0,30,475,551],helptext_formatt:[0,30,475,551],helpviewset:[196,593],henc:[9,10,83,102,103,143,299,441,545],henceforth:[13,16,36,46,65,76,106,174,190,191,217,532],henddher:[112,126,333,334],hendher:0,her:[60,97,146,315,325,554,571,572],herbal:550,herbalist:152,herd:205,here:[0,1,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,19,21,24,27,30,33,34,35,36,37,38,39,40,43,44,45,46,47,49,50,51,53,55,56,58,59,60,62,64,67,68,70,71,72,73,74,75,77,79,82,83,84,85,89,90,98,101,102,103,105,106,113,114,117,119,121,122,123,125,126,127,128,129,131,132,133,134,135,136,137,138,140,141,143,144,145,146,147,149,150,151,152,155,157,161,163,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,197,198,200,201,202,203,204,205,206,208,210,211,212,213,215,216,218,219,220,222,227,228,234,235,236,241,249,250,251,253,257,264,276,280,285,286,299,302,303,304,307,309,312,315,321,322,337,348,357,361,363,370,372,383,389,390,394,399,404,405,406,407,408,411,417,439,440,441,457,465,469,471,473,477,478,491,493,500,502,508,509,511,514,523,529,530,532,538,539,541,544,547,550,551,553,558,560,565,572,576,583,585,588,590,596,612,615,616,619],herein:77,hero:149,heroism:149,herself:[33,60,554,571,572],hesit:[83,181,406],hexsha:451,hfill_char:553,hi_text:411,hidden:[13,15,53,91,123,125,126,131,132,145,146,147,171,182,187,248,257,299,315,383],hide:[0,15,22,24,34,36,42,106,113,125,126,132,134,147,177,189,248,257,383,390,440],hide_from:[38,257],hide_from_accounts_set:230,hide_from_objects_set:472,hide_script_path:241,hieararci:468,hierarach:542,hierarch:[14,42,59,238,468,542],hierarchi:[25,27,59,65,83,132,147,196,197,220,247,315,468,567,588],high:[22,42,60,125,130,134,144,146,207,213,220,234,321,322,340,473,533,542],higher:[1,8,12,20,22,30,36,42,46,51,59,72,82,98,113,125,136,139,140,149,161,167,169,174,175,177,191,213,217,220,227,234,238,241,251,337,341,370,389,441,468,493,542,551,567],highest:[22,42,119,149,161,169,394,544,567],highest_depth:408,highest_protocol:563,highli:[2,19,30,36,47,49,70,99,125,126,127,130,131,143,149,163,167,189,210,213,386,478,545,558],highlight:[17,62,128,168,169,188],hijack:[195,208],hill:[39,101],hilt:[149,322],him:[30,60,97,102,113,139,200,325,390,554,571],himself:[60,554,571,572],hint:[1,12,25,44,55,94,128,132,133,145,150,152,191,193,200,220,221,276,307,537,619],his:[30,33,44,60,97,102,113,169,200,315,325,390,552,554,566,571],histogram:567,histor:[24,45,74,132,175,490,560],histori:[0,13,20,28,53,96,131,134,143,149,169,205,212,235,246,255,449,560],hit:[0,31,82,87,121,132,141,146,149,151,161,171,172,177,178,179,189,220,228,321,337,338,339,340,341,375,376,405,407,411,416,439,440,489,530,560,563],hit_dic:411,hit_msg:439,hitter:133,hnow:62,hoard:149,hobbi:[89,147,150,217],hobbit:175,hobbyist:217,hoc:[67,130],hold:[0,2,5,9,10,14,16,17,22,30,34,36,40,44,46,48,50,58,65,76,93,101,106,118,119,120,125,126,128,131,132,133,138,139,140,147,149,151,163,169,177,178,179,182,189,191,193,194,212,219,220,234,235,258,264,273,304,307,315,321,322,337,338,339,340,341,375,383,394,406,407,416,435,439,440,457,461,462,466,468,469,477,478,479,482,487,498,500,509,519,520,522,532,541,542,543,547,551,553,554,556,560,567,573],holder:[163,189,217,224,225,258,259,269,274,375,539],hole:[101,184],home:[2,13,27,40,44,54,55,58,65,125,126,131,133,138,139,194,207,213,217,218,220,235,241,247,439,471,472,473,478,547,567],home_loc:241,homepag:[8,21,200,213,215,217],homes_set:472,homogen:[0,21,150,477,478,481],homogenize_prototyp:477,honcho:150,honest:152,hong:77,honor:[0,149,170,390],honour:[77,126],hood:[12,20,24,30,33,39,44,45,50,70,87,107,110,119,123,126,131,134,136,139,147,168,271,274,299,321,390,393,394],hook:[0,1,14,20,24,25,35,36,40,45,47,49,82,84,89,101,113,125,139,155,173,177,178,180,182,183,185,190,191,198,220,222,227,232,234,236,238,241,246,247,249,251,252,253,255,257,262,277,286,302,304,308,315,321,323,334,337,338,339,340,341,342,345,348,354,357,361,363,367,370,375,376,390,391,393,400,404,406,407,411,412,422,431,438,439,440,441,446,451,457,473,481,484,486,495,502,514,517,519,522,527,529,530,531,533,541,549,552,554,558,559,561,567,577,580,581,591,607,611,612,613,615,618],hooligan:57,hope:[7,146,149,161,169,186],hopefulli:[0,2,53,94,106,143,146,150,182,194,207,216,217],horizon:175,horizont:[0,348,369,440,553,567],hors:21,host1plu:217,host:[2,13,21,40,57,75,77,87,126,131,147,166,203,205,208,212,218,220,221,270,272,273,274,389,536,567],host_os_i:567,hostil:[163,185,409],hostnam:220,hot:[0,82,149],hotbutton:53,hotel:217,hotspot:218,hould:149,hour:[21,90,101,149,175,190,276,408,555,567],hous:[44,125,132,142,150,196,217,241,554],housecat:21,how:[0,1,6,7,8,9,10,11,12,13,15,16,17,18,19,20,21,22,25,26,27,30,33,36,37,38,39,42,44,45,46,48,51,52,53,54,55,56,57,59,60,63,64,65,68,70,71,72,75,76,77,82,83,84,88,89,94,97,101,102,103,106,111,113,114,117,119,120,121,122,124,125,126,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,155,157,161,163,164,165,166,167,168,170,171,172,173,175,176,177,178,179,180,181,182,183,184,186,187,188,191,193,194,195,196,197,198,202,204,205,207,208,210,211,213,217,218,219,220,221,222,228,229,233,235,236,248,250,251,252,255,264,276,302,304,307,315,318,321,322,325,339,340,341,348,357,361,369,370,371,372,375,379,383,389,390,394,404,408,411,412,417,433,439,457,461,466,468,472,473,478,481,486,491,496,501,505,510,515,518,522,523,529,530,531,532,536,541,545,549,551,552,553,554,560,561,567,576,577,579,582,583,607,619],howev:[0,12,14,15,16,17,18,19,22,24,28,33,36,44,45,49,50,52,53,56,57,60,62,64,71,72,73,74,75,82,83,96,99,101,102,103,106,120,125,126,130,134,139,140,143,145,149,151,155,169,172,173,175,177,186,187,190,191,196,198,205,217,220,222,235,236,241,248,251,252,264,286,340,386,433,449,457,461,468,544,590],howto:[88,128,171,172,183],hp_max:[151,152,161,404,411],hp_multipli:411,hpad_char:553,href:[19,194,197],hrs:[220,276],htm:506,html2html:53,html40:220,html5:138,html:[0,54,62,75,77,106,128,130,131,132,138,166,193,195,196,197,206,218,220,236,251,255,299,457,463,465,513,515,519,520,536,541,563,566,567,587,596,611,612,613,615,616,618],htmlchar:566,htop:[8,222],http404:[195,197],http:[0,5,6,11,12,13,43,47,51,52,53,54,55,56,58,67,72,75,77,83,94,102,106,128,130,131,138,165,178,181,189,192,194,195,197,201,203,205,208,209,210,211,213,215,218,220,221,224,228,246,264,299,318,451,454,457,466,493,500,502,503,504,505,506,507,513,515,518,519,520,536,544,553,566,567,570,587,607],http_200_ok:196,http_log_fil:220,http_request:[75,218,220],httpchannel:536,httpchannelwithxforwardedfor:536,httpd:207,httprequest:227,httprespons:[575,577,580],httpresponseredirect:194,huawei:217,hub:[34,152,200,212,256,547],hue:62,huge:[58,70,124,126,144,147,149,165,175,179,181,361,552],huh:[24,83],hulk:152,human:[8,57,64,91,119,126,131,132,147,151,168,177,192,194,321,394,613],humanizeconfig:192,hundr:[73,194,202],hung:150,hungri:70,hunt:[119,126,177,393,394,439],hunting_pac:439,hunting_skil:177,hurdl:182,hurri:141,hurt:[122,146,149,170,173,394,404,406],hurt_level:404,hwejfpoiwjrpw09:189,hxyxyz:111,hybrid:[149,177],i18n:[0,67,137,220,473],iaa:[111,454],iac:71,iam:77,iattribut:539,iattributebackend:539,ice:125,ice_and_fir:145,icon:10,icontain:0,iconv:67,id_:[577,579,581,583,607],id_str:37,idcount:522,idea:[2,6,10,11,13,24,34,36,47,52,55,57,72,84,94,101,103,121,122,127,128,136,138,143,144,147,149,150,152,157,158,167,171,177,180,181,182,189,191,194,195,197,202,204,220,236,248,249,252,312,389,478,558,566,617],ideal:[24,67,74,102,217,230,469],idenfi:234,ident:[0,9,11,15,22,24,40,53,68,101,113,133,144,149,168,174,189,222,227,249,354,375,379,390,469,471,473,480,544,545,565],identif:[21,49,532],identifi:[0,7,8,9,22,24,28,30,35,37,44,45,49,50,68,71,82,89,92,103,113,126,136,139,140,141,147,169,173,178,181,182,195,196,197,205,207,233,236,241,246,249,252,255,256,264,307,321,345,370,375,389,390,407,413,441,461,469,473,477,480,483,486,488,491,496,498,501,515,519,528,530,532,539,540,544,547,550,551,554,567],identify_object:256,idl:[46,57,220,227,228,439,473,523,530,532],idle_command:[24,220],idle_tim:[227,473],idle_timeout:[220,228],idmap:558,idmapp:[50,70,220,224,225,251,257,465,498,524,539,540,541,543],idmapper_cache_maxs:220,idnum:256,ids:[57,145,169,180,345,522,532,550],idstr:[37,49,482,486,528,567],idtifi:256,idx:180,ietf:507,ifconfig:208,ifier:[119,394],ifram:53,ignor:[0,7,11,13,17,20,21,22,24,30,33,34,35,36,42,46,50,62,68,70,100,126,128,133,134,138,140,144,152,169,177,180,186,205,214,217,220,227,233,234,235,236,241,345,348,363,369,370,372,390,468,472,473,486,491,496,502,503,518,519,520,539,541,544,545,550,551,562,565,567,568],ignore_ansi:567,ignore_error:227,ignorecas:[236,241,247,248,251,253,302,315,321,390,544,549,551,566],ignoredext:536,illog:101,illumin:106,illus:56,illustr:101,imag:[0,10,19,53,54,55,75,77,126,138,146,192,193,194,197,213,217,220,221,596],imagefield:0,imagesconfig:192,imagin:[17,22,30,89,102,121,133,140,141,146,147,149,150,172,178,190,417,433,545],imaginari:[106,149,200],imc2:0,imeplement:361,img:19,immedi:[18,21,24,30,35,44,45,52,68,82,101,103,125,131,133,136,139,140,143,149,157,163,172,178,182,194,195,198,210,212,213,217,220,239,251,318,321,370,406,407,413,417,439,480,495,502,545,547,551,552],immers:[89,149],immobil:1,immort:[101,411,439],immut:[15,375,486],impact:[98,126,149,188,410],impass:[125,146],impati:213,imper:115,implement:[0,1,2,9,11,12,15,20,22,24,30,33,36,38,40,48,49,50,53,55,60,62,64,70,71,72,75,76,78,79,89,93,101,106,117,120,121,122,123,125,126,130,132,135,138,140,141,144,147,151,152,155,157,161,163,167,168,169,170,171,172,176,178,179,182,183,185,187,191,196,198,199,200,208,220,224,225,229,230,234,235,238,239,240,241,242,243,246,247,248,249,250,251,253,255,256,257,258,276,295,300,312,321,325,331,337,338,341,343,345,354,357,359,363,369,383,389,390,393,401,406,411,435,439,440,441,446,461,464,465,469,471,472,473,480,481,483,486,497,502,504,505,506,507,508,509,511,513,514,515,518,519,520,522,529,536,539,540,541,542,544,545,548,549,551,552,559,562,563,566,567,575,592,614,616,619],impli:[48,83],implic:78,implicit:[186,188],implicit_keep:478,impmement:469,import_cmdset:235,importantli:[20,30,134,139,194,469],importerror:[9,189,192,220,540,567],impos:[130,534],imposs:[0,18,30,59,73,101,106,125,128,180,182,194,217,370,477,553],impract:[24,44,125,478],imprecis:558,impress:[7,106,149],improv:[0,12,67,103,127,132,141,143,147,150,161,186,416],impur:322,in_game_error:[2,218,220],inabl:[215,218],inaccess:[36,103],inact:[94,304,408,439],inactiv:251,inadvert:341,inadyn:217,inarticul:72,inbuilt:[48,191],incant:211,incapacit:149,incarn:607,incid:[78,126,446],includ:[0,2,5,8,10,13,14,15,16,21,22,24,27,30,33,35,36,37,40,46,47,48,49,50,52,53,55,57,58,62,71,72,75,78,79,82,83,84,89,93,96,105,106,111,113,119,120,121,122,125,126,127,128,129,130,131,132,133,134,135,138,139,141,142,143,144,145,147,148,149,151,158,163,164,166,169,170,173,174,175,177,178,179,180,181,186,189,192,193,194,195,196,197,199,211,212,215,219,220,227,232,233,234,236,239,240,241,249,252,255,256,286,299,302,307,312,315,321,322,323,325,337,338,339,340,341,345,361,367,369,370,371,372,375,379,389,390,394,406,407,410,411,417,441,446,449,454,461,466,468,473,477,484,491,509,511,514,515,523,528,531,539,540,541,542,544,545,546,547,548,550,551,553,555,560,565,567,590,596,600,616,619],include_account:539,include_children:[540,564],include_par:[540,564],include_prefix:[233,236],include_unloggedin:[509,532],inclus:[34,540,554],incoher:188,incol:[169,550,553],incom:[24,54,64,71,205,217,219,220,228,233,250,302,338,370,446,491,500,504,507,510,514,515,519,520,522,530,531,532,536,551,552,554,575,577,580,581,588],incompat:0,incomplet:[117,236,357,553],inconsist:[9,56,457],incorpor:[0,238,379,553],incorrect:256,increas:[0,36,42,50,62,79,82,111,119,125,126,136,139,149,157,175,177,218,220,312,338,340,341,370,394,404,441,503,509,523,549,551],increase_ind:549,incred:[120,461,493],increment:[215,539],incur:21,indata:[64,539],inde:[91,130,186,189,217],indefinit:[157,339,440,480,547],indent:[0,16,17,21,28,33,53,74,103,128,133,143,144,168,189,369,520,545,549,551,554,567],independ:[0,38,45,54,94,101,103,126,131,167,188,210,312,318,445],indetermin:493,index:[34,54,55,70,72,75,106,120,127,128,132,139,147,167,180,182,193,200,217,220,221,224,225,233,246,247,248,304,312,369,370,440,461,463,465,466,471,489,493,494,536,542,544,552,553,567,573,606,607,608,610,612,615,619],index_category_clr:248,index_to_select:461,index_topic_clr:248,index_type_separator_clr:248,indexerror:[124,195,361,540],indexread:304,indextest:608,indic:[11,30,38,60,83,97,101,103,106,120,125,126,128,134,136,143,144,155,161,172,175,182,186,207,228,241,248,249,304,325,369,370,390,411,416,446,461,481,484,502,503,511,518,519,532,534,536,539,544,545,551,552,567,593],individu:[15,16,17,24,33,44,71,82,83,101,102,103,106,125,126,139,144,149,168,169,177,179,182,190,196,199,204,217,235,239,255,283,286,305,321,340,383,393,394,413,475,478,530,542,544,553,554,561,562],ineffici:[0,49,544],inert:11,inf:[570,572],infact:24,infinit:[0,45,82,101,103,125,132,147,163,220,228,361,370,477,570,572],infinitely_lock:304,inflat:149,inflect:[0,570],inflict:339,inflict_condit:339,influenc:[30,56,58,83,102,132,147,191,307,312,567],info1:435,info2:435,info3:435,info:[0,1,2,8,10,11,13,15,16,19,20,21,24,26,27,31,34,40,41,45,46,48,50,51,55,58,60,70,71,78,125,131,135,138,139,140,141,143,149,163,165,169,174,199,200,205,206,210,212,219,220,221,227,228,230,238,239,241,248,251,253,258,280,298,304,312,328,345,372,386,417,441,464,465,473,491,496,500,508,509,529,530,532,540,541,542,547,550,560,567],inforamt:[361,372,390,473,541],inform:[0,1,5,8,13,14,15,21,24,30,37,38,44,45,46,48,53,55,62,65,66,68,70,75,82,83,88,91,101,102,103,111,114,125,126,128,133,134,137,138,140,143,145,149,165,177,178,185,186,187,189,190,191,193,194,195,196,197,198,201,205,207,208,212,214,218,219,220,227,228,236,239,241,246,247,251,256,257,264,269,302,318,321,339,340,341,383,390,394,429,446,447,454,457,464,465,473,491,496,505,506,507,509,518,531,532,540,541,544,547,549,560,567,607,619],infrastructur:[68,128,131,150,217,218,220,232,501],infrequ:102,ing:[17,94,141,149,169,189,383],ingam:[101,102],ingame_map_displai:[100,224,225,258,343,619],ingame_python:[101,102,224,225,258,259,619],ingame_tim:175,ingen:67,ingo:[22,30,35,60,63,125,169,234,471,503,554,570],ingot:[321,322],ingredi:[89,126,149,304,321],ingredient1:304,ingredient2:304,ingredient3:304,ingredient_recip:304,inher:[39,56,72,119,394],inherit:[0,5,7,11,14,15,20,21,22,24,40,50,52,55,62,63,64,70,83,84,85,87,89,97,101,113,117,119,123,125,131,132,133,135,136,137,139,140,141,145,149,157,158,163,168,171,173,191,196,197,220,230,234,236,241,249,251,252,255,257,264,270,272,299,302,304,312,315,321,325,334,337,338,339,340,341,345,348,354,357,363,375,390,394,406,407,412,415,438,439,441,451,470,472,473,478,481,483,522,531,538,540,541,549,552,553,558,564,565,567,590,593,611,612,613,615,617,618],inheritng:478,inherits_:144,inherits_from:[155,185,195,251,567],inifinit:477,init:[10,13,53,64,83,87,98,125,128,169,182,189,210,211,213,264,265,307,312,364,449,472,491,509,510,520,532],init_delayed_messag:449,init_django_pagin:552,init_evennia_properti:541,init_evt:552,init_f_str:552,init_fill_field:[96,449],init_game_directori:491,init_iter:552,init_menu:438,init_mod:235,init_new_account:567,init_pag:[477,552],init_pars:[123,298,299],init_queryset:552,init_rang:341,init_sess:[64,531],init_spawn_valu:477,init_st:307,init_str:552,init_tree_select:[120,461],init_tru:235,initi:[2,3,6,9,13,15,24,28,30,45,46,47,53,54,55,77,79,82,84,89,96,98,120,121,125,126,128,131,132,133,135,137,147,158,161,169,172,177,179,182,184,187,189,191,194,198,213,220,221,222,227,228,235,236,252,255,257,270,271,272,273,280,283,287,289,307,312,318,321,337,341,348,368,369,370,371,375,376,377,389,390,394,405,406,410,413,417,433,438,439,440,449,461,463,471,472,473,477,482,485,486,488,489,491,493,494,495,500,501,502,504,505,506,507,509,510,511,512,513,514,515,516,518,519,520,522,530,531,532,539,541,542,544,546,549,550,551,552,554,562,563,567,576,577,579,581,583,585,601,607,618],initial_formdata:449,initial_ind:553,initial_setup:[0,220,224,225,487,529],initial_setup_modul:220,initialdelai:[488,502,503,522],initialize_for_combat:337,initialize_nick_templ:539,initil:519,initpath:125,inject:[0,54,94,138,218,304,371,406,417,477,491,522,523,530,545,550,551],inkarn:149,inlin:[25,53,60,129,132,141,168,473,489,554,575,576,577,579,580,581,583,619],inlinefunc:[0,44,60,138,219,220,554],inlinefunc_stack_maxs:0,inlinetagform:583,inmemori:539,inmemoryattribut:539,inmemoryattributebackend:539,inmemorybackend:539,inmemorysavehandl:562,inn:105,innard:0,inner:0,innermost:33,innoc:[57,239],innocu:218,inobject:500,inp:[30,241,256,477,489,552,554,567],inpect:30,input:[0,8,11,15,17,18,19,20,21,22,25,28,35,39,44,46,49,53,54,55,56,60,62,63,64,68,73,75,79,83,89,96,105,106,113,120,125,126,127,128,129,132,133,134,135,138,139,142,152,161,168,169,172,173,176,183,186,189,194,219,220,222,227,231,232,233,236,241,246,248,249,250,251,252,255,256,264,307,321,322,340,370,383,389,390,393,394,416,440,446,449,455,461,464,473,476,477,478,489,491,496,500,511,519,530,532,539,540,542,549,550,551,552,553,554,561,563,565,567,568,607,619],input_arg:565,input_cleanup_bypass_permiss:[0,220,567],input_cmdset:551,input_func_modul:[35,220,496],input_str:[33,551],input_validation_cheat_sheet:607,inputcmdset:551,inputcommand:[35,68,71],inputcompon:53,inputdebug:[35,496],inputfuc:138,inputfunc:[25,64,71,138,219,220,224,225,228,487,519,530,532,619],inputfunc_nam:519,inputfunct:35,inputhandl:224,inputlin:[39,247,255,539,540],insecur:217,insensit:[34,42,136,145,248,345,441,463,471,540,599],insert:[0,1,15,16,17,28,33,39,44,60,89,97,111,126,128,131,132,143,169,204,214,235,255,304,321,325,331,390,472,477,545,551,553,554,567],insid:[0,1,6,7,8,10,11,15,16,18,21,22,24,30,33,36,40,43,44,45,46,50,51,55,56,59,67,70,71,72,75,77,87,95,97,99,101,102,103,106,113,124,125,126,128,131,132,133,134,135,136,137,138,140,143,144,145,151,152,155,163,168,170,177,179,180,184,185,186,187,190,191,193,194,195,197,204,205,208,212,215,220,222,224,228,251,255,264,285,286,345,361,386,390,404,408,439,441,468,472,473,476,491,508,529,536,545,546,554,567],inside_rec:[0,468],insiderecurs:468,insight:[7,134,146,193],insist:[186,217],inspect:[30,57,125,184,205,227,241,251,312,379,489,491,551],inspect_and_bui:184,inspectdb:70,inspector:378,inspectorcarac:[0,84,111,126,379,454,571],inspir:[0,24,60,74,94,97,110,126,149,158,161,177,178,295,325,553,567],insta:161,instac:[236,321,473,530],instal:[0,2,6,7,8,10,11,12,17,67,72,99,102,103,121,126,127,128,130,131,132,134,137,140,143,146,152,165,168,169,195,200,201,203,204,209,218,220,222,224,225,258,267,280,295,310,312,315,318,320,328,331,334,337,338,339,340,341,343,345,348,354,356,373,374,382,386,390,392,407,435,446,598,619],installed_app:[11,70,192,194,195,197,220,598],instanc:[0,1,6,7,9,14,15,19,21,25,28,30,33,37,44,46,47,48,52,53,58,63,67,77,82,83,87,101,102,103,105,114,120,125,126,131,132,133,135,136,138,139,143,145,149,151,155,165,167,168,169,172,175,178,180,181,184,186,188,193,197,207,227,230,232,233,234,235,236,245,248,250,251,255,257,262,264,270,272,273,274,286,289,299,309,321,361,372,375,377,405,406,408,417,457,461,465,472,473,477,478,480,481,485,486,488,491,500,501,502,503,504,505,506,507,509,513,514,518,522,523,531,532,536,539,541,542,544,547,548,551,553,558,559,563,565,567,568,575,576,577,579,580,581,583,587,588,590,592,607,615],instanci:[264,272],instant:193,instanti:[11,24,33,70,82,144,227,235,252,394,433,483,486,508,529,532,539,550],instantli:[576,583],instead:[0,1,2,8,10,12,13,15,17,20,21,22,24,30,33,37,40,42,44,45,46,48,50,55,56,57,58,59,60,62,68,70,75,77,78,82,83,88,89,92,94,96,99,100,101,102,103,106,107,111,113,117,119,120,124,125,126,127,128,131,132,134,135,136,138,139,140,141,143,144,145,147,149,150,151,152,155,157,161,163,165,168,169,170,171,172,173,175,178,179,180,181,183,186,188,189,190,191,193,194,195,196,205,208,210,212,213,215,217,219,220,221,222,227,228,235,236,238,239,241,243,246,250,251,253,255,256,264,273,280,289,299,302,304,309,318,321,322,337,338,339,340,341,348,357,361,363,369,370,372,375,383,389,390,393,394,406,407,408,411,417,438,440,449,454,461,468,469,471,473,478,486,491,519,520,530,534,539,541,542,547,550,551,552,554,558,560,562,563,564,567,571,576,583,598,607,611,612,613,615],instig:239,instil:[76,339],instnac:485,instr:[500,567],instruct:[7,10,13,16,17,21,35,68,71,84,102,103,105,121,125,126,127,128,130,132,137,143,144,146,147,168,169,173,189,192,200,205,207,208,210,211,212,213,215,216,217,220,227,236,251,390,446,478,486,488,491,501,503,509,514,515,519,520,522,530,532,551,561],insur:149,int2str:[554,567],intefac:0,integ:[22,24,33,44,46,50,96,119,126,161,181,186,191,220,233,276,315,337,339,341,370,372,375,383,394,441,449,468,473,540,554,563,567,568],integerfield:[194,581,607],integr:[51,53,113,121,126,131,144,192,195,252,390,415,450,494,496,551,587,619],intel:143,intellig:[68,139,149,151,152,161,163,177,186,195,218,235,404,409,411,416,522],intend:[7,16,19,21,22,24,33,38,44,48,53,72,77,78,79,83,106,112,122,125,126,127,130,134,140,146,147,155,188,192,193,217,218,220,227,264,309,312,321,372,375,390,411,464,465,473,478,509,540,542,547,548,550,553,554,564,565,567,568,585,613,616],intens:[62,136,149],intent:[113,218,389,567],inter:[16,125,149,200,369],interact:[0,3,7,10,14,24,25,27,30,63,64,72,80,82,98,125,128,130,134,135,140,144,146,149,150,152,167,172,178,184,194,200,205,212,220,221,222,224,240,302,341,433,491,508,545,560,565,567,619],intercept:[78,101,126,532],interchang:[42,132,178,463,551,617],interconnect:[149,369],interest:[2,7,8,17,24,34,44,64,70,79,83,89,98,102,103,124,125,130,132,134,144,146,147,149,150,155,158,168,172,179,180,182,186,191,193,198,217,218,235,250,276,312,318,361,370,441,619],interf:[215,433],interfac:[1,2,5,7,9,36,52,53,54,64,75,82,83,106,131,137,143,149,179,184,189,194,197,205,213,217,220,221,238,241,255,411,417,471,473,484,502,531,536,539,542,544,567,577,582,616],interfaceclass:511,interfer:[9,205,477],interim:[49,172],interlink:[508,529],intermediari:[390,469,482,551],intern:[0,12,15,18,20,21,30,36,39,44,46,47,48,56,64,71,73,90,92,124,136,137,138,149,178,208,212,217,218,220,222,227,228,257,280,321,325,361,367,369,370,375,390,394,406,431,471,472,473,477,483,519,520,539,541,542,544,548,551,553,567],internal:551,internal_port:217,internation:[63,73,220,619],internet:[24,55,56,57,58,64,202,205,208,210,218,220,221,239,488,493,501,502,503,511,514,522,536],interpret:[3,7,8,24,44,45,143,144,149,167,186,195,218,219,220,236,240,241,372,477,478,519,544,563],interract:125,interrel:375,interrupt:[101,140,232,236,252,283,286,289,363,367,511],interrupt_path:[125,370],interruptcommand:[24,140,186,224,232,236],interruptev:289,interruptmaplink:[125,370],interruptmapnod:[125,370],intersect:[22,234],interv:[35,45,49,81,119,126,131,149,171,178,180,190,198,220,228,229,276,286,322,337,375,394,399,406,408,439,441,480,481,486,496,547,555,567],interval1:486,intim:[22,24],intimid:169,intoexit:[241,363],intpropv:191,intric:152,intricaci:175,intrigu:209,intro:[122,132,142,144,146,176,192,195,197,438,441],intro_menu:[224,225,258,395,437],introduc:[2,9,11,13,22,33,87,89,113,149,150,168,172,177,184,191,390,408],introduct:[0,3,13,16,17,18,25,58,59,77,132,133,134,142,148,158,164,165,166,176,189,213,264,619],introductori:130,introroom:441,introspect:[112,334],intrus:188,intuit:[13,30,70,83,147,149,186,220,234],intuitiion:149,intxt:21,inv:[22,27,247,302,315,407],invalid:[15,33,44,125,161,186,220,227,370,390,394,449,455,477,539,553,554,563,567,568,571],invalid_formchar:550,invent:[119,394],inventori:[0,1,9,21,22,27,36,89,94,133,134,136,141,145,149,150,151,155,157,179,184,186,187,196,247,302,315,321,322,390,404,406,407,410,411,412,413,417,468,473,541],inventory_slot:[155,410],inventory_use_slot:[155,157,410,412],inventoryseri:196,invers:[36,62,125,133,139,140,188,370,393,517],invert:[62,188],investig:[55,78,126,139,141,163,417],invis:[36,125,206,367,370],invisiblesmartmaplink:370,invit:[56,103,147,166,433],invitingli:[134,433],invok:[16,17,45,183,445],involv:[15,36,40,45,46,47,63,64,96,125,141,147,149,152,167,178,191,211,220,321,322,341,370,406,407,449,451,541,542,544,588],ioerror:545,ipli:394,iplier:394,ipregex:239,ipstart:[212,215,222],iptabl:218,ipv4:205,ipv6:220,ipython:[2,8,132,142,169],irc2chan:[27,34,133,202,220,246],irc:[0,2,135,150,203,220,221,224,225,228,246,254,487,496,499,509,532,619],irc_botnam:228,irc_channel:228,irc_en:[202,220,246,468],irc_network:228,irc_port:228,irc_rpl_endofnam:503,irc_rpl_namrepli:503,irc_ssl:228,ircbot:[228,503],ircbotfactori:[228,503],ircclient:[503,532],ircclientfactori:509,irchannel:[202,246],ircnetwork:[202,246],ircstatu:[27,133,246],iron:[79,312,321,322],ironrealm:515,irregular:[81,126,399,439,441],irregular_echo:439,irrelev:[218,500],irur:31,is_account_object:167,is_act:[230,481,575],is_aggress:185,is_anonym:[192,197],is_authent:194,is_ban:[0,227],is_bot:230,is_build:192,is_categori:461,is_channel:24,is_connect:[230,473],is_craft:172,is_dark:139,is_dead:87,is_exit:[24,236],is_fight:172,is_full_moon:1,is_giving_light:440,is_gm:169,is_idl:411,is_in_chargen:191,is_in_combat:337,is_inst:21,is_it:567,is_iter:567,is_lit:[440,441],is_next:[230,257,465,472,481,539,541],is_o:567,is_ooc:[379,468],is_ouch:[15,145],is_pc:[151,404,411],is_play:192,is_prototype_bas:477,is_rest:140,is_room_clear:408,is_sai:183,is_sit:140,is_staff:[230,575],is_subprocess:567,is_superus:[14,52,192,227,229,230,469,473,547,575],is_thief:248,is_turn:337,is_typeclass:[0,227,541],is_valid:[45,180,194,312,481,484],is_valid_coordin:[124,361],is_webcli:53,isalnum:544,isalpha:544,isauthent:220,isb:565,isbinari:[502,519],isclos:53,isconnect:53,isdigit:[169,544],isfil:220,isinst:[15,161,181,187,567],island:105,isleaf:520,islow:544,isn:[7,19,28,82,83,101,102,103,136,167,175,186,192,196,197,213,220,264,283,287,299,340,341,441,493,544,561,570,576,583,599],isnul:563,iso:[18,73,220,253],isol:[11,13,16,94,127,128,131,143,147,151,186,212,269],isp:[217,218],isspac:544,issu:[0,7,8,11,13,15,16,17,22,24,27,40,50,56,72,76,83,106,122,127,128,140,144,169,172,188,189,191,205,207,209,213,215,217,218,220,221,246,253,268,477,491,500,522,523,553],istart:[0,7,222,224],istartswith:0,istep:523,istitl:544,isub:178,isupp:544,ital:619,italian:[0,67],itch:149,item1:[161,406],item2:[161,406],item3:[161,406],item4:161,item5:161,item:[0,30,36,53,70,77,79,85,89,94,96,111,113,121,126,128,132,134,136,137,138,145,149,151,152,155,158,161,176,178,185,196,197,247,305,312,315,321,339,361,390,404,406,407,410,412,413,417,429,433,449,510,539,554,567],item_consum:339,item_func:339,item_kwarg:339,item_selfonli:339,item_us:339,itemcombatrul:339,itemcoordin:361,itemfunc:339,itemfunc_add_condit:339,itemfunc_attack:339,itemfunc_cure_condit:339,itemfunc_h:339,iter:[9,15,30,33,48,82,105,133,139,140,155,161,182,227,229,256,272,273,361,370,375,390,416,431,464,471,473,478,480,484,520,522,523,539,541,542,544,545,548,552,564,567],iter_cal:552,iter_to_str:[0,567],itl:[83,264],its:[0,1,6,7,8,11,12,13,14,15,17,18,20,21,22,24,25,28,30,31,33,34,36,37,40,42,44,45,46,49,50,51,52,53,54,57,58,60,62,64,68,70,71,74,75,78,79,82,83,87,89,94,95,96,97,98,101,103,106,108,111,112,115,117,119,120,122,124,125,126,128,130,131,133,134,136,137,138,139,140,141,143,144,145,146,149,150,151,152,155,157,161,163,165,167,168,169,172,173,174,175,177,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,201,202,203,205,207,211,212,213,215,217,219,220,227,228,230,232,233,234,235,236,239,241,249,251,255,256,264,265,268,272,273,286,295,299,304,307,312,321,322,325,334,337,338,339,340,341,348,357,361,363,370,372,375,377,389,390,394,406,408,410,411,415,416,431,433,439,440,449,461,471,472,473,478,485,486,491,495,496,500,504,515,517,518,519,520,523,531,532,536,537,539,540,541,542,545,550,551,553,554,558,560,561,562,563,564,565,567,571,575,576,583,585,587,596,607,611,612,613,615,617],itself:[0,1,5,8,10,11,13,15,18,19,20,21,24,30,34,36,40,42,45,46,48,49,50,55,60,64,67,70,75,78,82,83,96,101,102,103,106,119,120,121,125,127,128,131,132,133,134,135,138,139,142,143,144,145,146,151,152,155,161,163,172,174,178,179,182,183,189,191,192,193,194,195,196,199,205,208,211,213,215,219,220,227,228,248,255,264,271,274,289,303,304,305,307,321,340,361,370,375,383,390,394,399,416,440,441,449,457,461,462,465,466,468,471,473,475,476,478,485,491,515,520,532,536,539,542,544,547,549,550,551,554,562,564,567,571,572,576,583,607,617],iusernamepassword:511,ivanov:77,iwebsocketclientchannelfactori:502,iwth:486,jack:39,jail:[16,57],jam:[0,94,126],jamalainm:0,jamochamud:206,jan:[3,57,175,220],janni:77,januari:[101,175],jarin:217,jason:77,jaunti:315,java:143,javascript:[51,53,54,55,71,75,77,126,130,193,218,220,519,520],jenkin:[0,85,96,99,120,121,126,191,314,315,336,337,338,339,340,341,385,386,448,449,459,461],jet:340,jetbrain:[10,200],jewelri:85,jinja:138,jiwjpowiwwerw:15,jnwidufhjw4545_oifej:189,job:[24,36,152,197,208,227],jodi:77,john:[118,169,435],johnni:[0,78,126,445,446],johnsson:39,join:[53,83,94,111,126,130,136,147,149,152,169,178,182,183,191,194,201,202,220,227,246,255,295,303,312,389,406,407,544,567],join_combat:406,join_fight:[337,341],join_rangefield:341,joiner:255,jointli:[131,235],joker_kei:[83,264],jon:77,jonca:77,josh:77,journal:106,json:[51,53,68,71,78,196,220,445,502,515,519,520,548,590],jsondata:71,jsonencod:520,jsonifi:520,jtext:544,judgement:177,jump:[2,13,16,17,30,31,40,72,120,130,147,149,152,174,179,182,213,302,461,489,554],jumpei:77,jumpstat:302,june:101,junk:500,just:[0,1,2,7,8,9,10,11,12,13,15,16,17,18,19,20,21,22,24,30,31,33,34,35,36,38,39,40,44,45,46,47,48,49,50,52,53,55,56,57,59,60,62,64,67,68,70,71,73,75,76,77,78,79,82,83,84,88,89,92,94,99,101,102,103,105,106,110,111,119,120,124,125,126,127,128,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,165,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,184,186,187,188,189,190,191,192,193,194,195,196,197,198,205,208,209,210,212,213,214,215,216,217,219,220,222,227,234,235,236,239,241,246,249,250,252,255,264,283,285,286,302,306,307,309,312,315,318,321,322,337,339,340,341,345,361,363,370,372,375,386,389,394,404,406,407,410,415,416,433,435,439,441,461,469,473,478,482,496,509,519,523,529,536,539,540,541,544,548,549,551,553,554,562,563,565,567,568,613,616,619],justif:[552,567],justifi:[0,33,44,544,552,553,554,567],justify_kwarg:[0,552],kafka:[78,111],kaldara:101,kaledin:77,kamau:[111,454],kcachegrind:8,keep:[0,1,2,7,8,9,12,16,17,18,24,30,34,43,44,46,55,58,82,87,95,99,101,103,105,111,126,131,133,136,140,141,143,144,147,149,150,152,155,167,168,169,172,173,175,177,178,180,183,186,188,189,190,194,195,197,199,205,208,210,211,212,213,215,216,220,228,235,286,318,345,386,433,440,441,445,457,477,478,493,534,550,551,553,567],keep_log:[255,256,547],keepal:[46,514,520],keeper:[149,407],keepint:131,keeva:111,kei:[0,1,7,9,11,13,15,16,20,21,22,24,28,31,33,34,35,36,37,40,42,45,47,48,49,50,51,53,55,56,67,70,71,74,77,78,82,87,89,97,101,103,105,106,111,113,119,120,123,125,126,128,129,132,133,135,136,139,140,141,143,144,151,152,155,157,163,167,168,169,171,172,173,174,175,178,179,180,181,182,184,186,187,189,191,194,197,198,204,207,220,227,228,229,230,232,234,235,236,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,255,256,257,264,265,270,271,272,274,276,280,284,285,295,298,299,302,303,304,307,309,312,315,318,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,361,363,369,370,371,372,375,376,379,383,389,390,394,406,407,411,412,413,417,433,435,438,439,440,441,449,451,454,461,463,464,465,466,468,471,472,473,476,477,478,480,481,482,483,484,485,486,489,491,496,497,498,500,509,512,515,516,518,519,520,522,523,530,531,532,534,539,540,541,542,546,547,549,550,551,552,554,560,561,562,564,565,567,587,607,618],keith:77,kept:[8,24,34,42,55,138,168,186,220,241,285,286,390,478,539],kept_opt:461,kernel:2,key1:[30,331],key2:[30,331,473],key3:30,key_:187,key_mergetyp:[22,234,433],keydown:53,keyerror:[0,321,348,455,477,486,562,567],keyfil:[512,516],keynam:[255,256,464,476,478,547],keypair:511,keys_go_back:[83,264],keystr:542,keystrok:511,keywod:553,keyword:[0,1,8,11,15,21,24,28,30,31,33,35,36,44,45,47,49,50,56,60,68,70,82,83,95,101,103,111,113,135,136,140,143,151,152,169,172,173,175,184,186,191,195,220,227,228,229,232,236,241,247,255,256,276,283,285,286,289,299,307,309,315,337,339,341,345,372,386,389,390,406,410,411,441,446,454,469,471,473,477,478,480,482,485,486,489,491,496,500,502,503,509,510,511,514,519,520,530,531,532,534,539,540,541,547,550,551,552,553,554,558,560,561,563,564,567,616],keyword_ev:[101,289],kha:111,khq:111,kick:[20,22,30,57,149,152,169,217,228,234,239,246,253,280,295,552],kildclient:206,kill:[8,21,30,46,79,132,134,138,147,150,151,161,178,211,212,221,312,411,412,415,439,440,482,486,491,529,536],killsign:491,kind:[9,15,36,64,82,88,101,103,111,127,128,132,139,141,143,147,148,178,180,183,186,194,219,318,337,375,441,469,473,541,568],kindli:188,kitchen:[48,140,141,174,241,363],kizdhu:111,kja:220,klass:67,klein:77,knave:[93,132,149,151,152,155,157,158,163,405,410,416],knee:[125,304,370],kneeabl:304,kneed:304,kneel:304,kneelabl:304,knew:[143,149],knife:[48,89,321,322],knight:15,knob:15,knock:[30,146],knot:[85,315],know:[2,7,8,9,12,13,14,15,16,17,18,20,22,24,30,33,34,35,36,37,40,46,50,55,56,58,60,62,64,67,68,70,73,83,88,89,101,103,106,113,115,120,125,126,127,131,132,133,134,136,137,138,139,140,141,142,143,144,145,147,149,150,151,152,155,157,161,163,167,168,169,170,172,174,177,178,179,180,181,182,185,186,188,193,195,196,197,200,202,203,205,207,208,209,210,217,220,221,222,236,240,241,249,252,285,312,318,328,340,370,389,433,440,461,472,473,496,530,532,539,545,546,551,567,576,583,614,619],knowledg:[16,18,24,127,130,183,513,532],known:[0,24,28,34,39,42,43,49,50,53,132,134,139,140,147,177,195,200,206,220,226,250,340,454,552],knuth:8,korean:[0,67],kornewald:77,koster:200,kovash:30,kwar:541,kwarg:[0,1,15,20,24,30,33,35,36,37,40,44,47,49,50,53,56,64,66,68,71,82,87,89,90,101,105,119,125,140,152,155,157,169,180,183,184,190,195,220,227,228,229,230,232,235,236,238,239,240,241,246,247,248,249,250,251,252,253,255,256,257,264,270,272,273,274,276,280,283,284,285,286,295,298,299,302,303,304,305,306,307,309,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,361,363,370,371,372,375,376,379,383,389,390,394,399,404,405,406,407,408,411,412,413,415,417,431,433,435,438,439,440,441,446,449,451,457,461,464,465,468,469,471,472,473,475,476,477,478,480,481,482,484,485,486,488,489,496,497,498,500,501,502,503,508,509,510,511,512,514,515,516,519,520,522,524,530,531,532,533,534,536,539,540,541,542,544,547,549,550,551,552,553,554,555,557,558,560,561,562,563,564,565,567,568,575,576,577,580,581,583,587,589,590,593,607,611,612,613,615,616,617,618],kwargs_to_pass_into_next_node_or_cal:152,kwargtyp:567,label:[70,76,78,134,145,163,184,194,587,607],label_suffix:[577,579,581,583,607],labl:48,laborum:31,labyrinth:125,lack:[15,16,55,74,128,133,147,150,167,390,433,473,539,567],laddad:67,ladder:169,ladi:139,lag:[8,182],lair:17,lambda:[30,44,56,181,197,286,478,567],lamp:[106,433],lamp_breaks_msg:433,land:[152,178,186,439,440],landscap:[106,218],lang:[113,389],langaug:113,langcod:[220,390],langnam:390,languag:[6,18,25,33,42,50,53,54,55,60,63,64,72,73,74,120,126,128,130,131,133,136,137,138,139,141,143,150,167,168,169,186,200,220,224,225,258,373,388,390],language_cod:[67,220],languageerror:[389,390],languageexistserror:389,languagehandl:389,lanki:152,larg:[0,9,11,16,17,30,44,45,55,56,58,70,72,77,105,113,124,125,126,127,130,132,134,140,146,147,150,157,161,167,205,217,220,304,361,364,377,389,433,477,509,545,550,558],larger:[17,33,36,70,72,95,128,143,147,168,182,220,345,375,473,517,544,558,567,596,619],largest:[119,394],largesword:70,larlet:77,lasgun:135,last:[0,2,3,5,7,13,15,16,17,20,22,24,30,35,39,40,46,47,53,60,67,70,79,83,85,101,111,120,125,126,128,141,143,144,145,146,147,149,150,152,155,169,171,172,178,180,186,188,192,193,195,196,197,208,209,220,222,229,232,233,235,241,246,247,276,286,312,318,337,339,345,348,375,390,406,410,413,416,417,454,461,473,495,544,545,546,551,552,553,555,560,567],last_cast:171,last_cmd:[24,139],last_initial_setup_step:[220,529],last_login:[230,575],last_nam:[111,230,454,455,575],last_step:495,last_tim:171,last_upd:408,last_us:171,lastli:[106,194,232,321],lastsit:1,late:[13,101,477,546],later:[9,13,14,15,16,20,24,34,35,37,44,45,49,50,57,64,68,70,76,77,83,84,89,94,101,102,103,106,112,125,130,131,133,134,136,138,139,140,141,143,144,147,149,150,151,152,157,158,161,163,169,170,172,174,176,177,180,185,187,189,191,192,194,197,198,205,210,211,213,217,220,234,238,239,241,249,255,276,334,370,379,390,405,406,416,417,477,478,486,511,542,554,567],latest:[0,3,4,21,22,55,77,94,98,128,131,169,180,203,208,210,211,213,215,227,241,246,251,451,473,478,510,534,551,554,560,587],latin:[0,3,18,67,73,220,253,473,567],latin_nam:473,latinifi:[0,473,567],latter:[0,21,30,36,49,113,119,125,131,152,155,172,186,188,390,394,463,481,483,542],launch:[0,10,17,25,101,125,146,179,209,211,213,217,220,222,235,433,490,491,501,503,522,549,567],launchcmd:[125,224,225,258,343,362,364],launcher:[0,8,10,125,213,220,364,365,490,491,500,501,522],lava:125,law:200,lawrenc:220,layer:[22,82,83,111,137,144,375,472,541],layout:[12,21,34,43,50,53,55,63,105,125,139,145,167,169,182,361,369,473,550],lazi:[413,567],lazy_properti:[0,82,88,119,155,187,318,375,393,394,413,567],lazyencod:520,lazyset:560,lc_messag:67,lcnorth:61,ldesc:167,ldflag:211,lead:[0,11,15,16,19,22,30,33,45,52,54,55,66,68,70,82,83,101,103,106,113,125,130,131,134,136,140,145,147,157,161,167,180,182,197,200,205,207,218,220,227,233,234,241,251,286,289,321,354,363,368,370,371,372,390,408,422,424,457,473,477,478,500,530,539,541,553,554,567],leak:[55,75,220],lean:[38,390],leap:[143,175],learn:[3,7,10,18,19,22,24,51,55,58,72,82,83,93,94,101,102,103,113,122,125,126,133,135,136,137,139,140,141,143,144,146,147,149,150,155,163,167,168,182,193,195,196,197,210,340,375,376,389,390,619],learnspel:340,least:[0,7,10,15,24,30,36,38,52,70,79,82,101,113,119,130,139,142,143,144,147,150,151,165,168,169,177,180,181,182,208,217,220,227,235,256,304,312,389,394,406,464,473,478,484,544,550,553,554,564,567],leasur:439,leather:[149,184,322],leatherrecip:322,leav:[0,1,8,14,20,35,53,55,83,101,103,124,134,140,146,152,155,161,169,177,178,179,191,216,218,220,238,240,241,255,264,302,304,305,306,312,361,363,404,406,408,422,441,473,485,515,519,520,551,554,558,590],leaver:255,leaving_object:[404,473],led:[139,149],ledg:122,lee:406,leech:376,leer:77,left:[0,5,21,24,33,35,36,44,53,70,83,101,106,111,124,125,128,136,140,141,146,152,168,181,186,197,220,227,241,247,249,304,318,337,338,339,340,341,361,369,370,375,379,386,415,433,440,469,478,541,544,553,567,619],left_justifi:44,leftmost:125,leg:528,legaci:[0,33,44,45,71,86,126,145,149,210,220,227,295,296,554,619],legal:[217,218],legend:[28,105,182,206,224,225,258,343,362,369,371],legend_key_except:369,legenddict:371,leidel:77,leisur:568,leland:77,len:[1,44,136,145,161,169,178,180,182,184,204,220,233,250,276,413,567],lend:28,length:[1,65,70,83,85,90,96,113,125,126,143,175,182,186,204,205,217,233,276,289,309,321,348,369,370,386,389,390,449,454,455,493,534,539,544,550,553,554,567,618],lengthi:1,lenient:44,less:[10,30,34,53,55,67,70,72,82,83,111,125,131,139,141,147,149,155,161,167,170,174,177,178,186,190,194,217,220,276,338,340,370,412,539],lesson:[130,132,133,134,136,137,138,139,140,141,143,144,145,147,149,150,151,152,155,157,161,163,176],let:[1,8,10,11,13,15,17,18,20,22,24,30,33,35,36,40,42,49,53,55,57,62,64,68,76,82,83,84,89,94,96,99,101,102,103,106,111,120,124,125,126,127,128,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,155,157,158,161,164,165,166,167,168,169,170,171,172,174,175,177,179,180,181,182,183,184,185,186,187,188,189,191,193,194,195,196,201,202,203,207,210,211,213,227,235,236,241,247,252,256,272,312,361,369,375,383,386,394,407,449,461,469,473,501,520,532,547,551,561,587,607,614,615],lethal:[149,151],letsencrypt:[208,217],letter:[0,18,30,38,62,67,73,83,106,111,113,114,125,128,143,181,191,194,217,220,238,247,253,264,304,389,394,457,535,544,554,567],leve:477,level10:322,level:[4,9,14,15,16,20,21,28,30,33,34,36,42,46,48,50,51,52,55,59,64,65,67,72,76,83,87,89,101,105,106,113,128,130,134,136,140,143,147,149,150,151,152,155,161,163,168,169,173,177,184,192,196,197,200,204,215,217,219,220,227,229,238,241,243,244,255,264,265,268,276,302,322,328,361,369,389,404,406,408,411,412,413,416,417,433,461,463,468,473,478,493,530,539,541,542,547,549,554,555,560,567,588,618],level_up:404,lever:[24,50,302],leverag:[54,128,165],levi:70,lexicon:304,lhs:[0,1,169,249],lhslist:249,liabl:304,lib:[205,208,211,215,216,220],libapache2:207,libcloud:77,libcrypt:211,libjpeg:211,librari:[0,2,9,11,12,16,25,44,50,51,53,67,72,98,123,125,126,129,131,132,139,142,144,157,161,167,168,176,186,193,194,196,199,200,210,211,212,213,218,220,258,299,457,477,478,504,539,541,553,567],licenc:544,licens:[0,10,111,114,126,127,149,454,457,544,570,571,619],lid:[115,433],lidclosedcmdset:433,lidopencmdset:433,lie:[106,304],lied:304,lies:[13,24,141],life:[39,127,132,140,149,150,175,188,276,439,619],lift:[36,134,161,177,191,196,304,341,469],lifter:36,light:[17,21,45,62,72,128,146,147,149,150,205,210,235,338,372,440,441,478,485,544],lightabl:440,lighter:338,lightest:21,lightli:[58,338],lightsail:217,lightsourc:440,lightsource_cmdset:440,lightweight:[88,126,318],like:[0,1,2,5,7,8,9,10,11,12,13,14,15,17,18,19,20,21,22,24,26,30,31,33,34,35,36,37,38,40,42,44,45,46,47,48,49,50,52,53,54,55,56,57,58,59,60,62,64,67,68,70,71,72,74,75,76,78,82,83,85,87,88,89,90,94,95,96,97,99,101,102,103,105,106,111,113,114,115,116,117,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,165,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,184,186,187,188,189,190,192,193,194,195,196,197,198,200,201,202,204,207,208,209,210,211,212,213,215,216,217,218,219,220,227,228,230,231,233,234,235,238,240,241,246,249,253,254,255,256,264,280,289,295,297,299,304,312,315,318,321,322,325,337,339,340,341,345,354,357,361,370,375,377,386,389,390,394,404,406,408,410,411,412,416,431,433,441,449,457,461,464,465,466,468,469,471,472,473,477,478,491,496,504,520,523,525,529,531,532,539,540,541,542,544,545,547,550,551,552,553,554,555,558,561,563,564,565,567,570,592,607,616,619],likewis:0,limbo:[16,17,21,65,83,103,106,122,125,134,138,139,146,180,189,195,219,220,241,264,363,441,495],limbo_exit:106,limit:[0,1,8,14,15,20,21,22,24,25,30,33,34,36,38,44,45,48,50,51,52,58,59,70,76,85,88,102,103,119,120,121,125,126,129,130,131,132,134,136,138,141,143,145,147,150,155,169,171,178,186,188,191,204,205,217,220,227,229,236,238,239,240,241,255,256,286,304,315,318,337,339,340,369,390,393,394,406,407,412,433,461,463,464,465,466,469,471,473,478,480,481,486,496,509,534,539,541,542,545,547,549,560,564,567,570,585,613],limit_valu:[220,227],limitedsizeordereddict:567,limitoffsetpagin:220,limp:146,line26:183,line34:172,line:[0,1,2,5,8,9,11,12,15,16,17,18,20,21,22,24,25,30,33,35,38,39,40,43,44,50,53,55,56,59,62,67,68,70,72,77,78,83,89,92,101,102,103,105,106,109,113,120,124,125,126,127,128,129,133,134,137,139,140,141,142,144,145,149,152,155,161,167,168,169,170,172,173,175,176,180,181,183,186,189,191,192,194,195,196,197,203,205,208,209,212,213,215,217,219,220,222,224,227,232,235,241,246,248,250,251,264,299,331,361,365,369,389,390,433,449,461,473,477,491,496,511,514,519,530,541,544,545,549,550,551,552,553,560,567,607,612],line_prefix:567,linear:182,linebreak:[197,544,566],lineeditor:549,lineend:566,lineno:128,linenum:549,liner:503,linereceiv:[511,514],linesend:520,lingo:[46,70,75,168],linguist:567,link:[0,1,2,4,11,12,14,17,19,20,22,24,27,30,34,40,46,51,54,55,63,64,66,83,98,101,102,106,121,127,130,131,132,133,134,136,137,138,139,143,149,165,168,172,180,181,182,187,189,191,192,194,195,197,202,203,209,213,217,220,227,230,241,246,283,299,363,367,368,369,370,371,377,408,451,469,473,481,489,491,502,506,511,514,541,566,567,580,619],link_button:580,link_object_to_account:580,linknam:209,linknod:370,linktext:128,linkweight:370,linod:217,lint:0,linux:[1,2,4,8,10,13,39,78,128,131,143,144,189,192,202,205,207,208,211,212,217,221,445,567],liquid:541,list1:136,list2:136,list:[0,1,3,8,9,10,12,14,15,16,17,18,20,21,22,24,27,30,33,34,35,36,38,40,44,45,46,48,50,51,52,53,55,57,62,64,65,67,70,71,73,74,75,78,80,82,83,84,85,86,87,89,95,96,101,102,103,104,105,106,109,111,113,114,120,125,127,130,132,133,134,135,137,138,143,145,146,147,150,151,152,155,157,161,165,168,169,177,178,180,181,182,186,191,192,194,195,196,197,200,202,203,205,209,215,217,218,220,222,227,228,229,230,233,234,235,236,238,239,240,241,246,247,248,249,251,252,255,256,257,264,267,272,273,283,284,286,287,289,295,302,303,304,312,315,318,321,325,328,331,334,337,338,339,340,341,345,348,361,363,369,370,371,372,376,379,386,389,390,394,406,410,411,413,416,417,433,438,439,440,445,446,449,454,455,457,461,463,464,466,469,471,472,473,477,478,480,482,483,484,486,489,491,496,497,500,501,503,505,507,509,510,515,520,523,532,534,536,539,540,541,542,544,545,546,547,548,551,553,554,560,561,564,565,567,570,571,575,576,583,585,588,590,591,592,598,600,611,612,613,615,617,618,619],list_callback:284,list_channel:246,list_displai:[575,577,579,580,581,582,583],list_display_link:[575,577,579,580,581,582],list_filt:[575,579,580,583],list_nod:[0,25,551],list_of_fieldnam:169,list_of_myscript:45,list_prototyp:477,list_select_rel:[577,579,580,581,582],list_serializer_class:593,list_set:491,list_styl:238,list_task:284,list_to_str:[0,567],listabl:241,listaccount:251,listbucket:77,listcmdset:241,listdir:220,listen:[14,20,36,46,53,57,113,176,205,208,218,220,246,255,273,295,304,389,390,433,612,619],listen_address:205,listing_contact:[209,220],listnod:551,listobject:241,listview:[612,613,615],lit:[440,441,554],liter:[0,16,33,34,44,52,65,134,168,247,544,550,554,563,567],literal_ev:[33,551,554,567,576],literari:150,literatur:619,littl:[0,1,7,13,18,24,44,45,50,55,56,62,80,101,103,105,106,111,120,122,124,125,126,128,131,132,133,134,136,139,141,143,144,145,146,147,149,150,152,155,157,161,163,168,169,172,174,179,183,184,185,186,189,193,195,197,200,204,212,213,217,222,304,338,340,390,406,407,415,416,438,441,526,539,551,567,607],live:[10,15,25,55,132,139,149,158,205,207,208,210,212,217,404],livingmixin:[151,155,404,411],ljust:[33,544,554],lne:461,load:[0,2,8,9,10,11,13,15,16,18,22,24,28,30,44,53,54,55,57,67,77,89,94,106,125,139,143,144,147,155,161,167,168,169,172,177,180,191,193,197,218,220,230,235,247,248,251,257,270,272,286,307,323,345,369,371,389,412,463,465,469,472,473,477,481,485,495,498,500,531,539,541,542,545,546,549,554,559,561,562,565,567,585,600,605],load_buff:549,load_data:546,load_game_set:600,load_kwarg:562,load_module_prototyp:477,load_stat:307,load_sync_data:531,loader:[30,371,541,567],loadfunc:[28,549,562],loadout:[155,406,410],loaf:[89,126],loc:[0,241,363],local0:208,local:[0,1,5,10,13,33,51,52,55,67,98,101,113,125,126,127,131,133,137,141,149,175,187,193,194,202,205,208,212,215,217,218,220,283,286,348,390,451,478,514,539,619],local_and_global_search:471,local_non_red_ros:136,local_ros:136,locale_path:220,localecho:[0,496],localhost:[51,52,53,54,55,75,165,189,192,194,195,197,205,206,208,210,211,213,217,220,221,520],locat:[0,1,8,9,11,12,13,14,16,21,22,24,26,27,30,35,36,40,44,45,48,50,51,52,53,55,57,60,62,65,75,76,77,82,83,94,95,101,102,103,105,106,108,112,124,125,126,128,131,132,133,134,135,136,137,138,139,140,141,143,146,149,151,155,168,169,170,179,180,181,182,183,185,186,189,191,192,193,194,207,208,210,212,213,217,218,219,220,221,227,232,241,247,251,255,256,264,307,309,315,321,334,345,348,354,361,363,367,369,370,371,372,375,390,404,406,408,409,410,411,415,431,439,441,468,471,472,473,478,520,529,539,541,542,545,547,553,560,564,593,596,598],location_nam:361,locations_set:472,locattr:[440,468],lock:[1,20,22,24,25,27,33,38,40,44,45,48,50,52,56,57,59,83,94,98,101,110,113,116,125,129,133,134,137,138,139,140,169,172,174,175,179,181,191,192,194,196,204,205,217,219,220,222,224,225,227,229,236,238,239,240,241,246,247,248,250,251,252,253,255,256,257,264,280,283,284,286,287,295,302,304,312,315,321,322,325,328,331,334,345,354,361,363,370,379,383,390,404,406,408,411,412,433,435,439,440,441,451,463,464,465,471,472,473,477,478,480,500,536,539,541,542,547,549,551,561,567,568,580,588,615,619],lock_definit:469,lock_func_modul:[36,220,469],lock_storag:[236,238,239,240,241,246,247,248,249,250,251,252,253,257,264,280,284,295,298,299,302,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,363,375,379,383,390,407,433,435,439,440,441,449,451,461,463,465,473,522,539,541,549,551,552],lock_typ:36,lockabl:[38,116,126,169,304,354],lockablethreadpool:536,lockdown:[36,220,539],lockdown_mod:[217,220],lockexcept:469,lockfunc1:36,lockfunc2:36,lockfunc:[0,1,20,24,36,42,129,138,141,180,219,220,224,225,241,246,467,542],lockhandl:[0,15,34,36,50,133,224,225,236,264,299,467,468],lockset:473,lockstr:[0,9,15,20,24,34,36,44,140,141,220,229,241,246,248,255,256,257,271,295,354,375,464,469,471,473,478,480,539,542,547,588],locktyp:[20,234,246,321,478,542,554],lockwarn:220,lockwarning_log_fil:220,locmem:220,locmemcach:220,log:[0,1,5,6,8,10,12,13,14,15,24,25,26,30,35,38,40,45,46,47,52,53,54,55,56,57,65,67,70,75,78,80,94,101,106,122,125,128,129,131,132,133,134,140,141,149,151,152,168,169,177,179,180,181,191,192,194,195,201,202,204,205,206,207,208,211,212,215,220,221,222,227,229,235,239,253,255,256,279,280,291,305,369,370,371,445,446,449,473,481,485,491,496,500,501,505,508,509,511,514,522,523,524,530,532,534,536,541,547,560,567,575,612,613],log_19_03_08_:0,log___19:0,log_dep:[21,560],log_depmsg:560,log_dir:[20,220,255,445,560],log_err:[21,560],log_errmsg:560,log_fil:[20,21,255,560],log_file_exist:560,log_info:[21,560],log_infomsg:560,log_msg:560,log_sec:[0,560],log_secmsg:560,log_serv:560,log_system:560,log_trac:[21,45,198,560],log_tracemsg:560,log_typ:560,log_typemsg:560,log_warn:[21,560],log_warnmsg:560,logdir:5,logentry_set:230,logfil:[3,491,560,612],loggad:67,logged_in:[46,220],loggedin:[55,509],logger:[0,21,45,129,198,224,225,445,503,543],logic:[0,7,9,30,55,56,82,89,94,101,103,106,125,138,140,149,152,174,181,182,187,195,196,197,220,304,389,441,472,473,476,495,539,551,568,590],login:[0,1,8,9,13,14,24,26,30,36,46,47,54,55,63,78,125,126,135,149,189,192,194,197,217,220,227,238,253,278,279,280,281,291,469,495,496,511,514,519,520,523,532,567,599,601,608,619],login_func:523,login_redirect_url:220,login_requir:220,login_throttle_limit:220,login_throttle_timeout:220,login_url:220,loginrequiredmixin:[613,618],logintest:608,loglevel:560,logo:77,logout:[0,220,522,523,608],logout_func:523,logout_url:220,logouttest:608,logprefix:[501,511,514,536],lon:554,lone:[106,147,241,248],long_descript:[209,220],long_running_funct:56,long_text:31,longer:[0,1,24,28,31,33,49,50,60,70,74,101,103,117,122,133,139,140,143,144,151,152,169,186,188,197,209,234,239,255,315,337,341,357,389,390,406,482,485,549,553,567],longest:21,longrun:24,longsword:51,loo:[236,252],look:[0,1,2,5,7,8,9,11,15,16,17,18,19,21,22,24,25,26,27,30,33,35,36,39,40,42,44,45,46,48,50,52,54,55,56,57,58,59,60,62,64,67,68,70,71,72,75,82,83,85,89,92,94,95,96,101,102,103,106,107,108,109,111,113,115,120,122,125,126,127,128,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,147,150,151,152,155,157,161,163,165,166,168,169,172,173,174,175,177,178,179,180,181,182,183,184,185,186,188,189,192,193,194,195,196,197,204,205,208,211,212,215,217,218,220,222,227,228,233,235,236,238,241,247,249,252,253,279,280,285,291,302,303,304,315,321,331,334,339,345,361,370,371,372,379,389,390,404,406,412,417,431,433,438,440,441,449,461,464,468,469,472,473,475,478,480,496,511,512,519,523,539,541,545,551,553,554,561,564,565,567,571,575,580,607],look_str:[227,379],lookaccount:169,lookat:24,looker:[8,33,60,125,169,182,191,227,304,305,315,345,361,372,390,408,412,415,431,473,541],lookm:24,lookstr:473,lookup:[9,15,24,36,48,60,70,132,142,220,232,247,409,445,463,471,472,477,510,542,544,557,558,563,564,567,568],lookup_expr:587,lookup_typ:563,lookup_usernam:30,lookuperror:544,loom:[106,182],loop:[0,8,15,33,50,84,101,102,103,121,125,126,130,131,132,136,149,161,170,178,179,182,183,197,220,224,228,337,370,408,478,509],loopingcal:494,loos:[17,30,85,152,227,246,315,341,464,511,522,545],loot:[132,147,151,404,411],loot_chanc:411,looter:[151,404],lop:136,lore:[34,169,248,463],lose:[15,46,147,149,151,161,167,174,178,191,212,222,339,405,445,473,502,503,511,514],loser:146,loss:161,lost:[50,75,103,106,117,155,157,167,172,181,186,187,200,220,222,246,357,488,501,502,503,511,514,519,539,544],lot:[0,2,4,7,8,11,13,16,18,20,21,33,34,36,44,45,48,50,52,54,55,56,60,67,70,72,75,82,83,89,92,94,96,101,102,103,105,106,118,120,121,125,127,129,132,133,135,136,138,139,141,143,144,145,146,147,149,150,152,157,158,168,169,171,175,177,180,181,186,191,192,194,196,197,200,208,217,220,264,276,280,338,361,390,407,410,435,440,449,536],loud:[140,179,375],love:[34,53,150,463],low:[0,22,64,65,102,149,217,220,234],lower:[1,8,14,15,20,22,24,30,42,53,56,59,62,70,111,119,125,146,149,152,161,169,172,175,182,217,220,233,234,238,249,251,369,370,390,394,496,542,544,567],lower_bound_inclus:394,lowercas:[128,143,236,390,544],lowest:[42,65,119,149,161,217,394,468,544],lpmud:74,lsarmedpuzzl:334,lspuzzlerecip:334,lst:[155,182,464,547],lstart:28,lstrip:[186,544],ltthe:251,ltto:61,luc:550,luciano:200,luck:[30,89,139,149,186,207],luckili:[13,36,106,139],lue:544,lug:130,luggag:145,luhttp:251,lunch:[101,102],lunr:[0,34,220,248,466],lunr_stop_word_filter_except:[0,220],lunrj:466,lure:220,lurk:149,luxuri:[48,538],lvl10:322,lvl:560,lycanthrophi:136,lycantrhopi:136,lycantroph:136,lycantrophi:136,lying:[106,304],m2m:542,m2m_chang:47,m_len:567,mac:[8,10,13,128,131,143,189,205,206,210,212,221,567],machin:[1,10,13,16,143,149,205,212,220,439],machineri:220,macport:[13,213,215],macro:[178,192],macrosconfig:192,mad:13,made:[0,1,5,13,15,26,30,33,36,42,44,51,55,59,77,79,85,91,94,101,106,111,120,125,126,128,133,134,139,140,141,144,145,147,149,151,152,161,163,165,167,169,171,172,179,180,184,191,195,200,203,216,217,218,219,220,232,234,251,252,255,312,315,339,340,341,365,394,406,419,449,454,461,469,485,493,523,537,544,545,549,551,554,567],mag:550,magazin:200,mage:[30,77,136],mage_guild_block:30,mage_guild_welcom:30,magenta:188,magentaforeground:62,magic:[3,15,36,48,76,79,93,99,132,146,147,149,158,161,173,180,312,322,340,386,393,406,409,410,412,493],magic_meadow:48,magicalforest:76,magiccombatrul:340,magnific:30,mai:[1,3,6,7,8,9,10,11,12,13,15,16,20,21,22,24,30,33,34,36,37,39,40,44,45,46,49,50,51,55,56,59,60,62,64,65,67,68,70,71,72,75,77,79,82,85,87,89,94,98,99,101,103,106,113,119,120,121,122,125,126,127,128,131,132,134,136,138,139,142,143,145,146,147,150,151,161,163,167,168,170,171,172,175,177,178,179,184,189,191,193,194,195,197,198,200,204,205,207,208,209,211,212,213,215,216,217,218,219,220,222,227,228,232,233,234,236,238,239,241,246,248,251,252,255,256,257,258,276,304,307,312,315,321,322,337,338,339,340,341,369,370,386,389,390,394,406,408,409,410,413,416,440,441,449,451,469,471,473,477,478,479,493,530,532,533,537,539,541,542,544,546,547,548,549,551,553,554,555,561,564,567,570,576,583,596,613],mail:[0,8,12,30,38,127,133,168,178,189,224,225,256,257,258,310,619],mailbox:[38,328],main:[0,9,13,15,16,17,18,22,24,30,34,37,40,42,43,44,45,46,48,49,50,51,53,54,55,60,64,68,70,75,83,96,101,102,110,113,125,126,127,131,132,134,139,140,141,142,149,158,161,167,172,173,178,179,182,186,194,195,196,197,200,205,209,212,217,219,220,222,227,230,232,238,241,246,248,252,255,257,264,286,321,323,328,361,365,371,389,390,406,413,449,451,465,466,472,473,478,481,491,495,496,498,503,508,510,515,529,531,536,541,542,551,552,554,556,564,566,567,575,581,598,616,619],mainli:[0,8,15,24,30,38,40,46,56,57,60,68,141,143,168,200,220,238,412,462,539,545,567],maintain:[0,8,13,34,49,59,72,77,125,126,127,128,139,145,150,167,189,192,205,212,217,220,221,251,253,280,365,486],maintainership:0,mainten:217,major:[17,18,33,131,168,180,194,205],make:[0,1,2,3,5,6,7,8,9,10,12,14,15,16,17,18,20,22,24,25,27,28,30,33,34,35,36,38,39,40,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,64,67,68,70,72,73,76,77,78,79,81,82,83,84,89,95,97,98,99,100,101,102,103,104,105,106,111,113,116,117,119,120,122,124,125,126,128,130,131,132,135,136,137,138,141,142,144,145,146,147,148,150,151,152,155,157,158,163,164,166,167,170,173,174,175,176,177,178,181,182,183,185,186,188,189,192,193,194,195,196,197,199,202,204,205,206,207,208,209,210,211,212,213,215,216,217,218,219,220,222,227,228,230,233,234,235,236,238,239,241,246,249,252,256,264,276,287,302,304,312,315,321,322,328,337,338,339,340,345,348,354,357,363,369,370,372,375,379,386,389,390,394,399,404,405,406,407,408,409,410,411,412,413,416,417,420,433,439,440,441,447,449,461,464,468,469,471,473,477,478,480,483,486,491,495,503,508,522,523,529,530,532,533,535,536,539,540,541,542,544,545,546,547,548,549,550,551,553,554,555,558,564,565,567,576,583,585,608,616,618,619],make_it:[157,567],make_shared_login:601,make_uniqu:234,makeconnect:500,makefactori:511,makefil:128,makeit:522,makemessag:67,makemigr:[5,70,194],makeshift_fishing_rod:89,male:[60,97,325,554,571],malevol:[17,220],malform:[0,371,477,478,565,568],malici:[33,218],malign:469,malysh:77,man2x1:72,man:[0,39,60,72,74,113,217,247,328,390],mana:[171,173],mana_cost:322,manaag:579,manag:[0,8,11,12,14,20,22,25,36,40,45,46,49,50,64,68,70,84,109,113,125,126,129,136,138,140,155,167,168,171,181,187,189,194,210,212,216,220,222,224,225,226,227,230,241,246,251,252,254,255,257,295,307,331,341,372,375,390,407,441,462,465,470,472,473,477,479,481,486,487,491,498,538,539,541,542,543,546,547,556,559,560,564,567,608,611,612,613,618,619],manager_nam:539,manchest:567,mandat:607,mandatori:[44,47,74,83,101,103,105,125],mandatorytraitkei:394,maneuv:[120,461],mangl:517,mango:[112,334],manhol:511,manhole_ssh:511,mani:[0,2,8,11,12,13,14,15,17,18,19,20,21,22,24,30,33,34,40,44,45,46,47,49,50,51,54,55,56,57,62,63,64,65,67,70,71,72,73,74,75,76,77,82,85,96,103,106,111,113,117,118,120,121,123,125,126,128,130,131,133,134,135,136,138,141,143,144,147,149,150,152,155,157,161,163,167,168,169,171,172,173,174,175,177,178,180,182,183,186,188,189,191,194,195,196,202,203,213,217,218,219,220,222,229,230,234,236,241,246,252,257,268,280,299,304,312,315,321,323,339,340,357,369,370,372,375,390,407,408,435,439,449,461,465,466,469,471,472,478,481,486,491,505,513,515,534,539,541,542,544,551,552,554,558,559,560,616],manifest:138,manipul:[0,15,22,30,42,44,45,52,70,82,83,95,101,103,119,126,131,133,149,174,187,191,229,241,251,256,283,343,345,375,394,464,471,473,480,497,547,552,613,615],manner:[17,361,390,473,509,541],manpow:127,manual:[0,8,9,12,15,17,24,34,36,40,44,45,50,52,54,62,64,67,70,76,98,101,106,119,120,125,126,128,132,134,138,139,140,143,145,147,150,155,163,169,173,179,180,192,195,205,208,214,215,216,217,220,221,222,224,228,241,299,306,370,394,433,438,451,461,473,478,484,491,508,515,551,552,554,619],manual_paus:[45,484],manual_transl:[113,389],manytomanydescriptor:[230,257,465,472,481,539,541,542],manytomanyfield:[230,257,465,472,481,539,541,542],map10:367,map11:367,map12a:367,map12atransit:367,map12b:367,map12btransit:367,map1:[125,367,370],map2:[125,367,370],map3:367,map4:367,map5:367,map6:367,map7:367,map8:367,map9:367,map:[0,1,9,18,20,30,33,39,60,71,75,77,86,90,101,102,103,113,124,126,131,149,152,161,168,169,176,181,184,208,212,220,224,225,238,246,255,258,267,268,276,304,343,348,361,362,363,364,366,367,368,369,371,372,389,390,394,415,417,466,473,477,478,515,539,541,544,550,551,554,565,567,571,572,619],map_align:[125,372],map_area_cli:372,map_character_symbol:[125,372],map_data:[367,369],map_displai:[125,367,372],map_exampl:364,map_fill_al:[125,372],map_legend:105,map_mod:[125,372],map_modul:106,map_module_or_dict:369,map_separator_char:[125,372],map_str:[106,124,182,361],map_target_path_styl:[125,372],map_visual_rang:[125,372],mapa:125,mapb:125,mapbuild:[105,106,182,224,225,258,343,347,619],mapc:125,mapcorner_symbol:369,mapdata:371,mapdisplaycmdset:[100,348],maperror:[368,369],maplegend:105,maplink:[125,369,370],mapnam:[105,363,371],mapnod:[125,369,370],mapp:554,mapparsererror:[368,370],mapper:[369,554,558,572],mapprovid:[124,361],maps_from_modul:371,mapstr:[125,371],mapstructur:369,mapsystem:220,maptransit:368,maptransitionnod:[125,370],mar:67,march:[3,200,560],margin:19,mariadb:221,mark:[0,13,16,17,24,33,34,36,52,53,55,61,62,66,75,76,120,125,128,133,136,143,161,169,179,182,192,202,210,213,215,217,220,233,240,273,286,309,322,345,367,369,370,457,461,532,539,541,545,550,551,554,563],mark_categori:461,markdown:[34,128,209,220],marker:[16,20,24,33,39,55,60,62,97,120,125,126,131,143,163,220,246,247,304,309,321,325,345,369,370,390,461,473,503,511,514,519,520,539,542,544,550,551,552,560,596],market:[149,184,217],markup:[34,60,62,126,163,193,220,224,225,241,266,267,268,406,543,566,567,619],martei:77,marti:77,martiniussen:77,masculin:[111,454],mask:[113,126,334,390,446,447],maskout_protodef:334,mass:[8,147,340],massiv:[130,171,220],master:[91,94,102,119,126,127,128,132,147,168,177,178,183,189,195,203,212,220,394,537],match:[0,3,11,12,13,15,21,22,24,30,33,34,35,36,39,40,42,44,45,46,48,50,52,53,55,62,68,70,71,75,82,83,86,89,95,105,106,111,119,124,125,134,136,138,140,143,145,151,152,157,161,163,168,169,174,175,181,186,187,189,193,194,195,196,205,210,219,220,227,229,232,233,234,235,236,239,241,246,247,248,250,252,255,256,264,267,276,289,321,328,331,334,340,345,361,369,370,372,375,376,390,394,406,416,449,463,464,466,468,469,471,473,477,478,480,483,486,496,497,509,522,532,539,540,541,542,544,549,551,553,554,560,562,564,565,566,567,568,570,596,618],match_index:233,matched_charact:449,matcher:30,matches2:70,matchingtrigg:82,matchobject:[544,566],mate:131,materi:[89,143,321,322],math:181,mathemat:234,matlab:2,matplotlib:524,matric:[125,369],matrix:[125,553],matt:77,matter:[1,5,22,30,34,37,46,47,67,72,89,103,113,125,132,143,147,152,161,168,175,177,178,184,186,187,189,193,197,213,218,234,321,341,370,390,439,472,496,539],matur:[0,12,34,55,72,74,143],maverick:131,max:[20,50,58,77,82,87,96,119,149,151,152,155,161,178,182,204,220,248,369,390,393,394,404,410,411,416,449,466,534,560,567],max_char_limit:220,max_char_limit_warn:220,max_command_r:220,max_connection_r:220,max_damag:339,max_dbref:540,max_depth:567,max_dist:[182,348],max_entri:220,max_heal:339,max_hp:87,max_l:182,max_length:[70,182,194,390],max_lin:553,max_nest:554,max_new_exits_per_room:408,max_nr_charact:[0,84,149,220,227],max_nr_simultaneous_puppet:220,max_nr_simultaneus_puppet:0,max_num_lin:612,max_numb:416,max_pathfinding_length:369,max_popular:612,max_rmem:558,max_siz:[367,369,560],max_slot:[132,410],max_steal:151,max_target:340,max_tim:367,max_unexplored_exit:408,max_us:406,max_valu:[386,607],max_w:182,max_width:182,maxalex:0,maxconn:208,maxdelai:[488,502,503,522],maxdepth:478,maxdiff:[252,323,391,422,591,602],maximum:[58,70,85,96,99,106,111,125,126,149,155,181,186,204,220,227,318,337,338,339,340,341,348,369,386,394,449,473,478,536,544,551,553,554,567],maxiumum:367,maxlengthvalid:[220,227],maxnum:567,maxrotatedfil:560,maxsplit:544,maxstack:[82,375,376],maxthread:536,maxval:[0,161,554,567],maxvalu:554,maxwidth:553,may_use_red_door:44,mayb:[1,15,16,17,21,22,24,30,44,48,70,76,79,83,89,125,128,138,139,141,145,147,149,150,155,163,174,177,178,179,182,184,189,197,209,215,217,235,289,312,322,389,509],mcclain:77,mccormick:77,mccp:[35,206,224,225,487,496,499],mccp_compress:504,mcintyr:77,mcmillan:0,md5:205,meadow:[33,48,76,83,135,185,554],meal:[376,416],mean:[0,7,8,9,11,12,13,15,16,17,18,20,21,22,24,30,33,35,36,37,38,39,42,44,45,46,48,50,54,56,57,60,62,64,68,70,71,73,75,82,83,89,101,102,103,106,111,113,119,123,124,125,126,127,130,131,132,134,135,136,137,138,139,140,141,143,144,146,147,150,151,152,155,157,161,163,168,169,170,171,175,177,178,180,182,184,187,188,191,193,195,196,199,205,212,213,217,218,219,220,222,227,228,229,235,241,248,286,299,304,322,369,372,383,389,394,404,406,408,411,412,413,417,440,468,471,473,477,478,482,486,491,515,531,539,541,544,551,553,554,558,560,563,564,567],meaning:[236,252],meaningless:191,meant:[0,22,34,38,45,50,51,53,54,58,68,76,83,97,119,121,124,126,134,138,139,141,171,174,175,188,209,220,234,264,304,325,337,338,339,340,341,361,390,394,406,417,435,441,463,473,496,545,567],meanwhil:34,measaur:8,measur:[8,149,191,217,220,233,250,369,410,411,412,522,523,567],meat:[132,142,148,158,164,166,194],mech:[176,619],mechan:[0,9,20,21,24,28,30,44,45,50,95,121,126,132,146,147,161,169,177,178,181,186,188,191,196,197,220,227,228,232,305,340,345,390,406,467,478,486,491,495,501,509,520,531,541,549,552,556,562,613,618],mechcmdset:179,mechcommand:179,mechcommandset:179,meck:179,med:67,medan:67,media:[58,77,126,138,220,519,536,563,575,576,577,579,580,581,582,583,607],media_root:220,media_url:220,median:182,mediat:177,mediev:322,medium:[58,149,220],mediumbox:500,meet:[1,5,124,138,146,285,361,535],mele:[87,121,161,341,406],melt:[321,322],mem:[220,251],member:[15,20,52,70,149,189,220,246,247,249,473,567],membership:[136,189],memori:[0,8,22,24,25,34,50,55,57,70,73,75,87,139,143,157,167,171,205,211,217,220,227,251,255,270,271,377,473,485,486,524,534,539,543,552,558,562,567],memoryusag:524,memplot:[224,225,487,521],menac:185,meni:264,mental:[132,188],mention:[2,15,16,17,18,24,34,35,49,56,64,72,73,128,134,136,141,143,147,167,168,179,182,188,189,215,217,235,280],menu:[0,1,2,10,12,22,25,44,46,55,84,96,102,118,122,126,128,129,132,137,146,147,149,158,191,197,201,209,213,220,222,224,225,241,258,263,264,265,300,301,302,305,379,405,406,407,411,417,435,438,449,459,461,474,478,489,491,543,561,619],menu_cmdset:551,menu_data:30,menu_edit:264,menu_kwarg:411,menu_login:[0,107,224,225,258,259,619],menu_modul:551,menu_module_path:551,menu_quit:264,menu_setattr:264,menu_start_nod:435,menu_templ:[30,551],menuchoic:[30,551],menudata:[303,411,417,438,449,475,551],menudebug:[0,30,551],menufil:551,menunod:184,menunode_fieldfil:449,menunode_treeselect:461,menunodename1:30,menunodename2:30,menunodename3:30,menuopt:461,menutest:133,menutre:[30,152,551],mercenari:163,merchandis:149,merchant:[102,118,126,149,176,417,619],merchantcmdset:184,mercuri:72,mere:[99,126,251,375,386],merg:[0,9,13,24,25,30,33,83,101,124,127,128,131,136,139,140,141,149,165,168,174,175,232,233,234,235,361,375,433,441,478,481,515,551],merge_prior:551,merger:[22,106,234,235],mergetyp:[22,30,178,234,433,441,549,551,552],merit:140,mess:[8,15,20,21,59,120,128,217,461],messag:[0,3,8,11,12,13,16,18,20,21,24,28,30,31,33,35,36,38,40,43,45,46,56,63,64,66,67,73,76,78,83,89,96,97,101,102,105,106,115,126,128,129,131,133,134,135,140,141,143,145,147,149,151,161,169,171,172,174,175,176,177,178,179,183,186,191,201,204,207,215,217,219,220,222,227,228,232,235,236,239,241,246,247,248,254,255,256,257,264,284,286,299,304,305,307,312,315,321,323,325,328,334,337,341,363,370,390,394,399,400,406,411,431,433,438,439,440,441,446,449,457,471,473,480,491,493,500,502,503,509,510,511,514,515,517,519,528,530,532,534,536,547,549,551,552,554,560,564,565,567,619],message_rout:53,message_search:256,message_tag:220,message_templ:191,message_transform:255,messagemiddlewar:220,messagepath:[63,619],messagewindow:53,messeng:431,messsag:307,meta:[38,50,138,196,219,220,541,558,575,576,577,579,580,583,587,590,593,607],metaclass:[50,70,236,541],metadata:[38,133,446,493],metavar:299,meter:[0,99,126,386,394],method:[0,1,3,7,11,13,14,15,20,21,22,25,30,33,34,36,40,42,44,46,47,48,49,50,53,55,56,60,64,68,70,71,78,83,84,89,101,102,106,109,110,113,114,115,119,123,125,128,130,131,132,133,135,136,137,140,141,144,145,151,152,155,157,161,163,169,172,173,175,177,178,180,181,182,183,184,186,187,189,190,191,192,194,195,196,197,198,219,220,227,229,230,232,234,235,236,238,241,242,246,248,249,251,252,255,256,257,262,264,265,270,272,273,276,277,283,286,295,299,302,304,307,308,309,312,315,318,321,323,331,334,337,338,339,340,341,342,345,348,354,357,361,363,367,370,372,375,377,379,389,390,391,393,394,400,407,410,411,413,416,422,433,438,439,440,441,445,446,451,454,457,463,464,465,468,469,471,473,480,485,486,488,493,496,497,498,500,501,502,503,504,509,511,514,517,519,520,522,523,527,529,530,531,532,534,539,541,542,544,545,547,549,551,552,553,554,555,558,559,560,561,562,564,565,566,567,577,583,587,588,590,591,593,613,616,618],methodnam:[252,262,265,268,274,277,281,287,296,298,308,313,316,319,323,326,329,332,335,342,346,355,358,360,367,377,381,384,387,391,393,400,420,421,422,423,424,425,426,427,428,436,442,447,452,455,458,460,486,517,527,559,565,572,591,602,608],metric:389,mez:111,michael:77,microsecond:15,microsoft:[106,213],mid:[72,180],middl:[24,111,126,152,172,182,217,338,367,454,544],middleman:208,middlewar:[0,220,224,225,573,597],midnight:[1,101,175],midst:146,midwai:62,mighht:186,might:[1,2,7,9,11,13,17,18,19,21,22,24,30,31,34,36,40,42,45,46,49,56,57,62,64,67,79,82,83,101,102,103,106,111,114,117,122,123,126,130,132,133,134,147,169,171,172,173,175,177,178,181,186,188,190,191,192,193,194,196,197,198,203,205,207,211,212,215,217,218,219,222,235,239,241,299,312,337,357,446,457,473,480,520,541,544,549,561,567,590,607],mighti:[20,106,139,172],migrat:[0,3,4,5,6,8,11,47,70,77,106,126,128,138,189,194,205,210,211,213,216,222,478],mike:241,million:[50,194,205],milton:[93,149,416],mime:[77,256,547],mimic:[0,8,11,15,28,45,130,149,152,177,205,220,257,394,463,530,549],mimick:[0,28,131,177,522,549,552],mimim:542,min:[45,90,96,119,151,152,161,175,182,220,276,393,394,408,449,554,555],min_damag:339,min_dbref:540,min_heal:339,min_height:553,min_length:220,min_shortcut:[83,264],min_valu:607,min_width:553,mind:[16,17,30,56,57,87,99,101,111,126,127,130,140,143,144,147,149,150,152,167,168,188,195,205,209,286,312,386,406,457,493,567],mindex:233,mine:[60,102,149,218,554,571],mini:[42,60,106,130,138,139,141,415],miniatur:146,minim:[8,46,55,77,113,125,147,150,178,218,220,389,478],minimalist:[24,72,169],minimum:[0,46,83,89,96,111,119,126,131,149,169,177,196,220,337,339,340,394,405,406,416,449,496,536,541,553,554,562,567],minimum_create_permiss:588,minimum_list_permiss:588,minimumlengthvalid:220,mininum:553,minlengthvalid:[220,227],minor:[149,216,235,379],mint:[13,208,213],minthread:536,minu:[70,136,473,555],minut:[21,45,50,101,150,171,175,178,186,200,212,220,246,251,276,312,408,534,555,567],minval:[0,161,554,567],mirc:503,mirror:[46,108,125,143,224,225,258,395,619],mirth:105,mis:[163,168],misanthrop:136,miscelan:543,miscellan:[126,137,138],misconfigur:205,miser_factor:411,misfortun:152,mismatch:[35,567],miss:[0,20,55,67,127,133,149,168,176,182,187,213,215,217,321,323,337,338,339,340,341,390,455,477,496,619],missil:[179,340],mission:197,mistak:[0,52,128],mistaken:0,mistakenli:0,misus:217,mit:[200,544],mitig:[168,218,617],mix:[0,11,15,24,30,60,62,67,79,82,119,125,126,129,136,140,155,157,171,173,188,194,227,248,257,304,312,322,369,390,394,415,473,477,478,535,542,545,553,554,567,619],mixabl:304,mixer:304,mixer_flag:304,mixin:[0,11,40,87,132,139,158,170,171,224,225,258,272,395,401,404,418,422,423,424,425,426,477,525,565,573,590,593,606,610,611,612,613,615,618],mixtur:[149,304,554],mkdir:[5,189,213],mktime:175,mmo:121,mmorpg:150,mob0:167,mob:[17,36,46,93,122,130,132,146,147,151,167,224,225,235,241,258,395,411,437,441,442,478,545],mob_data:167,mob_db:167,mob_vnum_1:167,mobcmdset:439,mobdb:167,mobil:[17,44,146,149,204,411,439,468],moboff:439,mobon:439,mock:[132,322,377,485,565],mock_author:452,mock_delai:377,mock_evmenu:423,mock_git:452,mock_join_combat:423,mock_randint:[161,421,422,427],mock_random:400,mock_repeat:252,mock_repo:452,mock_spawn:421,mock_tim:[319,393,527],mock_tutori:252,mockdeferlat:565,mockdelai:565,mocked_idmapp:527,mocked_o:527,mocked_open:527,mocked_randint:384,mockrandom:323,mockval:565,mod:[0,119,207,375,376,377,393,394,477],mod_import:567,mod_import_from_path:567,mod_or_prototyp:477,mod_prototype_list:477,mod_proxi:207,mod_proxy_http:207,mod_proxy_wstunnel:207,mod_sslj:207,mode:[0,7,8,10,14,22,25,27,28,30,35,55,63,75,80,101,104,115,125,134,139,143,144,149,152,178,191,194,197,207,208,212,213,218,220,221,224,240,248,251,252,253,262,328,367,369,372,406,411,433,439,473,491,496,501,508,519,520,529,545,549,551,554,560,567,619],mode_clos:520,mode_init:520,mode_input:520,mode_keepal:520,mode_rec:520,model:[0,3,15,34,36,38,39,45,48,49,50,51,52,60,63,75,88,119,121,126,128,131,136,149,177,189,190,193,196,197,220,224,225,226,227,229,254,255,256,318,394,462,470,473,479,482,486,487,497,538,539,540,542,543,548,556,557,559,563,564,567,575,576,577,579,580,581,582,583,587,590,607,611,612,613,617,618,619],model_inst:563,modeladmin:[577,579,580,581,582,583],modelattributebackend:539,modelbackend:599,modelbas:558,modelchoicefield:[575,580],modelclass:[15,48],modelform:[575,576,577,579,580,581,583,607],modelmultiplechoicefield:[575,577,579,580],modelnam:[220,236,255,463,465,541],modelseri:[196,590],modelviewset:593,moder:[79,113,181,312],modern:[0,15,18,56,72,106,107,126,173,188,200,208,218,220,504],modgen:[82,376],modif:[1,13,24,33,55,68,82,101,102,103,127,186,191,207,212,220,394,537,607],modifi:[0,1,2,12,13,14,15,20,22,24,25,30,33,34,40,44,45,46,50,51,53,54,62,64,75,76,83,84,89,92,94,97,101,102,103,106,107,113,117,119,121,125,126,128,129,130,132,133,134,135,138,140,141,142,143,144,145,146,149,150,152,166,167,168,169,170,174,177,181,183,191,192,196,199,205,212,219,220,222,224,227,235,248,255,258,264,286,299,304,305,307,321,322,325,334,337,338,339,340,341,345,357,373,374,376,377,379,383,390,393,394,415,416,440,441,465,471,473,478,486,539,541,545,551,558,563,566,575,596,607,611,612,613,615,617,618],modul:[0,2,8,9,11,15,16,18,21,22,24,26,28,30,33,34,35,36,40,45,46,47,50,55,64,68,72,75,78,79,83,85,86,87,89,90,91,92,94,96,98,99,101,105,106,107,110,111,113,114,116,117,120,121,123,125,126,127,128,130,132,133,134,137,138,139,140,141,142,144,149,151,152,155,157,158,165,167,168,169,175,179,180,184,191,196,201,203,204,211,219,220,222,232,233,235,236,241,243,244,245,248,250,252,264,267,268,276,279,280,283,284,285,287,291,295,299,302,304,307,309,312,315,318,321,322,323,337,338,339,340,341,345,354,357,363,369,371,375,383,386,389,390,393,394,407,411,416,419,427,428,433,439,440,441,447,449,454,457,461,463,468,469,472,473,476,477,478,482,484,485,486,488,490,491,495,496,500,508,510,511,514,515,518,520,522,523,524,529,531,532,533,539,541,542,543,544,545,546,547,548,549,550,551,552,554,555,565,567,572],modular:0,module1:127,module2:127,module_path:371,module_with_cal:554,modulepath:500,mogilef:77,moifi:345,mold:144,mollit:31,moment:[0,22,34,49,67,75,102,139,152,168,179,186,220,227,369,481],mona_lisa_overdr:145,monei:[70,79,126,147,149,150,189,217,407],monetari:[127,312],mongodb:77,monitor:[0,8,37,71,129,187,482,496,515,558],monitor_handl:[0,37,129,224,482],monitorhandl:[0,25,35,224,225,479,619],monlit:136,mono:1,monster:[34,40,44,131,139,144,147,149,151,161,168,172,241,406,411,416,478],monster_move_around:144,month:[0,77,90,101,126,127,175,208,217,220,276,555,560,567],monthli:[127,175],montorhandl:37,moo:[72,74,130,132,168,200,466,554],mood:[102,119,146,149,150,394],moon:[1,170,175],moonlight:136,moonlit:136,moor:[105,146],moral:[9,132,411,416],morale_check:[161,416],more:[0,1,3,5,7,8,9,11,13,14,15,16,17,18,19,20,21,22,24,25,26,28,30,31,33,34,35,38,39,40,42,45,46,48,49,50,53,55,56,57,59,63,64,65,67,68,70,71,72,73,78,79,80,82,83,84,85,88,92,94,95,99,101,102,103,105,106,109,110,111,113,114,115,117,118,119,120,121,122,124,125,127,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,155,157,161,163,164,165,167,169,170,171,172,174,175,177,178,179,180,181,182,183,186,187,188,189,190,191,193,194,195,196,197,200,202,204,205,208,210,211,212,213,217,218,219,220,222,224,226,227,229,230,233,234,235,240,241,246,247,248,251,252,253,255,256,258,264,269,276,279,280,286,289,291,299,302,304,312,315,318,321,337,338,339,340,341,345,357,361,369,370,371,372,375,386,389,390,394,404,406,407,410,412,413,416,417,424,433,435,439,440,441,454,457,461,464,466,471,473,477,478,480,501,503,506,515,522,523,532,537,539,540,541,544,545,547,548,549,550,551,552,553,554,558,564,565,567,568,580,589,590,607,616],more_command:552,more_funcparser_cal:33,morennanoth:252,morennthird:252,moreov:[45,217],morn:[95,96,345,449],morph_engli:570,morpholog:570,mortal:34,mosso:77,most:[0,1,3,7,8,9,11,12,15,16,19,20,21,22,24,25,26,30,34,35,36,38,40,46,47,49,50,51,52,53,55,56,60,62,64,68,70,71,72,73,74,76,82,83,89,99,101,102,103,106,113,117,119,125,126,127,128,131,132,133,134,135,136,137,138,140,143,144,145,146,149,150,151,152,157,161,167,168,169,172,173,175,177,178,180,181,182,186,188,189,191,194,197,205,212,215,217,218,219,220,227,230,234,235,238,241,249,257,264,309,321,322,337,338,339,340,341,348,357,367,369,370,386,389,390,394,412,417,441,465,466,469,472,473,477,478,481,485,514,519,529,539,540,541,542,551,552,558,559,565,567,612],mostli:[0,30,50,53,55,64,84,101,125,149,161,168,177,186,191,197,217,234,253,339,361,370,379,383,389,511,575],motiv:[16,17,40,130,132,147,148,406,502,503,509,510,511,514,519,520,531,532],mount:212,mountain:[72,105,106],mous:[53,61,220,551],mouth:363,movabl:304,move:[0,3,13,17,18,20,24,28,30,31,40,79,82,83,96,101,102,103,106,119,122,124,125,126,132,138,139,142,143,144,146,147,149,152,158,169,172,174,176,178,179,182,184,186,188,189,194,195,196,197,200,205,209,216,235,241,247,264,285,304,305,307,312,315,337,340,341,343,357,361,363,370,394,404,406,408,410,424,439,440,441,449,464,468,473,523,541,545,552,619],move_around:[139,144],move_callback:251,move_delai:251,move_hook:473,move_obj:361,move_posit:304,move_to:[0,40,103,140,155,180,184,357,441,473],move_typ:[0,180,184,305,361,404,441,473],movecommand:174,moved_obj:[305,361,404,441,473],moved_object:[155,404,473],movement:[0,44,117,121,125,126,155,169,180,251,337,341,357,369,370,441,473],movementfailcmdset:174,mover:341,mptt:192,mratio:[233,250],msdp:[0,68,496,515],msdp_list:[0,496],msdp_report:[0,496],msdp_send:496,msdp_unreport:[0,496],msdp_var:515,msg:[0,1,7,11,14,15,16,20,21,24,25,28,30,31,36,37,40,42,46,53,56,64,70,71,74,83,87,88,89,97,99,101,102,103,104,105,106,108,123,126,128,129,139,140,141,143,144,145,151,152,157,161,167,169,170,171,172,173,174,175,177,178,180,183,184,186,191,204,220,224,227,228,229,236,238,241,242,246,255,256,257,299,304,307,318,321,325,328,369,370,371,372,386,390,394,406,413,431,433,446,469,473,502,503,530,545,547,549,551,552,560,565,567,576,577,583,619],msg_all:178,msg_all_sess:[24,236],msg_arriv:[101,103],msg_channel:246,msg_char:304,msg_cinemat:309,msg_content:[0,21,24,33,40,45,60,82,101,102,103,151,175,179,180,190,191,375,473],msg_db_tag:577,msg_help:248,msg_leav:[101,103],msg_locat:473,msg_other:312,msg_receiv:473,msg_room:304,msg_self:473,msg_set:542,msg_sitting_down:140,msg_system:304,msg_type:390,msgadmin:577,msgform:577,msglauncher2port:[491,500],msgmanag:[256,257],msgobj:255,msgportal2serv:500,msgserver2port:500,msgstatu:[491,500],msgtaginlin:577,mssp:[138,219,220,224,225,487,499],mssp_meta_modul:220,mtt:518,much:[0,1,2,3,7,8,15,16,17,18,30,34,36,40,45,49,50,55,56,60,67,73,82,83,89,101,103,106,111,113,119,120,125,131,132,133,134,136,139,141,143,144,146,149,150,155,161,167,170,175,177,178,180,181,182,184,186,190,194,195,197,198,205,213,216,217,220,230,235,240,249,264,276,318,341,369,375,383,389,390,394,405,411,412,416,420,433,440,461,531,539,542,544,545,546,553,567,585,596],muck:[132,168],mud:[0,9,12,18,35,36,39,43,46,49,53,60,62,64,71,72,75,76,83,93,94,101,106,121,126,130,131,134,138,143,146,147,150,152,167,173,176,177,178,182,186,188,190,200,202,203,205,206,207,210,212,213,215,217,219,220,222,230,235,238,341,406,410,412,416,438,488,504,505,506,511,514,515,518,545,555],mudbyt:200,mudconnector:[200,253],muddev:[189,213,215],mudinfo:[0,133,220,253],mudlab:200,mudlet:[0,206,506],mudmast:206,mudprog:[101,126],mudramm:206,mudstat:253,muhammad:566,muircheartach:[111,454],mukluk:206,mult:[33,44,82,375,393,394,554],multi:[0,22,30,46,56,83,120,122,126,127,128,130,132,135,139,140,142,145,146,147,191,200,212,219,220,233,251,265,304,322,367,369,370,390,411,461,466,473,532,551,567,615],multiaccount_mod:9,multidesc:[224,225,258,310,619],multilin:566,multilink:[125,370],multimatch:[0,22,145,220,233,390,473,554,567],multimatch_str:[227,390,473,567],multimedia:[0,53,77],multipl:[0,11,17,20,21,22,24,33,34,37,40,44,46,47,49,50,52,57,64,71,72,83,86,87,89,94,101,105,109,111,120,121,125,126,131,132,136,138,139,143,146,147,151,152,157,169,171,173,175,177,191,205,210,217,219,220,227,232,234,239,240,241,246,248,250,251,267,269,271,274,280,287,295,321,325,331,337,339,340,345,369,370,375,376,377,383,386,390,393,407,410,413,431,441,461,469,471,473,477,478,486,489,493,496,500,515,523,539,540,545,551,553,554,564,565,567,576,583,608],multiplay:[0,20,94,126,130,132,148,149,150,168,200],multiple_tag:274,multipleobjectsreturn:[227,228,230,255,257,274,276,286,304,305,306,312,315,325,334,337,338,339,340,341,345,354,357,361,367,371,372,377,379,389,390,393,399,404,406,408,411,412,415,431,433,435,439,440,441,457,465,472,473,477,481,484,498,524,539,542,555,559],multipli:[33,82,143,348,394],multisess:[25,63,197,220,406,551,619],multisession_mod:[0,14,24,30,46,52,131,149,191,194,197,206,220,227,238,242,325,473,532],multitud:[106,168],multivers:619,multumatch:473,mundan:[146,179],murri:567,muse:200,mush:[5,72,86,109,126,130,132,176,177,178,189,200,267,331,619],mushclient:[35,206,496,506],musher:200,mushman:72,mushpark:217,music:54,musket:136,musoapbox:[168,200],must:[0,1,2,8,9,11,12,13,14,15,18,22,24,28,30,33,34,35,36,37,38,39,40,42,44,45,48,49,50,51,52,53,54,55,56,60,61,64,67,68,73,75,76,78,79,82,86,87,88,98,101,103,111,112,113,115,119,125,126,127,128,131,132,133,135,138,139,140,141,143,144,145,147,150,151,152,155,157,161,163,167,169,172,175,178,182,184,187,191,193,194,196,201,202,204,206,207,208,212,213,215,217,218,219,220,222,228,233,234,236,241,246,252,255,256,257,267,270,276,279,280,291,304,307,312,315,318,321,334,337,338,339,340,341,348,369,370,372,375,376,389,390,394,406,408,409,410,411,413,416,433,438,440,441,446,454,461,463,465,466,468,473,476,477,480,482,486,491,496,509,511,514,531,533,534,539,540,541,542,544,545,546,547,548,549,550,551,552,554,555,561,562,563,564,565,567,568,570,576,583,590,598,615,616],must_be_default:235,mustn:125,mutabl:[0,3,82,375,548],mute:[19,20,110,227,246,255,295],mute_channel:246,mutelist:[20,255],mutual:[433,540,564],mux2:[74,253],mux:[24,63,72,86,110,126,130,132,134,169,179,218,231,249,267,294,295,296,619],mux_color_ansi_extra_map:[86,267],mux_color_ansi_xterm256_bright_bg_extra_map:86,mux_color_xterm256_extra_bg:[86,267],mux_color_xterm256_extra_fg:[86,267],mux_color_xterm256_extra_gbg:[86,267],mux_color_xterm256_extra_gfg:[86,267],mux_comms_cmd:[110,224,225,258,259,619],muxaccountcommand:[249,328,379],muxaccountlookcommand:238,muxcommand:[0,1,24,129,133,169,171,172,173,174,191,220,224,225,231,237,238,239,240,241,246,247,248,250,251,253,280,284,302,315,328,331,334,339,340,345,348,354,363,379,383,435,441,451,473,549],mvattr:[27,133,241],mxp:[0,35,61,206,220,224,225,248,487,496,499,511,514,544,551,566,567],mxp_enabl:[0,220],mxp_outgoing_onli:[0,220],mxp_pars:506,mxp_re:544,mxp_sub:544,mxp_url_r:544,mxp_url_sub:544,my_callback:533,my_component_respons:274,my_datastor:70,my_dict:274,my_func:144,my_github_password:13,my_github_usernam:13,my_identsystem:39,my_int:274,my_list:274,my_other_respons:274,my_other_sign:274,my_port:64,my_portal_plugin:64,my_respons:274,my_script:45,my_server_plugin:64,my_servic:64,my_sign:274,my_view:196,my_word_fil:[113,389],myaccount:[48,135],myaccountnam:145,myapp:70,myarx:189,myattr:[15,227],mybool:15,mybot:246,mycar2:39,mychair:48,mychan:20,mychannel1:246,mychannel2:246,mychannel:[20,57,246],mychargen:30,mycmd:[0,24,34,491],mycmdget:141,mycmdset:[22,24,133,141],mycommand1:22,mycommand2:22,mycommand3:22,mycommand:[11,22,24,34,68,133,141,173,565],mycommandtest:565,mycompon:53,myconf:5,mycontrib:11,mycontribnam:127,mycss:53,mycssdiv:53,mycustom_protocol:64,mycustomchannelcmd:20,mycustomcli:64,mycustomview:75,mydata:15,mydatastor:70,mydbobj:15,mydefault:33,mydhaccount:212,mydhaccountt:212,mydhacct:212,mydict:15,myevennia:202,myevilcmdset:[22,234],myevmenu:30,myfix:13,myformclass:55,myfunc:[11,30,33,49,56,567],myfuncparser_cal:33,myfunct:11,mygam:[0,1,2,7,8,10,11,12,13,14,15,16,17,20,21,22,26,30,35,36,40,44,45,50,51,52,53,55,64,67,70,75,77,79,83,84,85,86,89,91,94,95,97,98,100,104,105,106,107,109,110,113,116,117,119,124,125,126,128,129,132,133,135,137,138,139,140,141,143,144,151,152,155,157,161,163,165,167,168,169,170,171,173,174,175,177,178,179,180,182,183,184,185,187,189,191,193,194,195,196,197,198,201,204,205,208,209,210,211,212,213,215,216,217,219,220,222,224,258,264,267,295,322,328,331,343,345,348,354,356,364,366,383,389,390,394,407,451,516,565,567],mygamedir:128,mygrapevin:246,mygreatgam:55,myguild:135,myhandl:47,myhousetypeclass:241,myinstanc:70,myircchan:246,mykwarg:30,mylayout:53,mylink:128,mylist1:15,mylist2:15,mylist:[9,15,136,541],mylog:21,mymap:[105,125],mymenu:30,mymethod:167,mymodul:49,mymud:[10,207],mymudgam:[217,220],mynam:[149,212,214],mynestedlist:548,mynod:30,mynoinputcommand:24,mynpc:191,myobj1:48,myobj2:48,myobj:[15,21,36,45,241,486],myobject:[15,187],myobjectcommand:1,myothercmdset:22,myownclass2:139,myownclass:139,myownfactori:64,myownprototyp:44,mypassw:280,mypassword:51,myperm:542,myplugin:53,mypobj:15,myproc:64,myproc_en:64,myprotfunc:44,mypwd:214,myquest:413,myrecip:89,myreserv:33,myroom:[45,48,136,167,241],myros:40,myscript2:135,myscript:[45,48,50,135],myself:[15,60,150,554,571,572],myserv:280,myservic:64,mysess:46,mysql:[5,12,131,220,221,567],mysqlclient:205,myst:619,mysteri:[34,39,149,211],myston:145,mystr:15,mytag2:542,mytag:[48,53,542],mytestobject:11,mytestview:55,mythic:146,mytick:486,mytickerhandl:486,mytickerpool:486,mytrait:[119,394],mytupl:15,myusernam:51,myvar:24,myview:75,myxyzroom:125,n_objects_in_cach:220,naccount:532,nail:[89,321],naiv:[111,236,255,346,361,463,465,541],nake:24,name1:241,name2:241,name:[0,1,3,5,6,7,8,10,11,12,13,14,15,16,17,18,20,22,24,27,30,31,33,34,35,36,37,39,40,42,44,45,46,47,48,50,51,52,53,55,56,59,60,64,65,68,70,71,73,75,76,77,78,82,83,87,89,90,94,96,101,102,103,106,107,113,114,119,120,124,125,126,128,131,132,133,134,135,136,137,138,140,141,143,144,145,146,147,151,155,157,158,161,163,165,167,168,169,172,174,175,178,180,182,184,185,186,188,189,190,191,192,193,194,195,196,197,201,202,204,205,206,208,209,211,212,217,218,219,220,222,224,227,228,229,230,232,233,234,235,236,238,239,241,246,247,248,249,250,251,252,253,255,256,257,264,270,271,272,273,274,276,280,283,285,286,289,295,299,302,304,305,307,309,315,318,321,322,334,339,340,348,354,360,361,363,369,370,371,372,375,376,377,379,389,390,393,394,405,407,411,413,417,439,441,449,454,455,457,461,463,464,465,466,471,472,473,477,478,480,481,482,484,486,491,494,496,497,498,500,501,503,508,511,514,515,518,519,520,523,532,534,536,539,540,541,542,544,545,546,547,549,550,551,552,554,558,559,560,561,563,564,565,567,568,570,571,576,583,587,591,592,593,598,599,607,612,613,618,619],name_gener:[0,111,224,225,258,443,619],namechang:187,namecolor:461,namedtupl:283,nameerror:[7,143],namegen:[111,224,225,258,443,453],namegen_fantasy_rul:[111,454],namegen_first_nam:[111,454],namegen_last_nam:[111,454],namegen_replace_list:[111,454],namelist:328,namesak:9,namespac:[50,53,82,197,286,299,478,534,545,560,584],namn:67,napoleon:128,narg:299,narr:341,narrow:[51,125,140,141,182,186],nativ:[7,45,51,53,60,71,77,78,128,136,149,213,445,534,536,618],natrribut:171,nattempt:30,nattribut:[0,25,30,50,171,178,241,270,471,478,530,539,541,547,551],nattributehandl:[0,539],nattributeproperti:[0,15,271,539],natur:[15,18,20,21,48,71,130,149,161,200,228,375,553],natural_height:553,natural_kei:[220,539],natural_width:553,navbar:[0,55],navig:[10,12,30,106,125,128,137,182,189,194,195,341,615],naw:[31,206,224,225,487,499],ncar:198,nchar:198,nclient:522,ncolumn:553,ncurs:224,ndb:[0,1,15,16,24,30,45,46,50,83,87,100,124,171,172,178,184,227,230,251,348,361,472,481,530,541,551],ndb_:[241,478],ndb_del:530,ndb_field_nam:270,ndb_get:530,ndb_set:530,ndbfield:[87,271],ndk:211,nearbi:[125,149,234,235,236,341],nearli:[121,138,140,544],neat:[103,165,607],neatli:[72,196,567],necess:64,necessari:[5,13,50,62,64,72,83,84,89,101,103,105,125,137,138,147,168,169,180,181,183,186,187,196,205,220,222,235,236,257,286,299,304,370,441,446,477,478,520,545,551,553,554,561,563,567,576,583],necessarili:[44,71,125,126,146,163,168,217,220,567],necessit:533,neck:[15,44,85,315],neck_armor:15,neck_cloth:15,necklac:[85,315],need:[0,1,2,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,24,26,28,30,33,34,35,36,37,39,40,44,45,46,48,49,50,52,53,54,55,56,59,60,62,64,65,67,68,70,71,73,75,76,77,78,79,80,82,83,84,87,88,89,90,92,94,95,97,98,101,102,105,106,111,113,119,120,123,124,125,126,127,128,131,133,134,135,136,137,138,139,140,142,143,144,145,146,147,150,151,152,155,157,161,163,164,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,200,201,202,203,204,205,207,208,209,210,211,212,213,215,216,217,218,219,220,222,227,228,229,230,234,236,238,241,246,247,249,255,264,272,280,284,285,286,287,299,304,305,307,309,312,318,321,322,325,334,337,338,340,345,361,363,369,370,371,375,379,389,390,394,404,406,407,408,410,411,412,413,416,433,439,440,441,451,457,461,463,469,472,473,477,478,480,491,493,496,500,508,515,520,522,530,531,532,536,539,541,542,544,545,547,550,551,552,553,554,555,561,562,564,565,567,570,576,578,583,585,612,616,619],need_gamedir:491,needl:334,needless:139,neg:[175,188,220,234,410,549,567],negat:[62,136,406,469,570],negoti:[79,312,505,507,509,518,532],negotiate_s:507,neighbor:[149,181,370],neither:[0,9,15,30,177,209,222,248,383,477,515,539,542,551,568],nelson:77,nenter:30,neophyt:[119,394],neph:111,nerror:67,nest:[0,9,15,17,24,30,33,34,82,111,113,120,145,216,220,227,241,375,390,461,468,473,478,515,548,554],nested_r:241,nestl:106,neswmaplink:[125,370],net:[149,168,200,202,217,228,246,253,504,505,515,518,532],netrc:13,network:[0,64,73,129,130,131,150,200,201,202,204,205,217,218,220,228,246,502,503,508,529,532],neu:264,neural:149,neutral:[33,60,97,152,163,325,406,409,554,571,572],never:[2,3,13,15,17,21,22,24,30,33,38,42,44,49,50,57,70,71,82,94,101,113,119,125,131,138,139,140,143,144,145,147,149,151,155,167,171,175,180,183,186,194,196,208,209,219,220,227,251,285,321,340,341,364,389,390,394,406,439,469,473,530,539,548,567],nevertheless:[2,30,70,151,188,238,264],new_account:135,new_alias:[236,471],new_arriv:441,new_attrobj:539,new_channel:[135,169,246],new_charact:[152,411,439,473],new_coordin:361,new_create_dict:304,new_datastor:70,new_destin:471,new_hom:471,new_kei:[47,236,471,473,480],new_list:155,new_loc:[241,471],new_lock:[471,480],new_menu:264,new_nam:[47,241],new_name2:241,new_natural_kei:220,new_obj:[36,307,309,473,478,480],new_obj_lockstr:241,new_object:[44,478],new_permiss:471,new_po:304,new_posit:304,new_progress:305,new_raw_str:233,new_room:408,new_room_lockstr:241,new_ros:40,new_scor:305,new_script:[45,135],new_typeclass:[227,541],new_typeclass_path:50,new_valu:[37,539],new_word:567,newbi:[1,130],newcom:[24,149,163],newer:189,newindex:461,newli:[13,51,65,102,111,123,136,143,169,185,194,229,241,255,256,264,299,307,309,321,328,369,372,457,464,471,473,478,483,484,547],newlin:[0,24,53,248,545,553],newnam:[24,241,541],newpassword:239,newstr:53,nexist:83,nexit:[11,198],next:[0,1,2,5,7,10,16,17,22,24,28,30,31,33,34,36,42,45,51,52,53,54,55,56,57,60,67,68,70,83,89,94,101,102,103,105,106,109,120,125,128,131,132,133,134,135,137,138,139,140,141,143,144,145,146,147,149,150,152,155,157,161,167,169,171,172,173,175,177,178,179,180,181,182,183,184,189,191,192,194,195,200,201,202,203,205,208,211,212,213,217,218,220,221,222,264,276,304,307,331,337,338,339,340,341,370,406,407,408,411,440,461,469,491,545,551,552,555,567,615],next_menu_nod:406,next_nod:30,next_node_nam:30,next_stat:[304,307],next_turn:[337,339],nextnod:551,nextnodenam:551,nfe:0,nfkc:227,ng2:553,nginx:[207,218,220],nice:[21,34,55,57,76,79,83,85,89,103,106,113,122,125,139,141,147,157,163,169,175,182,209,210,212,217,312,315,390,477],nicer:[134,143],niceti:241,nick:[0,14,15,20,25,27,35,40,74,113,133,168,200,220,227,228,241,246,247,255,390,472,473,503,539,540,590,619],nick_typ:39,nickhandl:[15,39,255,539],nicklist:[228,246,503],nicknam:[13,27,39,40,74,113,247,390,472,473,503,539,540],nickreplac:539,nickshandl:590,nicktemplateinvalid:539,nicktyp:[390,473],nifti:[141,207],night:[33,95,132,147,161,169,190,208,345,416],nine:[65,220],nineti:568,nit:175,nline:560,nmisslyckad:67,nnode:370,no_act:551,no_channel:[22,24,234,551],no_db:[477,478],no_default:[50,227,541],no_exit:[22,24,178,234,433,438,551],no_gmcp:515,no_log:235,no_match:264,no_mccp:504,no_more_weapons_msg:440,no_msdp:515,no_mssp:505,no_mxp:506,no_naw:507,no_obj:[22,234,433,438,551],no_of_subscrib:577,no_prefix:[227,236,238,239,240,241,246,247,248,249,250,251,252,253,255,264,280,284,295,298,299,302,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,363,375,379,383,390,407,433,435,439,440,441,449,451,461,473,522,549,551,552],no_superuser_bypass:[227,255,469,473,541],no_tel:36,noansi:565,nobj:198,nobodi:220,nocaptcha:194,nocaptcha_recaptcha:194,nocolor:[496,511,514,519,520],nodaemon:10,node1:[30,551],node2:[30,551],node3:[30,551],node4:30,node5:30,node:[0,16,25,44,84,120,132,158,184,303,364,367,369,370,371,372,405,406,411,417,438,449,461,475,489,551],node_:152,node_abort:30,node_apply_charact:[152,405],node_apply_diff:475,node_attack:30,node_background:30,node_betrayal_background:30,node_border_char:[303,551],node_cal:411,node_change_nam:[152,405],node_chargen:[152,405],node_confirm_bui:417,node_confirm_register_act:406,node_confirm_sel:417,node_create_room:303,node_destin:475,node_end:[30,407],node_examine_ent:475,node_exit:30,node_formatt:[30,303,449,551],node_four:30,node_g:407,node_game_index_field:489,node_game_index_start:489,node_guard:30,node_hom:475,node_index:[364,367,370,475,551],node_inspect_and_bui:184,node_join_room:303,node_kei:475,node_loc:475,node_login:30,node_mssp_start:489,node_mylist:30,node_on:30,node_opt:303,node_or_link:[368,370],node_parse_input:30,node_password:30,node_prototype_desc:475,node_prototype_kei:475,node_prototype_sav:475,node_prototype_spawn:475,node_quest:30,node_quit:303,node_readus:30,node_rec:407,node_select:30,node_select_act:406,node_select_enemy_target:406,node_select_friendly_target:406,node_select_use_item_from_inventori:406,node_select_wield_from_inventori:406,node_set_desc:303,node_set_nam:30,node_shopfront:184,node_start:[411,489],node_start_:[411,417],node_start_sell_item:417,node_swap_:[152,405],node_test:30,node_usernam:30,node_validate_prototyp:475,node_view_and_apply_set:489,node_view_sheet:30,node_violent_background:30,node_wait_start:406,node_wait_turn:406,node_with_other_nam:551,nodebox:570,nodefunc:551,nodekei:551,nodenam:[30,411],nodename_or_cal:551,nodetext:[30,303,449,475,551],nodetext_formatt:[30,303,449,475,551],noecho:[143,251],noerror:473,nofound_str:[227,390,473,567],nogoahead:513,nohom:[471,547],noid:390,nois:[140,179],noisi:[217,488,493,501,511,514,522,536],noloc:241,nomarkup:35,nomatch:[83,250,264,549,567],nomatch_exit:83,nomatch_single_exit:83,nomigr:11,nomin:613,non:[0,3,13,17,18,20,21,22,24,28,31,33,34,35,42,44,45,46,50,53,55,70,71,76,83,89,116,119,125,126,128,130,131,132,134,136,139,141,145,147,149,151,155,158,161,169,172,174,175,176,182,185,188,196,201,215,220,221,222,227,228,229,230,232,234,246,251,253,255,257,270,286,307,322,348,354,363,372,383,394,411,415,435,440,457,461,463,464,468,471,472,473,476,477,478,481,482,484,486,491,500,514,515,529,530,532,539,541,544,547,548,549,551,552,553,554,564,567,590,593,619],nonc:519,noncombat_spel:340,nondatabas:[530,541],none:[0,1,7,8,14,15,16,17,18,20,22,24,28,30,33,35,36,37,39,44,45,46,48,51,56,60,64,68,70,71,82,83,85,87,89,101,103,105,106,111,119,125,131,133,135,136,139,140,141,145,151,152,155,161,163,167,169,171,173,175,178,180,181,182,183,186,187,191,196,197,220,227,228,229,232,233,234,235,236,238,241,242,243,244,245,246,247,248,249,252,255,256,257,262,264,265,270,271,272,273,274,283,285,286,289,295,299,302,303,304,305,307,309,312,315,321,323,325,334,337,338,339,340,341,345,348,354,357,361,363,364,367,368,369,370,371,372,375,376,379,383,389,390,391,394,404,405,406,407,408,410,411,413,416,417,422,425,429,431,433,435,438,439,440,441,449,451,454,457,461,463,464,466,468,469,471,472,473,475,477,478,480,482,483,485,486,488,489,491,493,495,497,500,501,502,503,510,511,519,520,522,530,531,532,534,535,536,539,540,541,542,544,545,546,547,548,549,550,551,552,553,554,555,558,560,562,563,564,565,567,568,571,572,575,576,577,579,580,581,583,585,587,591,593,599,602,607,612,615,618],nonexistentrecip:321,nonpc:191,nonsens:[0,152,389],noon:[36,67,101,134,177,415],nop:514,nopkeepal:[206,514],noqa:220,nor:[0,7,10,15,16,22,67,72,92,122,125,126,139,149,158,178,188,207,209,280,299,383,473,477,515,539,542],norecapcha:194,norecaptcha_secret_kei:194,norecaptcha_site_kei:194,norecaptchafield:194,normal:[0,1,8,9,11,12,13,14,15,16,17,18,20,21,22,24,30,33,34,35,36,38,39,40,42,44,46,48,50,52,53,55,56,59,62,65,67,68,70,71,73,75,76,77,79,80,82,90,95,102,106,115,116,119,122,123,125,126,127,128,130,131,133,134,135,136,139,140,141,143,144,146,149,157,161,165,167,168,169,170,172,173,174,175,178,179,180,182,183,187,188,189,191,195,197,202,205,211,212,216,217,219,220,222,227,228,230,232,233,234,235,236,238,241,248,251,255,262,268,276,299,304,312,321,337,338,339,340,361,367,369,370,372,375,383,394,404,407,411,412,416,417,433,439,441,463,468,472,473,475,478,486,491,500,503,504,505,507,509,523,530,532,538,539,540,541,544,545,548,551,552,558,564,565,567,573,590],normal_turn_end:178,normalize_nam:[0,473],normalize_usernam:[0,227],north:[40,61,80,83,101,102,103,105,106,117,125,134,140,172,174,180,182,185,241,264,348,357,363,369,370,371,408,523],north_room:105,north_south:106,northeast:[125,134,241,361,370],northern:[83,106],northwest:[125,241,369,370,371],nose:539,nosql:78,not_clear:408,not_don:536,not_error:491,not_found:[15,241],notabl:[0,8,13,20,56,64,189,215,218,236,241,252,312,375,407,417,495,541,544,548,567],notat:[9,55,241,544,567],notdatabas:50,note:[1,2,3,6,7,8,10,12,13,14,15,16,20,21,25,27,33,35,36,40,42,44,45,46,47,49,50,55,57,59,60,61,62,63,67,68,70,71,73,75,77,78,82,85,86,87,89,93,94,95,101,103,110,111,113,115,116,119,120,123,125,126,127,131,132,133,134,135,136,139,140,141,143,144,145,146,147,149,151,152,157,161,163,168,169,172,175,177,178,179,180,182,184,187,188,189,191,192,193,194,195,197,205,206,211,212,217,218,220,222,224,225,227,228,229,233,234,235,236,238,241,242,243,246,247,248,249,251,252,253,255,256,258,267,268,276,280,285,286,289,299,304,309,312,315,321,322,325,331,334,337,338,339,340,341,343,345,354,356,361,363,369,370,371,372,383,389,390,394,404,406,408,410,411,412,416,433,441,457,461,463,464,468,469,471,472,473,477,478,480,486,488,491,496,500,501,503,504,508,509,510,511,514,515,516,518,519,522,524,525,530,532,536,537,539,540,541,542,544,545,546,547,548,549,550,551,552,553,554,555,558,560,562,563,564,565,567,575,576,588,590,593,596,615],notepad:[132,215],noteworthi:128,notfound:567,notgm:169,noth:[7,15,17,21,24,33,40,49,56,68,72,82,83,101,103,105,106,125,127,133,134,139,140,143,145,149,157,167,168,175,178,184,227,241,250,337,341,361,370,406,439,461,473,484,503,539,541,551],nother:198,notic:[5,7,13,16,24,56,57,83,101,102,103,125,134,138,139,140,149,161,175,180,181,186,188,196,197,205,220,264,376,399,504,614],notif:[53,192,211,220,328],notifi:[101,145,203,295,321,337,341,441,477],notification_popup:220,notification_sound:220,notificationsconfig:192,notimplementederror:514,notion:[49,89,157,158,175,178,394],noun:[0,60,113,389,390],noun_postfix:[113,389],noun_prefix:389,noun_transl:[113,389],nov:[3,143],novemb:0,now:[0,1,2,5,9,10,12,13,14,15,17,20,21,22,24,30,33,36,38,40,41,44,45,46,49,50,51,53,54,55,56,57,60,62,70,72,75,76,79,82,83,89,90,94,96,101,102,103,106,115,119,120,124,125,126,130,131,132,133,134,136,137,138,139,140,141,143,144,145,146,147,149,150,151,152,155,161,164,165,167,168,169,170,171,172,175,177,179,180,181,182,183,184,185,186,187,188,189,191,193,194,195,196,197,200,201,202,203,204,205,208,210,211,212,213,215,216,217,218,222,235,246,248,276,286,312,323,361,365,394,406,433,449,461,469,473,503,511,532,563,565,567],nowher:[106,143,149,370],noxterm256:514,npc:[15,24,30,42,93,101,102,106,111,126,131,132,147,151,158,176,177,189,224,225,258,312,395,401,406,407,416,417,434,435,436,468,619],npc_name:111,npc_obj:111,npcmerchant:184,npcname:183,nr_start:483,nroom:[83,198],nroom_desc:11,nrow:553,nsmaplink:[125,369,370],nsonewaymaplink:[125,370],ntf:215,nthe:433,nudg:[115,199,433,536],nulla:31,num:[33,36,111,155,182,390,454,455,473],num_lines_to_append:560,num_object:136,num_objects__gt:136,num_tag:136,num_total_account:229,number:[0,2,5,8,9,11,15,16,21,22,24,28,30,33,38,39,45,46,47,48,49,50,51,55,56,57,75,76,77,82,84,85,90,91,94,96,99,101,103,105,106,111,113,114,120,124,125,126,128,131,133,136,139,140,141,143,144,145,146,149,152,155,157,161,163,168,169,172,175,177,178,179,182,184,191,195,198,203,204,205,208,212,217,219,220,224,227,228,229,233,234,235,239,241,246,247,248,256,257,276,283,285,286,289,304,315,318,321,337,339,340,363,367,369,370,372,375,377,379,383,386,389,390,407,416,449,454,457,461,471,473,477,478,480,483,489,491,496,502,503,505,509,522,523,532,534,536,539,540,542,544,545,547,549,551,552,553,554,555,558,560,564,567,570,577,592,593,607],number_of_dummi:491,numberfilt:587,numer:[9,99,119,132,147,177,369,386,393,394,544],numericpasswordvalid:220,numpi:524,oak:322,oakbarkrecip:322,oakwood:322,oauth:220,obelisk:[146,440],obfusc:[389,390],obfuscate_languag:[113,389,390],obfuscate_whisp:[113,389,390],obj1:[9,11,15,33,42,44,145,241,302,321,334,341],obj1_search:302,obj2:[9,11,15,33,42,44,145,241,302,321,334,341,545],obj2_search:302,obj3:[15,145,241,321],obj4:[15,145],obj5:15,obj:[0,1,7,11,14,15,21,22,24,33,36,37,39,40,44,45,48,49,50,56,60,70,83,101,119,133,135,136,140,141,143,145,155,157,161,163,167,169,170,180,184,186,187,196,220,227,234,235,236,239,241,247,249,251,252,256,257,262,264,265,273,283,285,286,289,302,304,307,315,318,321,325,328,334,337,338,339,340,341,345,361,375,390,394,408,410,413,417,429,431,433,440,441,449,461,468,469,471,472,473,478,480,481,482,483,520,522,523,530,539,540,541,542,545,547,548,552,554,562,563,564,565,567,575,576,577,580,581,583,588,590],obj_desc:340,obj_detail:441,obj_kei:340,obj_nam:83,obj_or_slot:410,obj_prototyp:478,obj_to_chang:50,obj_typ:[157,412,417],obj_typeclass:340,objattr:[440,468],objclass:[558,567],object1:24,object2:[24,312,473],object:[0,2,3,5,7,8,11,14,16,17,18,20,22,24,25,27,28,30,31,33,34,35,37,38,39,42,44,47,49,50,51,53,54,56,57,59,63,64,68,70,71,72,74,75,76,78,79,80,82,83,87,88,89,94,95,96,97,101,102,103,105,108,112,113,114,115,118,119,121,122,124,125,126,128,129,130,132,133,137,138,140,142,146,148,151,152,155,158,161,163,167,168,169,171,172,173,174,175,176,177,178,179,181,182,184,186,189,190,191,194,195,196,197,198,200,205,218,219,220,222,224,225,226,227,228,229,230,232,233,234,235,236,238,239,240,241,242,243,246,247,248,249,251,252,253,255,256,257,258,264,265,269,270,271,272,273,274,280,283,284,285,286,287,289,295,299,300,301,302,303,305,307,309,312,315,318,321,322,325,328,334,337,338,339,340,341,345,348,354,357,361,363,367,369,370,371,372,375,376,377,379,390,393,394,395,399,401,404,405,406,407,408,409,410,411,413,415,416,417,419,429,430,431,432,433,435,437,439,441,445,446,447,449,457,461,463,464,465,468,469,475,476,477,478,479,480,481,482,483,484,485,486,489,491,493,495,496,497,498,500,501,504,505,506,507,508,509,510,511,513,515,518,520,522,523,529,530,531,532,534,535,536,539,540,541,542,544,545,546,547,548,549,550,551,552,553,554,558,559,560,561,562,563,564,565,566,567,568,571,573,574,575,576,577,579,581,583,587,588,590,592,593,598,599,601,606,607,608,610,611,612,613,615,616,617,619],object_confirm_delet:618,object_detail:[613,618],object_from_modul:567,object_id:[195,580],object_or_list_of_object:60,object_search:[195,471],object_subscription_set:472,object_tot:[229,471,480,540],object_typ:241,object_typeclass:[565,608],objectadmin:[52,580],objectattributeinlin:580,objectcr:607,objectcreateform:[575,580],objectcreateview:[613,618],objectdb:[0,15,48,50,52,129,194,198,224,471,472,473,478,538,539,547,552,564,575,576,580,583,587,592],objectdb_db_attribut:580,objectdb_db_tag:[576,580,583],objectdb_set:[230,539,542],objectdbfilterset:[587,593],objectdbmanag:[471,472],objectdbseri:[590,593],objectdbviewset:[196,592,593],objectdeleteview:[613,618],objectdetailview:[612,613,618],objectdoesnotexist:[230,257,465,472,481,498,539,542,559],objecteditform:580,objectform:607,objectlistseri:[590,593],objectmanag:[372,471,473,540],objectnam:169,objectpar:[0,40,139,144,170,185],objectpuppetinlin:575,objects_objectdb:70,objectsessionhandl:[14,473],objecttaginlin:580,objectupd:607,objectupdateview:[613,618],objet:170,objid:36,objlist:[33,44,554],objlocattr:[440,468],objloctag:468,objmanip:241,objmanipcommand:241,objnam:[21,50,241],objparam:478,objs2:48,objsparam:478,objtag:468,objtyp:[157,256,409,412],obnoxi:493,obs:541,obscur:[113,126,202,389,390],observ:[16,17,60,71,81,126,134,241,247,345,390,399,441,515,545,567],obtain:[8,24,83,87,103,181,186,212,213,217,264,440],obviou:[12,20,99,103,125,126,161,180,218,386,618],obvious:[17,46,72,78,101,103,130,180,182,542],occaecat:31,occas:12,occasion:[145,161,217],occat:143,occation:[145,149,553],occur:[1,7,24,45,53,56,111,168,189,250,299,339,375,376,457,469,473,485,523,551],occurr:[102,186,191,544,550],ocean:[146,217],oct:[3,67,144],odd:[83,147,161,182,188,218,369],odin:[111,454],odor:169,ofasa:111,off:[0,3,5,13,15,17,20,22,24,28,30,34,35,36,45,47,49,55,62,64,65,70,71,72,75,89,94,96,103,105,115,122,125,126,130,131,132,134,135,137,139,140,143,145,147,150,151,152,157,161,163,171,172,182,188,191,205,206,212,217,220,222,227,236,251,252,253,255,256,295,315,322,372,375,379,390,405,406,407,411,413,433,439,441,449,469,473,496,504,511,514,530,541,544,545,547,549,551,552,553,560,568,619],off_bal:172,offend:57,offer:[2,10,11,12,13,17,22,24,28,30,35,39,42,44,45,49,53,62,64,68,70,72,74,77,79,83,101,106,111,113,120,125,126,127,130,131,133,137,138,139,143,147,149,167,168,171,174,175,177,178,181,182,186,190,191,192,202,217,220,227,234,235,240,241,248,251,264,304,312,345,389,407,408,441,475,482,532,551],offernam:312,offici:[13,52,77,128,202,212,560,619],officia:31,offlin:[18,20,44,189,217,220,240,246,545],offload:[53,406],offscreen:189,offset:[51,390,549,560],often:[2,7,8,9,12,13,14,15,18,20,22,24,25,30,42,46,48,49,55,56,63,64,67,70,71,83,88,101,102,125,126,127,128,131,132,135,138,139,143,144,145,146,149,161,168,171,175,178,182,186,217,218,219,220,228,234,239,241,249,251,255,256,264,318,337,461,469,472,481,483,491,496,510,530,539,541,542,545,547,553,554,560,567,590,613],ogotai:0,okai:[7,12,30,106,125,140,149,152,161,169,182,191,211,289,370],olc:[0,25,27,137,241,475,478],olcmenu:475,old:[0,1,8,10,12,21,22,28,30,34,36,46,50,60,62,71,93,103,106,110,126,128,146,149,167,169,179,181,184,188,189,191,208,213,215,216,217,220,227,234,235,238,241,256,295,309,312,346,390,408,469,473,478,500,540,541,544,547,560,619],old_default_set:11,old_desc:346,old_kei:[47,473],old_nam:47,old_natural_kei:220,old_obj:304,old_po:304,older:[3,14,46,50,55,131,152,189,200,206,213,215,216,241,619],oldnam:541,oliv:62,omit:[44,186,212],on_:264,on_bad_request:493,on_death:87,on_ent:[83,264],on_leav:[83,264],on_nomatch:[83,264],onam:471,onbeforeunload:53,onbuild:212,onc:[1,7,8,9,12,13,14,15,16,20,24,30,34,36,38,40,45,46,50,53,55,56,58,62,64,67,68,72,79,80,82,83,84,85,88,94,96,98,102,104,105,107,111,112,113,116,119,120,122,123,124,125,126,127,128,130,131,132,134,136,137,138,139,140,141,142,143,144,147,149,150,151,152,157,163,168,169,174,175,178,179,180,181,182,184,187,188,189,192,194,196,202,205,208,210,212,215,217,220,222,227,228,233,236,241,246,249,252,255,264,286,299,302,304,305,306,312,318,325,328,334,337,338,339,340,354,361,365,367,370,375,389,394,399,405,406,407,408,412,433,439,440,441,449,461,473,477,481,484,496,501,514,518,529,539,541,544,551,552,560,565,567],onclos:[64,502,519],onconnectionclos:53,ond:542,one:[0,1,2,5,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,24,26,28,30,31,33,34,35,36,38,39,40,42,43,44,45,46,48,49,50,52,53,55,56,57,58,59,60,62,67,68,70,71,72,73,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,130,131,132,133,134,135,136,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,165,167,168,169,170,171,172,175,177,178,179,180,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,200,201,202,203,205,208,209,212,213,215,216,217,218,219,220,226,227,230,233,234,235,236,238,239,241,246,247,250,251,252,255,256,257,264,271,274,279,286,289,291,299,304,305,307,309,312,315,318,321,322,323,325,328,337,338,339,340,341,345,361,367,369,370,371,372,375,376,383,389,390,394,404,406,407,408,410,411,412,413,415,416,417,424,433,435,438,440,441,447,454,457,461,463,464,465,468,469,471,472,473,475,476,477,478,480,481,486,491,493,495,496,501,502,503,511,514,515,523,530,531,532,536,538,539,540,541,542,544,545,547,548,550,551,552,553,554,555,558,559,560,562,563,564,565,567,568,571,580,593,607,608,613,619],one_consume_onli:304,ones:[17,20,21,22,24,27,33,34,35,36,38,44,68,75,83,133,134,135,136,141,150,152,168,169,178,188,189,201,202,212,217,218,220,234,235,236,257,264,286,337,338,339,340,341,408,410,417,454,463,477,478,495,500,532,544,553,561],oneself:406,onewai:241,ongo:[0,45,94,117,126,178,186,312,357],ongotopt:53,onkeydown:53,onli:[0,1,2,4,7,8,10,11,13,14,15,16,17,18,20,21,22,24,28,30,31,33,34,35,36,38,39,40,42,44,45,46,47,48,50,51,52,53,54,55,56,57,59,60,61,62,64,68,70,71,75,76,77,79,80,82,83,85,87,89,94,95,96,98,101,102,103,104,105,106,111,113,119,120,121,122,123,124,125,126,127,129,130,131,132,133,134,135,138,139,140,141,142,143,144,145,146,147,150,151,152,155,157,161,163,167,168,169,170,171,174,175,177,178,179,180,181,182,183,184,186,187,188,189,190,191,193,194,195,196,197,200,201,202,204,205,206,208,209,210,212,213,214,215,216,217,219,220,221,224,227,228,229,232,233,234,235,236,238,239,240,241,246,247,248,249,250,251,252,253,255,256,257,264,286,299,302,304,305,306,309,312,321,322,323,328,337,338,339,340,341,345,361,363,364,369,370,371,375,383,386,389,390,394,399,406,408,410,411,412,413,416,435,440,441,449,454,461,465,468,469,471,473,477,478,480,481,482,484,485,486,491,495,496,503,506,508,509,511,514,523,529,530,532,534,535,536,539,540,541,542,544,545,546,547,549,550,551,552,553,554,558,560,562,563,564,565,567,570,575,576,583,607,612,613,615,616,618,619],onlin:[0,6,12,18,20,40,55,57,72,74,94,96,130,131,132,138,142,144,147,148,149,150,158,164,166,168,169,172,177,178,191,197,200,201,203,204,205,210,219,220,221,224,238,246,255,257,264,302,449,505,545,619],onloggedin:53,onlook:[60,473],only_:394,only_nod:369,only_obj:410,only_tim:[480,564],only_valid:478,onmessag:[64,502,519],onopen:[64,502,519],onoptionsui:53,onprompt:53,onsend:53,onset:15,ontext:53,onto:[1,20,22,24,53,125,141,147,180,202,217,235,246,322,416,441,472,503,548,551],onunknowncmd:53,onward:[47,176],oob:[0,24,41,53,63,68,173,206,219,220,227,228,248,325,431,473,496,514,515,519,520,532,551,619],oobfunc:219,oobhandl:558,oobobject:45,ooc:[0,14,20,27,46,104,129,133,135,152,169,191,220,227,230,238,241,242,249,257,328,379,473],ooc_appearance_templ:227,ooclook:46,oop:141,opaqu:18,open:[0,2,6,7,10,13,22,24,27,28,34,36,42,46,54,55,61,79,83,94,96,101,102,103,106,115,116,117,125,126,127,128,130,131,133,134,137,139,140,141,143,144,149,165,168,169,177,178,189,191,192,194,195,196,197,200,201,202,204,205,208,210,211,213,215,217,218,220,241,248,251,256,262,264,302,304,309,312,341,354,357,363,369,411,433,440,449,534,539,547,560,567,619],open_chest:42,open_flag:304,open_parent_menu:264,open_shop:184,open_submenu:[83,264],open_wal:440,openapi:196,opensourc:544,oper:[0,7,9,15,17,20,21,24,30,33,35,40,42,45,48,49,51,53,54,57,63,67,71,77,82,83,91,94,101,102,125,131,135,136,139,143,168,188,202,208,217,220,222,227,229,232,234,236,238,241,246,251,255,264,295,302,307,321,370,383,390,393,404,440,469,473,478,486,488,491,500,501,505,507,511,513,514,520,522,523,530,531,539,540,541,544,547,551,552,553,554,558,565,567,592,593],opic:252,opinion:89,opnli:539,oppon:[149,177,338,340,376,406,439],opportun:[83,103,149,186,194,341],opportunist:149,oppos:[21,40,132,149,218,222,416,530,542],opposed_saving_throw:[161,416],opposit:[125,133,169,180,241,370,433],opt:[53,123,152,161,169,299],optim:[0,8,15,20,21,24,38,45,49,70,125,131,167,171,181,205,220,236,255,406,477,478,526,529,539],optimiz:406,option100:30,option10:30,option11:30,option12:30,option13:30,option14:30,option1:30,option2:30,option3:30,option4:30,option5:30,option6:30,option7:30,option8:30,option9:30,option:[0,1,5,7,8,10,11,14,15,19,20,21,22,24,27,28,33,34,35,36,38,40,44,45,48,53,55,56,60,62,68,70,72,73,74,75,78,79,82,85,87,89,94,101,104,106,111,113,119,120,121,123,124,126,127,128,130,131,133,134,135,137,138,141,149,152,161,163,168,172,175,178,184,191,194,195,205,206,207,208,209,212,213,214,215,216,219,220,221,224,227,228,229,232,233,234,235,236,238,239,241,246,248,249,252,253,255,256,257,264,276,283,285,286,298,299,302,303,304,305,306,307,309,312,315,321,325,328,334,339,340,341,345,348,361,363,365,367,369,370,371,372,375,379,383,389,390,393,394,404,406,407,411,412,413,416,417,429,431,433,435,438,441,449,454,457,461,463,464,466,468,469,471,472,473,475,477,478,480,481,482,483,484,485,486,488,489,491,493,496,497,500,501,503,504,505,506,507,508,509,510,511,513,514,515,518,519,520,522,523,530,532,534,539,540,541,542,544,545,546,547,549,550,551,552,553,554,555,558,560,561,562,563,564,565,566,567,568,570,571,572,575,576,577,579,580,581,582,583,585,587,599,600],option_class:[220,224,546],option_class_modul:[0,220],option_contain:0,option_gener:551,option_kei:568,option_str:299,option_typ:562,option_valu:562,optiona:[488,541],optionclass:[220,224,225,543,546],optioncontain:546,optionhandl:[224,225,543,561],optionlist:[30,303,438,475,551],options2:53,options_account_default:220,options_accounts_default:0,options_dict:562,options_formatt:[0,30,303,438,449,475,551],optionsl:477,optionslist:438,optionsmenu:303,optionstext:[30,303,449,551],optlist:461,optlist_to_menuopt:461,optuon:389,oracl:[205,220,567],orang:[62,112,123,143,299,334,544],orc:[44,168,185],orc_shaman:44,orchestr:[212,408,424],order:[0,2,5,6,8,12,13,14,15,16,17,21,22,24,28,30,33,34,36,37,39,40,42,44,45,48,51,52,53,56,61,67,73,82,83,84,85,86,89,91,96,100,101,103,106,121,125,126,131,136,138,139,141,143,146,149,150,152,155,169,175,178,180,181,182,188,189,191,193,194,195,197,204,205,210,219,220,227,232,235,236,242,247,248,251,252,264,267,299,304,312,315,321,322,323,334,337,338,339,340,341,348,369,370,372,376,379,383,390,394,404,406,410,411,412,439,440,441,449,457,468,469,471,472,473,478,500,502,514,519,523,530,539,541,544,545,551,552,553,560,564,565,567,575,577,579,580,581,582,618],order_bi:136,order_clothes_list:315,ordered_clothes_list:315,ordereddict:[15,567],ordin:544,ordinari:[105,340],ore:[149,321,322],org:[67,72,128,131,178,217,220,299,454,457,507,513,519,544,567,607],organ:[15,20,34,40,42,45,48,52,72,74,83,87,106,125,127,128,136,140,144,145,177,189,190,197,236,248,252,371,570],organiz:140,orient:[121,130,131,144,168],oriented_program:131,origin:[0,1,10,13,30,40,46,51,52,55,67,82,90,94,98,101,103,110,113,126,130,136,139,150,161,168,182,186,189,193,196,200,208,211,218,227,228,234,241,264,295,299,328,370,389,390,408,417,471,473,477,478,480,500,534,541,544,550,551,553,563,566,567,570,571,619],original_object:471,original_script:480,origo:[125,369],orm:33,ormal:544,orphan:220,orthogon:125,oscar:[236,255,463,465,541],osnam:567,osr:[149,416],oss:10,ostr:[227,229,256,464,471,480,564],osx:[13,213,215],oth:406,other:[0,1,4,5,9,11,12,14,15,16,17,18,19,20,21,22,25,28,30,33,34,35,36,38,39,40,44,46,47,48,49,50,51,53,54,56,57,58,59,61,62,63,64,67,68,70,71,72,73,75,76,77,78,79,82,83,85,87,89,90,96,100,101,102,103,104,105,106,111,113,116,119,120,121,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,144,147,150,151,152,155,158,161,163,168,169,171,172,174,175,176,177,178,179,180,181,182,183,184,186,188,189,191,192,193,194,195,196,197,198,201,204,207,208,212,218,220,221,222,227,229,232,233,234,235,236,241,246,247,248,249,252,253,255,256,268,276,280,285,299,302,303,304,309,312,315,318,321,328,337,338,339,340,341,348,354,361,369,370,372,375,389,390,394,406,407,408,410,415,416,433,441,446,449,461,463,465,469,472,473,477,478,482,484,486,489,491,496,500,502,503,509,511,514,523,529,530,531,533,539,541,543,544,545,547,549,550,551,552,553,554,561,562,564,565,567,568,571,583,612,613,615,619],other_modul:137,other_obj:304,otherchar:340,othercondit:133,othermodul:55,otherroom:[116,354],others_act:304,otherwis:[0,1,7,8,9,13,18,21,22,24,30,33,40,44,45,46,62,67,68,70,75,82,86,101,103,108,119,124,125,128,136,143,145,147,149,155,161,163,175,180,181,186,191,192,196,197,199,205,212,217,218,220,224,229,233,234,238,241,246,255,267,283,286,304,307,309,312,321,337,345,361,363,375,390,394,408,411,413,416,431,449,463,469,473,476,477,478,485,491,502,503,511,530,534,535,544,551,552,554,560,564,565,567,576,611,612,613,615,617],otypeclass_path:471,ouch:174,ought:[98,570],our:[1,2,5,7,12,13,14,15,17,22,24,27,36,42,49,53,58,60,63,64,67,68,71,74,75,76,82,89,101,102,105,106,120,124,127,128,130,131,132,134,136,140,141,142,144,145,148,150,151,152,155,157,158,161,164,165,166,168,169,170,172,173,174,175,176,177,178,179,181,182,185,186,187,189,190,191,192,193,195,196,199,200,203,205,207,208,211,212,217,218,230,235,249,257,322,345,361,405,409,411,439,440,461,469,482,536,554,560,571,572,576,583,590],ourself:[141,191],ourselv:[36,39,52,60,82,103,132,133,134,136,140,141,142,144,147,149,169,183,190,227,375,379,504,505,507,518,554,571],out:[0,1,2,7,8,9,11,13,15,16,17,18,19,20,24,25,30,33,34,38,40,42,44,45,46,48,51,53,54,55,56,57,58,59,60,65,70,71,72,74,75,78,79,82,83,84,89,92,94,96,98,101,102,103,104,105,106,110,111,113,116,117,119,122,125,126,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142,143,144,146,147,148,150,151,152,155,157,158,161,163,164,165,166,167,168,170,172,174,175,178,179,180,181,182,183,184,186,187,188,189,191,192,194,196,197,200,204,205,207,208,209,210,212,216,217,219,220,226,227,233,234,238,240,241,246,255,276,280,295,298,302,304,312,321,322,328,337,338,339,340,341,348,354,357,363,369,370,371,372,389,390,394,406,408,413,416,422,438,440,445,446,449,451,468,477,478,484,491,493,515,519,520,522,531,532,539,548,550,551,553,554,567,570,575,583,607,619],out_txt:407,outcom:[70,128,149,177,234,321,383,469,473,477],outdat:[207,208],outdata:[64,532],outdoor:[48,125,146,149,190,441,554],outer:[136,137,553],outermost:[33,35,137,140,143,279,291],outerwear:[85,315],outfunc_nam:64,outgo:[33,46,63,66,71,125,208,217,220,228,370,408,473,503,515,531,554,567,571],outgoing_port:217,outlet:217,outlin:[5,27,106,125,194,502],outlist:369,outmessag:473,output:[0,2,8,10,12,17,21,25,30,31,33,34,35,46,51,53,62,64,67,71,72,73,74,75,83,106,125,126,128,132,133,134,138,139,143,145,149,157,169,178,180,186,188,191,205,212,220,222,224,225,236,246,248,251,253,255,258,264,276,321,322,325,337,338,339,341,369,370,379,443,444,446,455,473,491,496,511,515,523,530,544,551,552,554,560,563,565,567,619],output_nam:321,output_prototyp:[89,321,322],outputcmd:515,outputcommand:[35,63,68],outputfunc:[0,25,64,68,71,473,496,502,619],outputfunc_nam:[64,496],outputfunct:68,outrank:540,outright:[57,149,217,473],outro:[122,146,441],outroroom:441,outsid:[0,16,18,33,34,44,51,54,55,67,71,72,77,101,103,105,121,125,128,131,134,138,143,144,145,149,161,168,172,174,177,179,180,181,195,208,212,217,222,248,340,364,369,370,408,416,439,457,463,468,515,530,531,539,542,553,598],outtempl:539,outtxt:21,outward:[182,217],oven:[89,126],over:[0,4,8,9,11,12,15,16,17,18,19,20,21,22,24,30,44,45,46,48,49,50,51,53,55,58,63,64,68,71,72,73,74,82,91,96,101,105,106,116,125,126,128,133,136,139,140,141,143,144,147,149,151,152,155,161,163,168,169,170,171,177,178,181,182,183,188,193,194,196,205,207,209,212,216,218,220,221,227,235,256,269,322,337,354,370,375,406,409,416,441,449,461,473,486,495,509,511,514,516,520,522,524,537,541,545,558,563,616],overal:[51,56,70,85,93,167,168,204,217,234,249,338],overcom:[106,416],overdo:139,overhaul:0,overhead:[21,45,73,124,190,205,361,539],overhear:[113,389],overheard:[113,126],overlap:[22,175,389,544,553],overload:[0,9,22,24,25,30,35,40,49,64,82,83,116,141,168,173,174,191,193,219,220,227,234,236,250,255,264,268,299,302,321,325,334,337,338,339,340,341,345,348,354,357,363,367,375,390,407,412,438,439,440,441,451,473,478,486,495,514,522,531,549,551,552,553,561],overpow:[82,149],overrid:[0,1,3,5,8,20,22,30,33,34,36,40,44,45,46,47,51,52,53,55,68,75,77,83,84,87,89,98,101,123,125,129,133,134,138,141,144,157,165,174,179,180,183,185,186,189,192,197,209,220,227,236,241,246,248,252,255,256,264,272,286,298,299,306,307,315,321,339,341,345,363,370,371,372,375,379,389,390,404,408,411,412,416,431,441,447,463,469,473,477,478,484,500,514,532,536,539,541,544,551,552,554,558,560,561,564,575,576,577,581,583,593,612,613,615,618],overridden:[33,38,55,64,125,155,192,193,220,227,241,248,264,265,272,274,299,370,393,477,541,552,554,575,618],override_set:47,overriden:390,overrod:[58,140],overrul:[14,42,227,235,390,473,553],overseen:177,overshadow:147,overshoot:567,oversight:168,overview:[2,3,4,8,18,52,58,63,98,102,122,127,132,142,149,163,168,176,191,205,218,451,619],overwhelm:[102,120,136,147],overwrit:[67,77,82,141,193,241,248,375,509,540,616],overwritten:[24,33,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,195,441,542],owasp:607,owen:321,owllex:[0,88,126,317,318],own:[0,1,2,6,8,9,11,12,13,15,16,19,20,21,22,25,27,30,33,34,36,39,44,45,46,47,48,50,51,54,55,56,59,60,63,68,70,71,72,74,75,78,82,83,84,85,87,89,92,93,95,101,104,106,107,113,115,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,137,138,139,141,142,144,146,147,148,150,151,152,155,158,161,163,164,165,166,168,170,172,173,174,175,179,180,183,184,186,187,189,191,192,193,194,195,199,200,202,203,204,207,208,211,213,215,218,219,220,221,224,225,230,232,233,234,235,241,249,258,276,295,299,303,304,315,328,337,338,339,341,345,361,369,370,373,375,379,389,390,392,406,416,440,446,449,468,469,473,478,496,523,531,541,544,545,546,552,553,558,560,561,565,567,593,613],owner:[36,42,59,82,149,163,192,205,227,375,429,469,561],owner_object:36,ownerref:375,ownership:[77,212,217],oxford:[0,567],p_id:194,p_str:1,pace:[149,439],pack:[0,54,68,122,174,500],packag:[0,8,9,11,12,34,52,71,72,75,77,87,98,125,127,128,131,137,138,158,163,189,199,202,205,207,210,211,212,213,215,217,220,224,226,231,237,254,258,307,462,467,470,479,487,491,500,515,519,538,543,573,587],package_nam:131,packagenam:131,packed_data:500,packeddict:[9,541],packedlist:[9,541],packet:[68,511],pad:[19,33,544,553,554,567],pad_bottom:[550,553],pad_char:553,pad_left:[550,553],pad_right:[550,553],pad_top:[550,553],pad_width:553,page1:304,page2:304,page:[0,1,2,5,6,10,11,13,16,17,19,22,24,25,27,30,31,33,34,38,40,50,51,52,53,54,57,58,60,63,64,67,71,72,74,77,78,79,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,137,145,147,149,150,155,166,168,169,176,177,188,189,192,194,195,196,200,202,205,207,208,210,211,212,217,218,220,222,223,236,241,246,247,255,304,417,463,465,477,520,541,551,552,567,573,578,580,581,583,596,605,609,615,616,618],page_back:552,page_ban:[57,246],page_end:552,page_formatt:[477,552],page_next:552,page_quit:552,page_s:220,page_titl:[612,613,615,617],page_top:552,pageno:[477,552],pager:[0,31,34,552],pages:[30,551],pagin:[0,34,51,129,220,477,552],paginag:552,paginate_bi:[612,613,615],paginated_db_queri:477,paginator_django:552,paginator_index:552,paginator_slic:552,pai:[149,151,167,184,217,218,440],paid:[150,217],pain:[217,376],painstakingli:16,paint:144,pair:[22,53,68,78,82,84,85,125,143,155,178,227,234,315,370,375,468,473,532,607,618],pal:39,palac:125,palett:188,pallet:[106,140],palm:[96,449],pane:[0,53,71,220,253,280,372,438],panel:[10,192,208],panic:[44,133,161],pant:[85,147],pantheon:[34,463],paper:[178,200],paperback:177,paperwork:125,par:205,paradigm:[0,147,189,338],paragraph:[17,21,34,127,331,545,553,567],parallel:[0,120,168,175,197,540],paralyz:339,param:[101,208,241,473,486,493,503,536,566,587,588,590],paramat:[236,473,530],paramet:[5,7,10,22,51,83,88,102,103,136,145,149,175,181,182,186,206,212,224,227,228,229,232,233,234,235,236,246,248,255,256,257,264,265,270,272,273,276,283,284,285,286,289,299,302,303,304,305,306,307,309,312,315,318,321,325,328,337,338,339,340,341,345,348,354,361,369,370,371,372,375,379,383,386,389,390,394,404,406,407,408,410,411,412,413,416,417,429,431,433,438,441,445,446,449,457,461,463,464,465,466,469,471,472,473,475,477,478,480,482,483,484,485,486,488,489,490,491,493,495,496,497,498,500,501,502,503,504,505,506,507,508,509,510,511,513,514,515,516,518,519,520,522,528,529,530,531,532,534,535,536,539,540,541,542,544,545,546,547,548,549,550,551,552,553,554,555,558,560,561,562,564,565,566,567,568,570,571,575,577,580,581,585,588,599,615],paramt:568,pardir:220,paremt:478,parent1:44,parent2:44,parent:[0,1,13,14,21,22,24,27,40,44,45,50,63,64,76,83,89,125,128,131,133,135,139,141,144,151,157,161,170,174,180,183,191,215,220,230,238,241,249,251,264,265,299,302,304,321,323,370,390,393,394,461,472,473,477,478,481,539,540,541,549,559,564,565,567,585,587,593,616],parent_categori:461,parent_kei:[83,264],parent_model:[575,576,577,579,580,581,583],parentag:417,parenthes:[52,111,143],parenthesi:[33,143,144],parentobject:139,paretn:585,pari:[200,217],pariatur:31,paricular:24,park:[83,264],parlanc:[55,165],parri:[178,322,440],pars:[0,3,9,18,22,24,28,30,33,60,62,63,64,68,71,72,74,84,89,123,125,126,127,128,129,132,139,140,142,152,165,176,191,195,215,219,220,231,232,233,236,241,247,248,249,251,252,264,279,280,291,298,299,302,304,309,312,321,322,328,345,363,369,370,371,375,383,390,391,407,417,433,440,441,445,446,447,451,461,466,469,473,476,477,478,496,503,506,515,519,520,522,532,539,544,545,549,550,551,554,560,565,566,567,619],parse_ansi:544,parse_ansi_to_irc:503,parse_entry_for_subcategori:466,parse_fil:545,parse_for_perspect:309,parse_for_th:309,parse_html:566,parse_inlinefunc:0,parse_input:551,parse_irc_to_ansi:503,parse_languag:390,parse_menu_templ:[30,551],parse_nick_templ:539,parse_opt:461,parse_sdescs_and_recog:390,parse_to_ani:[33,554],parseabl:[477,554],parsed_str:[33,503],parsedfunc:554,parseerror:299,parser:[0,24,25,30,34,62,66,72,123,125,126,128,137,195,200,219,220,232,233,238,241,248,249,251,253,268,280,299,302,304,315,322,334,345,348,368,369,370,389,390,440,441,477,510,544,554,566,619],parsingerror:[33,554,567],part1:334,part2:334,part:[0,2,7,9,10,11,13,16,17,18,20,24,30,34,36,42,43,45,46,50,51,53,54,55,58,64,66,70,71,75,76,77,80,82,83,101,102,106,111,112,113,125,127,128,134,136,137,138,139,140,141,143,144,146,147,149,150,152,153,154,156,159,160,162,168,169,172,174,176,177,178,181,186,189,191,192,193,197,205,212,214,217,220,233,234,236,246,249,250,252,255,264,270,302,312,321,322,334,340,367,369,370,375,383,390,405,407,408,415,417,433,441,454,461,464,468,469,476,477,484,491,495,520,522,531,534,536,539,540,544,545,549,551,554,565,567,619],part_a:312,part_b:312,parth:516,parti:[0,7,12,16,21,33,61,79,91,127,131,143,144,150,189,195,202,211,217,220,257,312,383,416,554,619],partial:[1,34,125,246,248,389,410,416,463,471,477,493,506,532,562,564,567,568],particip:[121,126,218,337,338,339,340,341,406],participl:[570,572],particular:[8,9,13,15,16,17,22,34,35,36,40,45,46,47,48,50,57,62,64,68,71,73,75,82,83,95,119,125,126,128,131,134,136,137,138,140,141,143,144,145,147,149,155,157,163,169,174,180,183,190,200,202,207,208,211,219,227,229,233,234,241,256,305,321,339,340,345,369,370,372,408,412,446,464,468,469,480,481,532,534,541,554,558,564,614,616],particularli:[30,57,60,77,82,101,103,113,119,126,128,151,181,236,249,252,375,390,394,478,495],partit:544,partli:[15,22,70,74,113,126,137,234],party_oth:312,pase:184,pass:[0,1,4,5,11,20,21,24,30,31,33,35,36,38,40,42,44,45,46,47,49,50,56,64,68,71,78,82,84,87,88,89,96,101,105,106,111,113,116,119,120,125,126,132,133,135,137,139,140,141,142,144,145,149,151,152,155,157,161,163,171,172,173,175,179,180,182,184,186,187,195,196,197,205,212,214,217,220,222,227,228,234,246,253,255,272,273,274,276,285,302,307,309,315,318,321,325,337,338,339,340,341,348,354,369,370,372,375,376,377,383,390,394,404,405,406,408,411,413,416,417,431,433,440,445,446,449,461,468,469,473,476,477,482,485,486,489,491,501,509,511,514,519,520,530,536,539,541,542,550,551,552,553,554,555,561,562,563,565,566,567,587,593,613,616,618],passabl:370,passag:[68,149,178,315,440,441,555],passant:188,passavataridterminalrealm:511,passiv:[178,194,406],passthrough:[22,369,484],password123:51,password1:[575,607],password2:[575,607],password:[0,5,8,13,26,27,30,35,36,55,57,78,92,107,114,126,131,133,135,138,189,205,208,210,214,218,220,227,229,230,238,239,253,280,304,446,457,496,511,514,535,547,575,599,607],password_chang:608,password_valid:220,passwordresettest:608,past:[2,13,16,28,52,53,72,77,102,103,106,125,127,134,138,149,169,175,178,191,194,197,208,219,220,229,339,370,537,545,555,570,572,616],pastebin:127,pastpl:570,pat:471,patch:[50,51,77,132,151,196,565,619],patfind:367,path:[0,9,10,11,14,17,21,30,33,34,35,36,38,40,44,45,46,50,54,55,63,64,65,67,70,71,75,77,78,82,83,101,103,105,113,125,128,132,133,134,135,136,139,143,144,163,179,180,181,182,183,191,192,193,194,195,196,197,207,208,210,212,213,215,217,220,227,228,230,233,234,235,236,240,241,242,243,244,245,246,255,257,262,264,274,276,286,289,295,302,304,305,306,307,309,312,315,321,325,334,337,338,339,340,341,345,348,354,357,361,363,367,369,370,371,372,377,379,383,389,390,393,399,404,406,407,408,411,412,415,431,433,435,438,439,440,441,451,457,463,465,471,472,473,477,478,480,481,483,484,486,491,498,500,509,516,522,524,528,532,536,539,540,541,545,547,549,550,551,552,554,555,558,559,564,567,585,593,613],path_or_typeclass:289,pathdata:363,pathfind:[0,126,181,363,367,369,370],pathnam:565,patient:30,patreon:127,patrol:[122,439],patrolling_pac:439,patron:105,pattern:[20,39,58,75,76,82,126,165,192,194,195,196,197,220,239,255,375,535,539,567,584],pattern_is_regex:539,paul:50,paus:[0,25,30,45,56,82,101,102,178,181,212,220,222,241,251,285,375,376,413,484,485,551,565,567],pausabl:567,pauseproduc:493,pax:189,payload:[502,519],payment:[79,126],paypal:127,pdb:[0,3,224],pdbref:[36,468],pdf:[149,200],pebbl:406,peek:[2,30,125,134,186],peer:[502,519],peform:496,peg:218,pem:208,pemit:[72,239],penalti:[70,132,147,161,339],pend:536,pennmush:[72,74,168,253],pentagon:218,peopl:[0,2,4,9,14,20,33,34,36,55,60,62,72,92,94,101,113,126,127,131,134,138,140,147,149,150,169,177,178,179,202,204,209,217,218,220,246,247,256,280,390,440,441,547,576,583],pep8:[0,2,77],per:[0,8,13,14,15,20,24,33,44,46,59,62,68,70,77,82,88,89,90,95,103,111,113,119,121,125,126,128,131,143,149,157,161,169,175,178,191,192,197,212,220,227,246,255,304,305,318,337,339,341,345,369,370,375,376,389,394,406,408,410,411,412,439,471,473,477,504,505,507,515,518,534,551,552,553,558,560,561],perceiv:[149,175],percent:[24,258,373,392,417,567],percentag:[119,178,393,394,540,567],percentil:567,perception_method_test:527,perfect:[13,28,77,93,126,130,147,158,161,211,212,369,406],perfectli:[45,48,74,85,111,197,544],perform:[0,1,7,8,9,15,16,17,20,30,31,35,36,40,45,60,80,83,88,89,96,101,110,120,121,126,130,143,178,181,186,191,194,195,204,205,211,218,220,227,232,234,238,241,246,248,264,285,286,295,302,315,318,321,337,338,339,340,341,367,390,404,406,411,417,445,449,461,471,473,477,481,482,495,500,514,522,523,539,540,541,548,551,552,554,561,564,567,568,607],perhap:[7,9,20,58,72,83,101,102,175,186,197],period:[6,11,12,82,143,212,217,218,220,567],perist:[50,135],perk:[82,375],perm1:542,perm2:542,perm:[0,1,15,20,24,34,36,42,44,48,57,59,83,101,133,139,169,191,192,194,204,220,230,239,240,241,246,247,248,251,284,295,302,334,345,354,363,441,465,468,469,472,473,481,539,541,542,567],perm_abov:[36,42,468],perm_us:239,perma:149,permadeath:149,perman:[0,20,30,55,57,77,82,125,132,146,147,161,192,206,210,217,220,238,241,246,247,251,375,389,408,416,485,541],permiss:[0,1,8,11,14,15,20,22,25,44,51,52,57,63,65,72,77,80,98,134,135,139,140,149,179,189,191,194,204,205,207,211,213,220,224,225,227,229,230,234,236,238,239,240,241,246,247,249,255,284,305,341,390,463,465,468,469,471,472,473,477,478,481,539,540,541,542,545,547,554,560,564,567,573,575,586,587,590,593,618,619],permission_account_default:[42,220,522],permission_class:[196,593],permission_func_modul:468,permission_guest_default:[65,220],permission_hierarchi:[42,59,220,468,469,542],permissiondeni:588,permissionerror:477,permissionfilt:587,permissionhandl:[0,42,194,542],permissionproperti:[0,542],permissionshandl:[583,590],permit:[196,199,205,241,535],permstr:[36,227,471,541,547],perpetu:[8,132,148,149],perri:77,persion:60,persist:[0,1,20,21,22,24,25,30,37,40,45,46,49,50,70,82,83,87,88,98,103,113,115,117,119,121,126,130,131,132,135,138,140,141,142,143,167,168,172,176,178,179,180,191,200,219,222,227,230,234,235,251,256,257,264,265,270,276,286,303,318,337,338,339,340,341,357,371,389,390,394,433,438,440,449,451,461,465,471,472,473,475,477,480,481,482,484,485,486,496,497,498,529,530,534,538,541,547,549,551,553,555,567,619],persit:38,person:[13,20,33,46,57,60,74,77,79,111,113,126,132,133,140,142,147,150,177,179,183,184,213,217,227,241,246,247,255,304,305,309,312,383,390,407,454,554,570,571,572],persona:34,perspect:[46,60,177,309,406,571],perstack:[82,375,376],pertain:[188,193,218],pertin:194,perus:53,pester:[147,168],petal:128,peter:302,pg_ctlcluster:205,pg_hba:205,pg_lscluster:205,phantom:34,phase:[147,182],phen:111,phex:111,philosophi:[36,143,304],phone:[58,114,126,131,211,457],phone_gener:[114,457],phonem:[111,113,389],phonet:[0,111,454],php:[72,131,607],phrase:[101,102,289],phrase_ev:[101,289],physic:[14,38,132,147,152,182,340,439],physiqu:152,pick:[10,16,18,22,24,26,30,33,34,36,45,55,60,93,94,101,106,125,127,130,132,134,140,141,143,149,152,155,161,170,172,175,177,179,181,185,189,190,202,210,212,217,219,233,238,241,247,249,255,279,291,315,341,386,390,411,440,441,473,477,523,554],pickabl:40,pickl:[0,15,49,52,68,82,125,220,262,394,411,482,486,488,498,500,501,539,540,548,549,551,563,567],pickle_protocol:563,pickleabl:82,pickledfield:[471,563],pickledformfield:[563,576],pickledobject:563,pickledobjectfield:563,pickledwidget:563,picklefield:[0,224,225,543,576],pickpocket:248,pickup:[341,473],pictur:[10,64,149,152,155,163,168,179],pid:[5,13,36,52,194,212,222,468,473,491,501,567],piddir:5,pidfil:491,pie:302,piec:[8,16,25,38,55,56,89,94,111,112,131,141,143,151,152,161,163,208,321,322,334,348,407,518,545,552],piecem:[0,126],pierc:440,pig:[321,322],piggyback:227,pigironrecip:[321,322],piglei:77,pii:78,pile:[235,545],pillow:[0,211],pinch:149,ping:[228,246,491,503],pink:544,pip:[2,6,7,8,11,12,77,98,125,128,137,143,189,194,201,203,204,205,211,212,213,215,216,220,221,224],pipe:[46,53,78,503,548],pitfal:[2,17,62,188],pixel:[55,206],pizza:[230,257,465,472,481,539,541,542],pkg:211,pki:207,place:[0,1,2,12,14,15,17,18,20,30,36,38,40,44,45,46,51,53,54,55,67,68,69,74,75,79,82,83,87,89,96,101,102,103,106,119,122,125,126,131,134,138,139,140,141,143,145,149,151,152,155,163,165,172,173,174,175,177,179,180,182,186,187,188,189,190,191,193,194,197,204,207,211,212,213,215,217,218,219,220,227,239,241,247,255,264,276,304,312,322,334,337,341,361,369,370,372,390,394,406,408,410,433,440,441,445,449,454,473,480,484,500,509,514,530,531,532,539,545,546,548,551,567,619],placehold:[54,55,67,84,195,469,473,553],plai:[0,14,17,34,46,55,59,62,68,82,83,102,103,106,115,121,122,126,130,131,132,138,140,141,143,146,147,150,161,169,177,178,180,181,186,190,191,194,210,211,217,220,227,229,337,341,515,532,547],plain:[0,16,17,53,70,71,79,128,134,161,169,191,246,255,264,312,331,478,496,522,548,616],plaintext:446,plan:[3,7,17,18,20,50,64,101,132,141,142,145,148,158,164,166,167,176,189,212,217,406,545],plane:[125,145,180],planet:[0,138,175],plank:89,plant:[123,299],plate:[30,50,55,114,126,170,457],platform:[10,13,58,101,167,189,213,217],playabl:[84,149,194,379,608],player1:473,player2:473,player:[0,1,8,9,11,15,20,22,30,33,36,40,42,45,46,52,54,55,56,57,59,60,64,67,68,72,73,77,78,79,82,84,94,95,96,99,100,101,104,106,112,113,120,122,123,124,125,126,129,130,131,132,134,135,138,139,141,142,143,144,146,147,148,152,155,158,164,166,169,172,176,177,178,179,180,183,184,185,186,189,191,192,194,198,201,203,204,209,210,217,220,222,235,238,241,251,256,264,289,295,299,302,303,304,305,307,312,328,334,340,341,348,361,369,379,386,389,390,406,408,411,413,417,433,435,441,446,449,461,464,481,505,514,531,545,550,551,567,593,607,613],playercmdset:101,playerdb:220,playernam:204,playerornpc:189,playtim:[375,376],pleas:[2,8,11,13,19,22,30,34,44,50,58,62,78,106,122,127,134,140,141,149,172,194,198,199,202,204,207,210,211,215,217,220,251,493,522,558,563,607],pleasur:58,plenti:[17,74,130,158],plethora:149,plop:55,plot:524,plu:[2,10,21,83,131,251],pluck:24,plug:[38,47,193,361],pluggabl:[220,417],plugin:[0,25,64,68,72,77,126,129,137,138,192,202,219,220,390,408,489],plugin_handl:53,plugin_manag:53,plugin_servic:220,plural:[0,42,59,60,169,220,340,473,554,570,571,572],plural_word:554,plusmaplink:[125,370],png:[43,55,193],pocoo:567,poeditor:67,poet:136,point:[0,1,3,5,6,7,8,9,10,13,14,16,17,18,21,22,24,30,33,34,38,40,44,45,46,48,49,50,52,55,60,68,70,71,73,75,79,82,83,92,93,94,97,101,103,105,107,121,125,126,128,130,133,134,135,138,139,140,141,143,144,147,149,150,152,161,164,167,172,175,176,177,178,179,180,181,182,184,186,191,193,194,195,196,197,207,208,210,211,212,213,216,217,220,227,232,236,241,246,249,299,302,312,318,321,325,337,354,361,363,367,369,370,390,405,406,441,473,475,477,486,491,495,509,511,519,530,532,539,541,545,551,554,567,576,583,596,618],pointer:[2,167,182,186,348],pointless:[40,49,56,187,248],pois:376,poison:[15,82,119,126,220,339,375,376,394,416,478],pole:334,polici:[27,63,77,144,217,218,446,465,535,539],polish:[0,67,128],polit:[144,149,218],poll:[64,193,238,439,491,520],pommel:[149,172,322],pong:503,pool:[22,49,82,205,486,536,548],poor:[60,141,169],poorli:218,pop:[1,10,56,128,169,205],popen:501,popul:[5,75,83,101,105,147,168,175,205,220,234,242,243,244,245,264,302,315,321,334,337,338,339,340,341,345,348,354,357,363,390,407,433,435,438,439,440,441,451,473,477,485,486,522,545,549,550,552,576,583],popular:[72,121,131,132,136,168,189,200,612],popup:[0,53,220],port:[0,5,8,103,130,189,202,205,207,208,209,212,215,220,221,222,228,246,500,503,511,523,532,536],portal:[8,10,12,25,40,53,54,64,71,86,129,137,138,180,196,200,217,218,219,220,222,224,225,228,251,267,487,488,491,529,530,531,532,555,560,567,619],portal_connect:532,portal_disconnect:532,portal_disconnect_al:532,portal_l:501,portal_log_day_rot:220,portal_log_fil:220,portal_log_max_s:220,portal_pid:[501,567],portal_receive_adminserver2port:501,portal_receive_launcher2port:501,portal_receive_server2port:501,portal_receive_statu:501,portal_reset_serv:532,portal_restart_serv:532,portal_run:491,portal_service_plugin_modul:64,portal_services_plugin:[64,138,219,220],portal_services_plugin_modul:[64,220],portal_sess:64,portal_session_handler_class:220,portal_session_sync:532,portal_sessions_sync:532,portal_shutdown:532,portal_st:491,portal_uptim:555,portalsess:[46,64,509],portalsessiondata:532,portalsessionhandl:[64,220,224,225,487,499,510,532],portalsessionsdata:532,portion:[77,126,264,386],portuges:67,pos:[304,370],pose:[0,27,60,113,126,133,149,169,172,178,227,247,286,302,390,433],pose_transform:255,posgresql:205,posit:[0,16,30,45,53,83,101,105,106,121,123,125,126,134,144,149,178,181,182,186,188,220,235,253,255,264,280,299,302,304,331,341,348,361,369,370,372,406,407,440,441,473,485,544,545,548,549,553,567,568],position:304,position_prep_map:304,positive_integ:568,positiveinteg:561,posix:[560,567],possess:[60,97,325,554,571],possibl:[0,1,2,8,12,15,20,22,24,28,30,33,34,35,36,38,44,45,46,48,52,54,55,56,62,65,78,79,83,85,87,101,102,103,105,106,113,118,119,122,124,125,126,127,130,131,136,137,140,143,144,146,149,150,155,157,161,168,169,177,178,181,186,188,189,191,192,193,195,205,207,211,212,213,215,216,219,220,224,227,229,230,232,234,241,248,249,256,268,285,304,312,321,334,345,348,361,369,370,372,389,390,394,406,410,412,417,435,439,441,454,466,469,471,473,476,477,478,482,486,496,516,520,530,532,539,540,542,544,547,549,550,551,553,555,560,563,564,567,570,585],post:[15,20,22,36,47,51,55,67,78,89,106,126,127,130,132,147,168,169,193,194,196,197,198,203,204,220,446,484,520,592,613],post_:0,post_action_text:406,post_craft:[89,321],post_delet:47,post_init:47,post_join_channel:[20,255],post_leave_channel:[20,255],post_loot:404,post_migr:47,post_mov:473,post_puppet:82,post_sav:47,post_send_messag:255,post_text:386,post_url_continu:[575,577,580],post_us:406,postfix:[113,389],postgr:[131,205],postgresql:[0,220,221,567],postgresql_psycopg2:205,postinit:53,posttext:449,postupd:[198,204],pot:[57,135],potato:[123,206,299],potenti:[0,2,6,15,16,33,56,62,68,89,101,106,113,144,178,191,203,217,220,236,248,256,446,447,468,469,473,477,561,564,567],potion:[145,149,157,304,406,410,412,422,541],pow:33,power:[0,7,18,22,24,28,30,33,38,40,42,44,52,53,55,59,60,82,88,101,102,106,113,120,123,126,130,131,134,136,140,141,143,144,145,146,149,167,169,172,173,178,191,234,235,240,241,299,318,339,340,412,416,461,466,545,567],powerattack:[88,318],powerfulli:103,powerhous:82,ppart:570,pperm:[20,36,42,57,98,139,194,204,220,238,246,295,334,379,451,468,473],pperm_abov:[42,468],pprofil:491,pprogram:491,practial:18,practic:[2,4,16,17,24,40,45,46,52,82,83,87,93,103,111,131,139,140,141,143,144,145,149,151,163,168,169,172,176,184,188,208,216,217,221,370,545,619],praxi:210,pre:[0,15,24,40,51,106,128,147,149,182,196,204,209,210,215,217,220,227,241,248,321,389,417,419,469,473,477,478,519,520,523,549,554,563],pre_craft:[89,321],pre_delet:47,pre_init:47,pre_join_channel:[20,255],pre_leave_channel:[20,255],pre_loot:404,pre_migr:47,pre_sav:[47,563],pre_send_messag:255,pre_text:386,pre_us:406,preced:[22,42,44,59,62,120,125,140,234,236,461,473,478,540,553,554,571],preceed:[33,134],precend:232,precens:15,precis:[15,45,101,188,318,321,544],predefin:[0,180,535],predict:[50,143,150,194],prefer:[10,13,20,22,24,36,44,53,83,93,106,127,130,132,138,141,168,179,186,191,204,205,217,220,234,236,239,264,338,370,390,439,464,466,471,473],prefix:[0,7,9,20,50,70,83,87,111,113,128,205,218,220,227,233,248,250,255,271,274,386,389,471,496,503,534,544,554,564,567,576,577,579,581,583,587,607],prelogout_loc:139,prematur:[8,21,45,312,413],premis:[94,302],prep:302,prepai:217,prepar:[0,5,39,44,54,125,165,168,182,196,220,227,246,337,379,390,439,481,548,563],prepars:128,prepend:[33,328,390,473,544,545,551,554,567],prepopul:[576,583,616,618],preposit:304,preprocess:241,prerequisit:[189,221],prescrib:[130,168],presen:33,presenc:[19,33,125,130,138,167,176,184,188,189,193,205,217,227,473,536,573,619],present:[7,9,30,34,46,51,55,82,83,87,96,99,102,111,120,121,126,147,149,152,175,178,182,184,186,191,197,219,220,264,272,299,375,386,389,416,435,449,457,461,478,549,567,570,572,576,590],present_participl:572,preserv:[188,220,249,541,544,545,560,567],preserve_item:[124,361],preset:554,press:[7,10,17,18,22,24,30,36,68,71,83,115,126,132,134,138,143,152,189,210,212,222,264,304,433,440,489,551,580],pressur:170,prestig:149,presto:134,presum:[38,175,177,235,560,561],pretend:211,pretext:449,pretti:[1,2,13,15,24,40,45,52,60,71,83,85,101,103,128,131,139,143,144,146,147,149,152,157,163,178,180,181,187,188,191,194,202,217,220,236,255,309,315,394,457,462,469,477,550,552,561,567],prettier:[0,8,103,607],prettifi:[0,161,168,567],prettili:175,pretty_corn:553,prettyt:[21,553],prev:[30,552],prev_entri:30,prevent:[0,3,24,101,102,128,134,143,175,285,299,341,534,576,613],preview:128,previou:[0,7,13,15,17,22,24,30,31,33,34,36,39,47,51,55,56,58,62,70,82,83,87,101,119,120,132,133,136,137,139,140,141,143,144,146,149,151,152,155,157,158,161,169,171,172,175,184,186,188,191,196,197,210,212,213,219,220,246,394,406,441,461,475,551,552,560,615],previous:[15,22,28,35,45,55,105,125,134,139,141,149,182,184,186,193,194,202,208,219,236,239,241,246,255,312,371,407,473,496,512,516,523,532,542,567],previu:45,prevtick:82,prgmr:217,price:[77,149,217,417,440],primadonna:34,primari:[13,19,50,139,194,212,220,379,390,471,473,539,564],primarili:[5,13,14,57,72,79,127,130,147,227,312,390,464,466,509,548,567],primary_kei:194,prime:[79,232,312],primer:[55,56],primit:[149,241],princess:[106,146],princip:150,principl:[2,11,14,20,24,30,33,36,38,40,52,59,60,64,79,89,94,126,127,128,135,136,138,139,144,149,152,155,168,173,183,189,190,191,203,217,235,238,312,441,550],print:[1,2,7,8,9,15,21,28,45,50,56,64,70,73,82,113,119,128,136,139,143,144,152,163,169,179,186,187,189,192,220,222,238,299,369,371,383,389,394,477,490,491,550,551,552,553,560,567],print_debug_info:551,print_error:371,print_help:299,print_stat:8,print_usag:299,printabl:517,printable_order_list:369,printout:[144,514],prio:[1,22,24,139,232,441,542],prior:[216,285,473],priorit:[125,370,389,542],prioriti:[1,9,22,24,25,30,44,125,140,174,178,234,238,242,243,244,245,249,264,302,406,438,440,441,473,549,551,552],prison:[132,136,147],privaci:78,privat:[0,13,20,78,128,147,149,168,197,205,207,217,246,247,503,516],private_set:189,privatestaticroot:536,priveleg:[0,141],privileg:[24,125,132,147,179,191,201,202,203,205,213,247,361,372,390,473,541],privkei:208,privkeyfil:511,privmsg:503,prize:146,pro:[126,619],proactiv:49,probabl:[1,8,12,24,30,34,40,45,51,52,55,58,70,72,77,83,101,102,119,125,130,131,139,149,168,172,178,179,180,187,189,192,193,194,195,197,205,217,248,264,265,289,394,412,441,457,493,503,511,558,567,568],problem:[0,1,2,4,9,11,15,16,18,21,24,27,36,63,73,76,83,106,127,131,133,140,143,145,147,149,150,157,161,167,179,197,205,206,208,211,212,217,218,220,222,227,235,286,321,369,408,473,500,545,554],problemat:[1,567],proce:[17,18,67,161,180,188,212,246,518,611,613],procedur:[120,149,408,424,461,511,514],proceed:[13,567],process:[0,1,2,4,7,8,10,13,15,16,17,18,24,30,33,38,40,43,51,53,54,55,67,68,71,82,83,84,89,101,103,105,125,127,128,131,135,138,143,147,148,149,172,174,177,181,182,186,189,192,194,205,207,208,211,212,217,220,221,227,232,234,241,251,255,273,299,312,321,322,365,390,396,461,467,469,473,477,482,485,491,496,500,501,508,511,514,519,520,523,529,530,532,539,544,545,548,551,561,566,567,568,585,619],process_languag:390,process_recog:390,process_sdesc:390,processed_result:567,processor:[25,27,106,126,128,149,164,220,222,224,225,240,251,252,543,619],procpool:567,produc:[13,20,24,30,34,62,80,100,101,113,150,161,163,191,238,241,279,291,304,309,321,322,334,361,389,440,473,477,478,490,522,539,541,550,551,567],produce_weapon:440,producion:21,product:[0,2,4,5,8,10,12,13,54,55,75,149,205,217,218,220,221,522,525,551],production_set:189,prof:8,profess:[111,136],profession:[0,72,131,143,149,150,165,168],profil:[3,96,201,220,224,225,230,449,487,619],profile_templ:[96,449],profit:149,profunc:44,prog:[299,570],program:[0,2,8,10,11,12,14,18,20,33,43,51,54,56,70,72,129,131,137,138,140,143,144,146,148,150,167,168,181,200,205,208,211,212,213,215,217,220,222,251,253,299,487,491,514,520,522,619],programiz:181,programm:[142,150,186],progress:[84,94,121,126,172,177,187,305,307,318,337,338,339,340,341,370,379,408,413,426,549,619],proident:31,project:[0,1,3,4,18,53,72,75,106,127,131,150,182,186,193,202,561],projectil:340,promin:34,promis:2,promisqu:188,prompt:[0,7,50,53,68,71,98,99,106,120,128,131,143,176,189,192,205,206,209,210,211,212,213,220,236,386,461,489,503,514,519,520,545,551,565,619],promptli:17,pron:[0,33,473,554],prone:[12,235,541],pronoun:[0,33,60,97,224,225,325,473,543,554,569,572],pronoun_to_viewpoint:571,pronoun_typ:[60,554,571],pronounc:309,proof:0,prop:[132,147],propag:[15,207,234,495,563],proper:[0,5,15,18,21,33,34,53,60,75,79,113,131,147,149,167,168,174,178,179,181,186,191,194,205,212,241,264,272,287,312,389,473,550,554,565,571],properi:248,properli:[6,10,12,13,33,37,50,72,76,78,82,157,169,175,187,188,189,194,197,215,220,236,312,367,441,447,468,485,486,511,567,578],properti:[0,1,9,11,16,25,34,36,37,39,42,44,45,49,55,60,70,82,83,87,88,89,101,106,119,124,126,129,130,132,133,137,139,142,145,149,151,152,155,157,163,167,168,170,177,178,180,181,184,187,188,191,196,219,220,222,227,228,230,236,238,241,249,251,252,255,257,264,270,272,274,285,299,302,304,305,318,321,322,334,337,339,341,361,370,371,372,375,377,390,393,394,404,406,407,408,410,411,412,413,433,439,440,441,449,461,463,465,466,468,469,471,472,473,477,478,481,483,484,485,495,496,498,503,509,522,523,530,531,532,539,541,542,546,548,551,554,561,562,563,564,565,567,575,576,577,579,580,581,582,583,590,607,615,617],propertli:187,property_nam:471,property_valu:471,propnam:191,propos:28,proprietari:205,propval:191,propvalu:191,prose:150,prosimii:[0,194,195],prospect:[147,321],prot:478,prot_func_modul:[44,220,476],protect:[0,8,22,78,140,217,220,241,322,407,433],protfunc:[0,220,224,225,474,477,478,554],protfunc_callable_protkei:476,protfunc_modul:477,protfunc_pars:477,protfunc_raise_error:[0,477,478],protfunct:477,protkei:[44,476,477],proto:[500,511],proto_def:334,protocol:[21,24,35,43,46,53,63,68,129,131,137,138,150,200,202,206,217,218,219,220,222,227,228,236,239,325,431,446,473,487,488,491,493,496,500,501,502,503,504,505,506,507,509,510,511,513,514,515,516,518,519,520,522,529,530,531,532,549,563,567,619],protocol_flag:[0,220,513,514,518,530],protocol_kei:[220,531],protocol_path:[509,532],protodef:334,prototocol:251,protototyp:[475,477,478],protototype_tag:44,prototoyp:476,prototyp:[25,33,89,102,112,129,137,138,147,152,198,220,224,225,241,258,272,321,334,338,339,343,362,369,370,371,417,440,619],prototype1:478,prototype2:478,prototype_:44,prototype_desc:[44,478],prototype_dict:241,prototype_diff:478,prototype_diff_from_object:478,prototype_from_object:478,prototype_kei:[0,44,89,125,241,321,477,478],prototype_keykei:241,prototype_list:0,prototype_lock:[44,478],prototype_modul:[0,44,125,220,241,366,477,478],prototype_or_kei:417,prototype_pagin:477,prototype_par:[0,44,125,241,366,478],prototype_tag:478,prototype_to_str:477,prototypeevmor:477,prototypefunc:[220,478],protpar:[477,478],proud:184,provid:[1,4,5,9,11,15,19,20,24,25,33,34,42,44,45,50,51,52,53,54,55,57,58,60,66,72,77,82,83,84,85,88,89,99,101,103,105,112,120,124,126,128,130,137,140,143,144,145,149,155,165,184,186,188,192,193,194,195,196,197,208,211,212,217,218,227,236,241,246,253,255,264,265,273,284,298,299,304,315,318,321,334,337,339,340,341,348,361,369,375,379,386,408,410,412,417,419,441,449,451,457,461,463,468,473,476,477,484,491,511,534,540,542,550,551,554,561,562,563,565,567,568,592,593,607,613,616,618],provok:[7,200],prowl:34,proxi:[0,50,137,208,220,221,536,576,583,619],proxypass:207,proxypassrevers:207,proxyport:220,prudent:5,prune:22,pseudo:[64,72,113,126,182,186,389,456,457,619],psionic:340,psql:205,pstat:8,psycopg2:205,pty:189,pub:[220,246,255],pubkeyfil:511,publicli:[13,55,149,209,220],publish:[4,5,200,212],pudb:[0,3,224],puff:167,puid:220,pull:[1,3,4,12,22,24,33,54,55,98,126,127,128,131,138,150,193,212,216,289,406,440,451,493,615],pummel:146,punch:[22,122,133],punish:[149,161,341],puppet:[0,9,14,22,24,27,35,36,42,46,47,52,59,64,82,83,89,101,104,139,152,168,169,175,179,181,183,185,189,191,194,220,226,227,232,238,241,249,257,321,328,348,363,405,468,473,530,532,541,542,575,580,608,613,615],puppet_object:[14,227],puppeted_object:575,purchas:[149,184,208],pure:[50,62,71,82,102,149,167,171,188,208,481,491,539,544],pure_ascii:567,purg:[15,50,222,251],purpl:416,purpos:[0,15,43,48,60,68,94,136,144,149,152,155,161,172,188,191,194,196,208,217,228,232,236,285,309,370,383,411,416,511,539,548,551,554,567,571],pursu:[146,152,439],push:[0,83,101,115,132,141,142,149,188,212,218,289,304,433,440],pushd:213,put:[0,1,3,7,10,11,14,16,17,24,28,30,36,39,40,42,44,46,50,51,55,56,57,59,62,68,70,74,75,77,85,88,89,93,94,101,102,103,106,111,120,125,126,127,128,131,133,134,138,139,140,141,143,145,147,150,151,155,163,165,168,169,170,174,177,178,179,180,182,184,185,191,192,193,194,196,205,217,219,220,221,235,238,239,241,243,247,262,309,315,318,321,322,337,341,386,389,390,399,407,408,410,441,449,461,469,500,514,552,553,567],putobject:77,putobjectacl:77,putti:217,puzzl:[0,89,94,122,146,200,224,225,258,310,321,408,440,441,619],puzzle_desc:440,puzzle_kei:441,puzzle_nam:334,puzzle_valu:441,puzzleedit:334,puzzlerecip:[112,334],puzzlesystemcmdset:[112,334],pvp:[132,147,415],pwd:[8,212],py2:0,py3:500,py3k:77,pyc:138,pycharm:[3,128,132,619],pyflak:2,pylint:2,pyopenssl:[201,220],pypa:215,pypath:567,pypath_prefix:567,pypath_to_realpath:567,pypi:[0,8,131,200,217,544],pypiwin32:[189,213,215],pyprof2calltre:8,pyramid:[124,361],pyramidmapprovid:[124,361],python2:189,python3:[131,211,213,215,394],python3_properti:131,python:[0,3,6,7,8,9,10,11,12,14,15,17,18,21,22,24,28,30,33,34,36,38,40,44,48,50,51,52,53,54,55,56,57,59,62,65,66,67,70,72,73,75,77,78,80,83,87,91,98,102,103,106,123,124,125,126,128,129,131,132,133,134,135,136,137,139,140,141,142,145,148,149,150,151,152,155,157,158,161,163,164,165,166,167,169,172,175,176,177,178,179,181,182,184,186,187,189,191,192,194,195,196,197,201,202,203,204,205,210,211,212,213,215,216,217,219,220,222,233,235,240,241,245,251,252,264,283,284,285,286,287,289,299,321,361,371,383,409,411,457,463,469,471,472,476,478,480,483,486,491,493,500,504,509,519,530,532,536,538,540,541,544,545,547,548,549,550,551,553,554,555,558,560,563,564,565,567,585,590,596,619],python_path:[144,235,567],pythonista:200,pythonpath:[235,491,501,545],pytz:568,q_lycantrop:136,q_moonlit:136,q_recently_bitten:136,qualiti:[78,126,147,149,157,161,163,233,410,412,416,417],queen:125,quell:[14,25,27,63,116,122,133,134,139,140,143,146,180,238,354,468],quell_color:241,queri:[0,13,15,25,33,44,48,51,58,68,70,88,125,126,131,132,142,145,157,167,176,181,230,246,248,257,273,318,372,390,464,465,466,471,472,473,477,478,481,498,511,526,539,540,541,542,552,554,559,564,567,568],query_al:539,query_categori:539,query_info:491,query_kei:539,query_statu:491,query_util:587,queryset:[0,45,48,131,132,142,145,196,229,256,305,328,371,372,464,471,473,477,480,483,497,540,552,564,576,583,587,593,612,613,615,618],queryset_maxs:552,querystr:587,quest:[93,101,118,126,130,132,146,147,150,157,158,168,176,224,225,258,395,401,404,409,411,412,417,426,441],quest_categori:413,quest_kei:413,quest_storag:187,quest_storage_attribute_categori:413,quest_storage_attribute_kei:413,questclass:187,quester:[187,413],questhandl:[187,413],question:[0,2,11,13,24,28,30,56,75,82,83,107,126,135,147,148,149,150,168,177,207,208,217,241,472,488,489,539,549,551,565,567],queu:[220,491],queue:[5,178,406,536],qui:31,quick:[0,9,22,24,38,45,48,72,76,80,83,89,101,112,126,128,130,132,135,143,144,147,152,178,181,186,213,217,228,241,264,389,463,478,496,539,542,553,592],quicker:[39,70,103],quickfind:145,quickli:[0,1,12,15,18,24,30,38,40,48,56,70,83,109,113,125,126,149,150,152,181,193,198,241,264,307,309,389,542,545],quickstart:[67,70,141,169,211,217,619],quiescentcallback:493,quiet:[1,87,125,145,184,227,239,241,246,264,295,315,363,390,473,552,567],quiethttp11clientfactori:493,quietli:[33,68,71,172,220,539],quirk:[3,15,206,235,619],quit:[0,7,8,12,14,19,24,27,28,30,46,56,64,83,96,101,102,103,122,125,128,130,133,134,136,139,143,144,145,146,149,163,168,173,179,181,184,192,194,196,205,208,209,211,238,253,264,265,280,285,302,307,340,412,449,511,549,551,552],quitfunc:[28,549],quitfunc_arg:549,quitsave_yesno:549,quitter:146,quo:49,quot:[15,21,26,28,33,36,44,143,183,205,241,253,280,390,407,549,551,563,567],qux:[120,461],ra4d24e8a3cab:26,race:[130,132,147,158,167,177,194,200,207,567],rack:[322,440],radial:408,radiant:82,radio:[20,149],radiu:[106,181,182],rafal:77,rage:[119,146,394],ragetrait:[119,394],rail:[131,180],railroad:180,railwai:370,rain:[45,146,149,190],raini:441,rais:[0,15,18,21,24,33,44,56,68,89,101,136,149,155,161,163,177,186,195,197,227,228,229,256,264,276,283,285,286,321,345,348,369,370,371,372,383,389,390,394,404,410,416,455,457,469,471,476,477,478,486,490,491,509,514,520,535,539,540,542,544,545,547,550,551,553,554,561,562,563,565,567,568,588],raise_error:[33,477,554,562,567],raise_except:[0,15,321,539,542],raise_funcparse_error:473,ram:[15,217],ramalho:200,ran:[5,7,16,30,143,484],rand:45,randint:[33,44,89,101,105,139,161,177,178,186,191,198,337,478,554],random:[0,26,30,33,44,45,81,82,89,101,102,105,113,126,132,134,139,146,149,158,161,177,178,186,189,190,191,198,217,219,279,291,309,322,337,341,361,375,389,399,400,405,408,414,416,417,433,440,441,454,455,456,457,458,478,500,522,523,554,567,619],random_result:161,random_string_from_modul:567,random_string_gener:[114,224,225,258,443,619],random_t:[152,224,225,258,395,401],randomli:[8,45,70,105,161,190,220,337,338,339,340,341,405,433,439,440,491,523,554],randomstringgener:[114,457],randomstringgeneratorscript:457,rang:[7,8,22,28,44,71,96,105,106,119,121,125,126,134,146,155,161,167,178,181,182,186,206,218,220,241,276,338,340,341,367,369,372,393,394,406,416,449,540,549,554,607,618],ranged_attack:322,rangedcombatrul:341,ranger:407,rank:[0,59,468],rant:0,raph:200,rapidli:235,rapier:136,raptur:515,rare:[10,12,24,49,56,60,70,83,105,128,215,246,371,469,471,547],rascal:48,rase:323,rate:[8,24,82,88,126,127,131,161,217,220,246,258,318,373,392,486,491,510,567],rate_of_fir:171,ratetarget:[119,393,394],rather:[0,1,2,9,11,12,13,14,15,16,24,34,40,45,48,49,55,70,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,134,135,138,140,143,149,151,152,165,168,172,178,181,186,195,204,208,219,220,222,227,230,234,238,241,242,248,249,251,255,285,295,312,331,337,338,339,340,341,370,371,375,386,390,394,408,462,473,475,477,478,539,541,544,553,562,563,576,583,616],ration:[79,152,161,312],rattl:[161,416],raw:[0,15,24,33,35,44,53,57,62,68,70,128,131,132,134,143,144,149,165,167,227,233,236,241,249,250,252,299,390,394,446,473,496,511,514,519,520,530,539,544,549,551,561,567],raw_cmdnam:[133,233,250],raw_desc:345,raw_id_field:[577,580,581],raw_input:[30,551],raw_nick:39,raw_str:[24,30,133,152,184,227,228,232,233,236,252,303,405,406,407,411,417,438,449,461,473,475,530,539,551,565],raw_templ:39,rawhid:322,rawhiderecip:322,rcannot:83,rdelet:241,re_format:544,re_mxplink:566,re_mxpurl:566,re_protocol:566,re_str:566,re_styl:566,re_url:566,re_valid_no_protocol:566,reach:[30,39,71,83,125,133,134,140,146,149,157,177,180,181,217,220,224,236,283,341,370,394,404,412,417,449,511,515,534,551,552,564],reachabl:[49,131,369],react:[30,49,54,101,176,183,375,406,439,473,539,619],reactiv:[82,251],reactor:[502,529,536,565],read:[0,1,3,8,11,12,13,15,16,18,19,21,22,24,30,33,34,36,38,44,46,51,55,58,63,67,70,71,77,83,89,94,99,101,102,103,111,114,119,122,125,126,127,128,130,131,133,134,136,137,138,139,140,141,143,144,146,149,150,155,157,163,167,169,171,172,181,186,188,189,191,192,194,195,196,197,200,202,204,205,207,217,218,219,220,227,230,240,247,248,257,264,289,304,328,345,369,370,386,390,394,440,441,457,463,465,472,473,477,478,481,498,500,523,539,541,542,545,546,550,552,559,560,567,575,612,615,619],read_batchfil:545,read_default_fil:5,read_flag:304,read_only_field:[196,590],readabl:[8,21,49,50,62,72,101,128,182,248,262,304,321,369,440,544,551,615],readable_text:440,reader:[35,99,128,140,169,194,200,203,220,227,246,341,386,496,510],readi:[0,1,5,7,8,10,13,14,18,36,40,56,57,64,88,94,127,132,134,138,149,150,155,171,172,180,184,193,196,209,211,227,236,272,318,337,338,339,340,341,379,390,406,407,473,520,552,561,567],readili:[106,205],readin:550,readlin:560,readm:[13,17,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,138,163,220,258,446],readon:155,readonly_field:[575,577,580,581],readonlypasswordhashfield:575,readout:[82,375],readthedoc:587,real:[0,7,8,9,13,14,21,22,33,40,44,50,56,65,72,83,94,101,102,106,113,121,126,128,130,136,141,143,144,149,164,169,170,175,177,178,179,181,188,191,202,208,212,215,217,220,222,230,235,257,276,312,322,339,370,371,389,390,405,417,454,468,522,545,554,555],real_address:14,real_nam:14,real_seconds_until:[276,555],real_word:389,realist:[8,149,150,190,304],realiti:[8,106,130,147,167,188,200],realiz:[13,139,188],realli:[1,2,7,9,12,15,16,17,20,22,24,30,33,36,40,45,48,49,51,56,57,59,72,83,94,101,106,120,122,123,125,126,128,131,133,134,137,139,140,141,144,145,150,158,161,169,175,180,181,183,186,187,202,203,208,220,222,236,252,264,299,312,370,461,469,500,544,545,551,563,565],really_all_weapon:136,realm:[149,511],realnam:40,realpython:56,realtim:[138,169,276,375],realtime_to_gametim:[90,276],reappli:82,reapplic:[82,375],reason:[1,8,10,13,15,16,20,30,34,36,38,39,40,42,44,45,49,50,52,57,64,68,70,74,83,89,92,113,119,125,127,128,131,133,139,141,147,149,150,155,161,163,167,168,169,177,178,181,182,188,189,197,207,208,215,220,227,239,241,246,251,280,295,305,321,369,370,389,394,457,471,473,477,482,488,493,500,501,502,503,509,510,511,514,519,520,522,530,531,532,541,549,554,560,567,618],reasourc:44,reassign:182,reattach:[10,502,503],rebal:0,reboot:[0,12,15,21,27,28,37,45,46,49,70,77,86,119,130,138,178,196,208,210,212,217,220,221,227,235,246,251,267,318,394,439,440,449,473,481,482,484,486,491,531,532,549,551],reboot_evennia:491,rebuild:[12,125,169,208,212,215,371,389,503],rebuilt:[24,125,208,220,369],rec:220,recach:441,recal:[151,155,440,612],recaptcha:194,receiev:220,receipt:[78,218,493],receiv:[0,7,20,22,24,30,31,33,38,39,46,53,54,63,68,73,89,127,138,157,169,185,186,194,217,220,227,234,235,253,255,256,257,280,305,328,369,390,394,407,446,473,493,496,500,502,503,509,519,520,522,529,530,547,552,554,564,565,567,577,619],receive_functioncal:500,receive_status_from_port:491,receiver1:565,receiver2:565,receiver_account_set:230,receiver_extern:257,receiver_object_set:472,receiver_script_set:481,recent:[1,19,55,149,191,208,229,534],recently_bitten:136,recev:520,recip:[49,103,112,126,149,224,225,258,310,320,323,334],recipe_modul:321,recipe_nam:321,recipebread:89,recipenam:89,recipes_pot:321,recipes_weapon:321,recipi:[20,33,38,89,169,227,255,256,328,379,473,500,554],reckon:189,recog:[0,39,63,113,390,619],recogerror:390,recoghandl:390,recogn:[11,35,40,58,84,133,134,140,143,144,149,163,174,192,195,213,217,222,390,394,536],recognit:[60,113,126,150,390,539],recommend:[0,1,2,8,13,15,30,40,44,50,57,70,71,72,75,87,93,121,125,127,128,130,135,143,147,149,163,169,176,177,189,197,200,205,206,207,210,213,215,216,217,220,251,285,299,369,386,405,445,469,471,473,478,493,545,551,564],reconfigur:217,reconnect:[92,107,220,227,228,246,255,488,491,500,502,503,529,532],reconnectingclientfactori:[488,502,503,522],record:[18,78,191,205,217,341,446,534,607],record_ip:534,recours:57,recov:[0,21,119,161,167,171,172,337,338,339,340,341,394,469,567],recoveri:178,recreat:[12,45,106,138,139,205,215,220,228,235,371,545,546],rectangl:550,rectangular:[169,550],recur:131,recurs:[0,15,101,348,370,468,477],recycl:124,recycle_tim:408,red:[16,17,22,39,42,44,55,62,80,125,126,128,134,138,141,143,144,187,188,220,241,251,304,315,416,432,433,440,544,554,568,619],red_button:[0,16,17,39,115,134,138,224,225,241,252,258,395,619],red_kei:42,red_ros:136,redbutton:[16,17,39,115,134,138,241,433],redd:218,reddit:[200,218],redefin:[24,40,83,130,473,607],redhat:[208,215],redirect:[0,46,55,64,75,83,138,194,197,207,220,264,304,307,551,609,613,618],redirectlink:370,redirectview:613,redit:[83,264],redmapnod:125,redo:[28,143,144,147,549],redoc:[0,196],redraw:511,reduc:[178,337,338,504],reduct:77,redund:544,reel:235,reen:544,ref:[50,82,128,205,220,390,473,567,607],refactor:[0,168,337,338,340,473,570],refer:[3,6,10,13,15,16,22,24,30,33,36,39,40,44,45,46,50,55,59,60,64,70,71,74,77,79,82,83,84,89,101,102,103,105,106,113,114,119,126,127,131,132,133,136,138,139,141,143,144,150,151,155,157,161,163,167,168,175,177,178,182,184,188,189,194,195,196,197,200,207,210,212,217,219,220,222,227,235,241,246,250,255,295,307,312,322,337,339,363,369,372,375,390,394,401,406,409,411,417,449,457,468,473,482,483,485,486,493,503,523,531,540,551,554,558,563,564,567,576,583,618,619],referenc:[40,44,52,63,113,126,128,157,167,196,219,236,241,246,255,369,390,408,463,465,541,567,619],referenti:567,referr:217,refin:[136,182,322],reflect:[82,143,146,213,375,618],reflectbuff:[82,375],reflex:[60,554,571],reflow:58,reformat:[478,553],reformat_cel:553,reformat_column:[106,553],refresh:[55,82,125,157,161,195,375,376,412,511,534],refus:[20,57,149],regain:[161,172,416],regard:[188,457,587],regardless:[0,11,22,24,42,46,50,57,59,60,68,82,136,147,155,169,177,180,220,227,234,255,304,312,325,375,390,410,473,486,508,511,514,529,531,539,542,545,558,560,567],regener:339,regex:[0,20,24,28,30,39,53,55,78,86,220,236,239,251,252,255,267,457,535,539,551,567,596],regex_nick:39,regexfield:575,region:[76,125,169,217,220,239],regist:[0,13,53,54,55,68,75,87,101,125,178,194,196,198,201,204,218,219,220,221,227,229,246,251,270,271,272,274,289,318,406,413,417,439,440,482,491,502,503,509,532,534,536,544,554,592,598,608,611],register_act:406,register_error:544,register_ev:[101,289],register_exit_travers:408,registercompon:53,registertest:608,registr:[0,51,201,611],registrar:208,registri:[126,457,534,536,619],regress:477,regroup:87,regul:469,regular:[0,11,13,15,19,20,24,33,34,38,45,46,49,52,53,54,60,75,78,79,85,101,112,114,125,126,128,132,134,135,136,138,139,143,144,147,155,157,161,165,187,190,195,197,212,213,217,220,228,234,315,334,370,406,416,441,457,463,469,486,539,542,554,558,567,571,596],regulararticl:559,regulararticle_set:559,regularcategori:559,regularli:[12,101,190,198,203,208,220,276,306,439,441,484,486,494,524,555],reilli:200,reimplement:[90,126,196],reinforc:200,reiniti:222,reinstal:[213,215],reinvent:168,reiter:144,reject:[96,101,449,457],rejectedregex:457,rejoin:20,rel:[13,16,17,22,30,34,52,56,59,83,105,124,125,126,128,132,142,149,163,182,191,194,219,276,304,341,545,551],relai:[0,21,24,46,202,227,246,312,325,369,473,509,532,551,552,567],relat:[0,15,20,22,24,30,34,50,53,55,98,119,125,126,136,138,139,140,144,145,157,161,167,168,171,187,190,200,218,219,220,222,230,231,234,249,254,256,257,271,272,273,274,276,289,303,304,305,337,338,339,340,341,343,369,370,375,377,394,413,438,441,446,465,472,473,480,481,486,496,532,539,541,542,544,551,559,560,573,575,576,583,590,600,607,619],related_field:[575,576,577,579,580,581,583],related_nam:[230,257,465,472,481,539,541,542,559],relationship:[38,50,182],relay:228,releas:[0,77,93,126,127,128,132,138,148,149,150,161,171,189,199,200,212,216,217,221,251,571],relev:[15,17,24,36,40,47,48,50,52,55,75,76,79,82,83,119,125,127,128,140,151,152,155,157,161,165,169,173,175,178,189,191,194,200,216,227,232,234,264,312,321,370,375,394,469,483,505,523,530,531,532,544,549,551,561,567,576,583],relevant_choic:264,reli:[0,11,30,49,62,70,71,75,97,101,113,126,145,149,175,186,188,189,325,390,394,406,441,491,541],reliabl:[1,16,50,205,541,558],reliant:105,religion:[34,463],reload:[0,2,3,4,5,7,10,12,14,15,16,17,21,22,24,26,27,28,30,34,35,43,45,46,49,50,52,54,55,57,59,64,65,75,82,83,89,92,94,95,97,98,100,101,103,107,109,110,113,117,119,125,126,133,138,139,140,141,143,151,155,157,163,165,168,169,171,172,174,175,177,178,179,180,181,183,184,185,187,191,193,194,195,197,201,203,204,208,210,215,219,220,221,227,228,235,240,241,251,255,264,280,286,295,331,345,348,357,361,369,371,377,390,394,440,441,451,463,469,471,473,480,482,484,486,491,500,501,503,505,529,532,536,539,545,547,549,550,551,555,567,619],reload_evennia:491,reluct:149,remain:[0,9,15,16,22,24,28,30,44,45,47,59,73,82,94,113,119,138,139,140,141,169,176,186,217,222,233,235,241,243,247,276,307,321,337,338,339,340,341,345,389,394,406,408,439,473,491,519,520,551,552,567],remaind:[24,179,276],remaining_repeat:45,remap:[143,220,539,550],rememb:[3,8,11,12,13,15,16,22,24,30,34,42,44,48,49,53,55,57,62,70,71,83,101,103,106,125,136,139,143,144,145,146,147,149,150,151,152,155,157,161,163,167,169,172,175,179,181,182,184,185,186,187,188,191,196,197,209,213,215,217,239,241,285,370,389,473,482,545,564],remind:[28,103,128,413],remit:239,remnisc:168,remot:[1,98,208,212,218,221,246,451,500,502,514],remote_link:451,remov:[0,3,5,12,13,15,20,21,22,25,28,30,33,34,37,39,40,42,45,49,57,77,78,83,87,94,103,113,114,115,119,125,130,132,133,136,138,139,146,149,158,169,178,179,181,186,189,193,194,197,203,220,224,234,235,239,241,246,247,248,251,252,255,257,264,270,271,272,273,274,283,287,295,304,309,315,322,334,337,338,339,345,370,371,375,376,377,389,390,393,394,404,406,407,408,410,413,417,433,449,457,461,469,472,473,477,478,482,483,485,486,491,509,520,532,534,539,542,544,548,551,558,563,565,566,567,593],remove_alia:246,remove_backspac:566,remove_bel:566,remove_by_cachevalu:[82,375],remove_by_nam:272,remove_by_sourc:[82,375],remove_by_stat:[82,375],remove_by_trigg:[82,375],remove_by_typ:[82,375],remove_charact:178,remove_combat:406,remove_default:[22,235],remove_listen:273,remove_map:371,remove_non_persist:480,remove_object:371,remove_object_listeners_and_respond:273,remove_receiv:257,remove_respond:273,remove_send:257,remove_user_channel_alia:[20,255],removeth:539,renam:[0,8,27,133,134,143,144,169,189,193,216,220,241,247,255,473,480,541],render:[47,53,54,55,83,99,100,128,165,193,194,195,197,248,348,386,536,561,563,575,576,577,579,580,581,583,590,596,605,607,618],render_post:520,render_room:348,renew:[169,208,534],reorgan:0,repair:[132,147,179],repeat:[0,7,8,71,90,101,103,106,114,126,143,147,149,161,175,178,180,183,193,211,220,222,227,228,276,306,312,406,408,457,461,480,481,484,491,496,515,539,547,551,555,567],repeatedli:[7,17,35,138,175,306,439,481,484,486,491,496,522,600],repeatlist:35,repetit:[175,178,457],replac:[0,1,5,15,20,22,24,28,30,33,34,35,36,39,40,44,46,51,53,60,62,75,77,79,83,86,92,96,101,106,109,110,111,113,125,126,128,132,133,135,138,140,142,143,145,155,161,168,173,174,176,178,189,193,195,197,205,207,208,212,216,219,220,227,233,234,235,236,239,247,248,251,252,255,267,270,280,283,286,295,299,303,309,312,318,321,331,334,345,369,370,389,390,406,407,416,417,433,438,441,449,469,473,475,477,478,503,506,519,520,530,539,544,549,550,551,552,553,554,566,567,596,598],replace_data:553,replace_timeslot:345,replace_whitespac:553,replacement_str:247,replacement_templ:247,replai:220,replenish:[337,341],repli:[24,30,79,149,173,201,228,312,328,489,513,514,520,532,551],replic:[150,193,542],replica:[13,139],repo:[0,10,13,67,98,126,127,128,137,147,168,189,200,216,451,567],repo_typ:451,repoint:55,report:[0,2,8,9,11,13,24,27,37,45,49,83,89,101,113,122,125,127,145,147,149,177,178,186,193,205,206,211,215,218,219,220,229,241,246,283,286,299,321,370,390,473,491,496,500,503,506,507,514,515,519,522,530,532,544,547,551,567],report_to:[229,471,480,547],repos:619,repositori:[1,3,4,6,67,77,98,127,137,187,189,199,205,207,212,451,478],repositri:67,repr:[186,567,615],reprehenderit:31,repres:[0,1,14,22,24,33,34,38,40,46,47,50,55,60,64,70,73,83,87,96,99,101,102,103,105,113,114,116,119,125,126,129,131,132,133,134,136,137,138,139,141,144,149,150,155,157,161,167,171,172,175,178,179,182,184,187,188,189,193,194,197,227,232,256,283,289,299,307,315,339,354,369,370,371,375,386,389,390,394,409,412,413,440,441,446,449,457,461,463,473,478,485,486,488,502,503,519,520,530,531,532,536,539,540,544,546,547,551,552,553,554,563,567,570,593],represent:[0,14,15,33,38,39,46,64,70,71,73,131,169,177,188,256,283,286,369,390,410,417,471,477,481,500,519,520,542,548,555,590],reprocess:218,reproduc:[56,125,370,473],repurpos:77,reput:[132,147,445],reqhash:[540,567],reqiur:[96,449],request:[0,2,3,30,36,47,51,54,55,64,75,79,127,138,144,165,191,194,195,196,197,207,217,218,220,227,228,239,286,312,318,473,477,491,493,500,503,505,510,511,513,520,536,542,551,575,576,577,578,580,581,583,587,588,593,598,599,600,601,605,612,614,615,618],request_finish:47,request_start:47,requestavatarid:511,requestfactori:536,requestor:534,requir:[4,8,11,17,18,24,28,30,33,34,36,37,40,42,44,49,50,51,52,53,54,55,56,61,70,74,77,78,82,83,87,89,94,98,101,102,105,106,107,109,114,120,125,126,127,128,133,140,147,149,150,152,169,178,182,183,188,189,190,193,194,195,196,197,199,200,204,205,207,208,209,211,213,217,220,221,222,229,240,241,246,256,257,280,295,299,318,321,322,331,339,340,345,369,370,372,375,383,390,394,406,410,441,449,457,461,464,468,471,473,477,485,491,502,503,516,524,535,540,545,550,551,552,553,554,558,562,563,564,567,575,576,577,579,580,581,583,607,613],require_al:[42,542],require_singl:[0,477],requirements_extra:[0,2,77,98,125],requr:44,requri:[477,554],rerout:[0,54,184,238,242,503,584],rerun:[0,15,16,17,30,125,321],res:220,rescind:407,research:[149,200,285],resembl:[1,74,130],resend:24,reserv:[24,33,56,106,133,139,143,151,172,477,535,540,554,567],reserved_keyword:33,reserved_kwarg:[33,554],reset:[0,3,18,19,21,22,24,27,28,45,46,50,57,62,65,82,101,103,106,113,119,133,138,157,171,174,177,178,180,188,191,219,220,221,227,228,235,241,251,276,286,302,304,318,375,389,390,393,394,406,408,440,469,491,495,501,511,529,539,542,545,553,554,555,565,567],reset_cach:[539,542],reset_callcount:45,reset_exit:408,reset_gametim:[21,555],reset_serv:495,reset_tim:345,reshuffl:[132,142],resid:[72,137,469],residu:[251,339],resist:[87,478,567],resiz:[54,169,550,553],resolut:[119,149,178,369,394,412,416],resolv:[2,7,13,94,128,143,144,149,150,157,161,178,217,219,334,337,338,339,341,406,590],resolve_attack:[337,338,339,340,341],resolve_combat:178,resort:[24,128,169,209,246,567],resourc:[11,25,49,51,54,55,72,75,77,119,126,127,128,129,133,136,137,138,139,141,143,144,145,149,157,161,167,171,189,193,205,217,218,220,227,340,368,394,466,482,489,520,536,546,565,619],respawn:[125,132,147],respect:[0,24,33,36,40,45,46,50,51,82,89,101,103,104,112,117,125,126,141,163,169,172,191,205,219,220,239,241,248,312,321,328,334,357,375,390,406,469,473,530,531,541,542,545,547,550,553,564,567,571,607],respond:[0,30,37,47,68,102,103,108,126,138,140,147,183,184,185,188,222,273,518,522],respons:[0,8,19,30,33,34,51,54,55,56,58,71,127,131,180,182,183,186,196,198,217,220,227,228,235,236,246,255,273,321,361,408,441,463,465,473,489,491,493,500,522,523,532,541,550,561,563,567,590],response_add:[575,577,580],rest:[0,10,19,20,24,25,30,33,39,45,54,55,70,77,84,93,106,111,119,128,132,138,139,142,143,144,146,147,149,157,161,167,172,176,177,191,194,210,213,219,220,233,249,250,337,338,339,340,341,394,416,539,544,553,587,588,590,591,592,593,619],rest_api_en:[51,54,220],rest_framework:[51,196,220,587,588,589,590,591,593],restart:[0,2,7,10,12,27,43,45,53,57,67,75,86,91,98,101,126,139,144,169,178,196,205,208,213,217,218,219,220,221,222,224,227,251,255,264,267,270,286,377,383,451,473,480,482,484,485,486,495,508,529,530,531,567],restartingwebsocketserverfactori:[228,502],restock:149,restor:[15,22,103,188,264,322,340,482,486],restrain:[119,241,394,468,550,567],restrict:[15,36,44,49,50,53,59,82,85,101,106,114,134,137,138,145,155,177,195,207,217,241,295,315,340,341,369,457,463,464,469,471,478,480,547,549,550,551,553,564],restructur:[0,128,167],result1:334,result2:[30,334],result:[0,9,11,13,15,21,22,24,30,33,34,36,44,46,49,51,53,54,56,60,71,75,78,80,84,85,89,91,93,96,105,111,112,113,114,119,125,128,133,136,137,139,141,143,145,149,151,155,157,161,163,169,173,177,178,183,186,188,191,193,195,205,217,219,220,227,229,233,234,236,241,248,255,257,273,304,312,321,322,323,334,337,338,339,341,369,370,375,383,389,390,394,406,416,441,445,449,457,464,466,469,471,473,477,478,480,491,500,522,539,541,544,549,550,551,553,554,558,560,561,564,565,567,568,570,585,615],result_nam:334,resum:[24,84,125,172,379,485],resurrect:[149,439],resync:[228,500,530],ret1:554,ret:[24,155,565],ret_index:567,retain:[0,9,21,22,34,44,55,56,67,97,106,144,152,161,220,256,325,394,463,465,472,478,537,539,541,545,547,554,560,567,571],retain_inst:[0,236],retext:128,retract:312,retreat:[341,406],retri:491,retriev:[0,9,20,24,35,48,51,70,72,76,87,101,103,119,125,155,191,196,197,220,227,230,232,235,241,246,251,252,256,272,285,345,363,370,375,394,451,464,468,472,473,477,489,496,497,503,509,518,539,542,548,558,562,564,567,572,587,588,592,593,612,615,618],retriv:[228,546],retro:20,retroact:[50,169],retur:31,return_al:473,return_alias:370,return_appear:[0,125,182,191,304,305,315,345,372,390,412,431,440,473],return_apper:[372,473],return_cmdset:248,return_detail:[345,441],return_dict:463,return_except:0,return_iter:477,return_key_and_categori:542,return_list:[0,33,111,454,455,539,542,554],return_map:106,return_minimap:106,return_obj:[15,39,539,542,562],return_par:0,return_puppet:227,return_str:[33,369,554],return_tagobj:542,return_tupl:[39,383,539],return_valu:161,returnvalu:[24,56],reus:[0,50,87,143,145,171,269,295,558],rev342453534:567,reveal:[101,125,146,315],reveng:150,reverend:[77,126],revers:[22,24,55,60,62,101,106,124,172,180,181,188,195,220,230,246,257,361,369,393,465,472,481,536,539,541,542,544,559,593],reverse_lazi:220,reverseerror:[491,500],reversemanytoonedescriptor:[230,472,559],reverseproxyresourc:536,revert:[13,55,188,217,238,464],review:[12,22,75,103,127,131,133],revis:[0,147,571],revisit:[5,551],reviu:30,revok:169,revolutionari:13,reward:[122,149,413],rework:[0,107,126,139,147],rewrit:55,rfc1073:507,rfc858:513,rfc:[507,513],rfind:544,rgb:[62,143,544],rgbmatch:544,rgh:143,rhel:207,rhello:33,rhost:253,rhostmush:[72,74,168],rhs:[1,169,249,252],rhs_split:[241,247,249,315],rhslist:[0,249],rhythm:376,ricardo:567,riccardomurri:567,rice:149,rich:[0,77,83,149,168,199,548],richard:200,rick:44,rid:[141,167],riddanc:57,riddick:[96,449],ride:180,right:[0,1,2,7,8,9,12,17,24,30,33,35,36,39,44,45,51,53,54,55,56,67,77,82,87,89,95,96,101,102,103,106,124,125,126,128,132,133,136,137,138,139,140,143,144,146,147,149,150,151,152,163,167,168,169,172,179,180,181,184,186,188,191,192,194,195,196,200,205,207,208,211,217,220,235,238,241,249,251,253,255,286,287,298,302,304,315,321,334,341,345,348,361,369,370,386,406,411,416,433,439,440,441,449,469,478,481,531,544,545,549,550,553,567,568],right_justifi:44,rightmost:[125,370],rigid:168,rindex:544,ring:[113,145,149,389],ringmail_armor:15,rink:77,rip:152,rise:[22,175],risen:175,risk:[33,54,147,149,168,191,213,217,220,240,251,567],rival:106,rjust:[33,544,554],rm_attr:241,rmem:220,rnormal:62,rnote:251,road:[22,102,106,180,184,234,407],roam:[146,235,439],roar:106,robot:194,robust:[186,218],rock:[70,101,105,178,235],rocki:146,rod:235,rodrigo:77,role:[0,19,77,121,126,130,132,141,147,168,177,186,205,337],roleplai:[34,63,109,126,130,132,147,168,176,177,178,189,191,200,383,388,390,619],roll1:177,roll2:177,roll:[30,89,101,121,126,132,144,149,151,152,157,158,163,169,176,177,178,186,191,337,338,339,340,341,382,383,404,405,411,416,427,534],roll_challeng:177,roll_death:[151,161,416],roll_dic:383,roll_dmg:177,roll_engin:161,roll_hit:177,roll_init:337,roll_random_t:[151,152,161,416],roll_result:[161,383],roll_skil:177,roll_str:[161,416],roll_with_advantage_or_disadvantag:[161,416],roller:[126,132,149,151,177,178,321,383,416,619],rom:200,roof:241,room1:11,room2:11,room56:16,room:[0,3,7,11,15,16,17,18,20,21,22,24,36,38,44,45,48,50,51,52,57,60,72,74,76,83,91,94,100,101,102,105,113,116,117,118,121,123,124,125,126,129,130,131,132,134,136,138,139,140,141,142,143,144,145,146,148,151,152,155,158,167,168,170,174,175,176,177,178,179,180,183,184,185,186,189,191,194,196,198,219,220,224,225,232,233,234,235,239,241,247,252,258,264,285,299,300,301,302,303,304,306,307,309,315,337,338,339,340,341,344,345,348,354,357,361,363,364,366,369,370,371,372,383,390,395,401,406,408,410,424,433,435,437,438,439,440,468,473,481,495,523,545,565,587,593,608,619],room_desc:[11,105],room_dict:105,room_flag:167,room_gener:408,room_lava:167,room_replac:302,room_typeclass:[346,361,565,608],room_x_coordin:125,room_y_coordin:125,room_z_coordin:125,roombuildingmenu:[83,264],roomnam:[169,241],roomref:180,rooms_with_five_object:136,roomstat:304,roomviewset:[196,593],root:[2,5,6,8,9,10,12,16,36,40,55,60,70,75,77,83,98,128,131,137,189,193,195,196,197,199,205,208,211,212,213,216,217,224,225,440,473,478,491,536,548,573,586,598],root_urlconf:220,rose:[15,39,40,50,135,136,145],roses_and_cactii:145,rostdev:217,roster:[189,337,338,339,340,341],rosterentri:189,rot:11,rotat:[0,20,138,220,304,560],rotate_flag:304,rotate_log_fil:560,rotatelength:560,rough:[128,147],roughli:[147,169,567],round:[8,19,33,82,113,119,318,341,389,394,406,522,553,554],rounder:[113,389],rout:[53,125,126,134,167,180,182,196,227,363,369,370,406,411],router:[196,217,589,592],routerlink:125,routermaplink:[125,370],routin:[113,220,390,471,526,564],row:[0,53,58,62,70,103,106,128,131,136,161,165,169,178,182,188,197,369,372,406,553,567],rowboat:184,rowdi:105,rpcharact:390,rpcommand:390,rpg:[0,82,84,91,99,113,119,121,127,132,138,139,147,151,152,158,161,169,170,177,224,225,258,341,416,427,619],rplanguag:[0,113,224,225,258,373,388,390],rpm:215,rpolv:0,rpsystem:[0,60,109,113,149,224,225,258,331,373,619],rpsystemcmdset:[113,390],rred:544,rsa:[511,512],rspli8t:186,rsplit:[191,544],rss2chan:[27,133,203,220,246],rss:[12,220,221,224,225,228,246,254,487,496,499,509,619],rss_enabl:[203,220,246],rss_rate:228,rss_update_interv:[220,246],rss_url:[203,228,246],rssbot:228,rssbotfactori:510,rsschan:246,rssfactori:510,rssreader:510,rstop:241,rstrip:[186,544],rsyslog:445,rtext:[184,554],rthe:83,rthi:[62,143],rtype:536,rubbish:238,rubbl:125,rubi:131,rudimentari:[122,439],rug:152,ruin:[146,345,441],rule:[0,9,13,16,17,24,36,57,62,101,113,119,126,130,132,138,144,147,151,152,158,163,169,176,179,188,192,200,224,225,258,264,322,337,338,339,340,341,375,389,394,395,401,405,421,427,454,457,465,545,550,619],rulebook:[152,161,178],ruleset:[93,111,149,151,158,161,416],rumor:[34,149,417],rumour:146,run:[0,1,2,3,4,5,6,8,9,12,13,14,15,16,17,18,20,21,22,25,26,30,33,34,36,43,44,45,49,51,52,53,54,55,56,64,66,67,70,77,80,81,82,84,94,100,101,102,103,106,122,125,128,129,131,132,133,134,135,136,138,139,140,141,143,144,146,147,149,150,151,152,157,161,165,167,168,171,172,175,177,180,186,188,189,190,191,193,194,195,196,197,202,205,206,208,209,210,213,214,215,216,217,218,219,220,222,224,227,228,232,233,235,236,240,241,247,248,251,252,255,268,286,287,295,303,321,337,339,340,346,348,357,361,369,370,375,376,389,390,406,407,413,417,438,445,461,468,469,473,477,478,480,481,484,485,486,491,495,497,500,501,508,509,516,520,522,525,529,530,534,536,541,544,545,549,551,552,554,555,560,564,565,567,593,618,619],run_async:[56,567],run_connect_wizard:491,run_custom_command:491,run_dummyrunn:491,run_evscaperoom_menu:303,run_in_main_thread:[0,567],run_init_hook:529,run_initial_setup:529,run_menu:491,run_option_menu:303,run_start_hook:[50,541],rundown:142,rune:[157,161,406,410,412,422],runeston:[157,410,412],runnabl:44,runner:[3,5,8,10,220,440,522],runsnak:8,runsnakerun:8,runtest:[252,262,265,268,274,277,281,287,296,298,308,313,316,319,323,326,329,332,335,342,346,355,358,360,367,377,381,384,387,391,393,400,420,421,422,423,424,425,426,427,428,436,442,447,452,455,458,460,517,527,559,565,572,591,602,608],runtim:[21,24,57,82,87,175,220,236,264,272,299,555,567],runtimecomponenttestc:274,runtimeerror:[161,177,227,228,283,286,289,321,368,371,389,394,406,457,477,509,539,551,554,567],runtimewarn:[368,477],rusernam:30,rush:[149,172],russel:77,russian:67,rusti:[51,60,184],ruv:5,ryou:83,s3boto3storag:77,s3boto3storagetest:262,s3boto3testcas:262,s_set:136,sad:[194,407,514,551],sadli:253,safe:[0,2,4,9,13,15,22,40,54,55,79,102,125,126,131,149,157,167,173,194,208,219,227,238,312,469,486,500,532,536,541,545,548,554,558,567],safe_convert_input:567,safe_convert_to_typ:[33,567],safe_ev:567,safer:[16,57],safest:[46,103,217,541],safeti:[0,13,14,40,50,79,126,167,191,217,241,312,472,545],sai:[0,1,2,8,11,12,15,17,19,20,21,22,24,27,30,36,42,44,50,52,53,55,56,57,62,64,74,76,77,79,82,83,96,101,102,103,113,119,120,125,130,131,133,134,135,136,139,143,144,149,150,167,168,169,171,172,174,175,177,178,181,183,185,186,187,188,191,196,197,199,215,217,220,235,247,255,289,302,304,312,383,389,390,394,406,409,417,433,441,449,461,473,551,554],said:[2,30,48,56,68,83,101,102,103,106,128,139,143,149,163,168,174,176,182,186,195,220,233,246,250,361,369,390,404,406,408,411,412,473,503,539,541,551,619],sake:[16,75,143,147,150,168,185,188,220,253,280,617],sale:[184,417],salt:[89,321],same:[0,2,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,24,28,33,34,35,36,37,38,40,42,44,45,46,48,49,50,52,53,54,55,56,57,58,59,60,62,64,65,67,68,70,71,72,73,77,80,82,83,84,87,90,94,98,101,103,105,106,111,113,114,118,119,120,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,149,150,151,152,155,157,161,163,167,168,169,171,172,174,175,177,178,179,180,184,185,186,187,188,189,191,193,194,195,196,197,199,203,205,208,212,215,217,219,220,222,227,232,233,234,235,236,239,241,246,249,250,251,252,253,256,262,264,276,285,286,299,304,305,309,315,318,321,328,337,338,339,340,341,345,354,361,363,370,372,375,386,389,390,394,406,407,408,411,435,439,441,451,457,461,463,468,473,477,478,481,482,486,495,500,512,515,516,530,531,532,534,536,539,540,541,542,544,545,547,550,551,552,553,554,555,560,561,565,567,570,576,583,593,607,618],sampl:[5,82,120,167,207,212,375,461],samplebuff:[82,224,225,258,373,374,375],san:386,sand:[175,322],sandi:106,sandwitch:89,sane:[0,3,125,128,147,200,370,618],sanit:[607,618],saniti:[11,106,125,143,182,189,561],sarah:[74,247],sat:[76,179,304],sate:376,satisfi:[72,249,539],satur:218,sauc:143,save:[0,5,7,9,13,18,21,24,25,28,30,37,38,39,44,45,46,47,48,49,50,52,55,70,77,78,83,100,101,102,103,113,131,132,133,135,138,139,143,157,158,167,178,179,189,191,194,206,208,209,212,218,220,222,227,238,241,251,255,257,262,264,286,318,348,389,405,416,469,472,473,475,477,478,482,484,485,486,489,496,509,524,529,536,539,541,548,549,558,561,562,563,567,575,576,577,580,581,583],save_a:[577,579,580,581,582],save_as_new:[576,583],save_attribut:[155,410],save_buff:549,save_data:561,save_for_next:[24,236],save_handl:561,save_kwarg:562,save_model:[575,577,580,581],save_nam:486,save_on_top:[577,579,580,581,582],save_prototyp:[0,477],save_recip:334,savefunc:[28,549,562],savehandl:562,saver:548,saverdict:548,saverlist:548,saverset:548,saveyesnocmdset:549,saving_throw:[161,416],savvi:150,saw:[0,56,89,101,102,139,143,197],say_text:183,saytext:390,scale:[10,52,113,128,138,147,168,177,205,220,389,412,619],scalewai:217,scam:149,scan:[125,207,232,369,370,372,439,441],scarf:[85,315],scari:[139,143],scatter:[339,545],scedul:90,scenario:[169,367],scene:[9,15,35,44,48,62,101,114,130,144,146,149,177,178,179,188,394,441,457,481,486,558],schedul:[21,88,90,101,126,175,276,286,318,485,555],schema:[3,50,70,131,196,567],schema_url:196,schemaless:78,scheme:[24,62,70,94,143,241,251,544],schneier:77,school:[93,149],sci:[125,170],scienc:182,scientif:[170,200],scipi:[125,370],scissor:178,scm:189,scope:[35,52,101,131,140,147,149,195,279,291,457,480,547],score:[149,152,161,169,305,567],scott:77,scraper:613,scratch:[6,12,55,64,102,119,135,168,169,191,193,205,215,303,371,394,495],scrawni:152,scream:146,screen:[0,9,24,25,30,31,34,35,44,45,46,58,62,65,92,99,107,125,138,141,152,184,194,212,219,220,227,253,279,280,291,341,386,496,511,552,554,567,575,619],screenheight:[35,496],screenread:[0,27,35,227,253,496,519,520],screenreader_regex_strip:220,screenshot:194,screenwidth:[35,236,496],script:[0,5,6,8,10,11,15,16,17,21,25,27,33,36,37,38,40,44,46,47,48,49,50,51,53,70,72,79,80,95,98,112,114,117,124,125,126,129,130,132,133,134,137,138,139,142,145,146,149,150,167,168,175,178,190,194,196,198,204,213,214,217,218,219,220,222,224,225,227,228,240,241,251,256,257,258,259,276,282,283,289,300,301,312,334,337,338,339,340,341,345,357,361,371,389,398,399,406,408,433,441,451,457,472,473,477,478,491,524,529,545,546,547,554,555,562,564,565,567,573,574,587,590,593,598,608,619],script_copi:480,script_search:480,script_typeclass:[400,565,608],scriptadmin:581,scriptattributeinlin:581,scriptbas:484,scriptclass:483,scriptdb:[50,129,224,481,538,581,587,590],scriptdb_db_attribut:581,scriptdb_db_tag:581,scriptdb_set:[230,472,539,542],scriptdbfilterset:[587,593],scriptdbmanag:[480,481],scriptdbseri:[590,593],scriptdbviewset:[196,593],scriptform:581,scripthandl:[224,225,479],scriptlistseri:[590,593],scriptmanag:480,scriptnam:[241,546],scriptpar:0,scripttaginlin:581,scroll:[9,31,34,101,137,143,184,191,213,215,220,406,552],scrollback:20,scrub:[78,532],sdesc:[0,113,167,331,390],sdescerror:390,sdeschandl:[113,390],sdfkjjkl:220,sdk:213,sea:[106,146],seamless:[113,390],seamlessli:43,search:[0,7,11,13,14,16,20,24,25,27,28,33,34,36,38,39,40,44,45,50,63,67,76,82,83,87,101,103,113,125,131,132,133,135,137,138,139,140,141,142,143,149,150,157,169,170,173,176,177,178,179,189,191,193,195,219,220,224,225,227,229,232,234,236,241,246,248,255,256,285,304,307,312,328,334,337,338,339,340,341,361,363,369,370,372,375,390,441,463,464,465,466,468,471,473,477,478,480,483,497,539,540,541,542,543,544,547,549,554,567,587,596,619],search_:[21,136,145],search_account:[21,47,129,145,169,224,229,473,564],search_account_tag:564,search_at_multimatch_input:473,search_at_result:[220,390,473],search_channel:[21,129,224,246,256,564],search_channel_tag:564,search_dbref:540,search_field:[248,575,577,579,580,581,582,583],search_for_obj:241,search_help:[21,34,129,224,464],search_help_entri:564,search_helpentri:464,search_index_entri:[236,238,239,240,241,246,247,248,249,250,251,252,253,264,280,284,295,298,299,302,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,363,375,379,383,390,407,433,435,439,440,441,449,451,461,463,465,466,473,522,549,551,552],search_messag:[21,38,129,224,256,564],search_mod:390,search_multimatch_regex:[220,473],search_multimatch_templ:220,search_object:[15,16,20,21,50,80,106,129,135,136,139,140,143,145,180,224,227,471,564],search_object_attribut:145,search_object_by_tag:157,search_objects_with_prototyp:477,search_prototyp:[0,477],search_script:[21,45,125,129,224,480,564],search_script_tag:564,search_tag:[48,76,129,136,145,224,564],search_tag_account:48,search_tag_script:48,search_target:328,search_typeclass:564,searchabl:[36,285],searchdata:[227,390,471,473,564],season:[95,126,132,147,150,345],seat:147,sebastian:77,sec:[0,35,56,90,172,175,276,503,555,560],second:[1,8,15,17,21,22,24,30,33,36,42,44,45,49,50,56,58,60,62,70,71,77,82,83,88,101,103,105,111,117,119,121,125,126,128,133,139,143,145,149,152,172,175,178,179,180,181,186,188,190,191,195,197,198,213,217,218,219,220,222,227,228,233,241,246,248,252,276,285,286,289,309,318,321,337,339,341,357,369,375,390,394,399,406,416,439,468,473,478,480,485,486,491,496,505,510,523,534,544,547,551,554,555,560,567,568],secondari:531,secondli:[40,135],secret:[77,78,91,126,138,147,149,189,201,204,220,383,416,491],secret_kei:[189,220],secret_set:[77,138,189,192,201,205,220,491],sect_insid:182,section:[1,2,5,8,13,15,18,22,24,26,30,33,34,36,45,50,52,53,55,60,64,70,73,83,84,95,101,106,111,113,125,128,132,137,139,141,142,143,145,163,169,172,175,179,181,189,192,194,197,205,211,212,217,220,248,340,345,389,473,478,544,545,551,568,587],sector:182,sector_typ:182,secur:[0,2,15,16,33,36,44,72,77,83,114,126,168,191,194,195,208,213,217,220,221,236,240,251,255,446,463,465,473,511,541,554,560,567,607,619],secure_attr:36,secureshel:220,securesocketlibrari:220,sed:5,sedat:[119,394],see:[0,1,2,3,6,7,8,10,11,12,13,14,15,16,17,20,21,22,23,24,26,28,30,31,33,34,35,36,38,39,40,42,44,45,46,49,50,52,53,54,55,56,57,59,60,62,64,67,70,71,72,73,75,78,79,81,82,83,86,88,89,90,92,99,102,103,104,105,106,107,110,111,112,113,114,115,117,118,119,120,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,149,150,151,152,155,158,161,163,165,167,168,169,170,172,173,174,175,176,178,179,180,181,182,183,184,186,187,188,189,191,192,193,194,195,196,198,201,202,203,204,205,207,208,211,212,213,215,216,217,218,220,221,222,227,236,238,240,241,246,247,248,249,251,252,253,255,258,264,269,270,271,272,273,280,283,298,299,302,304,307,309,312,318,321,322,328,334,337,338,361,363,368,369,370,372,375,386,389,390,394,399,405,406,407,410,411,413,416,417,433,435,439,441,446,454,457,461,463,465,466,472,473,477,480,485,489,491,493,494,502,503,504,505,507,511,512,514,516,518,519,520,522,523,531,532,536,539,542,544,547,548,549,550,553,554,562,563,565,567,570,571,601,607,612,615,618],seed:[89,220,321,323,348,370],seek:[146,304,469,560],seem:[22,44,53,83,105,111,113,122,130,132,147,150,167,180,181,191,206,211,215,222,253,539,545],seen:[22,30,46,60,64,83,101,102,103,105,106,128,133,136,139,140,141,142,144,149,168,169,180,182,186,188,197,198,220,264,503,553],sefsefiwwj3:189,segment:[180,536],sekizai:220,seld:140,seldomli:[236,252],select:[0,3,10,13,14,21,22,30,42,46,52,53,54,55,70,76,83,84,105,106,111,126,134,152,161,184,191,194,197,209,210,213,219,220,233,234,239,303,338,404,405,406,410,417,454,459,460,461,541,549,551,585,590,619],selected_war:184,self:[0,1,7,11,14,15,16,21,22,24,28,30,36,39,40,42,44,45,49,50,52,56,64,67,70,74,79,82,83,84,85,87,88,89,91,94,95,97,98,100,101,103,104,105,109,110,112,113,116,117,119,123,124,125,128,133,134,139,140,141,143,144,145,149,151,152,155,157,161,163,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,187,189,190,191,195,196,198,202,204,227,228,230,232,234,235,236,238,241,242,246,249,251,252,253,255,257,264,270,271,272,273,283,295,299,302,303,304,307,312,315,318,321,322,328,331,334,337,338,339,340,341,345,348,354,357,361,363,368,371,375,383,390,394,399,405,406,407,410,411,413,417,433,438,439,440,441,449,451,461,463,468,473,477,485,489,491,493,494,498,500,502,503,509,511,512,514,516,518,519,520,522,530,531,532,539,541,542,544,549,551,552,554,558,561,562,563,565,567,601],self_fire_damag:322,self_pid:567,self_refer:15,selfaccount:169,sell:[149,157,184,196,199,312,412,417],seller:149,semi:[8,113,134,143,190,220,309,389],semicolon:[36,469,471,480,547],send:[0,1,8,14,20,21,24,30,31,33,35,36,40,42,45,46,47,49,51,53,54,55,57,63,68,73,76,77,78,79,83,89,96,101,104,105,125,126,131,132,133,135,138,141,142,145,149,151,169,173,177,178,183,186,188,191,194,198,204,208,218,220,222,227,228,235,236,239,241,246,255,256,257,304,312,321,325,328,341,369,370,379,390,399,406,431,438,439,446,449,473,485,486,488,491,493,494,496,500,501,502,503,504,506,509,510,511,513,514,515,517,519,520,522,523,530,531,532,533,544,547,548,551,553,565,567,571,619],send_:[64,68,509],send_adminportal2serv:501,send_adminserver2port:488,send_authent:502,send_broken_link_email:220,send_channel:[502,503],send_default:[64,68,502,503,509,511,514,519,520],send_defeated_to:439,send_emot:[113,390],send_functioncal:500,send_game_detail:493,send_heartbeat:502,send_instruct:491,send_mail:328,send_msgportal2serv:501,send_msgserver2port:488,send_p:503,send_privmsg:503,send_prompt:[68,511,514,519,520],send_random_messag:399,send_reconnect:503,send_request_nicklist:503,send_status2launch:501,send_subscrib:502,send_testing_tag:438,send_text:[64,68,511,514,519,520],send_to_online_onli:[20,255],send_unsubscrib:502,sender:[20,38,47,108,227,228,255,256,257,304,312,390,406,431,473,502,533,547,558,564,577],sender_account_set:230,sender_extern:257,sender_object:533,sender_object_set:472,sender_script_set:481,sender_str:255,senderobj:[256,547],sendlin:[511,514,519],sendmessag:[64,449],sens:[0,22,36,40,54,55,56,67,70,83,119,125,127,140,144,149,151,157,167,169,180,184,205,234,376,394,406,433,471,547,548,551],sensibl:[20,33,34,217,348],sensit:[15,30,34,36,42,78,136,169,229,256,264,276,286,345,372,391,446,447,464,540,542,550,555,564],sensivit:457,sent:[1,8,20,25,30,33,35,38,46,47,53,55,68,71,73,78,92,96,101,104,108,126,138,143,169,173,186,196,197,208,220,227,228,232,246,255,256,257,264,280,286,299,304,328,400,431,446,449,473,488,491,493,496,500,501,502,503,511,515,519,530,532,539,551,564,565,590],sentenc:[0,60,67,101,102,113,151,186,220,289,304,389,390,567],senwmaplink:[125,370],seond:172,sep:[67,544,567],sep_kei:[83,264],separ:[0,8,10,11,13,15,16,17,20,22,24,30,33,34,36,37,39,40,43,45,46,48,49,53,55,60,64,70,74,76,80,82,84,89,101,102,104,105,110,113,119,120,124,125,126,127,128,131,132,133,134,135,136,137,138,139,141,143,144,147,151,152,168,169,172,175,180,184,186,188,189,191,193,194,202,203,204,205,207,211,213,218,220,233,235,236,241,247,248,249,251,264,286,289,295,318,321,328,337,338,341,361,365,369,370,372,389,390,394,408,410,411,441,461,464,469,471,472,473,477,480,482,486,510,515,520,532,541,544,545,547,550,554,564,565,567,571,576],separator_fil:220,separator_star_color:220,separator_text_color:220,sepat:321,sept:[3,67],seq:39,sequenc:[16,17,18,24,36,39,40,54,56,73,79,80,128,131,138,140,146,149,155,188,220,236,240,255,276,307,321,369,390,469,489,495,544,545,551,553,565,566,567],sequenti:149,sequess:426,seri:[0,9,13,20,30,62,94,107,126,139,143,149,150,193,417,553],serial:[0,15,52,68,187,220,224,225,406,476,485,486,500,509,548,561,563,567,573,575,577,580,581,586,593],serializ:520,serialized_str:[575,577,580,581],serializer_class:593,serializermethodfield:196,seriou:[181,222],serious:215,serrano:77,serv:[54,55,68,75,77,98,106,126,131,133,138,144,145,149,182,208,218,219,220,234,256,339,520,536,545,547,605],serve_media:220,server:[1,2,4,5,8,9,10,11,12,13,14,15,16,18,20,21,22,24,25,26,27,30,33,34,35,36,37,40,44,45,47,49,50,52,53,54,55,56,57,59,64,65,68,70,71,73,75,77,78,84,86,89,91,92,94,97,100,101,103,106,107,109,110,111,113,117,119,125,126,128,129,130,131,132,133,135,137,139,140,141,142,143,144,149,150,151,152,155,157,163,167,168,169,171,172,173,174,175,177,178,179,180,183,186,187,189,192,193,194,195,197,199,200,201,202,204,208,209,211,212,213,214,215,218,220,222,224,225,227,228,229,235,239,241,246,251,253,255,258,264,267,270,280,286,295,302,306,321,331,345,348,357,361,364,365,371,377,383,390,394,439,440,441,443,444,445,463,473,480,481,482,484,486,537,541,545,547,548,551,555,558,560,567,573,574,590,598,619],server_:0,server_connect:509,server_data:220,server_disconnect:509,server_disconnect_al:509,server_epoch:[21,555],server_hostnam:[0,220],server_l:501,server_log_day_rot:[0,220],server_log_fil:220,server_log_max_s:[0,220],server_logged_in:509,server_nam:219,server_pid:[501,567],server_receive_adminportal2serv:488,server_receive_msgportal2serv:488,server_receive_statu:488,server_reload:[482,486],server_run:491,server_runn:529,server_servic:567,server_services_plugin:[64,138,219,220],server_services_plugin_modul:[64,220],server_session_class:[46,78,220],server_session_handler_class:220,server_session_sync:509,server_st:491,server_twistd_cmd:501,server_twisted_cmd:501,serverconf:[0,239,486],serverconfig:[220,485,486,497,498],serverconfigadmin:582,serverconfigmanag:[497,498],serverfactori:[501,511,514],serverload:[27,251],servernam:[35,55,189,192,207,209,217,219,220],serverport:220,serversess:[46,64,78,133,220,224,225,446,469,487,509,532,539],serversessionhandl:[46,64,220,532],serverset:[36,246,468],servic:[4,6,13,27,57,64,77,133,138,189,194,204,205,208,212,217,218,219,220,222,224,225,251,417,487,488,491,492,500,501,508,529,536,567],sessdata:[531,532],sessid:[11,14,24,46,191,220,472,473,488,500,501,509,532],session:[0,3,11,14,18,22,24,25,27,30,33,35,37,40,42,45,47,57,64,71,129,133,137,139,141,149,152,168,176,186,191,206,212,220,224,225,227,228,229,230,232,233,234,236,238,239,242,244,249,253,280,303,325,379,405,406,411,438,445,446,447,449,472,473,475,476,477,482,487,488,496,500,501,502,503,509,510,511,514,519,520,529,530,532,534,549,551,552,554,567,568,590,619],session_cookie_ag:220,session_cookie_domain:220,session_cookie_nam:220,session_data:532,session_expire_at_browser_clos:220,session_from_account:532,session_from_sessid:532,session_handl:[46,129,224],session_id:590,session_portal_partial_sync:532,session_portal_sync:532,session_sync_attr:220,sessionauthent:220,sessioncmdset:[22,27,141,220,244],sessionhandl:[0,25,64,68,220,224,225,227,473,487,496,502,503,509,510,530,531],sessionid:[220,509],sessionmiddlewar:220,sessions_from_account:532,sessions_from_charact:532,sessions_from_csessid:[509,532],sessions_from_puppet:532,sessionsmain:129,sesslen:473,set:[1,2,4,5,6,7,8,9,11,12,14,15,16,17,18,19,20,21,23,24,25,26,27,28,31,33,34,35,38,39,40,42,44,45,46,47,48,50,51,52,53,55,56,57,58,59,60,62,64,65,66,67,68,70,72,73,74,75,78,82,83,84,85,86,87,88,89,90,92,95,96,97,101,102,103,105,106,107,112,113,119,120,122,124,125,127,128,129,130,131,132,133,134,135,136,137,138,140,142,143,144,147,148,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,173,174,178,179,180,181,184,185,186,187,188,193,194,195,197,198,205,206,207,208,210,211,212,213,215,221,222,224,226,227,228,229,230,232,233,234,235,236,238,239,241,242,243,244,245,246,248,249,252,253,254,255,262,264,265,267,268,271,272,274,276,280,284,286,289,296,299,302,303,304,305,306,307,308,313,315,316,318,319,321,322,323,325,331,334,335,337,338,339,340,341,342,345,346,348,354,357,360,361,363,364,365,366,367,369,370,372,375,376,377,381,383,389,390,391,393,394,400,404,405,406,407,408,410,411,412,416,417,419,420,421,422,423,426,427,433,438,439,440,441,445,449,451,452,454,461,463,464,468,469,471,472,473,476,477,478,480,483,484,485,486,488,490,491,495,496,497,498,501,502,504,505,507,508,511,513,514,516,517,522,523,525,527,529,530,531,532,534,536,537,539,540,541,542,544,545,546,547,548,549,550,551,552,553,554,555,558,559,560,561,562,563,564,565,567,568,576,579,580,582,583,588,589,591,592,593,596,600,607,608,615,619],set_active_coordin:361,set_al:439,set_alias:236,set_atribut:593,set_attr:241,set_attribut:[196,593],set_cach:539,set_character_flag:304,set_class_from_typeclass:541,set_dead:439,set_desc:246,set_descript:30,set_detail:[345,441],set_flag:[304,305],set_gamedir:491,set_kei:236,set_lock:246,set_log_filenam:255,set_nam:30,set_password:[0,227],set_posit:304,set_task:286,set_trac:[0,7,224],setattr:[152,161,265],setdesc:[27,133,168,247,354],sete:11,setflag:[302,304],setgend:[97,325],sethelp:[0,27,34,133,134,248,463],sethom:[27,133,241],setlock:354,setnam:64,setobjalia:[27,241],setperm:239,setspe:[117,126,357],sett:203,settabl:[35,70,139,514],setter:[82,181,187],settestattr:28,settingnam:36,settings_chang:47,settings_default:[0,11,129,137,139,192,215,219,220,224,225,560,567],settings_ful:219,settings_mixin:[8,224,225,487,521],settl:[106,178],setup:[0,2,8,11,13,18,34,51,55,64,67,70,74,98,125,128,147,151,155,161,169,178,198,204,207,208,211,212,220,227,238,246,252,262,265,274,276,287,296,308,313,316,319,323,335,342,346,360,367,377,381,391,393,400,419,420,421,422,423,424,426,427,433,438,441,452,466,473,484,495,508,517,522,526,527,529,536,539,541,558,559,565,591,608],setup_grid:367,setup_sess:[447,565],setup_str:526,setuptool:[211,213,215],sever:[0,7,15,17,22,24,28,31,36,40,42,44,45,50,51,53,55,59,73,82,83,85,101,103,111,125,126,128,136,137,143,149,151,167,168,172,175,178,197,200,219,240,241,249,251,256,285,286,345,416,417,439,441,473,517,518,542,547,567],sewag:125,sex:[149,325],sftpstorag:77,sha:451,shabnam:111,shadow:[0,34,149],shall:[188,195],shaman:[44,168],shape:[83,106,124,134,147,169,181,322,361,553],sharabl:44,share:[1,3,4,5,7,20,22,36,46,48,50,54,70,75,102,127,131,132,138,149,161,168,178,189,194,201,217,218,220,285,286,406,451,478,486,522,539,540,542,553,567,575,590,593,601],shared_field:590,sharedloginmiddlewar:[220,601],sharedmemorymanag:[540,557],sharedmemorymodel:[63,257,465,539,541,558,559],sharedmemorymodelbas:[230,257,465,472,481,539,541,558,559],sharedmemorystest:559,sharp:[48,322],shaung:77,she:[24,34,60,83,97,103,113,167,186,188,264,325,389,554,570,571],sheer:[105,241],sheet:[3,30,53,82,93,128,132,151,163,194,195,205,404,405,416,550],sheet_lock:169,shell:[1,2,5,8,12,39,50,70,72,128,143,168,169,205,208,211,212,213,217,218,222,511,539],shell_plu:2,shelter:149,shelv:105,shield:[70,152,155,157,172,406,407,409,410,412,425],shield_hand:[155,157,407,409,412],shift:[17,18,21,72,125,149,220,286,440,464,567],shiftroot:440,shine:[125,179,441],shini:[51,567],shinier:51,ship:[78,106,130,131,134,146,184,211],shire:175,shirt:[85,315],shoe:[85,315],shoot:[340,341,550],shop:[30,72,132,149,158,168,176,224,225,258,395,401,407],shop_front:184,shop_start:184,shopfront:184,shopkeep:[151,184,411,417],shopnam:184,shopper:184,short_datetime_format:220,short_descript:[209,220],short_sha:451,shortcut:[0,9,15,20,21,22,24,33,47,50,74,83,89,101,103,128,133,134,137,139,143,165,172,178,186,194,195,197,205,212,224,227,228,235,236,241,246,264,270,272,283,321,361,469,473,561,567],shorten:[0,7,50,82,102,220,478,590],shorter:[0,50,64,72,87,125,128,133,139,151,183,190,219,220,255,256,389,464,539,540,547,560],shortest:[125,126,181,363,367,369,370],shorthand:[40,188,241],shortli:[83,103],shortsword:136,shot:[82,340],should:[0,1,2,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,24,30,33,34,35,36,38,40,42,44,45,46,47,48,49,50,52,53,55,56,57,58,59,60,62,64,65,67,68,70,71,72,73,74,75,76,77,78,82,83,89,94,98,101,102,103,104,105,106,109,111,113,119,123,125,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,165,168,169,170,172,175,177,178,180,181,183,184,185,186,187,188,189,191,192,193,194,195,196,197,201,202,203,205,206,207,208,210,211,212,213,215,217,218,219,220,222,227,228,229,230,232,234,235,236,238,240,241,242,245,246,248,249,251,252,253,255,256,257,262,264,270,276,279,283,286,289,291,298,299,302,304,305,307,309,321,322,323,328,331,334,337,338,339,341,345,348,354,357,363,365,367,369,370,371,372,375,379,389,390,393,394,404,406,407,408,410,411,412,413,416,438,439,441,445,451,457,463,468,469,472,473,475,477,478,481,484,485,486,489,490,491,495,498,502,508,511,514,515,517,519,520,522,523,529,530,531,532,534,535,537,539,541,542,544,545,547,548,549,551,552,553,554,555,560,561,562,563,565,567,568,575,576,583,607,608,613],should_join:255,should_leav:255,should_list_top:248,should_show_help:248,shoulddrop:[341,473],shoulder:[85,169,315],shouldget:[341,473],shouldgiv:[341,473],shouldmov:337,shouldn:[16,77,82,83,103,155,169,179,188,220,264,286,289,340,473,522],shouldrot:560,shout:[172,302,304],shove:179,show:[0,2,7,10,12,13,16,17,20,21,24,26,30,31,33,34,45,46,52,53,55,57,60,61,64,70,74,82,83,85,89,95,96,102,103,106,110,111,119,120,122,124,125,126,127,128,130,131,132,133,134,138,139,141,142,143,144,146,147,148,149,151,157,158,161,163,164,168,169,173,175,176,177,178,181,185,186,188,193,194,195,196,197,198,203,204,206,208,209,213,217,218,219,220,222,227,238,239,241,246,247,248,249,251,253,279,280,291,295,299,302,312,315,331,340,341,345,348,361,363,367,369,370,372,375,383,386,390,394,405,407,408,410,415,429,433,441,449,461,463,473,475,477,478,489,491,500,549,551,560,561,562,567,571,607,619],show_change_link:575,show_foot:552,show_map:[182,348],show_non_edit:477,show_non_us:477,show_sheet:[152,405],show_valu:386,show_version_info:491,show_warn:491,showcas:[22,105,106,146,161],shown:[1,24,26,30,34,44,45,52,61,83,94,100,103,113,114,119,126,139,140,168,175,180,182,184,189,194,209,220,236,239,246,250,252,264,279,291,295,309,315,321,348,369,370,390,394,433,440,457,473,491,551,552,596],shrink:[141,553],shrug:102,shuffl:[21,407],shun:[2,72,217],shut:[8,53,103,143,192,212,219,222,227,251,473,484,486,491,493,500,501,508,509,529,532],shutdown:[8,22,27,45,46,57,59,133,169,222,227,228,251,480,486,491,500,501,508,529,530,541,547,551],shy:[2,74,147,150],sibl:[15,45,56,144,168],sickli:[161,416],sid:[77,239],side:[0,5,11,15,33,35,45,46,48,55,68,79,91,103,116,125,126,128,136,141,149,161,169,177,182,186,188,194,206,220,227,228,230,241,247,249,257,312,354,370,383,406,408,416,465,472,481,488,496,500,501,509,512,515,516,519,530,531,532,539,541,542,544,553,559],sidebar:[55,145,161],sidestep:59,sidewai:553,sigint:491,sign:[10,17,33,49,68,101,102,103,125,134,136,138,140,145,186,190,191,217,220,246,304,345,369,473,486,539,544,568],signal:[0,8,25,82,101,222,224,225,258,259,269,272,337,338,339,340,341,368,487,491,514,520,522,558,619],signal_acccount_post_first_login:47,signal_account_:47,signal_account_post_connect:47,signal_account_post_cr:47,signal_account_post_last_logout:47,signal_account_post_login:47,signal_account_post_login_fail:47,signal_account_post_logout:47,signal_account_post_renam:47,signal_channel_post_cr:47,signal_helpentry_post_cr:47,signal_nam:273,signal_object_:47,signal_object_post_cr:47,signal_object_post_puppet:47,signal_object_post_unpuppet:47,signal_script_post_cr:47,signal_typed_object_post_renam:47,signalshandl:273,signatur:[24,33,172,177,236,270,271,272,273,283,307,318,368,394,405,406,410,413,417,463,477,485,489,491,493,494,502,511,512,514,516,519,520,539,542,544,551,562,563,601],signed_integ:568,signedinteg:561,signedon:503,signifi:[17,24,468,539],signific:[9,33,125,554,565],significantli:28,signup:192,sila:152,silenc:[246,493],silenced_system_check:11,silent:[15,56,175,239,246,409,433,495,503,560],silli:[40,44,136,187],silmarillion:145,silvren:217,similar:[0,1,2,10,15,16,24,30,34,40,50,51,53,54,55,70,74,76,82,83,87,101,103,121,124,125,126,130,131,132,134,139,146,147,169,177,179,180,193,208,217,227,236,238,252,255,264,321,337,340,341,361,375,389,407,449,465,473,480,532,542,547,551,567,590,616],similarli:[48,87,119,125,136,169,171,175,217,299,338,394,576,583,590],simpl:[0,1,2,3,11,14,15,16,17,18,19,22,24,25,26,28,33,34,35,40,42,44,46,48,53,55,56,60,64,67,70,71,72,75,79,80,81,88,89,93,94,95,96,97,98,101,102,103,104,106,108,112,113,114,116,118,120,121,124,126,128,130,131,132,133,139,141,144,145,146,147,151,152,155,157,161,163,164,166,167,168,169,173,176,177,178,181,182,183,184,185,186,187,188,189,190,191,192,194,196,197,198,203,208,212,217,218,220,241,255,264,265,269,280,285,302,304,306,312,318,321,322,325,328,334,337,338,339,340,341,345,353,354,357,361,367,389,390,394,399,408,413,415,416,431,433,435,439,440,441,449,457,461,462,472,473,478,484,501,510,512,539,545,546,551,554,567,604,605,607],simple_ev:33,simpledoor:[224,225,258,343,619],simpledoorcmdset:[116,354],simpleev:33,simplemu:206,simpleobjectdbseri:[196,590],simpler:[0,18,30,56,167,240,241,416,548,616],simpleresponsereceiv:493,simplest:[15,42,55,121,133,169,172,177,178,192,217,235,545,568],simpli:[0,1,11,12,13,16,19,22,30,36,42,48,50,55,57,62,64,68,76,77,82,83,88,94,95,105,117,120,127,128,134,137,140,141,147,152,155,161,169,177,179,180,181,182,185,190,191,202,204,205,207,215,218,219,220,227,234,235,236,252,253,255,264,280,287,318,337,338,341,345,357,369,375,407,431,433,440,461,463,465,473,509,539,541,545,546,552,554,567],simplic:[60,181,184,188,220,253,280,440],simplif:[149,178],simplifi:[0,8,56,67,106,139,151,172,178,197,212,283,406,411],simplist:[53,118,178,190,191,389,435],simul:[8,24,117,126,144,149,151,161,177,357],simultan:[0,71,149,155,169,178,220,406,471,567],simultaneusli:406,sinc:[0,1,2,7,8,9,11,13,15,16,17,20,21,22,24,26,28,30,33,34,35,36,37,38,40,42,45,48,49,50,54,55,56,59,60,64,67,68,70,71,75,78,79,83,103,106,113,120,125,126,128,130,131,132,133,135,136,137,138,139,140,141,143,144,145,146,147,149,150,151,152,155,157,161,163,165,167,168,169,170,171,172,174,175,178,179,180,181,182,183,184,186,188,189,191,192,194,195,196,197,205,208,209,212,217,219,220,222,227,228,230,234,235,236,241,249,250,251,256,264,268,276,304,312,321,328,337,339,340,345,365,369,370,390,405,407,408,416,433,440,441,461,468,471,473,477,478,482,485,486,491,493,496,508,513,515,529,530,532,534,539,540,541,542,545,546,547,549,551,554,555,558,560,563,564,565,567,576,583,607],sinewi:152,singl:[0,8,12,13,17,22,24,30,33,38,39,45,46,48,50,56,58,68,71,72,74,78,82,83,87,101,103,106,110,111,114,119,122,123,125,126,128,130,131,136,138,141,143,144,146,149,152,157,161,168,169,177,187,205,208,217,220,227,239,246,247,251,257,264,271,274,295,299,322,337,338,339,340,341,361,367,369,370,372,375,390,394,413,416,441,445,457,461,473,477,478,485,486,523,530,532,539,540,542,544,545,550,551,553,567,570,607],single_tag:274,single_type_count:315,singleton:[37,46,49,125,161,416,482,485,546],singular:[169,220,473,554,570,572],singular_word:554,sink:[2,149],sint:31,sir:102,sit:[17,20,24,40,42,48,50,68,104,130,132,133,138,141,142,143,144,149,152,155,176,180,184,187,191,213,215,217,220,249,255,257,289,304,307,328,370,390,413,440,441,469,480,483,486,504,542,547,562,565],sitabl:50,sitat:441,site:[19,36,43,52,55,58,63,106,127,192,194,195,197,200,203,204,205,207,208,212,217,218,220,370,536,578,598],site_head:[52,598],site_id:[55,220],sitsondthi:140,sitsonthi:140,sittabl:[140,304],sittablein:140,sitter:140,situ:[15,541,548],situat:[0,7,15,24,33,34,45,46,50,54,67,68,70,83,101,102,103,127,141,145,149,161,175,183,196,235,236,241,285,305,558],six:[101,149,161,163,177,186,383,409,461],sixti:175,sizabl:77,size:[0,7,9,53,58,72,100,106,124,125,126,150,155,157,163,169,182,206,220,224,262,348,361,369,370,410,412,416,417,493,507,544,550,552,553,558,560,567],size_limit:567,skeleton:191,sketch:[149,151,178],skill:[30,60,82,113,119,126,130,132,136,138,143,147,148,161,172,173,177,178,180,194,195,200,222,322,372,389,390,393,394,550],skill_combat:177,skill_craft:89,skill_requir:322,skill_rol:322,skillnam:177,skillrecip:89,skim:[122,126,136,150],skin:[44,152,322],skip:[2,10,20,22,24,30,44,49,55,60,71,77,80,105,125,128,133,134,136,138,141,144,147,150,152,155,175,182,211,227,240,241,322,473,477,539,548,560,567,585],skip_cal:304,skipkei:520,skippabl:[24,74],skull:[44,145],sky:[45,190],slack:200,slam:[96,449],slash:[55,130,132,134,146,177,178,220,262,440],slate:[106,141],sleep:[24,33,56,149,161,172,177],sleepi:15,slender:152,slew:[0,177,211,545],slice:[0,82,238,375,544,552],slice_bright_bg:238,slice_bright_fg:238,slice_dark_bg:238,slice_dark_fg:238,slicker:0,slide:[322,433],slider:55,slight:[186,207,276,286],slightli:[0,7,34,82,175,178,191,215,257,299,338,345,575,618],slime:410,slogan:189,sloppi:128,slot:[55,96,119,132,149,157,161,163,169,195,270,338,340,345,394,410,412,449,478,567],slotobj:155,slow:[8,21,122,126,178,251,256,356,357,358,361,365,370,439,477,504,510,544,564,567,619],slow_exit:[117,224,225,251,258,343,619],slowdoorcmdset:[117,357],slower:[8,45,149,175,200,217,220],slowexit:[117,357],slowexitcmdset:357,slowli:[0,119,200,394],slug:[236,255,463,465,541,615,618],slugifi:[612,615],slugify_cat:615,small:[1,8,9,12,17,18,24,38,54,58,72,81,84,89,93,94,106,122,124,125,126,127,130,146,147,149,150,163,164,168,169,173,176,186,191,197,203,217,318,321,340,361,363,364,367,369,383,394,405,433,514,549,550,553,567,619],smaller:[0,16,17,58,128,367,394,416,553],smallest:[33,42,90,101,113,119,161,169,175,217,276,389,394,550,567],smallshield:70,smart:[82,124,186,361,370],smarter:44,smartmaplink:370,smartreroutermaplink:370,smartteleportermaplink:370,smash:[115,433],smaug:[133,139,141,144],smedt:570,smell:[125,147,304],smellabl:304,smelli:44,smile:[24,33,139,247,302,572],smith:[60,550],smithi:172,smoother:0,smoothi:[112,126,334],smoothli:[195,220],smtp:0,snake:[55,193],snapshot:[13,15],snazzi:199,sneak:469,snippet:[0,16,22,36,54,56,62,88,126,130,131,133,179,251,318,500,566,567,619],snonewaymaplink:[125,370],snoop:208,snow:[89,321],snowbal:[89,321],snowball_recip:89,snuff:2,soak:[141,410],social:[130,149,204],socializechat:523,societi:136,sock:85,sofa:140,soft:[63,113,131,389,619],softcod:[33,63,74,101,126,149],softli:199,softwar:[13,215,217],solar:175,sold:[412,417],soldier:[144,184],sole:[168,197,228],solid:[130,150,182],solo:149,solut:[0,1,11,17,21,30,34,49,50,63,103,106,119,125,140,146,149,167,171,177,180,181,183,186,189,192,197,217,250,369,370,394,469],solv:[9,21,94,106,112,125,126,132,146,147,179,215,307,334,369,408,440],some:[0,1,2,3,5,6,7,10,11,12,13,15,16,17,18,20,21,22,24,27,28,30,33,34,35,36,38,39,40,44,45,46,47,48,49,50,51,52,53,55,57,58,60,62,64,67,68,70,72,73,78,79,82,83,89,92,94,101,102,103,106,114,119,120,121,122,125,127,128,130,131,132,133,134,135,136,138,139,140,141,142,144,146,147,150,151,152,155,157,158,161,163,165,168,169,170,171,172,175,176,177,178,179,180,182,183,184,186,188,189,191,192,193,194,195,197,199,200,202,205,206,207,208,210,211,213,215,216,217,218,219,220,222,227,235,236,241,243,246,247,248,250,251,253,255,256,264,280,286,289,299,304,307,312,318,321,338,339,340,341,354,361,370,375,377,389,394,406,408,410,411,412,415,433,438,440,441,451,457,461,469,473,477,478,481,493,495,500,503,529,539,541,544,545,550,551,554,555,558,560,561,567,570,571,575,580,593,607,618],some_iter:155,some_long_text_output:552,some_modul:137,somebodi:[101,103],someclass:137,somehow:[24,39,55,64,73,76,105,140,177,217,315,549],someon:[24,36,47,49,52,60,101,102,103,133,136,140,143,149,150,155,161,169,172,182,183,185,187,217,218,227,247,375,404,406,408,433,439,440,473],somepassword:205,someplac:439,sometag:53,someth:[1,8,11,12,13,15,17,20,21,24,30,31,33,34,36,40,42,44,45,47,49,50,52,53,54,56,57,60,62,64,68,70,72,74,75,77,79,82,83,88,89,101,102,103,105,106,114,117,119,123,125,126,127,128,130,131,132,133,134,135,136,139,140,143,144,145,146,147,150,152,155,157,161,165,167,168,169,173,174,175,177,181,182,184,185,186,189,191,192,194,195,196,197,201,202,204,205,207,208,211,215,217,219,227,234,236,241,247,249,252,255,264,289,299,312,315,318,322,325,337,341,357,361,370,390,404,410,440,441,457,469,473,478,530,541,545,551,552,554,561,567,613],something_els:45,somethingthat:394,sometim:[7,8,21,24,28,30,33,36,42,44,45,55,64,70,82,83,101,111,130,131,136,141,143,145,175,186,193,215,217,222,248,471],sometypeclass:[101,135],somewhat:[83,168,264],somewher:[0,11,13,44,45,50,57,94,103,125,127,132,139,140,141,177,180,217,220,236,241,255,363,389,463,465,541,567,619],somon:304,son:[111,454],soon:[7,46,147,161,197,202,212,404,406,520,567],sophist:[21,56,72,130,152,178],sorl:192,sorri:[36,223,469],sort:[0,15,22,37,42,46,48,55,60,68,75,76,79,89,99,119,121,122,126,131,132,136,141,143,147,157,165,177,178,181,182,197,217,220,222,304,312,337,338,339,340,341,370,386,394,441,473,478,481,539,540,541,551,567,598,607,612,613,615,616,617],sort_kei:520,sort_stat:8,sortkei:8,sought:[227,233,255,463,465,473,539,541],soul:[106,150],sound:[0,36,49,68,83,94,105,106,113,126,127,147,161,169,172,219,220,389,515],sourc:[0,3,4,5,6,9,11,12,13,18,19,21,22,25,27,33,40,56,57,58,67,71,72,77,82,83,101,102,103,120,122,127,129,130,131,132,137,143,146,155,168,179,189,192,195,200,202,205,208,211,213,215,224,227,228,229,230,232,233,234,235,236,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,255,256,257,262,264,265,268,269,270,271,272,273,274,276,277,280,281,283,284,285,286,287,289,295,296,298,299,302,303,304,305,306,307,308,309,312,313,315,316,318,319,321,322,323,325,326,328,329,331,332,334,335,337,338,339,340,341,342,345,346,348,354,355,357,358,360,361,363,364,365,367,368,369,370,371,372,375,376,377,379,381,383,384,386,387,389,390,391,393,394,399,400,404,405,406,407,408,409,410,411,412,413,415,416,417,419,420,421,422,423,424,425,426,427,428,429,431,433,435,436,438,439,440,441,442,445,446,447,449,451,452,454,455,457,458,460,461,463,464,465,466,468,469,471,472,473,475,476,477,478,480,481,482,483,484,485,486,488,489,490,491,493,494,495,496,497,498,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,522,523,524,526,527,528,529,530,531,532,534,535,536,539,540,541,542,544,545,546,548,549,550,551,552,553,554,555,557,558,559,560,561,562,563,564,565,566,567,568,570,571,572,575,576,577,578,579,580,581,582,583,585,587,588,589,590,591,593,595,598,599,600,601,602,605,607,608,611,612,613,614,615,616,617,618,619],source_loc:[0,1,155,185,305,361,404,408,440,441,473],source_object:[253,280],sourceforg:[504,505,515,518],sourceurl:503,south:[0,83,103,105,106,125,140,161,174,180,182,185,241,348,363,369,370,523],south_north:106,south_room:105,southeast:[241,370],southern:106,southwest:[125,134,241,370],space:[0,1,15,20,24,26,33,34,36,39,44,45,53,60,62,74,77,78,83,101,102,105,106,125,128,132,133,134,141,143,144,155,168,178,179,182,183,186,188,189,220,233,236,241,246,247,248,249,252,253,322,331,341,369,370,389,390,417,440,473,535,541,544,545,550,551,553,554,567,571,596],spaceship:180,spaghetti:16,spam:[20,45,57,80,171,178,218,220,246,534],spammi:[57,178,220,560],span:[19,58,72,566],spanish:[0,67],spare:[337,338,339,340,341,369],sparingli:183,sparkly_mag:136,spars:78,spasm:376,spatial:106,spawen:[112,334],spawn:[0,8,20,25,27,38,53,89,94,112,125,126,129,133,137,146,152,224,239,241,321,334,338,339,364,367,369,370,371,408,417,475,476,477,478],spawn_alias:[125,370],spawn_link:[369,370],spawn_nod:369,spawner:[0,25,40,125,152,220,224,225,241,339,340,474,476,619],spawng:89,spd:195,speak:[18,20,59,73,82,102,103,113,126,149,183,188,194,196,247,304,390,473],speaker:[101,102,113,304,389,390],spear:[44,48],special:[0,1,7,11,14,15,16,17,18,20,21,22,24,26,30,36,40,42,47,48,50,52,53,54,55,56,59,62,67,68,70,71,73,82,95,97,100,101,106,125,126,128,131,132,134,136,137,138,139,141,143,144,145,151,152,155,157,161,169,171,173,178,191,195,196,197,218,220,228,230,232,235,247,250,302,304,305,309,325,339,340,345,348,361,372,390,406,440,441,461,466,469,473,495,496,519,523,539,541,545,551,566,580],specic:369,specif:[0,1,2,5,7,11,13,14,15,21,22,24,28,30,36,39,40,42,46,47,48,49,50,51,53,57,60,64,71,75,79,82,83,85,87,88,89,98,100,101,102,103,106,114,125,126,127,128,129,130,131,136,137,138,139,143,144,145,147,149,155,161,167,172,175,178,180,181,186,188,189,190,191,194,195,197,199,200,205,206,208,212,217,219,220,222,227,229,232,239,241,248,251,252,253,257,258,264,273,283,284,285,286,302,304,312,318,321,322,328,348,363,369,370,371,390,406,408,410,412,415,451,457,464,468,471,473,477,480,482,491,495,496,503,519,520,530,539,541,544,545,549,551,552,553,567,571,576,578,587,618,619],specifi:[0,11,15,20,21,22,30,34,37,44,46,48,49,55,57,58,59,60,62,68,70,71,82,83,85,86,89,91,96,101,102,106,111,112,119,120,124,125,128,134,135,139,140,141,144,145,163,165,169,171,175,179,181,182,186,191,193,195,203,209,212,215,217,218,220,232,233,241,248,255,256,264,265,267,273,283,285,286,304,315,321,328,334,338,339,340,345,348,361,363,369,370,375,383,390,394,404,406,407,408,411,412,449,457,461,468,469,473,476,477,478,482,502,528,539,540,542,544,545,547,550,551,554,555,561,562,563,565,567,570,571,587,590,607,615,618],specifici:305,specii:60,spectacular:7,spectrum:149,speech:[152,302,473],speed:[0,8,15,39,70,79,117,126,149,176,178,195,220,357,406,471,478,509,542,564,619],speediest:149,speedster:184,speedup:[220,477],spell:[18,44,48,59,93,120,121,157,161,163,168,171,224,225,258,310,320,340,406,410,412,422,461,478],spell_attack:340,spell_book:89,spell_conjur:340,spell_heal:340,spell_nam:340,spellbook:[321,322],spellcast:[0,121],spellfunc:340,spellnam:[322,340],spend:[40,121,145,149,150,161,181,186,337,338,339,340,406],spend_act:337,spend_item_us:339,spent:[155,340,406],sphinx:128,spike:321,spiked_club:321,spin:[54,152,175,217,405,565],spine:340,spit:[143,165,178,321],splashscreen:280,splinter:146,split:[0,1,22,24,46,106,124,125,141,143,144,149,152,161,169,180,183,184,186,189,191,193,219,233,249,276,361,440,466,475,517,532,544,545,555],split_nested_attr:241,splittin:0,spoiler:122,spoken:[102,103,113,202,389,390,473],spoof:[208,576,583],sport:39,spot:[55,105,131,144,149,168,227,367,370,407],spread:[8,33,44,177,619],spring:[95,345,346],spring_desc:346,sprint:357,sprofil:491,spruce:60,sprung:149,spy:38,spyrit:206,sql:[4,50,70,131,145,167,168,205,526],sqlite3:[5,8,11,12,13,50,70,131,138,191,210,220,221,567],sqlite3_prep:529,sqlite:[12,70,205,529],sqrt:181,squar:[74,105,128,181],squeez:[70,128],squishi:149,src:[19,36,40,53,56,134,194,211,212,446],srcobj:[236,249],srun:495,srv:5,ssessionhandl:68,ssh:[0,1,46,64,68,131,189,217,220,221,222,224,225,487,499,530,531],ssh_enabl:220,ssh_interfac:[217,220],ssh_port:[217,220],ssh_protocol_class:220,sshd_config:218,sshfactori:511,sshprotocol:[220,511],sshserverfactori:511,sshuserauthserv:511,ssl:[0,68,71,131,207,208,220,221,224,225,228,246,487,499,503,516,531],ssl_context:[512,516],ssl_enabl:220,ssl_interfac:[217,220],ssl_port:[217,220],ssl_protocol_class:220,sslcertificatefil:207,sslcertificatekeyfil:207,sslciphersuit:207,sslengin:207,ssllab:207,sslprotocol:[207,220,512,516],ssltest:207,sslv3:208,sta:550,stab:[146,172,440],stabil:[0,147,252,389],stabl:[0,55,64,149,167,212,213,220],stabli:[9,486],stack:[0,16,22,53,82,132,140,147,180,234,235,375,377,406,473,477,532,551,567],stack_msg:376,stackedinlin:575,stackexchang:11,stackoverflow:11,stacktrac:477,staf:72,staff:[1,20,24,42,44,52,59,72,101,106,126,132,147,168,177,189,191,194,220,234,372,478,545],staff_contact_email:220,staffer:[52,149,189,220],staffernam:189,stage:[0,5,13,14,106,147,167,191,194,575,577,580],stagger:503,stai:[22,30,50,94,143,180,182,186,188,217,361,370,412,550],stale:[50,212,485],stale_timeout:485,stalker:613,stamina:[99,119,173,340,386,394],stamp:[21,46,50,53,220,227,230,239,251,472,481,523,528,541],stan:184,stanc:[0,33,63,113,149,178,390,473,554,570],stand:[0,1,11,13,16,19,36,52,70,83,101,106,111,113,122,125,126,128,134,137,140,143,145,146,163,167,177,178,179,180,182,184,185,191,194,202,213,217,220,247,302,304,312,372,389,390,407,416,439,473,481,486,522,542,545,547,553,567,583],standalon:208,standard:[15,18,20,21,28,33,51,53,55,62,63,68,71,73,91,92,98,101,103,111,123,125,126,131,136,139,143,157,161,168,169,173,178,179,186,188,189,193,196,198,200,207,208,215,218,220,224,227,238,280,299,372,383,390,405,416,473,511,513,518,535,539,544,553,555,565,568,592,619],stander:140,stanislav:77,stanman:184,stanza:[0,60,501],stapl:149,star:241,start:[0,1,3,6,7,8,10,11,12,13,14,16,17,18,20,21,22,24,28,30,33,35,36,37,39,42,44,45,46,47,50,53,54,55,57,58,61,64,65,67,68,70,72,77,79,89,93,94,95,96,97,98,103,106,113,118,119,121,122,125,126,127,128,130,131,134,136,137,138,139,140,143,144,147,148,149,150,151,152,155,161,163,165,168,172,174,175,176,177,178,179,180,181,182,184,186,187,190,191,192,193,194,196,197,198,200,201,202,203,205,208,209,211,213,214,215,216,217,218,219,220,221,227,228,233,234,240,241,246,247,248,249,250,251,252,255,264,276,286,302,303,304,306,312,315,321,325,337,338,339,340,341,345,348,361,369,370,375,383,386,389,390,394,405,406,407,408,410,411,413,417,424,433,435,438,439,441,449,454,461,473,475,477,480,481,482,483,484,485,486,488,491,493,495,496,501,502,503,504,508,509,510,515,516,522,523,528,529,532,536,540,544,545,546,547,549,551,552,553,554,555,560,567,596,619],start_:220,start_all_dummy_cli:522,start_attack:439,start_bot_sess:532,start_char:554,start_chargen:[152,405],start_combat:406,start_delai:[45,178,180,198,480,481,486,547],start_direct:370,start_driv:180,start_evennia:491,start_hunt:439,start_idl:439,start_index:246,start_lines1:491,start_lines2:491,start_loc:220,start_loc_on_grid:[182,348],start_of_messag:577,start_olc:475,start_only_serv:491,start_open:304,start_ov:30,start_patrol:439,start_plugin_servic:[64,220],start_portal_interact:491,start_posit:304,start_read:304,start_room:408,start_rotat:304,start_serv:501,start_server_interact:491,start_step:413,start_sunrise_ev:175,start_text:461,start_turn:[337,341],start_xi:[125,369],startapp:[70,194,195,197],startclr:554,startcolor:33,startcoord:367,startedconnect:[488,502,503],starter:[132,146,189,193],starthour:1,startnod:[30,152,184,303,411,438,449,475,551],startnode_input:[30,303,438,449,475,551],startproduc:493,startservic:[494,536],startset:441,startswith:[34,37,241,544,565],starttupl:511,startup:[0,15,26,64,138,175,193,217,219,220,473,481,484,520,529,560,567],stat1:377,stat:[8,15,19,30,55,79,82,119,138,139,143,144,147,149,152,157,163,176,178,191,193,194,195,204,312,337,340,341,375,376,394,429,616,619],statbuff:376,state:[0,7,13,15,16,17,22,24,27,28,30,36,45,46,53,62,82,88,94,115,126,131,132,138,144,146,149,155,158,167,172,178,180,187,188,212,216,222,224,225,227,232,234,235,238,245,253,255,258,270,300,301,302,304,305,308,309,318,337,354,375,405,406,413,433,439,441,478,481,483,484,486,491,511,539,549,551],state_001_start:94,state_chang:307,state_nam:307,state_unlog:245,statefultelnetprotocol:[514,522],statehandl:[305,307],statement:[7,16,17,21,22,30,55,56,70,77,130,136,143,169,182,433,545,566],statenam:[302,304,307],static_overrid:[0,75,138,193],static_root:[193,220],static_url:220,staticfil:[77,126,220],staticfiles_dir:220,staticfiles_ignore_pattern:220,staticfiles_storag:77,statict:241,statictrait:[119,394],station:[101,149,180],stationari:439,statist:[46,54,55,57,75,99,165,198,219,241,251,386,524,540,558],statu:[0,13,30,46,49,52,71,79,98,121,126,132,134,138,147,169,172,187,196,205,208,215,217,219,220,221,251,312,339,340,341,413,439,451,486,489,491,500,501,502,505,519,575],statuesqu:152,status:[132,147],status_cod:493,stderr:299,stdin_open:212,stdout:[0,212,299,491,560],steadi:131,steal:[38,151,248],stealth:149,steel:322,steer:180,step1:172,step2:172,step3:172,step:[2,5,9,10,12,16,17,20,22,24,28,30,44,70,72,82,83,93,101,102,103,125,126,132,142,148,149,150,151,152,169,170,172,177,179,180,181,186,187,188,191,192,195,197,205,207,212,213,215,220,221,240,246,264,322,341,367,369,370,393,413,426,441,486,495,507,518,522,523,532,541,545,548,549,551,552],step_:[187,413],step_a:413,step_end:413,step_find_the_red_kei:187,step_hand_in_quest:187,step_sequ:363,step_start:[187,413],stepnam:[220,413],stepper:[125,370],stick:[18,24,30,73,89,128,149,170,239],still:[0,1,2,3,10,12,13,15,16,17,18,20,22,24,36,40,46,47,50,52,59,60,62,64,67,68,72,82,83,89,93,94,101,103,110,119,120,124,125,126,130,131,133,134,138,139,140,141,143,149,151,152,153,154,155,156,159,160,161,162,163,168,169,172,175,176,180,181,182,186,188,189,191,192,195,199,200,208,215,220,222,227,234,241,246,248,253,255,280,295,307,321,337,338,339,340,341,361,370,375,393,394,406,438,441,461,471,473,477,483,523,551,553,554,555,563,567,615],sting:106,stingi:417,stock:[130,150,446,607],stolen:[151,218,544],stone:[24,30,60,134,145,150,157,161,170,410,412],stood:140,stop:[0,1,7,8,10,12,17,20,21,33,35,40,42,45,46,49,53,56,57,67,72,82,101,115,116,117,119,125,126,132,134,137,138,140,143,149,168,169,172,175,178,180,182,184,189,191,198,205,208,212,216,217,219,220,221,238,241,246,251,255,276,285,287,312,322,338,341,354,357,370,379,390,394,406,433,473,480,483,484,485,486,490,491,493,496,508,509,529,530,536,544,545,547,567,619],stop_combat:406,stop_driv:180,stop_evennia:491,stop_serv:501,stop_server_onli:491,stop_task:0,stopproduc:493,stopservic:[494,536],storag:[0,15,16,24,25,50,70,77,88,131,135,137,150,155,167,171,177,194,205,230,251,257,260,262,289,318,361,389,394,416,417,463,469,472,473,477,478,481,484,486,498,534,538,539,541,546,561,562],storage_modul:546,storagecontain:45,storagescript:45,store:[0,3,9,12,13,14,16,18,20,21,22,24,25,28,34,36,38,39,40,42,45,46,48,49,50,52,53,64,70,73,75,77,79,80,82,87,89,95,102,103,113,114,119,124,125,126,131,132,133,135,136,138,139,140,141,143,144,147,151,155,157,158,161,167,168,169,171,172,174,177,178,179,180,181,182,184,186,187,189,191,193,194,195,196,197,205,211,212,220,227,228,230,235,238,239,241,242,244,248,249,257,272,286,305,307,312,321,322,331,337,339,345,357,361,370,371,375,389,390,394,399,406,411,413,417,435,440,441,446,449,457,463,464,468,469,472,476,477,478,479,482,483,484,485,486,491,495,496,497,498,501,503,504,505,507,515,518,523,529,530,531,532,534,536,539,540,541,542,544,546,547,548,549,551,552,555,558,561,562,563,567,593,607,618],store_kei:[0,486,567],store_tru:[123,299],stored_obj:1,storekei:486,stori:[9,34,121,165,189,194],storm:171,storm_drain:89,storypag:165,storytel:191,stout:152,stove:473,str2int:567,str:[0,1,15,21,28,30,33,35,37,38,45,50,56,64,73,83,96,101,103,105,119,125,126,133,139,141,143,152,157,161,163,169,177,181,186,194,195,220,224,227,228,229,232,233,234,235,236,241,246,248,255,256,257,264,272,273,276,283,284,285,286,289,299,303,304,305,307,309,312,315,318,321,325,328,337,339,340,341,345,348,354,361,369,370,371,372,375,376,379,386,389,390,393,394,404,406,409,410,411,412,413,416,429,431,433,438,441,446,449,454,455,457,461,463,464,465,466,469,471,472,473,476,477,478,480,482,483,484,486,488,489,491,495,496,497,498,500,501,502,503,504,506,509,510,511,514,515,516,519,520,522,528,529,530,531,532,534,535,536,539,540,541,542,544,545,546,547,549,550,551,552,553,554,560,561,562,563,564,565,566,567,568,570,571,576,585,587,590,599,613,615],straght:370,straight:[0,125,150,155,182,188,196,370,542],straightforward:[1,180,186,191],strang:[17,45,139,167,172,207,235,253,500],strange_bug:13,strangl:217,strap:[149,407],strategi:[7,341,406],strattr:[15,271,375,539],strawberri:[123,299],stream:[10,196,500,504,530],streamlin:312,streeter:77,stren:143,strength:[15,36,119,138,139,149,151,152,161,163,168,169,170,177,178,195,393,394,404,409,411,412,416],strengthbuff:[82,375],stress:[8,367,522],stretch:[106,125,128],stribg:567,stricako:0,strict:[0,56,323,477,544,615],stricter:[150,477],strictli:[30,59,92,136,194,280,340,553],strike:[30,171,178,247,340,341,376,435],string1:567,string2:567,string:[0,1,7,8,9,11,15,16,18,20,21,22,24,25,26,28,30,33,34,37,39,40,42,44,48,49,50,52,53,57,59,60,62,67,68,70,71,73,74,82,83,85,89,96,105,106,111,113,114,120,124,126,128,130,132,133,134,135,136,138,139,140,141,144,145,149,151,152,155,161,163,168,169,172,178,182,189,194,195,196,204,205,209,214,217,219,220,224,225,227,228,229,230,232,233,236,239,241,246,247,248,249,250,251,252,255,256,257,264,279,280,289,291,304,309,312,315,318,321,328,334,337,339,348,361,369,371,372,375,376,379,389,390,394,404,409,410,411,412,413,415,416,429,433,438,439,441,446,447,449,454,457,458,461,464,465,467,468,469,471,472,473,476,477,478,480,481,484,486,491,493,496,500,503,511,514,515,517,520,523,528,530,532,535,539,540,541,542,543,544,545,547,548,549,550,552,553,554,560,561,563,564,565,566,567,568,570,571,576,583,590,615,618],string_from_modul:567,string_partial_match:[471,567],string_similar:567,string_suggest:567,stringproduc:493,stringreceiv:500,stringvalu:[119,394],strip:[0,24,30,33,34,35,62,72,83,98,101,126,128,133,140,141,152,163,169,179,183,191,220,233,241,248,249,250,304,322,390,407,415,471,478,496,511,514,515,544,545,549,551,554,565,567],strip_ansi:[544,566],strip_cmd_prefix:248,strip_control_sequ:567,strip_dir:8,strip_mxp:544,strip_raw_ansi:544,strip_raw_cod:544,strip_unsafe_input:[0,220,567],strip_unsafe_token:544,strippabl:551,stroll:357,strong:[36,62,150,170,191],strongest:[36,82,375,407],strongli:[13,20,51,127,131,143,149,177,389],strr:457,struck:141,struct:[167,220],structur:[0,15,24,30,33,34,42,44,55,68,71,77,111,126,127,130,131,132,133,136,137,138,143,149,155,158,161,167,176,182,189,193,194,195,197,215,216,220,241,246,255,369,371,390,466,473,477,478,515,520,542,548,550,551,588,604,616,619],strvalu:[0,15,539,540],stuck:[30,133,140,146,619],studi:163,stuff:[11,15,22,30,33,36,42,44,45,46,47,55,82,97,119,123,126,127,128,132,133,141,142,143,144,145,146,147,149,151,155,163,165,168,176,177,179,182,184,189,208,220,235,252,299,325,393,394,412,417,486,529,600,619],stumbl:[9,150],stunt:406,stunt_dur:406,stupid:[13,150],sturdi:550,stutter:72,style:[0,10,15,20,21,24,25,27,30,39,53,58,64,74,85,86,89,104,106,112,119,120,121,126,127,128,130,132,133,143,146,147,149,150,151,152,158,165,168,169,178,179,200,220,230,236,238,249,255,267,273,294,297,299,309,315,321,328,337,394,406,449,454,455,477,549,553,554,567,619],style_cod:566,style_foot:0,style_head:0,style_separ:0,styled_foot:236,styled_head:[24,236],styled_separ:236,styled_t:[0,24,236],sub:[5,15,20,33,34,44,45,53,55,71,72,110,113,128,135,138,168,178,189,196,197,201,216,217,220,226,231,246,248,254,258,264,265,295,299,367,375,376,390,462,464,466,467,470,478,479,487,538,543,544,554,566,573,577,609],sub_ansi:544,sub_app:194,sub_brightbg:544,sub_mxp_link:566,sub_mxp_url:566,sub_text:566,sub_to_channel:246,sub_xterm256:544,subbed_chan:246,subcategori:[248,466],subclass:[0,21,25,44,46,50,119,124,125,131,135,136,138,157,183,187,241,264,265,361,394,472,477,481,501,514,520,541,559,563,567,575,576,583],subcommand:[0,125],subcrib:20,subdir:11,subdirectori:11,subdomain:[207,217,218],subfold:[0,70,75,127,138,143,195],subhead:128,subject:[38,60,70,97,136,181,217,325,328,554,571],sublim:132,submarin:180,submenu:[10,264,265,406,475],submenu_class:264,submenu_obj:264,submiss:[96,449,607],submit:[19,55,96,126,127,194,218,253,449,607,611,613,618],submitcmd:449,submitt:0,submodul:515,subnegoti:515,subnet:[57,205,239],subpackag:[11,71],subprocess:[1,567],subreddit:200,subscrib:[12,20,24,36,49,57,129,131,169,190,220,228,246,255,256,257,295,339,486,502,533],subscribernam:246,subscript:[20,24,45,49,82,169,190,246,256,257,486,577],subscriptionhandl:[20,257],subsect:369,subsequ:[24,56,82,113,143,178,295,302,389,545,567],subsequent_ind:553,subset:[11,48,138,149,167,369,417],subsid:50,substanti:[77,321],substitut:[0,10,39,204,473,544,566],substr:[141,544,554],subsub:[34,248,252],subsubhead:128,subsubsubhead:128,subsubtop:[34,248,252],subsubtopicn:252,subsystem:[0,70,121,189,213,469],subtext:305,subtitl:19,subtop:[246,248,252,463,466],subtopic_separator_char:248,subtract:[33,82,119,126,170,393],subturn:178,subwai:101,subword:567,suc:89,succe:[89,132,147,161,178,298,321,383,406,416],succeed:[30,123,161,246,299,383],success:[0,89,98,126,136,149,161,177,178,191,195,227,246,255,312,321,337,338,339,340,341,383,406,416,433,440,441,469,477,485,491,495,541,549,561,567],success_messag:[321,322],success_teleport_msg:441,success_teleport_to:441,success_url:[611,613],successfuli:[112,321,334],successfulli:[5,6,24,56,106,112,140,171,196,222,227,321,322,323,334,361,406,440,473,485,491,503,535,541,618],suddenli:[2,9,541],sudo:[208,212,213,215,218],suffer:161,suffic:[19,143,168],suffici:[70,77,217],suffix:[9,21,33,111,187,544,554,560,567,593],suggest:[0,1,30,31,34,50,76,77,119,122,127,128,130,147,149,150,161,171,205,221,233,248,312,322,390,394,441,466,473,567],suggestion_cutoff:248,suggestion_maxnum:[248,466],suggests:34,suid:220,suit:[0,3,6,121,131,150,172,252,567,616],suitabl:[1,13,24,33,36,39,45,48,52,68,71,118,125,126,127,130,131,132,133,143,161,172,179,215,217,229,234,246,304,321,369,407,410,469,525,532,547,551,554],sum:[125,127,132,155,161,170,186,221,235,305,416],summar:[103,126,127,200,416],summari:[52,63,101,102,103,127,132,142,158,191,200,221,222,264,406],summer:[95,149,345],sun:[125,175],sunken:152,sunris:175,sunt:31,super_long_text:552,superclass:575,superfici:[113,389],superflu:13,supersus:469,superus:[1,8,11,14,16,17,25,36,52,59,80,85,101,106,116,122,134,138,139,140,141,143,149,169,179,189,192,195,205,210,213,214,220,227,229,230,240,251,255,315,354,439,468,469,473,478,491,541,545,547,575],supplement:30,suppli:[8,15,21,30,33,34,35,37,44,45,46,48,49,51,56,60,71,92,95,101,119,127,141,149,169,178,191,202,220,230,235,236,239,241,246,251,252,256,264,270,276,280,345,369,386,394,471,472,473,477,481,486,502,532,541,549,550,554,555,564,567],supporst:518,support:[0,7,14,15,20,24,28,30,33,34,35,38,39,44,45,61,62,63,64,65,67,68,70,73,77,82,84,86,87,88,91,95,98,101,110,123,125,126,127,128,130,131,132,137,141,143,145,147,149,150,161,167,168,169,181,182,186,188,189,191,201,203,205,207,211,212,213,215,217,220,221,222,227,238,247,248,251,267,271,272,274,276,289,295,299,304,318,345,348,370,383,395,415,468,473,477,478,486,496,504,505,506,507,511,513,514,515,516,518,520,531,539,544,548,551,552,553,554,564,565,567,570,599,615,619],supports_set:[35,496],suppos:[24,30,44,51,68,103,136,227,264],supposedli:[113,208,389,477,515],suppress:[206,513],suppress_ga:[224,225,487,499],suppressga:513,supress:513,sur:200,sure:[0,1,5,7,9,10,11,12,13,14,15,16,17,18,20,22,24,30,34,36,39,40,42,44,45,46,48,49,50,51,52,53,55,57,59,67,70,73,76,78,82,94,103,105,106,113,119,120,124,125,128,132,134,135,136,139,140,141,143,146,147,149,150,151,152,155,157,161,163,168,169,170,171,173,175,177,178,179,182,183,184,185,186,187,188,189,191,193,194,195,199,202,204,205,207,208,210,211,212,213,215,216,217,220,222,227,228,234,235,236,238,241,249,256,264,287,304,315,321,340,370,389,394,399,404,405,406,407,408,411,413,416,420,439,440,441,447,457,461,464,468,469,473,477,478,483,491,495,501,503,508,529,535,536,537,539,540,541,542,544,546,548,550,551,558,563,564,567,576,583,585,608,616,618],surfac:[122,126,169,218,304],surnam:[111,454],surname_first:[111,454],surpris:[15,36,83,143,181,186,197],surrend:161,surround:[22,24,33,74,105,106,122,125,178,239,309,370,407,439,563,567],surviv:[0,15,21,22,28,30,33,37,45,46,49,119,139,161,171,172,178,187,188,220,228,235,251,264,318,394,471,480,481,482,486,547,549,551,567],survivor:149,suscept:[21,167,469],suspect:194,suspend:[10,212,218],suspici:[30,152],suspicion:194,suzu:111,svn:[0,72],swallow:[496,500],swam:[570,572],swap:[0,11,25,27,53,62,95,132,151,158,241,331,345,405,406,410,422,541,549],swap_autoind:549,swap_object:541,swap_typeclass:[50,227,541],swapcas:544,swapper:541,swedish:67,sweep:45,swiftli:56,swim:[570,572],swing:[24,141,171,172],switch1:74,switch2:74,switch_map:241,switch_opt:[238,239,240,241,246,247,248,249,251,295,345],switchboard:135,sword:[15,24,48,51,70,79,89,101,119,126,132,134,136,145,146,149,152,163,171,172,177,184,224,225,258,304,310,312,320,321,323,390,394,406,410,412,471,478,564,567],swordbladerecip:322,swordguardrecip:322,swordhandlerecip:322,swordpommelrecip:322,swordrecip:[321,322],swordsmithingbaserecip:322,swum:[570,572],syllabl:454,sylliaa:77,symbol:[10,17,18,24,72,124,125,136,182,211,220,253,361,364,367,369,370,372,390,461,552],symlink:[128,215],symlinkorcopi:77,symmetr:553,symmetri:11,sync:[13,46,54,68,131,220,369,370,371,480,509,514,529,530,531,532,539,548],sync_node_to_grid:370,sync_port:532,syncdata:[531,532],syncdb:11,synchron:[63,220,560],syntact:[469,567],syntax:[0,3,9,13,16,17,18,24,30,36,74,80,83,96,101,102,110,111,123,126,130,134,135,139,169,172,175,179,186,191,195,205,220,224,225,236,240,241,248,249,252,264,269,299,302,321,345,375,383,407,416,449,454,469,473,491,503,530,539,541,543,544,619],syntaxerror:143,sys:[220,615],sys_cmd:234,syscmdkei:[24,129,220,224],syscommand:[224,225,231,237,473],syslog:[78,445],sysroot:211,system:[0,2,4,5,8,9,11,12,13,14,15,20,21,22,25,27,35,37,38,39,42,44,45,46,47,48,49,50,55,56,59,63,64,67,68,70,72,74,76,78,82,83,85,90,93,94,102,103,106,109,111,120,122,125,126,127,128,129,130,131,132,135,137,138,140,142,143,146,148,152,155,163,167,171,172,174,175,180,181,182,188,189,190,192,193,195,196,200,205,208,210,211,213,215,217,218,219,220,222,224,225,228,230,231,232,234,236,237,238,240,241,248,250,252,254,255,256,257,260,264,269,280,284,285,286,287,289,304,312,313,315,321,322,323,327,328,331,334,336,337,338,339,340,341,361,367,368,369,370,372,375,377,378,389,390,391,406,408,410,411,413,417,438,441,445,446,447,451,461,462,463,465,468,469,472,473,475,477,478,479,491,514,520,528,538,541,545,547,550,551,554,560,571,575,593,619],system_command:24,systemat:181,systemctl:207,systemd:208,systemmultimatch:250,systemnoinput:250,systemnomatch:250,tab:[0,2,5,10,17,53,54,62,132,143,144,150,173,189,197,220,544,553,566],tabl:[0,3,9,12,16,18,50,53,60,62,63,71,73,80,101,102,103,105,106,129,131,132,136,145,149,151,158,169,192,195,197,220,236,238,246,248,251,404,411,414,416,449,515,534,544,550,552,553,554,564,567,619],table_char:550,table_choic:[161,416],table_format:238,table_lin:553,table_opt:550,table_str:169,tablea:550,tableb:550,tablechar:[169,550],tableclos:[71,515],tablecol:553,tableopen:[71,515],tablet:58,tabletop:[121,126,149,151,169,177,200,337,341,416],tabsiz:[544,553],tabstop:566,tabularinlin:[576,583],tack:[134,235],tackl:127,tactic:[149,177,178],taction:178,tag:[0,16,20,24,25,27,30,34,35,38,39,42,44,45,50,52,53,54,55,57,62,63,67,70,71,76,86,87,89,97,112,113,125,126,132,133,134,136,143,149,168,169,176,187,189,193,195,196,206,212,220,224,225,229,236,238,239,240,241,246,247,248,249,250,251,252,253,255,256,257,264,267,271,272,274,280,284,295,298,299,302,304,305,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,363,370,372,375,379,383,390,394,407,408,412,417,433,435,438,439,440,441,445,449,451,457,461,464,465,466,468,471,473,477,478,480,506,520,522,528,538,540,541,544,547,549,550,551,552,553,554,564,565,567,573,574,575,577,579,580,581,587,590,619],tag_all_charact:305,tag_categori:583,tag_charact:305,tag_data:583,tag_field_nam:270,tag_kei:583,tag_typ:[583,587],tagadmin:583,tagcategori:[304,305,542],tagcount:136,taget_map_xyz:370,tagfield:[87,271],tagform:583,tagformset:[576,583],taghandl:[0,48,50,187,542,583],taghandler_nam:542,taginlin:[575,577,579,580,581,583],tagkei:[468,471,542,547],taglin:19,tagnam:[48,187,478,542],tagproperti:[0,48,224,541,542],tagseri:590,tagshandl:590,tagstr:[478,542],tagtyp:[48,540,542,564,587],tagtypefilt:587,tail:[138,210,212,217,491,560],tail_log_fil:[491,560],tail_log_funct:560,tailor:[197,607],take:[0,1,2,7,10,11,16,17,18,19,20,21,22,24,30,31,33,35,36,42,44,46,50,56,58,59,62,64,67,68,72,78,82,83,89,90,94,96,101,102,103,105,106,111,114,120,122,125,126,127,128,130,131,132,134,139,140,141,142,143,145,146,148,149,150,151,152,158,161,164,165,166,167,168,169,171,175,176,178,179,180,182,186,187,188,189,191,192,193,194,195,196,197,200,211,217,218,227,228,233,234,238,250,255,257,276,279,291,302,307,309,312,315,321,334,337,338,339,340,341,345,348,354,357,363,367,375,390,404,406,407,412,433,438,439,441,445,449,451,457,461,469,478,511,519,522,531,532,540,541,544,549,550,551,552,554,561,565,566,567,568,571,619],take_damag:[82,375],taken:[2,22,111,131,135,144,167,178,180,191,198,210,218,247,280,337,348,406,412,445,464,473,477,511,535,544,547],taken_damag:[82,375,376],takeov:533,tale:165,tali:[111,454],talk:[13,21,24,30,54,64,102,113,126,127,143,149,150,155,169,186,205,217,220,227,246,247,295,312,389,390,407,411,417,434,435,436,441,488,571,619],talker:[130,411],talki:[20,131,149],talking_npc:[118,224,225,258,395,619],talkingcmdset:435,talkingnpc:[118,435],tall:[0,60,74,113,149,247,390],tallman:247,tan:322,tang:[133,322],tannin:322,tantal:17,tap:[78,126],target1:340,target2:340,target:[0,1,11,13,24,36,38,53,60,64,71,82,87,91,95,113,120,125,126,128,133,134,140,141,143,161,169,171,172,173,177,178,179,191,193,196,218,220,227,236,241,246,247,251,255,257,302,304,307,322,328,337,338,339,340,341,345,361,363,364,367,369,370,375,376,379,383,390,406,407,408,416,439,451,461,471,473,482,540,544,547,551,567],target_fire_damag:322,target_flag:304,target_loc:[305,357,361,408,441,473],target_map_xyz:[125,364,367,370],target_obj:469,target_path_styl:369,targetlist:328,task:[0,4,8,20,21,27,45,64,101,103,138,186,208,222,251,252,284,286,363,461,485,486,567],task_handl:[224,485,567],task_id:[251,286,485],taskhandl:[0,224,225,479,567],taskhandlertask:[485,567],tast:[83,146,150,161,194],tasti:321,taught:152,tavern:[113,390],tax:[8,211],taylor:[0,200],tb_basic:[0,121,224,225,258,310,336,338,339,340,341],tb_equip:[0,121,224,225,258,310,336],tb_filenam:545,tb_item:[0,121,224,225,258,310,336],tb_iter:545,tb_magic:[0,121,224,225,258,310,336],tb_rang:[0,121,224,225,258,310,336],tbbasiccharact:[337,338,339,340,341],tbbasicturnhandl:[337,338,339,340,341],tbearmor:338,tbequipcharact:338,tbequipturnhandl:338,tbeweapon:338,tbitemscharact:339,tbitemscharactertest:339,tbitemsturnhandl:339,tbmagiccharact:340,tbmagicturnhandl:340,tbodi:195,tbrangecharact:341,tbrangeobject:341,tbrangeturnhandl:341,tchar:178,tcp:218,tcpserver:[64,536],tea:[111,454],teach:[126,137,150],team:[4,13,24,34,72,131,147,149,150],teamciti:4,teardown:[11,252,277,287,308,323,342,367,377,391,393,400,422,517,565,591],teardown_account:565,teardown_sess:565,teaser:217,tech:[132,142,148,150,158,164,166,200],technic:[25,30,48,50,56,59,60,62,64,67,68,72,125,131,134,147,150,161,181,189,205,217,224,225,258,312,395,432,539],techniqu:[84,140,172,379,544],technolog:149,tediou:[10,106],teenag:[179,218],tegimini:[0,82,126,375],tehom:[0,136,189],tehomcd:189,tel:[27,57,103,133,169,180,186,241,363],telepath:149,telephathi:20,teleport:[0,17,27,57,76,126,134,146,169,241,247,363,367,370,441,473,545],teleport_her:[0,241],teleportermaplink:[125,370],teleportmaplink:125,teleportroom:441,televis:22,tell:[0,2,6,7,9,12,13,15,16,22,24,27,30,33,35,36,38,39,42,44,45,56,57,59,67,68,70,75,78,82,83,89,91,94,101,102,103,113,133,134,138,139,140,141,143,144,149,151,152,155,161,165,169,170,172,177,178,179,180,182,185,186,187,190,195,196,197,205,207,211,212,217,218,220,222,228,238,246,247,257,370,375,376,383,390,408,441,473,491,509,520,532,549,616],telnet:[0,1,8,18,46,53,54,61,64,66,68,130,131,132,143,173,189,200,210,211,212,213,220,221,222,224,225,248,251,487,499,504,505,506,507,511,512,513,515,516,518,522,530,531],telnet_:217,telnet_en:220,telnet_hostnam:[209,220],telnet_interfac:[217,220],telnet_oob:[71,224,225,487,499],telnet_oob_en:220,telnet_port:[5,8,138,189,209,217,220,523],telnet_protocol_class:220,telnet_ssl:[224,225,487,499],telnetoob:515,telnetprotocol:[220,512,514,516],telnetserverfactori:514,temp:[257,405],tempat:449,templ:[105,122],templat:[0,13,14,21,22,25,39,44,47,50,51,52,53,54,55,75,120,131,138,144,149,152,163,165,191,193,195,210,219,220,224,225,246,247,249,255,375,438,449,473,491,520,530,531,539,543,550,596,600,605,615,616,618],template2menu:[30,551],template_nam:[55,196,611,612,613,615,616,618],template_overrid:[0,75,138,193],template_regex:539,template_rend:47,template_str:[30,39],templates_overrid:75,templatetag:[224,225,573],templateview:[55,196,616],tempmsg:[25,257],temporari:[0,11,13,15,25,146,152,220,222,235,257,289,337,486,551],temporarili:[2,9,11,20,22,30,45,54,119,134,139,161,217,246,251,286,321,334,394,433],temporarycharactersheet:[152,405],tempt:[33,139,143,147,149,219,239],ten:[106,172,217],tend:[8,9,70,74,113,131,149,157,168,176,177,180,217,218,241,389,445],tens:[570,572],tent:[106,149],terabyt:50,term:[0,22,34,56,67,103,131,132,138,139,141,150,175,186,188,197,217,236,304,457,534],term_siz:[0,7,224],termin:[0,2,7,8,9,10,13,21,55,98,120,125,128,131,132,133,143,144,188,191,192,205,210,211,212,213,215,217,218,222,224,251,285,337,461,490,491,511,518,534,616],terminalrealm:511,terminals:511,terminalsessiontransport:511,terminalsessiontransport_getp:511,termux:221,terrain:[182,370],terribl:[339,504],territori:220,ters:45,test1:[15,35,553],test2010:133,test2028:133,test2:[15,24,35],test3:[15,553],test4:[15,553],test5:15,test6:15,test7:15,test8:15,test:[0,1,3,4,5,6,7,10,13,15,16,17,18,19,22,24,28,30,33,34,35,36,40,42,44,45,47,49,53,55,56,59,78,80,81,83,84,85,89,93,96,102,103,106,112,121,126,127,128,132,134,136,139,140,141,142,144,147,149,150,158,164,167,169,172,175,178,179,186,187,190,194,197,198,201,202,203,205,206,208,211,213,215,216,217,220,224,225,229,231,233,237,238,240,248,251,258,259,260,263,266,269,275,278,282,290,294,297,300,301,310,311,314,315,317,320,321,322,324,327,330,333,336,337,338,339,340,341,343,344,345,347,350,353,356,359,362,369,373,374,378,382,383,385,388,392,395,398,399,401,434,437,438,443,444,449,450,453,456,459,461,477,487,493,496,499,500,520,521,522,526,541,543,544,545,547,551,556,565,567,569,573,586,597,606,615,619],test_:[11,163,377],test_a:274,test_abl:420,test_about:252,test_accept:287,test_access:252,test_active_task:252,test_add:[287,319,425],test_add__remov:425,test_add_choice_without_kei:265,test_add_combat:422,test_add_float:319,test_add_multi:319,test_add_neg:319,test_add_non:319,test_add_overwrit:319,test_add_remov:155,test_add_trait:393,test_add_valid:287,test_addremov:377,test_al:393,test_all_com:296,test_all_st:308,test_alternative_cal:11,test_amp_in:517,test_amp_out:517,test_appli:421,test_at_damag:420,test_at_pai:[151,420],test_at_repeat:400,test_attack:423,test_attack__miss:422,test_attack__success__kil:422,test_attack__success__still_al:422,test_attribute_command:252,test_audit:447,test_auto_creating_bucket:262,test_auto_creating_bucket_with_acl:262,test_available_languag:391,test_b:274,test_ban:252,test_base_chargen:421,test_base_pars:308,test_base_search:308,test_base_st:308,test_batch_command:252,test_bold:517,test_boundaries__bigmod:393,test_boundaries__change_boundari:393,test_boundaries__dis:393,test_boundaries__invers:393,test_boundaries__minmax:393,test_bridgeroom:442,test_buffableproperti:377,test_build:367,test_build_desc:421,test_c:274,test_c_creates_button:527,test_c_creates_obj:527,test_c_dig:527,test_c_examin:527,test_c_help:527,test_c_login:527,test_c_login_no_dig:527,test_c_logout:527,test_c_look:527,test_c_mov:527,test_c_move_:527,test_c_move_n:527,test_c_soci:527,test_cach:393,test_cacheattrlink:377,test_cal:[252,287],test_callback:265,test_can_access_component_regular_get:274,test_can_get_compon:274,test_can_remove_compon:274,test_can_remove_component_by_nam:274,test_cancel:252,test_cannot_replace_compon:274,test_cas:11,test_cboot:296,test_cdesc:296,test_cdestroi:296,test_channel__al:252,test_channel__alias__unalia:252,test_channel__ban__unban:252,test_channel__boot:252,test_channel__cr:252,test_channel__desc:252,test_channel__destroi:252,test_channel__histori:252,test_channel__list:252,test_channel__lock:252,test_channel__msg:252,test_channel__mut:252,test_channel__noarg:252,test_channel__sub:252,test_channel__unlock:252,test_channel__unmut:252,test_channel__unsub:252,test_channel__who:252,test_char_cr:[252,381],test_char_delet:252,test_charact:[151,224,225,258,395,401,418],test_character_assigns_default_provided_valu:274,test_character_assigns_default_valu:274,test_character_can_register_runtime_compon:274,test_character_has_class_compon:274,test_character_instances_components_properli:274,test_chargen:[224,225,258,395,401,418],test_clean_nam:262,test_clean_name_norm:262,test_clean_name_trailing_slash:262,test_clean_name_window:262,test_cleanup:319,test_cleanup_doesnt_delete_anyth:319,test_clear:[319,393],test_climb:442,test_clock:296,test_clothingcommand:316,test_clothingfunct:316,test_cmd_armpuzzl:335,test_cmd_puzzl:335,test_cmd_us:335,test_cmddic:384,test_cmdextendedlook:346,test_cmdgametim:346,test_cmdmultidesc:332,test_cmdopen:355,test_cmdset_puzzl:335,test_cmdsetdetail:346,test_cmdtrad:313,test_cmdtradehelp:313,test_cmdtutori:442,test_colloquial_plur:572,test_colloquial_plurals_0_y:572,test_colloquial_plurals_1_i:572,test_colloquial_plurals_2_m:572,test_colloquial_plurals_3_your:572,test_colloquial_plurals_4_thei:572,test_colloquial_plurals_5_thei:572,test_colloquial_plurals_6_yourself:572,test_colloquial_plurals_7_myself:572,test_color:517,test_color_test:252,test_combat:[224,225,258,395,401,418],test_combat_summari:422,test_command:[224,225,258,391,395,401,418],test_comparisons_numer:393,test_comparisons_trait:393,test_complex:377,test_component_can_register_as_listen:274,test_component_can_register_as_respond:274,test_component_handler_signals_connected_when_adding_default_compon:274,test_component_handler_signals_disconnected_when_removing_compon:274,test_component_handler_signals_disconnected_when_removing_component_by_nam:274,test_component_tags_default_value_is_overridden_when_enforce_singl:274,test_component_tags_only_hold_one_value_when_enforce_singl:274,test_component_tags_support_multiple_values_by_default:274,test_compress_content_len:262,test_connect:281,test_connection_thread:262,test_content_typ:262,test_context_condit:377,test_copi:252,test_count_slot:425,test_craft__nocons__failur:323,test_craft__notools__failur:323,test_craft__success:323,test_craft__unknown_recipe__failur:323,test_craft_cons_excess__fail:323,test_craft_cons_excess__sucess:323,test_craft_cons_order__fail:323,test_craft_hook__fail:323,test_craft_hook__succe:323,test_craft_missing_cons__always_consume__fail:323,test_craft_missing_cons__fail:323,test_craft_missing_tool__fail:323,test_craft_sword:323,test_craft_tool_excess__fail:323,test_craft_tool_excess__sucess:323,test_craft_tool_order__fail:323,test_craft_wrong_tool__fail:323,test_creat:[252,591],test_create_wilderness_custom_nam:360,test_create_wilderness_default_nam:360,test_crumblingwal:442,test_curly_markup:268,test_curr:393,test_custom_gametim:277,test_cwho:296,test_darkroom:442,test_data_in:517,test_data_out:517,test_db_path:220,test_default_map:572,test_default_mapping_00_y:572,test_default_mapping_01_i:572,test_default_mapping_02_m:572,test_default_mapping_03_our:572,test_default_mapping_04_yourself:572,test_default_mapping_05_yourselv:572,test_default_mapping_06_h:572,test_default_mapping_07_h:572,test_default_mapping_08_their:572,test_default_mapping_09_itself:572,test_default_mapping_10_herself:572,test_default_mapping_11_themselv:572,test_del:287,test_delet:[393,591],test_desc:[252,393],test_desc_default_to_room:252,test_destroi:252,test_destroy_sequ:252,test_detail:377,test_different_start_direct:424,test_dig:252,test_do_nested_lookup:252,test_do_noth:422,test_do_task:252,test_dungeon:[224,225,258,395,401,418],test_e2:335,test_e2e_accumul:335,test_e2e_interchangeable_parts_and_result:335,test_echo:565,test_edit:287,test_edit_valid:287,test_emit:252,test_emot:308,test_empti:319,test_empty_desc:252,test_end_of_turn__empti:422,test_enter_wild:360,test_enter_wilderness_custom_coordin:360,test_enter_wilderness_custom_nam:360,test_equip:[155,224,225,258,395,401,418],test_equipmenthandler_max_slot:425,test_error_format:323,test_examin:252,test_exit:[287,358],test_exit_command:252,test_extend:319,test_extend_float:319,test_extend_neg:319,test_extend_non:319,test_extended_path_tracking__horizont:367,test_extended_path_tracking__vert:367,test_extra:187,test_failur:298,test_fantasy_nam:455,test_faulty_languag:391,test_field_funct:460,test_find:252,test_first_nam:455,test_fle:422,test_flee__block:422,test_flee__success:422,test_floordiv:393,test_focu:308,test_focus_interact:308,test_forc:252,test_full_nam:455,test_func_name_manipul:252,test_gain_advantag:422,test_gain_disadvantag:422,test_gametime_to_realtim:277,test_gendercharact:326,test_gener:458,test_general_context:602,test_generated_url_is_encod:262,test_get:[393,608],test_get_and_drop:252,test_get_authent:608,test_get_available_act:422,test_get_dis:608,test_get_new_coordin:360,test_get_obj_stat:[163,428],test_get_sdesc:391,test_get_shortest_path:367,test_get_visual_range__nodes__charact:367,test_get_visual_range__nodes__character_0:367,test_get_visual_range__nodes__character_1:367,test_get_visual_range__nodes__character_2:367,test_get_visual_range__nodes__character_3:367,test_get_visual_range__nodes__character_4:367,test_get_visual_range__nodes__character_5:367,test_get_visual_range__nodes__character_6:367,test_get_visual_range__nodes__character_7:367,test_get_visual_range__nodes__character_8:367,test_get_visual_range__nodes__character_9:367,test_get_visual_range__scan:367,test_get_visual_range__scan_0:367,test_get_visual_range__scan_1:367,test_get_visual_range__scan_2:367,test_get_visual_range__scan_3:367,test_get_visual_range__scan__charact:367,test_get_visual_range__scan__character_0:367,test_get_visual_range__scan__character_1:367,test_get_visual_range__scan__character_2:367,test_get_visual_range__scan__character_3:367,test_get_visual_range_with_path:367,test_get_visual_range_with_path_0:367,test_get_visual_range_with_path_1:367,test_get_visual_range_with_path_2:367,test_get_visual_range_with_path_3:367,test_get_visual_range_with_path_4:367,test_get_wearable_or_wieldable_objects_from_backpack:425,test_gett:377,test_git_branch:452,test_git_checkout:452,test_git_pul:452,test_git_statu:452,test_giv:252,test_give__coin:423,test_give__item:423,test_go_hom:252,test_grid_cr:367,test_grid_creation_0:367,test_grid_creation_1:367,test_grid_pathfind:367,test_grid_pathfind_0:367,test_grid_pathfind_1:367,test_grid_vis:367,test_grid_visibility_0:367,test_grid_visibility_1:367,test_handl:287,test_handler_can_add_default_compon:274,test_handler_has_returns_true_for_any_compon:274,test_heal:[151,420],test_heal_from_rest:427,test_healthbar:387,test_hello_world:144,test_help:[252,426],test_hom:252,test_host_can_register_as_listen:274,test_host_can_register_as_respond:274,test_host_has_added_component_tag:274,test_host_has_added_default_component_tag:274,test_host_has_class_component_tag:274,test_host_remove_by_name_component_tag:274,test_host_remove_component_tag:274,test_ic:252,test_ic__nonaccess:252,test_ic__other_object:252,test_ident:517,test_idl:527,test_info_command:252,test_init:393,test_interrupt_command:252,test_introroom:442,test_invalid_access:608,test_inventori:[252,423],test_ital:517,test_large_msg:517,test_last_nam:455,test_lightsourc:442,test_list:[287,591],test_list_cmdset:252,test_load_recip:323,test_location_leading_slash:262,test_location_search:11,test_lock:[252,287],test_lock_with_perm:608,test_locked_entri:608,test_look:[252,308],test_look_no_loc:252,test_look_nonexist:252,test_lspuzzlerecipes_lsarmedpuzzl:335,test_mail:329,test_mapping_with_opt:572,test_mapping_with_options_00_y:572,test_mapping_with_options_01_y:572,test_mapping_with_options_02_y:572,test_mapping_with_options_03_i:572,test_mapping_with_options_04_m:572,test_mapping_with_options_05_your:572,test_mapping_with_options_06_yourself:572,test_mapping_with_options_07_yourself:572,test_mapping_with_options_08_yourselv:572,test_mapping_with_options_09_h:572,test_mapping_with_options_10_h:572,test_mapping_with_options_11_w:572,test_mapping_with_options_12_h:572,test_mapping_with_options_13_h:572,test_mapping_with_options_14_their:572,test_mask:447,test_max_slot:425,test_memplot:527,test_menu:[120,461],test_messag:528,test_misformed_command:252,test_mob:442,test_modgen:377,test_modifi:377,test_morale_check:427,test_mov:425,test_move_0_helmet:425,test_move_1_shield:425,test_move_2_armor:425,test_move_3_weapon:425,test_move_4_big_weapon:425,test_move_5_item:425,test_move__get_current_slot:425,test_msg:[323,422],test_mudlet_ttyp:517,test_mul_trait:393,test_multi_level:265,test_multimatch:252,test_mux_command:252,test_mux_markup:268,test_mycmd_char:11,test_mycmd_room:11,test_nam:252,test_nested_attribute_command:252,test_new_task_waiting_input:252,test_nick:252,test_nick_list:252,test_no_hom:252,test_no_input:252,test_no_task:252,test_node_from_coord:367,test_obelisk:442,test_obfuscate_languag:391,test_obfuscate_whisp:391,test_object:252,test_object_cach:608,test_object_search_charact:11,test_ooc:252,test_ooc_look:[252,381],test_ooc_look_00:252,test_ooc_look_01:252,test_ooc_look_02:252,test_ooc_look_03:252,test_ooc_look_04:252,test_ooc_look_05:252,test_ooc_look_06:252,test_ooc_look_07:252,test_ooc_look_08:252,test_ooc_look_09:252,test_ooc_look_10:252,test_ooc_look_11:252,test_ooc_look_12:252,test_ooc_look_13:252,test_ooc_look_14:252,test_ooc_look_15:252,test_opposed_saving_throw:427,test_opt:252,test_outroroom:442,test_override_class_vari:262,test_override_init_argu:262,test_overwrit:308,test_pag:252,test_parse_for_perspect:308,test_parse_for_th:308,test_parse_languag:391,test_parse_sdescs_and_recog:391,test_password:252,test_path:367,test_paths_0:367,test_paths_1:367,test_pause_unpaus:252,test_percentag:393,test_perm:252,test_persistent_task:252,test_pi:252,test_pickle_with_bucket:262,test_pickle_without_bucket:262,test_plain_ansi:517,test_pos:252,test_pos_shortcut:393,test_posed_cont:391,test_possessive_selfref:391,test_pre_craft:323,test_pre_craft_fail:323,test_preserve_item:360,test_progress:426,test_progress__fail:426,test_properti:425,test_puzzleedit:335,test_puzzleedit_add_remove_parts_result:335,test_quel:252,test_queri:[224,225,487,521],test_quest:[224,225,258,395,401,418],test_quit:[252,265,281],test_read:442,test_real_seconds_until:277,test_realtime_to_gametim:277,test_recog_handl:391,test_register_and_run_act:422,test_remov:[252,393,423],test_remove__with_obj:425,test_remove__with_slot:425,test_remove_combat:422,test_repr:393,test_reset:319,test_reset_non_exist:319,test_resourc:[11,151,155,161,163,220,224,225,252,265,268,274,277,281,287,296,298,308,313,316,319,323,326,329,332,335,342,346,355,358,360,367,377,381,384,387,391,393,400,420,421,422,423,424,425,426,427,428,436,442,447,452,455,458,460,517,543,591,608],test_responce_of_y:252,test_retriev:591,test_return_appear:346,test_return_detail:346,test_return_valu:11,test_returns_none_with_regular_get_when_no_attribut:274,test_rol:[161,427],test_roll_death:427,test_roll_dic:384,test_roll_limit:427,test_roll_random_t:427,test_roll_with_advantage_disadvantag:427,test_room_cr:360,test_room_method:308,test_round1:393,test_round2:393,test_rpsearch:391,test_rul:[161,224,225,258,395,401,418],test_runn:220,test_sai:252,test_saving_throw:427,test_schedul:277,test_script:252,test_script_multi_delet:252,test_sdesc_handl:391,test_seed__success:323,test_send_case_sensitive_emot:391,test_send_emot:391,test_send_emote_fallback:391,test_send_random_messag:400,test_server_load:252,test_sess:252,test_set:393,test_set_attribut:591,test_set_focu:308,test_set_help:252,test_set_hom:252,test_set_obj_alia:252,test_setattr:265,test_setgend:326,test_shortest_path:367,test_shortest_path_00:367,test_shortest_path_01:367,test_shortest_path_02:367,test_shortest_path_03:367,test_shortest_path_04:367,test_shortest_path_05:367,test_shortest_path_06:367,test_shortest_path_07:367,test_shortest_path_08:367,test_shortest_path_09:367,test_shortest_path_0:367,test_shortest_path_10:367,test_shortest_path_1:367,test_shortest_path_2:367,test_shortest_path_3:367,test_shortest_path_4:367,test_shortest_path_5:367,test_shortest_path_6:367,test_shortest_path_7:367,test_shortest_path_8:367,test_shortest_path_9:367,test_signal_a:274,test_signals_can_add_listen:274,test_signals_can_add_object_listeners_and_respond:274,test_signals_can_add_respond:274,test_signals_can_query_with_arg:274,test_signals_can_remove_listen:274,test_signals_can_remove_object_listeners_and_respond:274,test_signals_can_remove_respond:274,test_signals_can_trigger_with_arg:274,test_signals_query_does_not_fail_wihout_respond:274,test_signals_query_with_aggreg:274,test_signals_trigger_does_not_fail_without_listen:274,test_simple_default:252,test_spawn:[252,367],test_special_charact:262,test_speech:308,test_split_nested_attr:252,test_start:287,test_start_combat:422,test_start_room:424,test_start_turn:422,test_storage_delet:262,test_storage_exist:262,test_storage_exists_doesnt_create_bucket:262,test_storage_exists_fals:262,test_storage_listdir_bas:262,test_storage_listdir_subdir:262,test_storage_mtim:262,test_storage_open_no_overwrite_exist:262,test_storage_open_no_writ:262,test_storage_open_writ:262,test_storage_s:262,test_storage_sav:262,test_storage_save_gzip:262,test_storage_save_gzip_twic:262,test_storage_save_with_acl:262,test_storage_url:262,test_storage_url_slash:262,test_storage_write_beyond_buffer_s:262,test_str_output:367,test_stresstest:377,test_strip_signing_paramet:262,test_structure_valid:455,test_stunt_advantage__success:422,test_stunt_disadvantage__success:422,test_stunt_fail:422,test_sub_trait:393,test_submenu:265,test_subtopic_fetch:252,test_subtopic_fetch_00_test:252,test_subtopic_fetch_01_test_creating_extra_stuff:252,test_subtopic_fetch_02_test_cr:252,test_subtopic_fetch_03_test_extra:252,test_subtopic_fetch_04_test_extra_subsubtop:252,test_subtopic_fetch_05_test_creating_extra_subsub:252,test_subtopic_fetch_06_test_something_els:252,test_subtopic_fetch_07_test_mor:252,test_subtopic_fetch_08_test_more_second_mor:252,test_subtopic_fetch_09_test_more_mor:252,test_subtopic_fetch_10_test_more_second_more_again:252,test_subtopic_fetch_11_test_more_second_third:252,test_success:298,test_swap_wielded_weapon_or_spel:422,test_tag:252,test_talk:423,test_talkingnpc:436,test_task_complete_waiting_input:252,test_tbbasicfunc:342,test_tbequipfunc:342,test_tbitemsfunc:342,test_tbrangefunc:342,test_teleport:252,test_teleportroom:442,test_tim:377,test_time_to_tupl:277,test_timer_r:393,test_timer_ratetarget:393,test_toggle_com:296,test_tradehandler_bas:313,test_tradehandler_join:313,test_tradehandler_off:313,test_trait_db_connect:393,test_trait_getset:393,test_traitfield:393,test_tree_funct:460,test_trigg:377,test_tunnel:252,test_tunnel_exit_typeclass:252,test_turnbattlecmd:342,test_turnbattleequipcmd:342,test_turnbattleitemcmd:342,test_turnbattlemagiccmd:342,test_turnbattlerangecmd:342,test_tutorialobj:442,test_two_handed_exclus:425,test_typeclass:252,test_typeclassed_xyzroom_and_xyzexit_with_at_object_creation_are_cal:367,test_unconnectedhelp:281,test_unconnectedlook:281,test_unfle:422,test_upd:591,test_use_item:422,test_util:[163,224,225,258,395,401,418],test_valid_access:608,test_valid_access_multisession_0:608,test_valid_access_multisession_2:608,test_valid_char:608,test_validate_input__fail:393,test_validate_input__valid:393,test_validate_slot_usag:425,test_validate_slot_usage_0:425,test_validate_slot_usage_1:425,test_validate_slot_usage_2:425,test_validate_slot_usage_3:425,test_validate_slot_usage_4:425,test_validate_slot_usage_5:425,test_valu:393,test_verb_actor_stance_compon:572,test_verb_actor_stance_components_00_hav:572,test_verb_actor_stance_components_01_swim:572,test_verb_actor_stance_components_02_g:572,test_verb_actor_stance_components_03_given:572,test_verb_actor_stance_components_04_am:572,test_verb_actor_stance_components_05_do:572,test_verb_actor_stance_components_06_ar:572,test_verb_actor_stance_components_07_had:572,test_verb_actor_stance_components_08_grin:572,test_verb_actor_stance_components_09_smil:572,test_verb_actor_stance_components_10_vex:572,test_verb_actor_stance_components_11_thrust:572,test_verb_conjug:572,test_verb_conjugate_0_inf:572,test_verb_conjugate_1_inf:572,test_verb_conjugate_2_inf:572,test_verb_conjugate_3_inf:572,test_verb_conjugate_4_inf:572,test_verb_conjugate_5_inf:572,test_verb_conjugate_6_inf:572,test_verb_conjugate_7_2sgpr:572,test_verb_conjugate_8_3sgpr:572,test_verb_get_all_tens:572,test_verb_infinit:572,test_verb_infinitive_0_hav:572,test_verb_infinitive_1_swim:572,test_verb_infinitive_2_g:572,test_verb_infinitive_3_given:572,test_verb_infinitive_4_am:572,test_verb_infinitive_5_do:572,test_verb_infinitive_6_ar:572,test_verb_is_past:572,test_verb_is_past_0_1st:572,test_verb_is_past_1_1st:572,test_verb_is_past_2_1st:572,test_verb_is_past_3_1st:572,test_verb_is_past_4_1st:572,test_verb_is_past_5_1st:572,test_verb_is_past_6_1st:572,test_verb_is_past_7_2nd:572,test_verb_is_past_participl:572,test_verb_is_past_participle_0_hav:572,test_verb_is_past_participle_1_swim:572,test_verb_is_past_participle_2_g:572,test_verb_is_past_participle_3_given:572,test_verb_is_past_participle_4_am:572,test_verb_is_past_participle_5_do:572,test_verb_is_past_participle_6_ar:572,test_verb_is_past_participle_7_had:572,test_verb_is_pres:572,test_verb_is_present_0_1st:572,test_verb_is_present_1_1st:572,test_verb_is_present_2_1st:572,test_verb_is_present_3_1st:572,test_verb_is_present_4_1st:572,test_verb_is_present_5_1st:572,test_verb_is_present_6_1st:572,test_verb_is_present_7_1st:572,test_verb_is_present_participl:572,test_verb_is_present_participle_0_hav:572,test_verb_is_present_participle_1_swim:572,test_verb_is_present_participle_2_g:572,test_verb_is_present_participle_3_given:572,test_verb_is_present_participle_4_am:572,test_verb_is_present_participle_5_do:572,test_verb_is_present_participle_6_ar:572,test_verb_is_tens:572,test_verb_is_tense_0_inf:572,test_verb_is_tense_1_inf:572,test_verb_is_tense_2_inf:572,test_verb_is_tense_3_inf:572,test_verb_is_tense_4_inf:572,test_verb_is_tense_5_inf:572,test_verb_is_tense_6_inf:572,test_verb_past:572,test_verb_past_0_1st:572,test_verb_past_1_1st:572,test_verb_past_2_1st:572,test_verb_past_3_1st:572,test_verb_past_4_1st:572,test_verb_past_5_1st:572,test_verb_past_6_1st:572,test_verb_past_7_2nd:572,test_verb_past_participl:572,test_verb_past_participle_0_hav:572,test_verb_past_participle_1_swim:572,test_verb_past_participle_2_g:572,test_verb_past_participle_3_given:572,test_verb_past_participle_4_am:572,test_verb_past_participle_5_do:572,test_verb_past_participle_6_ar:572,test_verb_pres:572,test_verb_present_0_1st:572,test_verb_present_1_1st:572,test_verb_present_2_1st:572,test_verb_present_3_1st:572,test_verb_present_4_1st:572,test_verb_present_5_1st:572,test_verb_present_6_1st:572,test_verb_present_7_2nd:572,test_verb_present_8_3rd:572,test_verb_present_participl:572,test_verb_present_participle_0_hav:572,test_verb_present_participle_1_swim:572,test_verb_present_participle_2_g:572,test_verb_present_participle_3_given:572,test_verb_present_participle_4_am:572,test_verb_present_participle_5_do:572,test_verb_present_participle_6_ar:572,test_verb_tens:572,test_verb_tense_0_hav:572,test_verb_tense_1_swim:572,test_verb_tense_2_g:572,test_verb_tense_3_given:572,test_verb_tense_4_am:572,test_verb_tense_5_do:572,test_verb_tense_6_ar:572,test_view:608,test_wal:252,test_weapon:442,test_weaponrack:442,test_weatherroom:442,test_whisp:252,test_who:252,test_wield_or_wear:423,test_wilderness_correct_exit:360,test_without_migr:11,test_wrong_func_nam:252,testaccount2:11,testaccount:[11,252],testadmin:252,testampserv:517,testapp:194,testbart:313,testbatchprocess:252,testbodyfunct:400,testbuffsandhandl:377,testbuild:252,testbuildexamplegrid:367,testbuildingmenu:265,testcallback:367,testcas:[11,262,367,442,517,527,559,565,572,602],testchar:[151,155],testcharact:[151,420],testcharactercr:381,testclothingcmd:316,testclothingfunc:316,testcmdcallback:287,testcmdtask:252,testcolormarkup:268,testcomm:252,testcommand:30,testcommschannel:252,testcompon:274,testcomponentsign:274,testcooldown:319,testcraftcommand:323,testcraftingrecip:323,testcraftingrecipebas:323,testcraftsword:323,testcraftutil:323,testcustomgametim:277,testdefaultcallback:287,testdic:384,testdummyrunnerset:527,testdungeon:424,testemaillogin:281,testequip:[155,425],tester:[11,136,217,509],testevadventurecommand:423,testevadventureruleengin:161,testevenniarestapi:591,testeventhandl:287,testevscaperoom:308,testevscaperoomcommand:308,testextendedroom:346,testfieldfillfunc:460,testform:550,testgendersub:326,testgener:252,testgeneralcontext:602,testgitintegr:452,testhealthbar:387,testhelp:252,testid:24,testinterruptcommand:252,testirc:517,testlanguag:391,testlegacymuxcomm:296,testmail:329,testmap10:367,testmap11:367,testmap1:367,testmap2:367,testmap3:367,testmap4:367,testmap5:367,testmap6:367,testmap7:367,testmap8:367,testmap9:367,testmapstresstest:367,testmemplot:527,testmenu:[449,551],testmixedrefer:559,testmod:532,testmultidesc:332,testmymodel:11,testnamegener:455,testnnmain:252,testnumerictraitoper:393,testobj:[11,163,307,309],testobject:11,testobjectdelet:559,testok:186,testpronounmap:572,testpuzzl:335,testrandomstringgener:458,testregularrefer:559,testrenam:133,testrpsystem:391,testrpsystemcommand:391,testrunn:220,testserv:0,testset:11,testsharedmemoryrefer:559,testsimpledoor:355,testslowexit:358,teststat:308,testsystem:252,testsystemcommand:252,testtabl:133,testtalkingnpc:436,testtelnet:517,testtrait:393,testtraitcount:393,testtraitcountertim:393,testtraitfield:393,testtraitgaug:393,testtraitgaugetim:393,testtraitstat:393,testtreeselectfunc:460,testturnbattlebasiccmd:342,testturnbattlebasicfunc:342,testturnbattleequipcmd:342,testturnbattleequipfunc:342,testturnbattleitemscmd:342,testturnbattleitemsfunc:342,testturnbattlemagiccmd:342,testturnbattlemagicfunc:342,testturnbattlerangecmd:342,testturnbattlerangefunc:342,testtutorialworldmob:442,testtutorialworldobject:442,testtutorialworldroom:442,testunconnectedcommand:252,testunixcommand:298,testutil:[163,308,428],testverbconjug:572,testview:55,testwebsocket:517,testwild:360,testxyzexit:367,testxyzgrid:367,testxyzgridtransit:367,testxyzroom:367,text2html:[0,224,225,543],text:[0,2,9,13,14,15,16,17,18,19,20,24,25,26,27,28,31,33,34,36,38,39,42,44,45,48,53,55,56,60,61,62,64,67,68,70,71,72,83,94,95,96,97,99,102,103,106,113,119,125,126,127,129,130,134,138,140,141,142,144,146,148,149,150,152,157,163,167,168,169,173,176,177,179,180,183,184,186,188,189,191,194,199,200,202,203,206,208,212,213,215,217,220,222,227,228,233,236,238,239,240,241,246,247,248,249,250,251,252,253,256,257,264,279,280,284,286,291,295,298,299,302,303,304,309,312,315,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,363,375,379,383,386,389,390,394,406,407,412,413,416,431,433,435,439,440,441,446,449,451,461,463,465,466,469,473,475,478,481,488,489,496,502,503,506,509,510,511,514,515,519,520,522,530,531,532,535,536,539,540,542,544,545,547,549,550,551,552,553,554,561,564,565,566,567,568,575,577,581,607,619],text_:128,text_color:386,text_descript:[119,394],text_exit:[83,264],text_single_exit:83,textarea:[563,607],textbook:64,textbox:607,textfield:[70,194],textn:252,textstr:35,texttohtmlpars:566,textual:181,textwrap:[0,553],textwrapp:553,than:[0,1,2,7,8,9,10,11,12,13,14,15,16,17,20,22,24,25,26,30,31,33,34,36,40,42,44,45,46,48,49,50,53,55,58,59,60,62,67,70,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,135,136,138,139,140,141,143,145,146,147,150,151,152,155,161,168,169,170,171,172,175,177,178,181,182,186,187,188,191,195,196,197,204,205,208,209,217,219,220,222,227,230,233,234,235,238,239,240,241,242,248,249,251,252,264,276,279,286,291,295,299,304,307,312,321,337,338,339,340,341,357,365,369,370,371,372,375,386,389,390,394,404,408,410,412,413,416,440,457,461,468,471,473,475,477,491,517,532,537,539,540,541,542,544,545,551,552,553,554,558,560,562,563,564,567,576,583,596,616],thank:[30,163,195,328,536],thankfulli:194,the_answ:145,the_one_r:145,thead:195,theathr:34,theatr:34,thei:[0,1,7,8,9,10,11,13,14,15,16,17,18,19,20,21,22,24,30,33,34,36,40,42,43,44,45,46,47,48,50,52,53,54,55,56,57,58,59,60,62,64,65,67,68,70,71,72,73,76,77,79,80,82,83,87,88,89,95,97,98,101,102,103,105,106,111,113,116,119,123,124,125,126,128,130,131,132,133,134,135,136,138,139,140,141,143,144,145,147,150,151,152,155,157,161,163,167,168,169,171,172,173,174,177,178,179,180,181,184,186,187,188,189,190,191,192,193,195,196,197,199,205,207,211,217,218,220,222,227,234,235,238,240,241,246,247,249,250,251,255,264,272,279,285,291,295,299,304,312,315,318,321,322,325,337,338,339,340,341,345,361,369,370,372,375,383,389,390,394,406,407,408,411,412,424,440,441,463,468,469,472,473,477,478,479,481,483,484,486,491,511,512,514,515,516,520,523,529,530,531,532,534,539,544,545,546,548,550,551,553,554,567,568,571,572,576,583,588,590,593,607,613,617,618],theihr:15,theirs:[60,97,178,325,554,571,572],them:[0,2,8,9,10,11,12,13,14,15,16,17,18,20,21,22,24,26,28,30,33,34,35,36,38,39,40,42,44,45,46,48,49,50,52,53,55,56,57,58,60,62,64,65,67,68,70,71,73,75,76,77,78,82,83,85,86,87,89,94,95,97,99,101,102,103,106,111,112,113,119,120,125,126,127,128,130,131,132,133,135,136,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,166,168,169,171,172,173,174,175,177,178,179,180,181,183,184,185,186,187,188,189,191,192,193,194,195,196,197,203,204,205,209,210,211,217,218,219,220,222,227,232,233,234,236,238,240,241,246,248,249,252,255,256,267,279,283,285,291,299,305,315,321,322,325,334,337,338,339,340,341,345,369,375,386,389,390,394,404,406,407,408,410,411,415,416,417,433,439,441,449,457,461,464,469,473,478,483,486,491,509,511,514,522,526,529,530,532,539,541,542,544,545,547,551,554,563,565,566,571,572,576,583,585,590,598,613,616,618],themat:147,theme:[0,55,138,147,149,195],themself:339,themselv:[9,15,20,22,24,30,36,40,47,50,59,60,73,76,82,94,101,103,113,119,126,128,130,138,140,169,177,179,180,182,190,191,197,202,220,241,304,370,390,406,416,473,481,484,491,540,542,554,563,571,572],theoret:[22,72,125,140,148,149,372],theori:[7,22,149,157,168,176,191,200,234,619],thereaft:39,therefor:[45,103,125,146,175,182,186,240,264,283,304],therein:[18,24,238,249,251,253,302,315,334,345,348,441],thereof:[390,473],thess:471,thet:138,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,24,25,26,27,28,30,31,33,34,35,36,37,38,39,40,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,85,86,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,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,198,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,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,264,265,267,268,269,270,271,272,273,274,276,279,280,283,284,285,286,289,291,295,299,302,303,304,305,306,307,309,312,315,318,321,322,323,325,328,331,334,337,338,339,340,341,345,348,354,357,361,363,364,365,366,367,369,370,371,372,375,376,377,379,383,386,389,390,393,394,399,401,404,405,406,407,408,410,411,412,413,415,416,417,427,431,433,435,438,439,440,441,445,446,449,451,457,461,462,463,464,465,466,467,468,469,470,471,472,473,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,493,495,496,497,498,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,518,519,520,522,523,524,525,526,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,558,559,560,561,562,563,564,565,566,567,568,570,571,572,573,575,576,577,579,580,581,582,583,585,587,588,590,593,596,598,599,600,604,605,607,609,611,612,613,614,615,616,617,618,619],thie:30,thief:151,thieveri:248,thin:[56,83,85,106,172,315,560],thing:[0,1,2,3,6,8,11,12,13,15,16,18,20,21,22,24,28,30,33,34,35,40,42,44,46,47,49,50,53,55,56,57,59,60,64,67,68,70,72,74,75,78,79,82,83,89,93,101,102,103,106,113,119,120,122,123,125,126,127,130,131,133,134,136,137,138,140,141,142,143,146,147,150,151,152,157,158,161,163,165,169,170,173,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,193,194,195,196,197,200,204,207,211,212,213,215,216,217,218,219,220,222,227,234,235,241,264,286,299,304,309,312,315,321,322,341,345,377,389,390,394,404,405,406,409,410,433,438,441,461,469,472,473,477,500,504,536,539,541,544,545,550,553,554,563,576,583,585,616,618,619],things_styl:309,think:[9,13,15,22,38,42,44,48,49,54,55,62,75,101,102,106,122,125,126,127,130,132,133,134,140,142,143,145,147,148,149,158,161,164,166,175,177,186,200,208,532,616],third:[0,7,12,15,21,30,33,61,101,103,127,128,131,140,143,150,180,181,189,195,197,202,211,217,220,241,252,304,544,551,554,619],third_person:309,thirdli:135,thirdnod:30,this_is_provided_by_amazon:77,this_sign:533,thoma:[39,57,151,239],thorn:[40,82,145],thorni:145,thornsbuff:82,thorough:2,those:[0,4,5,6,11,12,13,14,15,16,17,18,20,22,24,26,30,33,36,40,42,44,46,50,55,59,60,70,71,75,77,78,82,87,98,105,106,113,119,120,121,125,126,130,131,132,133,134,135,136,139,140,141,143,145,146,147,150,152,155,161,165,167,168,169,170,173,175,177,179,180,189,191,192,193,196,199,200,204,205,213,217,218,220,222,235,236,238,241,246,247,248,252,256,264,302,309,321,322,337,375,390,394,407,433,440,441,446,461,469,477,478,480,485,514,519,522,540,541,551,552,553,561,562,564,565,567,590,607,612,613,615],though:[0,2,12,14,15,16,17,18,21,22,30,40,52,56,57,74,81,83,101,110,119,125,126,127,131,133,135,137,139,140,141,143,146,149,150,152,168,172,173,175,178,180,181,186,187,188,191,196,197,202,205,208,211,213,217,222,227,236,264,299,337,338,341,348,370,375,386,394,405,441,473,477,478,539,544,551,567],thought:[36,37,143,147,149,200,205],thousand:[106,181,194,217],thread:[0,21,200,205,220,222,510,536,560,567],threadpool:[220,536,567],threadsaf:[576,583],threat:218,three:[0,1,15,16,20,22,24,30,34,36,39,40,57,58,60,68,75,77,82,83,93,101,102,103,111,120,128,143,145,152,155,158,161,192,194,195,197,217,220,233,246,248,340,371,375,417,461,469,473,544,551],threshold:[125,400,534,545],throttl:[0,220,224,225,227,487,496,509],through:[0,1,8,9,10,14,16,17,19,21,22,24,30,31,33,34,36,39,40,44,45,46,47,52,54,55,64,68,71,72,76,79,82,84,94,95,101,102,103,116,121,122,125,126,128,130,131,132,133,137,138,140,144,145,146,148,149,150,158,163,166,167,168,169,173,175,178,180,181,184,186,189,193,196,197,200,203,204,205,217,218,219,220,222,224,227,235,241,246,248,268,283,307,308,312,337,338,339,340,341,345,354,361,369,370,375,379,390,406,408,409,416,424,446,467,469,472,473,482,483,486,491,493,498,507,511,514,520,523,528,530,531,539,540,541,545,547,550,551,552,564,565,567,576,583,607,616],throughout:[30,94,130,134,182,219,339,367],throughput:[255,256,547],thrown:[149,178,220,322],thrust:[440,572],thu:[0,15,17,20,22,24,30,33,36,38,40,42,50,59,68,70,72,75,77,106,133,136,143,151,168,169,177,180,181,191,193,195,209,220,229,238,242,369,370,372,389,390,410,469,473,486,523,537,539,540,547],thud:[97,325],thumb:[9,13,62],thumbnail:192,thunder:[105,205],thunderstorm:146,thusli:211,tick:[8,24,30,45,49,81,122,128,131,152,190,205,224,258,308,339,373,374,376,377,406,439,441,486,523],tick_buff:375,ticker1:[49,486],ticker2:[49,486],ticker:[0,25,27,35,45,129,133,190,228,251,408,439,441,482,486,496,567],ticker_class:486,ticker_handl:[49,129,190,224,486,567],ticker_pool_class:486,ticker_storag:486,tickerhandl:[0,21,25,45,88,117,178,190,224,225,251,318,339,357,441,479,567,619],tickerpool:486,tickerpool_layout:486,ticknum:[82,375],tickrat:[82,375,376],tidbit:130,tidi:212,tie:[151,155,178,197,372],tied:[20,85,101,126,131,192,235,248,304,307,315,371,433,465,480],tier:[77,82,217],ties:[55,75,149,182,220,243],tight:[85,315],tightli:[42,77,255],tild:136,tim:[0,85,96,99,120,121,126,314,315,336,337,338,339,340,341,385,386,448,449,459,461],time:[0,1,2,5,7,8,10,11,12,13,14,15,16,17,19,20,22,25,27,30,31,33,34,36,38,40,44,46,49,50,56,57,62,63,64,65,68,70,71,73,74,75,77,79,80,82,83,87,88,89,90,94,100,103,105,111,112,113,115,117,119,120,121,122,125,126,127,129,130,131,132,133,134,136,138,139,140,141,143,144,145,146,147,150,151,152,155,157,158,161,163,167,169,171,173,176,177,178,179,180,181,182,186,189,190,191,192,194,196,197,201,202,205,207,208,209,211,212,213,214,217,219,220,222,227,228,230,232,233,235,236,239,246,251,255,256,257,276,277,285,286,289,304,312,318,321,322,334,337,338,339,340,341,345,348,354,357,375,377,379,383,389,393,394,399,406,407,408,412,416,433,439,440,441,457,461,465,472,473,476,477,478,479,480,481,484,485,486,491,493,495,497,498,503,509,514,516,522,523,524,528,529,530,532,534,539,541,542,544,545,546,547,552,555,558,559,560,563,567,576,583,619],time_ev:289,time_factor:[21,175,220,276,555],time_format:567,time_game_epoch:[21,175,220,555],time_ignore_downtim:220,time_left:318,time_str:175,time_to_tupl:276,time_unit:[90,175,276],time_until_next_repeat:45,time_zon:220,timed_script:45,timedelai:[172,485,565,567],timedelta:[561,568],timeeventscript:286,timefactor:[175,220],timeformat:[560,567],timeit:8,timeleft:[82,375],timelin:150,timeout:[178,198,208,215,220,514,534,558],timer:[0,3,21,24,49,68,81,82,88,95,115,126,131,134,135,137,138,149,167,178,220,241,318,339,345,393,399,406,433,440,479,480,484,485,486,522,530,564,593],timerobject:45,timerscript:45,timescript:555,timeslot:[95,345],timestamp:[1,21,67,82,171,172,346,522,523,534,555],timestep:[8,523],timestr:560,timetrac:[224,225,487,521],timetupl:175,timezon:[205,220,560,561,568],tin:144,tinderbox:152,tini:[152,181,205],tinker:9,tintin:[206,504,505,515,518],tinyfugu:206,tinymud:[72,168],tinymush:[72,74,168,253],tinymux:[72,168],tip:[3,48,84,196,218],tire:[134,235],titeuf87:[124,126,359,361],tith:111,titl:[19,53,83,111,128,152,196,197,203,220,246,248,256,264,265,305,390,464,544,547,618],title_lone_categori:248,titlebar:53,titleblock:197,tlen:204,tls:207,tlsv10:208,tlsv1:207,tmp:[5,215,252,451],tmp_charact:152,tmpmsg:20,tmpoztk3116:[252,451],tmwx:0,to_backpack:155,to_backpack_obj:155,to_be_impl:614,to_byt:[0,567],to_cach:[82,375],to_closed_st:433,to_cur:339,to_displai:264,to_dupl:234,to_execut:567,to_exit:[101,103],to_fil:[78,445],to_filt:[82,375],to_init:341,to_non:473,to_obj:[227,236,417,473],to_object:256,to_open_st:433,to_pickl:548,to_remov:82,to_str:[0,567],to_syslog:445,to_unicod:0,tobox:500,todai:[99,386],todo:[41,69,93,151,152,161,164,166,169,180,184,216],toe:[72,143],togeth:[0,15,17,22,24,33,34,40,43,50,53,63,68,82,83,94,103,104,109,111,112,125,126,128,131,132,136,138,140,143,144,145,146,147,149,150,155,158,161,164,165,168,169,172,177,178,182,188,189,191,204,207,217,220,221,232,241,243,248,255,305,321,322,331,334,345,348,369,370,389,390,425,440,441,471,472,478,500,519,532,544,545,564,576,583],toggl:514,toggle_nop_keepal:514,togrid:125,toi:89,toint:[33,44,554],token:[20,204,220,255,511,514,545,554],told:[12,60,62,73,138,143,161,174,186,191,217,563],tolimbo:125,tolkien:175,tom:[33,39,60,74,97,113,169,191,241,247,325,390,550,554,570],tomb:122,tomdesmedt:570,tommi:[39,42,59,554],ton:[168,220],tonon:[241,363],too:[0,1,7,8,10,12,15,16,17,19,20,21,24,30,34,37,50,52,57,60,62,68,83,101,102,103,120,122,128,133,134,137,139,140,141,145,147,149,150,155,161,168,169,172,177,178,179,180,181,182,186,187,189,191,192,194,196,213,215,220,239,241,258,322,323,340,370,371,408,420,433,461,468,471,496,500,534,536,542,545,550,551,552,553,564,567],took:[11,137,567],tool2:323,tool:[3,33,42,44,48,52,55,62,63,70,72,89,106,125,126,129,131,132,139,142,143,145,147,148,149,150,155,158,161,164,166,168,172,175,193,196,205,207,208,212,213,217,220,321,322,323,416,619],tool_kwarg:321,tool_nam:321,tool_tag:[89,321,322],tool_tag_categori:[89,321],toolkit:55,tooltip:53,top:[2,8,13,16,22,24,28,31,33,34,45,48,50,52,55,60,83,85,89,94,106,109,124,125,128,132,133,137,141,143,144,161,168,169,172,181,184,189,191,194,195,197,200,211,213,219,222,230,235,257,264,276,299,302,315,331,361,369,370,390,417,461,463,465,472,481,491,533,539,541,542,545,552,553,560],topcistr:464,topic:[7,8,22,24,34,46,52,56,64,70,78,134,136,143,149,188,197,220,248,302,304,337,338,339,340,341,464,466,564,607,615],topicstr:464,topolog:[125,126,369,370],toppl:101,topsid:149,torch:[152,410,412],torunn:[111,454],tostr:500,total:[8,21,36,46,51,77,82,101,125,155,161,172,175,183,186,219,229,251,370,375,383,528,550,552,553,555],total_add:82,total_div:82,total_mult:82,total_num:558,total_weight:170,touch:[0,128,138,139,170,207,209,219,220,534],tour:[132,138,142,148,158,164,166,186],toward:[7,24,64,83,105,106,125,147,149,150,155,186,341,386,439],tower:[106,152,345,441],town:[125,363],trace:[68,125,286,370,528,560],traceback:[3,9,11,16,21,45,55,67,75,101,133,143,168,191,194,220,222,286,331,476,500,541,545,560,567],tracemessag:528,track:[0,12,15,21,45,46,70,82,88,94,115,119,121,126,131,132,138,143,145,147,152,155,157,163,168,173,177,178,180,182,187,190,194,203,215,219,227,235,255,318,341,367,370,394,404,406,408,412,413,417,482,502,503,508,511,514,529,534,548,549,561],tracker:[27,122,189],trade:[79,102,126,149,151,157,312,417],tradehandl:[79,312],trader:102,tradetimeout:312,tradit:[4,18,35,56,62,68,134,138,143,149,177,178,217,218,321,361,514,530,552],tradition:[68,147,149,150,168,173,220,322],traffic:[77,207,218,504],trail:[55,220,262],trailing_slash:196,train:[119,149,176,200,394,619],traindriv:180,traindrivingscript:180,trainobject:180,trainscript:180,trainstop:180,trainstoppedscript:180,trait1:[119,394],trait2:[119,394],trait:[0,21,128,177,224,225,258,373,375,478,619],trait_class_path:[119,394],trait_data:394,trait_kei:[119,394],trait_properti:394,trait_typ:[119,393,394],traitcontribtestingchar:393,traitexcept:394,traitfield:[393,394],traithandl:[224,258,373,392,393],traithandler_nam:394,traithandlertest:393,traitproperti:[224,258,373,392,393],traitpropertytestcas:393,traitshandl:[393,394],transact:[79,126,149,312],transfer:[194,235,502,512,516,553],transform:[5,136],transit:[0,40,94,126,364,367,369,370],transitionmapnod:[125,364,367,370],transitiontocav:364,transitiontolargetre:364,transitiontomapa:125,transitiontomapc:125,translat:[17,39,44,60,62,63,64,71,73,113,138,188,200,389,390,478,493,544],transmiss:445,transmit:[73,590],transpar:[20,46,53,188,208,220,471,472,486],transport:[500,511,520],transportfactori:511,transpos:188,trap:[17,122,146],traumat:30,travel:[68,71,111,117,182,357,361],travers:[15,36,40,77,101,117,125,126,174,180,182,354,357,361,369,370,408,439,440,441,468,473,593],traverse_:24,traversing_object:[354,357,361,408,473],travi:[0,4],travis_build_dir:6,treasur:[145,157,189,361,409,412],treasurechest:42,treat:[0,15,17,24,46,48,50,56,106,111,125,131,136,144,145,161,172,174,227,232,235,325,370,410,431,463,471,473,478,523,532,551,553,564],tree:[0,13,24,30,42,76,89,94,123,125,126,128,129,131,132,137,147,165,182,213,224,225,258,264,299,310,320,364,390,411,459,460,461,473,478,491,520,536,551,567,589,619],tree_select:[120,224,225,258,443,619],treestr:[120,461],trembl:[139,144],treshold:558,trhr:[0,77,126,260],tri:[17,24,36,38,39,46,47,57,67,68,73,77,96,133,140,141,145,147,149,152,155,169,172,178,186,194,206,217,220,233,251,312,416,440,441,449,495,534,567,568],trial:[10,442,517],tribal:106,trick:[3,83,140,141,207,541,607],tricki:[44,157,188],trickier:[189,197],tried_kei:42,trigger:[0,5,7,20,22,24,30,35,37,40,46,47,49,61,68,75,83,101,102,105,115,126,150,167,168,170,178,179,180,182,183,187,195,197,206,212,224,227,228,232,233,236,238,252,258,264,273,289,304,318,373,374,376,377,433,439,441,472,473,478,480,486,493,496,500,522,529,533,547,551],triggerstr:375,trim:544,trip:406,tripl:[21,128,143,567],triumph:[146,149],triumphant:146,trivial:[7,8,21,24,64,140,146,149,186],troll:[57,183],troubl:[38,46,102,127,134,143,169,186,205,207,210,211,213,539],troubleshoot:[210,213,221,619],troublesom:[16,17,57],trove:189,truestr:[96,449],truli:[46,57,82,103,181,345],trunk:0,trust:[30,33,59,101,126,149,168,251,545],trusti:170,truth:7,truthfulli:24,truthi:[82,133,485],try_num_differenti:233,ttack:406,ttarget:178,tto:514,tty:[189,212],ttype:[224,225,487,499,511,514],ttype_step:518,tuck:106,tulip:145,tun:[27,241],tune:[138,149,188,208],tunnel:[27,83,103,125,133,134,135,140,141,169,174,180,182,241,516],tunt:406,tup:181,tupl:[0,7,8,15,30,33,39,42,44,52,70,71,82,101,105,111,124,133,136,140,152,155,161,163,172,178,181,195,217,220,224,227,233,239,241,246,248,249,256,264,276,283,303,309,312,321,325,339,340,361,363,369,370,371,372,375,383,390,406,408,410,411,416,431,438,464,466,468,469,471,473,477,478,480,486,488,491,500,501,511,512,516,523,530,532,539,542,544,546,547,549,551,555,560,562,567,570,571,591],tuple_of_arg_convert:33,tupled:560,turbo:211,turkish:227,turn:[0,3,11,13,15,21,22,24,28,30,33,36,46,47,53,55,56,57,62,65,68,71,75,82,93,94,103,105,106,120,125,126,128,131,136,139,140,141,143,144,145,146,149,155,163,168,169,176,180,185,188,194,196,217,220,222,227,236,251,252,255,256,289,295,337,338,339,340,341,372,390,406,407,413,422,439,441,461,473,478,491,496,504,511,514,522,532,538,541,545,547,551,552,553,554,565,567,576,596,598,619],turn_act:178,turn_bas:422,turn_end_check:337,turn_stat:406,turnbattl:[0,121,224,225,258,310,619],turnchar:339,tut:[146,441],tutor:[122,438],tutori:[0,1,3,7,19,22,23,24,26,30,48,49,55,56,58,62,75,80,81,83,84,93,105,106,108,115,117,118,127,128,130,131,133,134,135,138,139,140,141,143,144,150,151,152,153,154,155,156,157,159,160,161,162,163,165,168,169,172,175,181,182,183,185,186,187,188,189,190,192,193,194,196,198,200,204,210,213,217,220,224,225,252,258,264,338,370,551],tutorial_bridge_posist:441,tutorial_cmdset:441,tutorial_exampl:[16,17,134,138,143,399],tutorial_info:441,tutorial_world:[83,122,146,224,225,258,395,619],tutorialclimb:440,tutorialevmenu:438,tutorialmirror:[126,143,431,619],tutorialobject:[439,440],tutorialread:440,tutorialroom:[439,441],tutorialroomcmdset:441,tutorialroomlook:441,tutorialstartexit:441,tutorialweapon:[0,439,440],tutorialweaponrack:[0,440],tutorialworld:[440,441],tutoru:143,tweak:[1,9,15,20,33,34,40,44,50,55,125,126,133,139,140,151,168,169,185,189,208,227,255,416,433,536,544,565,575,580],tweet:[176,619],tweet_stat:198,tweetstat:198,twelv:[554,567],twenti:[149,161,169],twice:[1,30,105,146,175,178,262,286,341,422,551],twist:[0,21,24,54,56,64,172,200,202,211,213,215,220,442,473,485,488,491,493,494,500,501,502,503,508,511,514,517,519,520,522,529,532,536,560],twistd:[10,215,222,508,529],twistedcli:64,twistedweb:218,twitch:[93,178,406],twitter:[198,221,619],twitter_api:204,two:[0,1,8,9,11,13,15,16,17,18,21,22,24,28,30,33,34,35,36,37,40,43,44,45,46,48,50,53,58,59,60,62,64,67,68,70,71,72,73,74,75,76,79,80,82,83,93,94,101,102,103,104,106,111,113,114,116,117,119,120,123,125,126,128,131,134,135,136,137,138,139,140,141,143,144,145,146,148,149,150,151,152,155,157,161,163,168,169,171,172,174,177,178,180,181,182,184,186,187,188,191,192,194,195,196,197,201,205,208,212,215,217,218,219,220,222,234,241,246,255,257,264,299,304,312,321,322,328,339,341,354,357,367,369,370,383,394,405,406,410,413,425,433,441,457,461,473,475,491,520,531,532,540,542,545,551,553,554,560,567,568],two_hand:[155,157,407,409],two_handed_weapon:[155,157,407,409,412],twowai:241,txt:[0,2,28,64,77,98,113,125,128,143,189,199,211,217,228,389,507,515,549,551,567,570],txw:0,tyepclass:471,tying:[145,194,217,596],type:[0,1,2,7,9,12,17,19,20,21,22,24,25,26,27,28,30,33,34,36,38,39,44,45,46,47,48,49,50,51,52,53,57,58,59,60,68,70,71,72,73,77,80,82,83,84,85,88,89,94,96,101,102,103,104,106,113,117,123,125,126,128,130,131,132,134,135,136,137,138,139,140,143,144,146,147,149,151,155,158,161,163,167,168,169,171,172,174,175,177,178,179,180,182,183,186,188,191,194,196,200,206,207,211,217,218,220,224,225,227,228,236,241,246,248,251,252,253,255,256,257,258,262,264,270,271,272,273,280,283,286,289,299,302,304,305,307,315,318,321,322,328,337,338,339,340,341,357,367,368,369,370,372,373,375,389,390,392,393,405,406,409,410,412,413,417,433,440,441,449,455,463,465,468,469,472,473,477,478,480,485,486,489,491,493,494,500,502,503,509,511,512,514,515,516,518,519,520,522,530,532,536,539,540,541,542,544,545,547,548,551,552,553,554,562,563,564,566,567,571,575,576,583,587,588,590,593,601,607,615],type_count:315,typecalass:539,typecalss:286,typeclas:187,typeclass:[1,2,3,11,14,15,16,20,21,24,25,27,34,36,37,38,40,42,44,45,46,47,48,52,55,57,63,65,67,68,83,84,85,87,88,89,95,97,103,105,106,111,112,113,117,118,119,124,125,126,128,132,134,135,136,137,142,144,151,163,167,169,170,174,175,177,178,179,180,181,182,183,184,185,186,187,189,190,191,194,195,196,197,198,220,224,225,227,228,229,230,235,241,246,255,256,257,258,259,269,270,271,272,274,282,285,286,289,302,304,307,309,315,318,321,334,337,338,339,340,341,343,345,354,356,361,363,372,375,377,390,394,433,435,441,464,469,471,472,473,477,478,480,481,482,484,486,529,546,547,564,565,567,585,587,590,593,598,608,617,619],typeclass_aggressive_cach:220,typeclass_path:[45,50,220,230,241,481,540,541],typeclass_search:[229,471,480,540],typeclasses:139,typeclasslistserializermixin:590,typeclassmanag:[229,256,471,480],typeclassmixin:[611,612,613,617],typeclassserializermixin:[196,590],typeclassviewsetmixin:593,typedobject:[50,230,236,257,361,372,390,472,473,481,539,540,541,542,562,567],typedobjectmanag:[229,256,464,471,480,540],typeerror:[7,155,383,410,416,520],typelass:20,typenam:[83,227,228,230,255,257,274,276,286,304,305,306,312,315,325,334,337,338,339,340,341,345,354,357,361,367,371,372,377,379,389,390,393,399,404,406,408,411,412,415,431,433,435,439,440,441,457,465,472,473,477,481,484,498,524,539,541,555,558,559],typeobj:412,typeobj_enum:412,typeobject:542,types_count:315,typic:[11,21,101,119,130,186,196,340,341,375,394,590,617],typo:[0,127,128,163,218,409],ubuntu:[13,205,207,208,213,215,217,218],uemail:229,ufw:218,ugli:[44,53,143,167,561],uid:[212,220,229,230,503,510,531,532],uit:[83,264],ulrik:169,ultima:200,umlaut:18,unabl:[204,386],unaccept:24,unaffect:[30,178,339,485],unalia:[20,110,246,295],unam:[220,229],unari:393,unarm:338,unarmor:[161,338,410],unauthenticated_respons:608,unavoid:49,unban:[0,20,57,110,133,239,246,252,255,295],unban_us:246,unbias:[91,383],unbroken:550,uncal:485,uncas:544,uncategor:564,unchang:[9,39,113,119,144,389,394,478,567],uncleanli:306,unclear:[60,125,150,173,370],uncolor:62,uncom:[208,217],uncommit:13,uncompress:504,unconnect:[125,253,280],uncov:315,undefin:[5,48,70],under:[0,3,5,7,8,10,12,20,24,30,33,34,44,45,50,53,55,67,70,72,75,77,87,91,93,94,96,101,102,107,110,111,119,120,122,123,126,127,128,131,133,134,136,139,141,144,147,149,151,158,161,163,168,176,177,183,184,189,191,193,194,195,199,206,211,212,220,236,238,241,271,274,299,321,389,393,394,412,449,454,461,469,484,491,518,539,544,551,552,553,567,570,571,584],undergar:[85,315],undergon:286,underground:125,underli:[13,15,36,52,131,147,168],underlin:553,underneath:[189,541],underp:85,underpin:164,underscor:[9,30,33,35,71,89,103,128,143,234,417,554,567],underscror:234,undershirt:85,understand:[1,7,13,18,22,24,42,44,46,54,56,62,66,68,73,89,106,114,121,127,128,130,133,137,138,139,141,143,144,145,147,149,150,151,152,155,161,163,172,173,174,176,181,182,186,191,193,194,195,200,205,206,215,218,219,220,233,234,246,322,389,390,457,536,544,567,619],understood:[34,60,68,89,106,149,155,186,370,519,520],undertak:150,undestand:1,undetect:36,undiscov:149,undo:[28,218,549],undon:238,undoubtedli:168,uneven:370,unexpect:[11,149,186,188,220,551,567],unexpectedli:558,unfamiliar:[35,36,55,71,143,213,217],unfinish:184,unfle:406,unfocu:302,unfocus:304,unformat:[30,551,555],unfortun:147,unhappi:189,unharm:406,unheard:60,unicod:[0,18,68,73,125,227,370,544,567],unicodeencodeerror:544,unifi:[194,531],uniform:46,unimpl:[132,164,176],uninflect:570,uninform:207,uninstal:[132,142,215],uninstanti:567,unintent:299,unintuit:82,union:[22,30,139,234,433,551],uniqu:[0,4,5,14,16,22,24,26,36,37,38,44,45,46,48,50,52,53,57,60,64,68,82,102,105,112,125,126,128,131,134,135,136,139,145,168,191,204,217,227,229,232,234,236,241,246,253,255,256,276,280,285,304,318,321,338,339,354,363,369,370,372,375,376,389,390,413,439,441,457,461,464,473,477,478,480,486,488,500,501,509,522,523,531,532,539,540,541,542,547,549,554,561,564,567,571],unit:[0,3,4,5,6,13,21,22,47,55,78,90,93,101,127,131,132,157,158,163,175,220,256,276,289,308,323,339,393,413,493,547,555,567,572,619],unittest:[0,1,6,11,161,220,252,377,471,532,547,565],univers:[17,18,175,295],unix:[0,2,31,39,126,128,206,208,215,247,297,299,552,560,567,619],unixcommand:[0,123,224,225,258,259,619],unixcommandpars:299,unixtim:560,unjoin:312,unknown:[53,139,167,197,370,409,477,567],unknown_top:615,unleash:171,unless:[15,20,21,24,30,33,36,37,38,40,49,57,71,76,77,83,122,125,126,139,144,147,149,157,179,191,192,199,202,205,208,217,220,222,227,234,235,239,241,246,248,249,255,285,341,389,390,406,408,416,440,457,463,468,469,473,478,489,504,520,532,539,541,554,564,565,567,568,615,619],unlik:[15,33,47,83,84,112,119,125,126,127,131,149,151,155,172,177,217,227,264,339,370,394,406,541],unlimit:[85,124,220,361,369],unlink:[27,133,241],unload:[125,565],unload_modul:565,unlock:[20,42,139,169,246,304,539],unlock_flag:304,unlocks_red_chest:42,unlog:[8,239,244,245,253,279,280,291,532],unloggedin:[0,46,220,224,225,231,237,532],unloggedincmdset:[26,27,46,92,107,135,141,220,245,279,280,291],unlucki:[57,122],unmask:390,unmodifi:[0,122,126,233,250,345,551,567],unmonitor:[25,496],unmut:[20,110,246,255,295],unmute_channel:246,unnam:[48,234],unneccesari:73,unnecessari:[5,147],unnecessarili:136,unneed:[124,361],unoffici:[149,200],unoppos:416,unpaced_data:500,unpack:[0,152,186,468],unpars:[35,39,233,473,519,520,554],unpaus:[45,82,212,241,251,375,376,485],unpickl:[15,52,68,500,539,548,563],unplay:[1,46],unpredict:567,unprivileg:478,unprogram:177,unpuppet:[0,27,47,82,101,191,238,375,473,575],unpuppet_al:227,unpuppet_object:[14,227],unquel:[27,42,134,143,146,238],unrecogn:554,unrecord_ip:534,unregist:75,unrel:[13,30,268],unrepat:567,unrepeat:[0,496,567],unreport:[0,496],unsaf:[0,222,234,441,567],unsafe_token:544,unsatisfactori:106,unsav:549,unseri:220,unset:[0,15,24,40,78,119,169,178,182,239,304,305,307,369,371,390,394,439,469,473,477,478,480,486,539,547,551,552,553,554,560,565,567],unset_character_flag:304,unset_flag:[304,305],unset_lock:246,unsign:568,unsigned_integ:[561,568],unsignedinteg:561,unskil:[119,394],unspawn:370,unstabl:[0,212],unstag:451,unsteadi:[161,416],unstopp:82,unstrip:233,unsub:[20,110,220,246,295],unsub_from_channel:246,unsubscrib:[20,49,169,295,486,502],unsuccessful:67,unsuit:[59,477,542],unsupport:15,unsur:[18,33,117,127,133,178,204,213,217],unsurprisingli:143,untag:53,untest:[11,206,215,220],until:[2,5,8,9,15,16,22,24,30,39,45,49,53,54,56,57,62,70,79,88,105,113,115,121,125,126,131,134,136,138,140,143,144,146,147,149,151,155,170,173,176,187,188,191,193,207,213,216,276,289,312,315,318,337,338,339,340,341,369,393,406,407,408,410,412,433,439,440,441,473,485,491,500,520,522,539,544,545,555,567],untouch:[125,544],untrack:451,untrust:[16,33,101,149,567],untyp:85,unus:[0,24,89,125,149,220,227,232,236,246,255,306,340,341,345,372,379,404,412,431,441,461,473,484,514,530,535,540],unusu:[90,126,150,218,410],unvisit:408,unvisited_exit:408,unwant:101,unwear:407,unwield:[338,404,407],unwieldli:235,unwil:78,upcom:[157,209],updat:[0,3,5,8,9,11,14,15,16,17,24,25,27,30,34,37,40,45,49,51,67,68,70,71,75,77,82,86,94,95,98,100,101,118,125,126,128,131,132,138,140,143,147,151,152,157,163,168,169,172,173,175,177,178,180,181,182,186,189,191,193,194,195,196,203,204,205,206,207,208,210,211,212,213,215,216,217,220,228,235,236,241,246,249,251,252,255,267,286,340,345,348,365,371,375,390,393,413,441,451,465,469,472,473,475,476,478,480,482,507,509,510,515,529,530,532,534,539,541,548,549,550,551,552,553,558,567,575,576,583,588,592,607,608,617,618,619],update_attribut:539,update_buff:549,update_cach:[82,375],update_cached_inst:558,update_charsheet:169,update_cooldown:171,update_current_descript:345,update_default:529,update_flag:530,update_lock:588,update_method:53,update_po:[182,348],update_scripts_after_server_start:480,update_session_count:530,update_undo:549,update_weath:441,updated_bi:283,updated_on:283,updatemethod:53,updateview:[617,618],upenn:570,upfir:10,upgrad:[0,3,131,210,211,213,215,221,404,619],upload:[77,131,212,215,217,220,221],upmaplink:[125,370],upon:[17,36,51,55,70,73,78,96,147,149,185,191,212,217,218,337,338,339,341,446,449,483,493,502,534,552,617],upp:441,uppcas:62,upped:0,upper:[51,62,70,119,125,152,172,181,238,369,370,394,544],upper_bound:[119,394],upper_bound_inclus:394,uppercas:[390,544],ups:0,upsel:217,upsell_factor:411,upset:133,upsid:[124,361],upstart:64,upstream:[2,12,13,98,131,189],upstream_ip:220,upt:235,uptick:0,uptim:[0,21,27,33,57,175,251,505,555],urfgar:44,uri:[236,255,463,465,541],url:[0,13,51,52,54,55,61,75,131,132,138,166,193,195,203,207,216,217,218,220,224,225,228,236,246,255,262,463,465,510,520,536,541,566,573,574,586,593,603,606,612,613,615,618,619],url_nam:[593,608],url_or_ref:128,url_path:593,url_to_online_repo:13,urlconf:220,urlencod:197,urlpattern:[55,75,165,192,194,195,196,197],usabl:[65,89,121,143,149,155,191,192,241,264,304,339,386,406,410,412,468,534,551],usag:[7,8,24,25,30,34,38,44,49,57,74,82,101,103,127,128,131,133,140,141,143,145,155,157,169,171,172,173,177,178,179,180,184,186,191,204,210,217,220,224,225,236,238,239,240,241,246,247,248,251,252,253,258,264,270,276,280,295,299,302,312,315,321,322,325,328,331,334,337,338,339,340,341,343,345,348,354,357,359,363,365,373,375,378,382,388,390,406,407,410,412,433,435,438,439,440,441,446,449,451,468,476,485,491,522,550,551,553,554,558],use:[0,1,2,3,5,6,7,8,10,11,12,13,14,15,16,17,18,19,21,22,24,25,26,28,30,31,33,34,35,36,37,38,39,40,42,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,62,64,65,67,68,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,87,88,89,90,91,93,94,95,97,99,100,101,102,103,104,105,106,109,110,111,112,113,114,116,118,119,120,121,122,123,124,125,126,127,128,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,201,202,203,204,205,206,207,208,209,210,212,213,215,216,217,218,220,224,227,228,229,230,232,233,234,235,236,238,241,242,246,247,248,249,251,252,253,255,256,257,264,269,272,273,285,289,299,302,304,305,309,312,315,318,321,322,325,328,331,334,337,338,339,340,341,345,348,354,357,361,363,364,365,369,370,372,375,376,379,383,386,389,390,394,399,404,405,406,407,408,409,410,411,412,413,416,417,433,435,438,439,440,441,451,454,457,461,463,468,469,471,472,473,477,478,485,486,489,496,500,513,515,516,519,522,523,530,531,532,539,540,541,542,544,545,546,547,549,550,551,552,553,554,558,560,561,563,565,567,568,571,572,576,578,583,588,590,593,613,616,619],use_dbref:[390,471,473,564],use_destin:473,use_i18n:[67,220],use_int:318,use_item:339,use_lock:473,use_nick:[227,390,473],use_required_attribut:[577,579,581,583,607],use_slot:[155,417],use_slot_nam:163,use_success_location_messag:334,use_success_messag:334,use_tz:220,use_xterm256:544,useabl:[124,361],used:[0,3,4,8,11,12,13,14,15,16,18,19,20,21,22,25,26,28,30,31,33,34,35,36,37,38,39,40,42,44,45,46,47,48,49,50,52,53,54,55,56,58,59,60,62,64,66,67,68,70,71,72,73,74,75,78,79,80,82,83,84,85,87,88,89,90,92,95,96,97,98,99,101,102,103,104,105,106,110,111,112,113,114,119,120,121,123,124,125,126,127,128,131,132,134,135,136,137,138,139,140,141,142,143,144,145,146,149,152,155,157,161,163,165,167,168,169,170,171,172,173,175,177,178,180,183,184,186,188,189,191,192,193,194,195,196,197,200,202,205,206,208,209,212,214,215,217,218,219,220,222,224,225,227,228,232,234,235,236,238,241,246,248,249,250,251,252,253,255,256,258,264,268,270,271,273,276,279,280,283,285,286,289,291,295,299,304,305,307,310,312,315,318,320,321,325,328,337,338,339,340,341,345,357,361,363,366,369,370,371,372,375,377,386,389,390,394,405,406,409,411,412,413,416,417,425,433,439,440,441,449,454,457,461,463,464,465,466,467,468,469,471,473,477,478,482,484,485,486,487,488,489,493,496,497,500,501,502,503,504,505,506,507,508,509,511,513,514,515,518,519,520,523,530,532,533,539,540,541,542,543,544,545,547,548,549,550,551,552,553,554,560,561,562,563,564,565,567,568,575,576,580,583,585,590,593,607,611,613,615,616,617],useful:[0,1,2,3,5,7,8,11,13,15,16,17,18,19,21,22,28,30,33,34,36,39,40,42,44,45,47,48,49,50,52,55,56,57,58,59,62,65,79,82,83,84,89,101,102,103,106,111,113,119,123,125,126,127,128,129,131,133,134,135,136,137,139,140,141,143,144,145,146,149,151,152,155,161,163,168,169,171,173,178,181,186,190,191,194,196,197,198,200,205,215,217,219,220,222,232,234,235,236,238,240,241,248,249,252,255,258,264,285,286,299,304,309,312,321,328,339,361,370,371,379,389,390,394,404,406,409,410,412,433,441,446,468,473,477,478,491,511,539,541,545,551,555,563,567,589,619],useless:[139,439],user:[0,1,5,6,7,8,9,11,14,16,17,20,22,25,26,28,30,31,33,34,35,36,39,42,46,47,50,51,52,53,54,56,57,61,62,63,64,65,66,71,73,75,77,78,82,83,85,89,94,97,101,105,110,113,116,122,125,126,127,128,130,131,132,133,134,135,138,139,140,143,145,149,152,157,161,171,172,173,176,180,182,184,186,188,189,191,192,193,194,195,196,200,201,202,203,204,205,207,208,210,211,212,213,215,217,219,220,221,227,228,230,233,236,239,241,246,248,251,255,256,257,262,264,279,284,286,291,295,303,304,306,315,318,321,325,339,341,345,361,370,372,379,390,404,405,406,410,412,416,417,431,441,445,446,461,463,465,469,473,478,484,487,489,495,503,510,511,514,519,520,530,532,535,539,541,544,549,551,552,553,554,561,565,567,568,575,588,596,599,607,612,613,614,615,616,618,619],user_change_password:575,user_input:30,user_permiss:[230,575],useradmin:575,userattributesimilarityvalid:220,userauth:511,userchangeform:575,usercreationform:[575,607],userguid:77,usermanag:229,usernam:[0,13,14,26,30,35,47,51,92,126,195,212,214,220,227,230,280,511,535,575,587,590,599,607],usernamefield:607,userpassword:[57,133,239],uses:[0,8,11,13,16,18,19,20,22,24,30,33,34,36,38,40,44,45,47,48,49,50,52,53,55,58,60,62,64,70,71,73,79,83,90,92,93,95,98,101,103,104,107,111,113,116,119,123,126,131,136,138,139,143,144,149,151,155,157,161,163,168,171,173,181,187,189,193,196,197,203,205,217,220,227,234,248,255,271,274,299,304,312,321,328,339,345,361,369,370,375,376,383,389,390,393,394,405,411,412,417,441,469,471,481,486,500,520,534,539,542,560,561,565,567,587,590,596,615],uses_databas:567,uses_screenread:[0,227],using:[0,1,2,3,5,8,9,11,12,13,14,15,16,17,18,20,21,22,24,27,28,30,33,34,35,36,39,40,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,59,60,62,68,70,71,72,74,76,77,82,83,87,89,90,93,98,99,101,102,105,106,111,112,113,117,120,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,141,142,144,146,147,149,150,151,152,155,157,158,161,163,167,168,169,170,173,175,176,177,178,179,180,181,182,183,186,188,189,190,191,192,194,195,198,199,200,204,205,206,207,208,210,212,213,215,216,217,218,220,222,227,230,232,235,236,238,240,241,246,248,249,250,251,255,264,269,272,276,285,299,304,312,321,322,323,334,337,338,339,340,341,345,354,357,361,363,364,369,370,372,375,383,386,389,390,394,406,409,412,413,416,417,435,438,439,441,449,454,461,463,466,469,471,472,473,476,477,478,481,485,486,502,503,504,509,510,514,520,523,532,533,534,536,539,541,542,544,545,549,550,551,552,555,560,561,562,563,564,565,567,573,588,592,593,607,615,616,619],usr:[131,211,212,215],usu:45,usual:[1,2,8,9,10,13,14,15,20,21,22,24,28,30,31,35,36,38,39,40,42,44,45,46,48,49,50,52,54,55,59,60,62,64,67,83,101,102,103,119,125,126,127,128,131,132,133,135,136,138,139,140,143,144,145,149,150,157,161,168,170,172,173,175,179,183,186,188,189,192,193,194,196,202,205,207,208,212,213,215,217,220,222,227,228,229,233,234,235,236,238,241,246,247,251,252,255,257,276,285,286,289,299,307,318,369,370,372,379,389,390,394,404,411,416,441,457,469,471,472,473,477,478,491,493,498,523,530,539,541,544,546,547,551,552,554,560,562,564,565,567,576,583],usuallyj:125,utc:[205,220,346,568],utf8:[5,205],utf:[18,35,73,105,106,169,206,220,253,496,502,519,553,567],util:[3,9,11,15,16,17,28,29,30,31,32,40,45,52,56,58,62,70,78,82,88,90,94,95,96,98,101,105,106,111,114,115,119,120,127,132,135,137,142,149,150,151,155,157,158,161,168,169,175,176,182,184,185,187,194,195,207,213,218,220,224,225,240,251,252,255,257,258,259,265,268,274,276,277,281,282,286,287,296,298,300,301,303,308,313,316,318,319,323,326,329,332,335,340,342,343,345,346,355,357,358,360,362,367,377,381,384,387,391,393,394,395,400,401,420,421,422,423,424,425,426,427,428,433,436,438,442,462,465,471,473,475,477,484,485,498,517,522,539,540,541,573,574,576,577,579,581,583,591,607,608,619],utilis:551,uyi:[113,389],v22:215,vacat:170,vagu:179,vai:62,val1:[15,554],val2:[15,554],val:[15,71,227,238,515,567],valid:[0,2,6,7,9,15,16,22,24,30,33,40,44,55,61,71,89,96,101,105,114,120,124,125,126,132,138,143,152,161,169,173,174,186,191,194,195,197,208,217,218,220,222,224,225,227,229,233,235,241,249,255,256,264,283,286,287,299,312,321,323,340,348,361,369,390,393,394,406,416,440,441,449,455,457,461,469,473,475,477,478,480,482,484,485,486,487,489,491,515,519,530,539,540,542,545,547,551,554,561,562,563,564,565,566,567,568,571,590,607,611,613,618],valid_handl:561,valid_target:87,validate_cal:554,validate_email_address:567,validate_input:394,validate_lockstr:0,validate_nam:[0,473],validate_onli:469,validate_password:[0,30,227],validate_prototyp:477,validate_sess:532,validate_slot_usag:[132,158,410],validate_usernam:[0,227],validated_consum:[89,321],validated_input:321,validated_tool:[89,321],validationerror:[227,477,535,561,563],validator_config:227,validator_contain:0,validator_func:220,validator_func_modul:[0,220],validator_kei:561,validatorfunc:[220,224,225,543],valign:[0,550,553],valrang:161,valu:[0,1,7,9,11,12,14,15,19,21,22,24,28,33,35,36,37,39,45,48,49,50,51,52,53,56,57,62,70,71,77,78,82,83,85,87,88,96,99,100,101,103,106,111,113,119,121,125,126,128,131,132,133,134,135,136,138,139,140,141,143,145,147,151,152,155,157,161,163,169,171,175,177,178,181,182,184,187,188,191,194,195,197,208,217,220,227,229,230,232,234,236,238,239,241,255,257,264,270,271,272,273,274,283,286,287,304,315,318,325,334,337,338,339,340,341,348,361,369,370,372,375,377,383,386,389,390,393,394,400,404,405,409,410,411,412,416,417,431,441,447,449,454,457,465,468,469,471,472,473,476,477,478,480,481,485,486,489,496,497,498,500,509,514,515,530,531,532,537,539,540,541,542,544,546,547,548,549,550,551,554,558,559,561,562,563,564,565,567,568,571,587,590,607,616,618],valuabl:[146,412],value1:[44,128],value2:[44,128],value3:128,value_displai:590,value_from_datadict:563,value_to_obj:477,value_to_obj_or_ani:477,value_to_str:563,valueerror:[44,186,191,229,264,276,331,455,457,539,542,544,547,567,568],valuei:106,values_list:136,valuex:106,vampir:[87,136],vampirism_from_elsewher:87,vanilla:[50,70,77,132,139,147,167,169,182,189],vaniti:30,vari:[33,34,50,62,64,67,72,82,101,113,119,125,126,127,131,138,143,157,161,170,173,284,341,372,389,394,530,539,541],variabl:[0,8,9,10,15,16,22,24,30,33,34,36,44,45,53,65,67,71,73,75,77,86,89,96,102,103,125,128,130,131,133,136,139,141,143,144,161,165,167,169,180,182,186,194,195,196,197,212,214,218,219,220,227,230,232,236,238,241,246,249,251,252,253,255,267,279,283,285,286,289,291,302,315,334,345,348,369,371,389,394,441,449,468,472,473,477,478,488,491,501,504,505,507,511,513,523,530,537,544,545,551,554,567,600],variable_from_modul:567,variable_nam:[283,286],variablenam:567,varianc:389,variant:[15,48,92,117,126,130,132,136,143,235,236,264,265,280,357,502,544],variat:[42,95,111,136,140,149,175,177,178,220,234,345,389,416,567],varieti:[121,130,178,198,339,340],variou:[0,8,9,15,18,24,33,38,40,44,45,46,48,49,50,53,55,64,66,69,71,82,101,102,113,120,122,125,126,127,129,136,137,138,143,145,149,164,168,175,177,178,191,197,208,217,218,220,222,234,250,276,304,339,340,370,375,389,390,412,429,433,439,440,461,469,472,473,478,479,486,523,547,553,564,565,596],varnam:515,vast:[70,72,106,205],vastli:131,vavera:77,vcc:[113,389],vccv:[113,389],vccvccvc:389,vcpython27:189,vcv:389,vcvccv:[113,389],vcvcvcc:[113,389],vcvcvvccvcvv:[113,389],vcvvccvvc:[113,389],vector:567,vehicl:[179,180],velit:31,venu:[13,256],venv:[131,211,213,215],ver:205,verb:[0,1,33,60,151,473,527,554,570,572],verb_actor_stance_compon:570,verb_all_tens:570,verb_conjug:[0,33,224,225,543],verb_infinit:570,verb_is_past:570,verb_is_past_participl:570,verb_is_pres:570,verb_is_present_participl:570,verb_is_tens:570,verb_past:570,verb_past_participl:570,verb_pres:570,verb_present_participl:570,verb_tens:570,verb_tenses_kei:570,verbal:[81,126,473],verbatim:[33,134,143,571,619],verbatim_el:567,verbos:[0,2,11,178],verbose_nam:[194,541,575,576,583],verbose_name_plur:[576,583],veri:[0,2,7,8,9,11,12,13,14,15,16,17,19,20,21,22,24,26,28,30,31,33,34,35,36,44,45,47,48,49,50,52,53,55,56,60,62,64,70,71,72,74,76,82,83,85,94,101,102,103,106,111,113,114,118,120,121,122,124,125,126,127,128,130,131,132,134,136,138,139,140,143,144,145,147,149,150,152,157,161,163,167,168,169,170,171,172,177,178,179,180,181,182,184,186,189,190,191,195,196,199,200,202,205,207,208,214,216,217,219,220,222,227,228,234,236,252,255,256,257,264,285,286,299,315,321,340,354,357,361,389,435,439,457,461,464,472,477,495,540,542,547,549,551,567,616],verif:217,verifi:[0,4,8,13,30,92,96,126,139,217,241,321,340,449,455,516,565],verify_online_play:449,verify_or_create_ssl_key_and_cert:516,verify_ssl_key_and_cert:512,verifyfunc:[96,449],versa:[46,55,60,64,71,125,136,178,220,246,363,500,554,571],version:[0,3,5,12,14,15,16,17,20,22,24,26,27,30,34,35,38,39,40,45,50,53,55,67,70,72,80,84,93,94,98,106,125,126,127,131,133,134,138,140,141,143,147,149,151,152,161,168,170,172,173,186,187,188,191,193,196,200,205,206,209,210,211,212,213,215,216,217,220,241,249,251,253,280,309,315,338,339,340,341,345,390,405,406,433,440,473,478,491,496,510,534,539,544,550,552,567,575,576,577,580,581,584,590,607,619],version_info:491,versionad:128,versionchang:128,versu:[63,130,161],vertic:[0,348,367,369,370,440,553,567],very_strong:469,very_weak:36,vessel:184,vessl:184,vest:218,vesuvio:145,vet:44,veteran:200,vex:572,vfill_char:553,vhon:111,via:[0,8,13,15,20,21,30,31,33,35,42,43,44,45,50,51,53,56,62,64,68,70,72,77,82,84,87,111,127,130,132,135,136,138,139,140,143,147,167,168,171,177,188,191,208,213,217,220,254,256,257,361,363,375,404,406,408,411,412,417,433,445,454,472,477,481,539,542,544,554,559],viabl:[89,149,439],vice:[46,55,60,64,71,125,136,152,178,220,246,363,500,554,571],vicin:[24,247,345,441],video:[0,53,62,138],vidual:125,vienv:189,view:[0,2,7,13,15,19,21,28,30,31,34,36,45,49,51,52,54,55,60,70,98,100,106,113,122,125,126,128,130,131,132,133,138,139,143,149,166,169,176,178,191,193,202,210,215,220,222,224,225,227,236,238,239,241,246,247,248,251,255,295,315,337,338,339,340,341,348,361,375,377,390,407,451,463,465,473,475,526,541,552,554,567,573,578,585,586,588,590,592,596,600,603,606,607,619],view_attr:241,view_lock:[196,588],view_modifi:[82,375],view_on_sit:[575,577,579,580,581,583],viewabl:[129,248],viewer:[1,128,197,361,390,473,541],viewpoint:[63,554,571,572,619],viewport:7,viewset:[51,592,593],vigor:376,villag:149,vim:[17,28,132,549],vincent:[0,83,95,101,107,114,123,126,263,264,299,344,345,457],violent:30,virginia:77,virtu:152,virtual:[95,125,130,149,168,192,200,210,213,217,251,345,370,555],virtual_env:211,virtualenv:[2,5,8,10,12,67,77,98,128,189,205,210,211,212,216,217,221,222],virtualhost:207,viru:215,visibl:[0,1,5,13,15,16,22,34,38,46,50,55,62,87,113,125,128,147,149,191,197,208,209,210,217,220,247,248,367,369,370,375,390,473,503,536,551,567,615],vision:[15,147,169],visit:[77,83,106,123,182,194,195,196,217,299,551],visitor:[75,195,218],visual:[0,1,8,34,53,62,99,125,126,149,152,155,168,213,215,227,248,367,369,370,372,386,410,416,544],visual_rang:372,vital:186,vko:111,vlgeoff:[90,114,123,126,275,276,297,456],vniftg:215,vnum:167,vocabulari:[102,567],voic:[24,101,102],volatil:477,volcano:145,volum:[106,132,147,212],volund:[0,136],volunt:67,voluntari:127,volupt:31,vowel:[113,389,454],vpad_char:553,vscode:132,vulner:[0,87,172,218,376],vvc:[113,389],vvcc:[113,389],vvccv:[113,389],vvccvvcc:[113,389],w001:11,w1d6:163,wai:[0,7,8,9,10,11,12,13,14,15,16,17,18,21,22,24,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,50,53,54,55,56,57,59,60,62,64,68,70,71,73,74,76,77,79,80,82,83,87,89,90,91,92,94,96,99,101,102,103,106,107,109,113,116,119,120,122,126,127,128,130,131,132,133,134,135,136,137,138,139,140,142,144,145,146,147,149,150,151,155,157,163,167,168,169,171,172,173,174,175,177,178,179,180,181,182,183,184,186,187,188,189,190,191,192,193,194,197,200,202,203,205,209,210,211,215,216,217,218,219,220,222,227,233,234,241,248,255,276,285,289,299,304,307,312,321,322,337,339,345,354,357,361,363,367,370,375,377,383,386,389,394,404,406,408,411,412,417,433,438,439,440,449,461,463,469,473,477,486,491,496,500,511,532,534,536,537,538,539,540,542,545,550,551,553,558,560,563,567,571,585,592,593,616,618,619],wail:182,waist:315,wait:[1,7,21,24,30,45,56,101,103,115,119,122,134,146,149,172,180,220,228,252,285,289,337,338,339,340,341,394,406,407,433,480,491,501,520,522,534,547,551,567],wait_for_disconnect:501,wait_for_server_connect:501,wait_for_statu:491,wait_for_status_repli:491,waiter:491,waitinf:252,wake:[96,449],waldemar:77,walias:241,walk:[17,22,60,101,102,103,120,124,125,130,140,147,149,172,175,179,181,182,357,361,363,370,433,461,545],walki:[20,131,149],wall:[105,106,122,133,143,146,174,239,247,345,440,441],wand:[89,321,322,406],wander:184,wanna:[79,312,433],want:[0,1,2,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,24,26,28,30,33,34,35,36,37,38,39,40,42,44,45,46,47,49,50,51,52,53,55,56,57,59,60,62,64,65,67,68,70,71,72,73,75,76,77,78,79,80,82,83,84,88,89,92,94,98,101,102,103,106,107,111,113,115,119,125,126,127,128,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,150,151,152,155,157,158,161,163,164,165,166,168,169,170,171,172,173,174,175,177,179,180,181,182,183,184,186,187,188,189,190,191,192,193,194,195,196,197,199,202,203,204,205,206,207,208,209,210,211,213,214,215,216,217,219,220,221,222,227,234,235,236,238,241,247,248,252,253,255,264,280,304,312,318,321,337,338,339,340,341,345,348,361,369,370,372,375,376,386,389,390,394,404,406,407,408,410,411,433,441,445,449,454,457,461,468,469,473,478,482,484,486,507,509,515,522,532,537,539,541,542,549,550,551,552,558,563,565,567,576,583,585,592,607,612,615,616,618,619],wanted_id:36,wapproach:341,war:[34,463],warchannel:246,ware:184,warehous:[445,545],wari:[62,361,473,541],warm:[45,222,495],warmor:163,warn:[0,12,15,21,22,34,46,76,82,106,125,126,131,138,143,186,195,210,215,217,220,234,255,390,410,446,490,491,516,560,619],warrior:[42,146,168,169,191,246],wasclean:[502,519],wasn:[7,82,103,195],wast:[17,49],watch:[10,17,37,82],water:[89,105,126,149,235,321,322,334,412],water_glass:145,waterballon:334,waterglass:145,watt:77,wattack:[337,339,341],wave:106,wavi:125,wbackpack:163,wcach:251,wcactu:340,wcharcreat:[84,227],wchardelet:227,wcommandnam:299,wcure:340,wdestin:241,wdisengag:[337,339,341],wdrop:407,weak:[339,376,478],weaken:[161,416],weakref:558,weaksharedmemorymodel:[498,558],weaksharedmemorymodelbas:[498,558],weakvalu:558,wealth:184,weap:15,weapon:[0,15,30,44,70,93,121,122,131,132,133,135,136,141,146,147,152,158,161,163,172,177,178,183,184,196,322,338,404,405,406,407,409,410,411,412,422,425,439,440,478],weapon_hand:[155,157,407,409,412],weapon_ineffective_msg:439,weapon_prototyp:440,weaponemptyhand:[155,157,412],weaponrack:0,weaponrack_cmdset:440,weaponstr:141,weapoon:146,wear:[85,115,155,315,338,390,407,409,412,433],wearabl:[85,126,315,410,412],wearer:315,wearstyl:315,weather:[45,48,49,76,106,132,135,138,146,147,173,176,177,441,619],weather_script:45,weatherroom:[190,441],weav:151,web:[1,3,19,34,36,44,51,54,58,61,67,77,126,128,129,130,131,132,134,137,143,147,163,166,173,189,192,193,196,197,202,205,207,210,211,213,215,216,220,221,222,224,225,493,495,505,509,515,519,520,530,534,536,542,548,567,619],web_0:216,web_client_url:[209,220],web_get_absolute_url:0,web_get_admin_url:[0,236,255,463,465,541],web_get_create_url:[0,255,465,541],web_get_delete_url:[0,255,465,541],web_get_detail_url:[236,255,463,465,541],web_get_puppet_url:541,web_get_update_url:[0,255,465,541],web_help_entri:615,web_plugin:[138,220],web_plugins_modul:220,webclient:[25,46,53,55,61,62,64,66,68,71,75,77,129,131,138,143,173,192,196,197,206,207,208,209,218,220,222,224,225,248,251,304,438,487,496,499,515,520,531,551,573,601,608],webclient_ajax:[53,224,225,487,499],webclient_client_proxy_port:220,webclient_en:[218,220],webclient_gui:25,webclient_opt:[220,496],webclient_templ:220,webclientdata:520,webclienttest:608,webpag:[0,19,53,207,217,604],webport:5,webserv:[0,25,51,55,64,75,137,138,165,189,208,212,217,220,221,224,225,487,619],webserver_en:[218,220],webserver_interfac:[208,217,220],webserver_port:[5,217,220],webserver_threadpool_limit:220,websit:[0,19,25,51,52,53,54,77,128,129,130,131,138,165,168,176,189,194,195,196,197,200,203,208,217,218,220,224,225,520,536,573,575,601,619],website_templ:220,websocket:[0,53,54,64,131,208,212,217,220,502,508,519,531],websocket_client_en:220,websocket_client_interfac:[208,217,220],websocket_client_port:[217,220],websocket_client_url:[207,208,217,220],websocket_clos:519,websocket_protocol_class:220,websocketcli:[220,519],websocketclientfactori:502,websocketclientprotocol:502,websocketserverfactori:508,websocketserverprotocol:519,weed:[2,234],week:[0,90,101,126,138,175,220,276,408,560,568],weeklylogfil:560,weigh:522,weight:[72,111,113,125,128,132,140,147,176,205,210,369,370,386,389,540,619],weightawarecmdget:170,weild:404,weird:[34,133,140,149,567],welcom:[0,26,55,67,83,127,132,165,184,202],well:[0,1,2,10,11,12,13,14,15,19,20,24,27,28,30,31,33,34,35,40,42,44,46,50,52,55,57,58,59,64,65,71,72,73,75,77,82,83,84,91,95,101,102,109,111,113,120,121,125,126,127,128,130,131,135,136,139,140,141,143,144,145,146,149,150,151,152,157,161,163,168,169,170,172,174,175,178,179,181,182,183,186,189,191,192,193,194,195,196,197,198,203,204,205,210,211,216,218,219,220,230,234,235,236,241,254,255,285,295,302,303,304,312,315,331,339,340,341,345,369,372,375,379,389,390,394,415,433,439,461,473,481,485,487,491,500,502,503,509,526,534,539,540,544,548,551,554,555,563,567,576,583],went:[11,13,135,144,149,151,163,168,210,222,482,486],weonewaymaplink:[125,370],were:[0,7,11,15,16,20,22,24,30,33,44,45,50,53,56,70,72,89,101,110,120,125,126,127,131,136,138,139,141,143,144,149,151,152,169,174,186,188,191,197,206,212,216,219,227,233,234,235,246,255,272,295,369,370,375,457,461,473,477,538,541,545,554,564,567,570,572],weren:175,werewolf:[1,132,142],werewolv:136,werkzeug:567,wesson:60,west:[1,33,105,106,125,134,135,174,182,241,348,369,370,441],west_east:106,west_exit:441,west_room:105,western:106,westward:441,wet:149,wether:312,wevennia:83,wflame:340,wflushmem:251,wfull:340,wguild:246,what:[0,1,2,3,6,7,8,9,11,12,13,14,16,17,20,21,22,24,25,30,33,34,35,36,38,40,44,45,46,49,50,51,54,55,56,57,59,60,62,63,64,68,70,71,72,73,74,76,80,82,83,85,89,91,93,98,101,102,103,105,106,111,112,113,114,119,122,125,126,127,128,131,132,133,134,135,136,137,139,140,141,143,146,147,151,155,157,158,161,163,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,184,185,187,188,190,191,192,193,194,195,197,199,200,202,203,205,207,208,215,217,218,219,220,222,227,232,234,235,236,238,241,252,255,286,302,304,305,309,321,322,334,339,340,369,370,371,372,375,376,390,394,406,408,412,413,435,439,441,445,457,463,465,469,473,476,477,478,491,493,496,503,515,520,535,537,539,541,542,544,545,550,551,561,562,565,567,568,590,596,598,599,607,616,617,619],whatev:[11,13,14,15,17,21,24,30,33,40,64,83,96,101,102,106,108,125,131,143,144,147,149,150,152,155,157,163,167,169,170,179,186,191,192,194,195,199,205,208,210,212,220,227,228,235,241,302,321,340,407,408,431,439,440,449,473,481,482,502,511,514,519,532,539,552,561,616],wheat:321,wheel:[49,89,168,211,213,215],whelp:[227,248,299],when:[0,2,3,5,7,10,11,12,13,14,15,16,17,18,19,20,21,22,24,26,28,30,31,33,34,35,36,37,39,40,42,44,45,46,47,48,50,52,53,54,55,56,57,59,60,62,64,65,67,68,70,71,72,73,74,77,80,82,83,85,87,90,92,94,95,96,97,101,102,103,104,105,106,109,111,113,115,119,120,123,124,125,126,127,128,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,196,197,198,199,200,201,203,205,206,207,208,210,211,212,213,215,217,218,219,220,222,224,227,228,230,232,234,235,236,238,240,241,246,247,248,249,250,251,253,255,256,257,262,264,270,271,273,274,276,279,280,286,287,289,291,299,304,305,306,307,312,315,318,321,322,325,328,331,334,337,338,339,340,341,345,354,361,367,368,369,370,371,375,376,383,386,389,390,394,399,400,404,406,408,410,411,412,413,416,417,433,435,438,439,440,441,449,457,458,461,464,465,468,469,471,472,473,475,477,478,480,481,482,484,485,486,488,491,493,497,498,500,501,502,503,504,505,506,507,509,511,512,513,514,515,516,519,520,522,523,529,530,531,532,533,534,539,541,542,544,545,547,548,549,550,551,552,553,558,559,560,562,567,571,580,596,598,607,611,613,618,619],when_stop:491,whenev:[1,10,12,15,20,24,35,36,37,39,44,45,47,56,60,65,73,83,102,106,124,131,139,141,155,157,185,203,210,212,217,227,235,255,270,307,375,376,377,408,413,439,440,441,471,473,482,484,493,510,530,531,532,539],where:[0,1,2,5,7,8,9,13,15,16,17,20,22,24,28,30,31,33,34,36,38,42,44,45,46,50,52,53,55,56,57,60,61,62,64,67,68,70,71,72,73,75,77,78,82,83,88,89,101,102,103,105,106,111,113,119,125,126,131,132,133,134,135,138,139,140,141,142,143,144,145,146,147,148,149,151,152,155,158,161,163,165,167,168,169,172,175,176,177,179,180,181,182,183,184,186,189,191,193,194,195,196,197,205,211,212,213,215,217,218,219,220,233,234,239,241,247,248,250,255,256,304,318,322,328,339,361,369,370,371,372,379,383,389,390,393,394,404,406,407,410,415,417,440,441,446,466,468,469,471,473,477,478,482,491,493,496,500,523,528,532,539,541,544,545,549,551,552,553,554,555,561,562,565,567,571,583,590,618,619],wherea:[0,2,7,8,9,12,15,16,22,24,30,36,46,50,57,59,60,64,70,73,89,125,143,167,178,179,218,220,229,321,370,389,471,480,486,520,539,558],whereabout:146,wherebi:340,wherev:[11,60,83,106,111,119,131,145,155,208,212,213,264,339,370,375,394,445],whether:[30,48,57,78,82,102,103,130,141,155,175,180,181,196,197,220,227,228,229,235,241,246,248,255,318,337,338,339,341,348,375,449,461,473,486,502,519,534,539,540,544,547,561,563,567,570],whewiu:189,which:[0,1,2,7,8,9,10,11,13,15,16,17,18,20,21,22,24,25,27,30,31,33,34,35,36,38,39,40,42,44,45,46,47,48,49,50,51,53,54,56,57,59,60,62,64,65,68,70,71,72,73,75,76,77,82,83,84,85,86,89,94,95,96,98,99,100,101,102,103,105,106,111,116,118,119,120,121,123,124,125,126,127,128,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,149,150,151,152,155,157,161,165,167,168,169,172,173,174,175,177,178,180,181,182,183,184,185,186,187,188,189,190,191,193,194,195,196,197,198,201,202,204,205,206,208,212,213,215,217,218,219,220,222,227,228,232,234,235,236,238,239,241,247,248,249,252,253,255,256,257,264,267,276,289,299,302,304,309,312,315,318,321,322,328,331,337,338,339,340,341,345,348,354,361,369,370,371,372,375,386,389,390,394,406,407,408,409,410,411,413,416,417,433,435,439,440,441,445,446,449,454,461,465,469,471,472,473,477,478,480,481,482,484,486,488,490,491,495,496,500,503,509,511,519,520,522,523,530,531,532,534,537,539,540,541,542,544,545,547,548,551,552,553,554,555,558,560,561,563,564,565,567,570,572,576,583,590,593,596,598,599,600,607,613,616,618],whichev:[21,147,150,192,217,218,441],whilst:[105,106],whimper:146,whisk:307,whisp:[113,389],whisper:[27,101,102,126,133,247,289,302,304,389,390,473],whistl:[60,152],white:[35,62,77,163,188,220,544,567],whitelist:35,whitenois:[119,126,392,394],whitespac:[0,17,21,24,132,133,136,169,191,249,331,390,407,544,545,553,567],who:[15,20,27,30,33,34,36,39,42,44,45,50,51,56,57,60,62,67,82,94,101,102,110,130,132,135,136,140,141,143,144,146,147,150,151,167,169,177,178,179,180,182,190,191,192,194,218,220,228,236,238,241,246,255,257,286,295,302,304,312,337,338,339,340,341,389,390,406,440,449,463,465,469,473,478,541,549,551,554,571,588],whoever:194,whole:[39,48,53,58,74,106,125,126,130,133,140,147,149,168,182,191,196,208,234,241,302,341,375,553,598],wholist:[20,255],whome:241,whomev:[177,180,433],whoopi:140,whose:[33,50,71,89,136,138,139,227,236,252,286,337,339,390,461,480,496,546,551,554,567],whould:551,why:[1,15,30,50,57,83,94,101,102,103,106,130,131,134,145,149,150,181,186,188,191,196,210,215,218,239,337,341,370,406,457,488,489,551],wic:227,wick:539,wide:[1,21,33,38,58,62,70,124,125,143,169,177,181,186,192,208,213,239,339,340,361,550,553,567],widen:57,wider:[0,1,57,181,239,553],widest:567,widget:[563,575,576,577,579,580,581,583,590,607],width:[0,1,19,21,24,33,34,35,44,58,100,106,125,182,224,236,348,369,372,496,511,530,544,549,550,552,553,554,567],wield:[0,44,48,121,149,155,157,163,338,406,407,409,410,412,429],wield_usag:155,wieldabl:[155,410],wieldloc:[155,157,407,409,410],wifi:[217,218],wiki:[24,50,67,72,106,131,169,176,178,189,200,220,264,318,519,619],wiki_account_handl:192,wiki_account_signup_allow:192,wiki_anonymous_writ:192,wiki_can_admin:192,wiki_can_assign:192,wiki_can_assign_own:192,wiki_can_change_permiss:192,wiki_can_delet:192,wiki_can_moder:192,wiki_can_read:192,wiki_can_writ:192,wikiconfig:192,wikipedia:[11,13,18,73,130,131,178,220,519],wikolia:[111,454],wil:20,wild:[55,72,125,136,147,188,371,372],wildcard:[39,57,125,168,239,241,369,371,372,567],wildcard_to_regexp:567,wilder:[224,225,258,343,619],wildernessexit:361,wildernessmap:361,wildernessmapprovid:[124,361],wildernessroom:361,wildernessscript:[124,361],wildli:389,wildr:101,wilfr:101,will_suppress_ga:513,will_transform:136,will_ttyp:518,willing:[147,150,169,200,619],willowi:152,willpow:416,wim:77,win10:[213,215],win11:215,win7:[213,215],win8:215,win:[30,178,186,189,206,302,406],wind:[101,146,190],winder:149,windmil:321,window:[0,1,2,8,9,10,12,13,22,31,40,46,53,54,68,71,125,128,131,132,134,143,174,182,192,202,205,210,220,221,222,236,248,304,306,491,507,530,534,567],windowid:530,windows10:213,wine:[145,146],winfinit:163,wingd:106,winpti:189,winter:[95,345],wintext_templ:177,wip:[0,93,126,619],wipe:[12,13,15,16,20,27,94,106,133,143,189,205,234,241,251,306,339],wire:[21,64,68,71,73,131,208,217,250,488,500,501,532,544],wiri:152,wis:169,wisdom:[8,149,151,152,161,163,404,409,411,416],wise:[13,16,17,18,36,75,139,169,183],wiser:[45,134],wish:[5,13,24,82,83,98,181,193,198,211,220,264,341,375,544,607],with_tag:334,withdraw:[178,341],withdrawl:341,within:[0,2,9,13,22,24,30,33,34,49,53,56,77,83,94,95,98,99,125,126,127,128,131,136,138,143,145,155,167,169,178,181,182,183,188,189,193,195,198,205,206,207,212,215,217,227,230,232,241,283,312,345,371,379,386,406,408,446,451,464,473,478,485,534,539,540,544,554,560,567,607,613,618],withot:370,without:[0,1,7,8,9,11,12,13,15,16,17,20,21,22,24,26,28,30,33,38,43,44,45,47,49,50,52,54,55,57,58,62,64,65,67,70,71,72,74,82,83,87,89,91,94,95,98,101,102,103,105,113,116,120,124,125,126,128,131,133,134,135,138,140,141,143,144,147,149,150,155,157,168,169,172,173,174,179,180,182,183,184,186,188,191,193,194,196,205,208,210,212,213,215,217,219,220,227,228,233,236,238,239,241,246,247,248,249,250,251,252,255,256,257,262,265,283,286,295,307,312,315,321,337,339,341,345,354,370,375,389,390,394,416,417,426,433,439,441,461,469,471,473,476,477,478,484,485,500,511,514,515,522,532,533,539,541,544,545,547,548,549,550,551,552,554,560,563,564,565,567,600],withstand:36,wiz:169,wizard:[0,44,101,149,221,441,478,489,491],wkei:241,wlocat:241,wlock:241,wmagic:340,wmass:340,wndb_:241,wnn:20,woah:[139,141],woman:149,won:[7,14,15,16,18,22,50,51,53,56,57,62,68,70,82,83,84,94,96,102,103,106,114,126,128,133,136,141,143,147,148,149,168,172,177,179,186,191,192,195,197,199,205,212,213,215,235,367,399,406,412,433,449,457,536,544,563],wonder:[50,58,141,167,189],wont_suppress_ga:513,wont_ttyp:518,woo:133,wooc:227,wood:[89,149,321,322],wooden:[44,89,321,322],woodenpuppetrecip:89,woosh:179,word:[0,8,9,13,17,20,21,24,28,33,34,40,60,67,71,82,84,87,101,102,106,113,126,132,133,139,143,150,151,172,175,182,186,188,193,197,202,220,233,248,249,253,280,289,309,389,471,503,549,553,554,564,567,571,619],word_fil:389,word_length_vari:[113,389],wordi:389,work:[0,1,2,3,5,7,8,9,10,11,12,14,15,16,17,18,20,21,22,25,27,30,33,34,36,37,40,44,45,46,48,49,52,53,54,55,56,58,60,62,65,68,70,72,74,79,82,83,84,87,89,94,95,98,103,106,109,116,120,126,127,128,131,132,133,134,135,136,137,138,139,140,141,143,144,145,147,150,151,155,158,161,163,164,166,167,168,169,170,171,174,175,178,179,180,182,183,187,188,189,190,191,192,193,194,195,196,202,204,205,206,207,208,210,211,213,215,216,217,218,220,221,232,235,236,238,241,246,247,249,251,253,255,264,295,299,302,312,315,321,323,331,334,339,340,341,345,348,354,361,370,390,411,441,461,463,465,468,469,473,477,478,491,495,496,508,523,536,538,539,541,542,545,550,551,552,553,561,567,600,611,612,613,615,617,619],workaround:[13,212,215,221],workflow:[0,575,619],world:[0,11,15,16,17,18,20,21,22,24,30,34,40,42,44,55,56,70,72,73,79,84,89,90,93,94,101,105,106,109,111,119,124,125,126,128,130,131,132,135,139,141,142,144,148,150,151,158,163,164,168,169,175,176,177,178,179,180,181,182,187,189,191,199,200,202,210,217,219,220,227,240,241,246,248,276,312,321,331,337,338,339,340,341,343,361,369,390,394,407,437,440,441,454,463,465,481,530,532,544,545,555,565,619],world_map:106,worm:[149,182],worm_has_map:182,worn:[85,126,155,157,196,315,338,404,410,429],worri:[5,15,18,30,50,52,73,101,103,127,145,146,155,157,181,191,196,219,304,305,312,406],wors:[150,215],worst:[147,215],worth:[8,15,30,45,50,60,103,127,139,149,150,151,163,179,186,194,207,312],worthi:147,worthless:217,would:[1,5,7,8,10,11,12,15,16,17,18,21,22,24,30,33,34,36,38,40,44,45,46,48,49,50,54,55,56,58,59,62,70,71,75,76,77,79,83,85,87,89,90,98,101,102,103,106,111,119,120,125,126,130,131,133,134,136,137,138,139,140,141,143,144,147,149,150,151,152,155,157,161,163,167,168,169,171,172,174,175,177,178,179,180,181,182,183,186,188,189,191,192,193,194,195,196,197,207,212,215,217,227,233,234,235,236,241,250,255,268,276,286,299,304,312,321,322,361,369,370,389,394,406,409,433,461,463,465,469,477,478,503,515,541,544,545,548,551,562,563,565,567,576,583],wouldn:[34,141,181,188,416],wound:[340,406],wow:[150,197],wpass:[337,339,341],wpermiss:241,wprototype_desc:241,wprototype_kei:241,wprototype_lock:241,wprototype_par:241,wprototype_tag:241,wpublic:227,wrack:376,wrap:[0,30,33,44,45,56,96,136,143,145,173,182,193,220,304,315,322,390,449,498,538,553,567],wrap_conflictual_object:563,wrapper:[0,8,15,21,30,35,46,50,56,70,89,172,227,230,256,257,307,309,354,394,465,466,472,473,481,485,496,498,530,539,541,542,544,553,554,558,559,560,567,578,583],wresid:251,wrestl:[149,161],write:[1,3,6,8,15,17,18,21,22,24,25,30,34,39,50,56,58,60,63,71,72,74,78,82,83,93,94,101,102,103,127,133,134,135,139,141,143,144,146,149,150,152,155,161,163,167,169,171,172,174,175,183,186,191,192,196,201,202,204,205,213,215,241,246,248,255,262,264,269,299,361,445,446,473,500,504,560,565,616,618,619],writeabl:211,written:[18,20,21,44,54,111,125,128,133,136,138,139,141,143,144,145,152,163,167,168,169,194,195,197,200,209,223,248,370,445,545,616],wrong:[0,2,7,11,15,135,143,163,205,215,220,222,234,241,251,321,323,390],wrote:139,wserver:251,wservic:246,wsgi:[207,536],wsgi_resourc:536,wsgiwebserv:536,wshoot:341,wsl:[128,213,215],wss:[207,208,217,220],wstatu:341,wstr:152,wstrength:163,wtypeclass:241,wuse:[163,339],wwithdraw:341,www:[12,51,72,83,128,131,181,189,194,207,217,220,224,251,454,506,507,513,515,566,570,607],wxqv:111,x0c:241,x1b:[544,566],x2x:169,x4x:550,x5x:550,x6x:550,x7x:550,x8x:550,x9x:550,x_r:181,xbx:111,xdy:161,xeph:111,xforward:536,xgettext:67,xgiven:372,xho:111,xit:[83,264],xmlcharrefreplac:544,xp_gain:177,xp_per_level:404,xpo:553,xtag:570,xterm256:[35,53,66,68,86,143,220,238,267,386,496,511,514,544],xterm256_bg:544,xterm256_bg_sub:544,xterm256_fg:544,xterm256_fg_sub:544,xterm256_gbg:544,xterm256_gbg_sub:544,xterm256_gfg:544,xterm256_gfg_sub:544,xterm:[62,143,188],xterm_bg_cod:566,xterm_fg_cod:566,xterms256:62,xval:24,xviewmiddlewar:220,xxx:[1,7,114,457],xxxx:[114,457],xxxxx1xxxxx:550,xxxxx3xxxxx:550,xxxxx:101,xxxxxxx2xxxxxxx:550,xxxxxxxxxx3xxxxxxxxxxx:169,xxxxxxxxxx4xxxxxxxxxxx:169,xxxxxxxxxxx:550,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:169,xxxxxxxxxxxxxxxxxxxxxx:169,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:169,xy_coord:408,xy_grid:408,xygrid:[369,370],xymap:[224,225,258,343,362,363,364,367,370,371,372],xymap_data:[125,369,371],xymap_data_list:[125,369,371],xymap_legend:[125,224,225,258,343,362,364,367],xyroom:372,xyz:[39,125,363,366,370,371,372],xyz_destin:[125,372],xyz_destination_coord:372,xyz_exit:[125,366,370],xyz_room:[125,366,370],xyzcommand:[125,364,365],xyzexit:[367,371,372],xyzexit_prototype_overrid:125,xyzexitmanag:372,xyzgrid:[0,182,224,225,258,343,619],xyzgrid_cmdset:363,xyzgrid_use_db_prototyp:125,xyzgridcmdset:[125,363],xyzmanag:372,xyzmap:125,xyzroom:[224,225,258,343,362,367,371],xyzroom_prototype_overrid:125,y10:163,y_r:181,yai:220,yan:544,yank:28,yard:122,year:[0,50,71,72,77,90,101,126,127,130,132,149,175,217,276,555,560,567,607],yearli:[175,217],yeast:[89,126,321],yellow:[13,62,125,163,188,440],yes:[0,24,30,56,60,102,128,181,188,241,251,289,489,549,551,567],yes_act:551,yes_no_question_cmdset:551,yesno:[30,128,549],yesnoquestioncmdset:551,yet:[0,1,5,7,12,13,14,17,26,30,44,46,57,67,70,83,88,102,103,105,106,125,126,131,133,136,139,140,150,151,152,155,157,158,161,171,172,180,182,183,184,187,194,195,196,208,209,213,215,216,217,223,227,246,253,280,286,312,318,370,408,433,469,472,485,509,532,536,544,614],yield:[0,24,36,56,72,78,205,241,446,553,565,567],yin:84,yml:[6,212],yogurt:[112,334],yoshimura:77,you:[0,1,3,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,26,28,30,33,34,35,36,37,38,39,40,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,92,93,94,95,96,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,133,134,135,136,137,138,139,142,143,144,145,147,150,151,152,155,157,158,161,163,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,219,220,221,222,227,235,236,238,241,246,247,248,249,250,251,252,253,255,264,267,269,271,272,274,276,284,285,286,289,295,299,302,304,305,309,312,315,318,321,322,328,331,334,337,338,339,340,341,345,348,354,357,361,363,365,369,370,375,376,377,379,386,389,390,393,394,399,404,406,407,408,409,410,411,412,413,415,433,435,440,441,445,446,449,451,454,457,461,463,468,469,473,478,482,483,484,485,486,493,502,503,504,520,522,532,534,536,537,539,541,542,544,545,547,550,551,553,554,555,563,564,565,567,570,571,572,587,590,592,593,607,616,618,619],you_obj:33,you_replac:302,your:[0,1,3,5,6,7,8,10,15,16,17,18,19,20,21,22,25,26,28,30,33,34,36,38,39,42,44,45,46,47,48,49,50,51,52,54,55,56,57,58,60,62,63,65,67,68,71,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,105,106,107,109,113,115,116,117,120,121,122,123,124,125,126,127,128,130,131,132,135,136,137,139,140,141,142,143,144,145,146,147,148,151,155,158,161,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,182,183,186,187,188,189,191,193,195,197,198,199,200,201,202,203,204,205,207,208,209,210,211,213,214,219,220,221,222,224,225,227,230,233,235,236,238,239,241,246,247,248,251,252,253,258,264,265,267,276,280,285,299,302,304,312,315,318,321,322,337,338,339,340,341,345,348,354,357,361,363,364,369,373,375,376,379,383,386,389,390,392,399,406,407,410,412,413,416,433,440,441,445,446,449,451,454,457,461,468,469,472,522,541,544,549,551,553,554,563,564,565,567,568,571,572,576,583,593,607,613,616,619],your_act:304,your_bucket_nam:77,your_charact:155,your_email:[13,220],yourchannelcommandnam:255,yourchar:143,yourgam:445,yourgamenam:77,yourhostnam:208,yourmodulenam:163,yournam:[127,133,139,141,207],yourpassword:205,yourrepo:10,yourself:[2,6,7,11,13,14,17,22,30,36,40,50,55,58,59,60,70,72,75,77,83,84,101,103,105,106,111,116,119,122,125,126,127,128,130,132,137,139,140,141,142,143,145,148,149,150,151,157,163,169,177,186,191,197,199,205,215,217,241,247,302,304,312,325,340,354,363,390,394,399,406,407,413,551,554,571,572],yourselv:[60,554,571,572],yoursit:194,yourtest:11,yourus:189,yourusernam:13,yourwebsit:194,yousuck:57,yousuckmor:57,youth:[96,449],youtub:13,ypo:553,yrs:276,ythi:62,yum:[13,207,208],yvonn:169,z_destin:372,z_r:181,z_sourc:372,zcoord:[363,367,369,371],zem:111,zero:[21,38,44,134,139,143,145,215,246,318,321,371,390,466,473,539,544,554],zip:218,zlib:[211,500,504],zmud:[206,506],zone:[48,63,102,138,150,167,200,220,542,560,619],zoord:371,zopeinterfac:215,zuggsoft:506},titles:["Changelog","Coding FAQ","Coding Introduction","Coding and development help","Continuous Integration","Continuous Integration - TeamCity (linux)","Continuous integration with Travis","Debugging","Profiling","Quirks","Setting up PyCharm with Evennia","Unit Testing","Updating Your Game","Version Control","Accounts","Attributes","Batch Code Processor","Batch Command Processor","Batch Processors","Bootstrap Components and Utilities","Channels","Coding Utils","Command Sets","Command System","Commands","Core Components","Connection Screen","Default Commands","EvEditor","EvForm","EvMenu","EvMore","EvTable","The Inline Function Parser","Help System","Inputfuncs","Locks","MonitorHandler","Msg","Nicks","Objects","Outputfuncs","Permissions","Portal And Server","Spawner and Prototypes","Scripts","Sessions","Signals","Tags","TickerHandler","Typeclasses","Evennia REST API","The Web Admin","Web Client","Webserver","Game website","Async Process","Banning","Bootstrap & Evennia","Building Permissions","Sending different messages depending on viewpoint and receiver","Clickable links","Colors","Core Concepts","Custom Protocols","Guest Logins","In-text tags parsed by Evennia","Internationalization","Messagepath","Multisession modes","New Models","OOB","Soft Code","Text Encodings","Using MUX as a Standard","Web Features","Zones","AWSstorage system","Input/Output Auditing","Barter system","Batch processor examples","Script example","Buffs","Building menu","Character Creator","Clothing","Additional Color markups","Components","Cooldowns","Crafting system","Custom gameime","Dice roller","Email-based login system","EvAdventure","EvscapeRoom","Extended Room","Easy fillable form","Gendersub","In-game Git Integration","Health Bar","Basic Map","Evennia in-game Python system","Dialogues in events","A voice operated elevator using events","In-Game Mail system","Map Builder","Creating rooms from an ascii map","Menu-based login system","TutorialMirror","Evennia Multidescer","Legacy Comms-commands","Random Name Generator","Puzzles System","Roleplaying base system for Evennia","Pseudo-random generator and registry","Red Button example","SimpleDoor","Slow Exit","Talkative NPC example","Traits","Easy menu selection tree","Turn based battle system framework","Evennia Tutorial World","Unix-like Command style","Wilderness system","XYZgrid","Contribs","How To Contribute And Get Help","Contributing to Evennia Docs","API Summary","Evennia Introduction","Glossary","Beginner Tutorial","8. Adding custom commands","1. Using commands and building stuff","10. Creating things","12. Advanced searching - Django Database queries","6. Overview of the Evennia library","4. Overview of your new Game Dir","7. Making objects persistent","13. Building a chair you can sit on","9. Parsing Command input","Part 1: What we have","3. Intro to using Python with Evennia","5. Introduction to Python classes and objects","11. Searching for things","2. The Tutorial World","2. On Planning a Game","Part 2: What we want","3. Planning our tutorial game","1. Where do I begin?","3. Player Characters","6. Character Generation","12. In-game Commands","11. Dynamically generated Dungeon","5. Handling Equipment","8. Non-Player-Characters (NPCs)","4. In-game Objects and items","Part 3: How we get there (example game)","9. Game Quests","7. In-game Rooms","2. Rules and dice rolling","10. In-game Shops","1. Code structure and Utilities","Part 4: Using what we created","1. Add a simple new web page","Part 5: Showing the world","Evennia for Diku Users","Evennia for MUSH Users","Evennia for roleplaying sessions","Give objects weight","Adding Command Cooldowns","Commands that take time to finish","Adding a Command Prompt","Return custom errors on missing Exits","Changing game calendar and time speed","Tutorials and Howto\u2019s","Implementing a game rule system","Turn based Combat System","Building a giant mech","Building a train that moves","Adding room coordinates to your game","Show a dynamic map of rooms","NPCs that listen to what is said","NPC merchants","NPCs reacting to your presence","Parsing command arguments, theory and best practices","Making a Persistent object Handler","Understanding Color Tags","Using the Arxcode game dir","Adding Weather messages to a Room","Tutorial for basic MUSH like game","Add a wiki on your website","Changing the Game Website","Web Character Generation","Web Character View Tutorial","Extending the REST API","Help System Tutorial","Automatically Tweet game stats","Licensing Q&A","Links","Connect Evennia channels to Grapevine","Connect Evennia channels to IRC","Connect Evennia channels to RSS","Connect Evennia to Twitter","Choosing a database","Client Support Grid","Configuring an Apache Proxy","Configuring HAProxy","Evennia Game Index","Installation","Installing on Android","Installing with Docker","Installing with GIT","Non-interactive setup","Installation Troubleshooting","Upgrading an existing installation","Online Setup","Security Hints and Practices","Changing Game Settings","Evennia Default settings file","Server Setup and Life","Start Stop Reload","1. 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.base_systems","evennia.contrib.base_systems.awsstorage","evennia.contrib.base_systems.awsstorage.aws_s3_cdn","evennia.contrib.base_systems.awsstorage.tests","evennia.contrib.base_systems.building_menu","evennia.contrib.base_systems.building_menu.building_menu","evennia.contrib.base_systems.building_menu.tests","evennia.contrib.base_systems.color_markups","evennia.contrib.base_systems.color_markups.color_markups","evennia.contrib.base_systems.color_markups.tests","evennia.contrib.base_systems.components","evennia.contrib.base_systems.components.component","evennia.contrib.base_systems.components.dbfield","evennia.contrib.base_systems.components.holder","evennia.contrib.base_systems.components.signals","evennia.contrib.base_systems.components.tests","evennia.contrib.base_systems.custom_gametime","evennia.contrib.base_systems.custom_gametime.custom_gametime","evennia.contrib.base_systems.custom_gametime.tests","evennia.contrib.base_systems.email_login","evennia.contrib.base_systems.email_login.connection_screens","evennia.contrib.base_systems.email_login.email_login","evennia.contrib.base_systems.email_login.tests","evennia.contrib.base_systems.ingame_python","evennia.contrib.base_systems.ingame_python.callbackhandler","evennia.contrib.base_systems.ingame_python.commands","evennia.contrib.base_systems.ingame_python.eventfuncs","evennia.contrib.base_systems.ingame_python.scripts","evennia.contrib.base_systems.ingame_python.tests","evennia.contrib.base_systems.ingame_python.typeclasses","evennia.contrib.base_systems.ingame_python.utils","evennia.contrib.base_systems.menu_login","evennia.contrib.base_systems.menu_login.connection_screens","evennia.contrib.base_systems.menu_login.menu_login","evennia.contrib.base_systems.menu_login.tests","evennia.contrib.base_systems.mux_comms_cmds","evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds","evennia.contrib.base_systems.mux_comms_cmds.tests","evennia.contrib.base_systems.unixcommand","evennia.contrib.base_systems.unixcommand.tests","evennia.contrib.base_systems.unixcommand.unixcommand","evennia.contrib.full_systems","evennia.contrib.full_systems.evscaperoom","evennia.contrib.full_systems.evscaperoom.commands","evennia.contrib.full_systems.evscaperoom.menu","evennia.contrib.full_systems.evscaperoom.objects","evennia.contrib.full_systems.evscaperoom.room","evennia.contrib.full_systems.evscaperoom.scripts","evennia.contrib.full_systems.evscaperoom.state","evennia.contrib.full_systems.evscaperoom.tests","evennia.contrib.full_systems.evscaperoom.utils","evennia.contrib.game_systems","evennia.contrib.game_systems.barter","evennia.contrib.game_systems.barter.barter","evennia.contrib.game_systems.barter.tests","evennia.contrib.game_systems.clothing","evennia.contrib.game_systems.clothing.clothing","evennia.contrib.game_systems.clothing.tests","evennia.contrib.game_systems.cooldowns","evennia.contrib.game_systems.cooldowns.cooldowns","evennia.contrib.game_systems.cooldowns.tests","evennia.contrib.game_systems.crafting","evennia.contrib.game_systems.crafting.crafting","evennia.contrib.game_systems.crafting.example_recipes","evennia.contrib.game_systems.crafting.tests","evennia.contrib.game_systems.gendersub","evennia.contrib.game_systems.gendersub.gendersub","evennia.contrib.game_systems.gendersub.tests","evennia.contrib.game_systems.mail","evennia.contrib.game_systems.mail.mail","evennia.contrib.game_systems.mail.tests","evennia.contrib.game_systems.multidescer","evennia.contrib.game_systems.multidescer.multidescer","evennia.contrib.game_systems.multidescer.tests","evennia.contrib.game_systems.puzzles","evennia.contrib.game_systems.puzzles.puzzles","evennia.contrib.game_systems.puzzles.tests","evennia.contrib.game_systems.turnbattle","evennia.contrib.game_systems.turnbattle.tb_basic","evennia.contrib.game_systems.turnbattle.tb_equip","evennia.contrib.game_systems.turnbattle.tb_items","evennia.contrib.game_systems.turnbattle.tb_magic","evennia.contrib.game_systems.turnbattle.tb_range","evennia.contrib.game_systems.turnbattle.tests","evennia.contrib.grid","evennia.contrib.grid.extended_room","evennia.contrib.grid.extended_room.extended_room","evennia.contrib.grid.extended_room.tests","evennia.contrib.grid.ingame_map_display","evennia.contrib.grid.ingame_map_display.ingame_map_display","evennia.contrib.grid.ingame_map_display.tests","evennia.contrib.grid.mapbuilder","evennia.contrib.grid.mapbuilder.mapbuilder","evennia.contrib.grid.mapbuilder.tests","evennia.contrib.grid.simpledoor","evennia.contrib.grid.simpledoor.simpledoor","evennia.contrib.grid.simpledoor.tests","evennia.contrib.grid.slow_exit","evennia.contrib.grid.slow_exit.slow_exit","evennia.contrib.grid.slow_exit.tests","evennia.contrib.grid.wilderness","evennia.contrib.grid.wilderness.tests","evennia.contrib.grid.wilderness.wilderness","evennia.contrib.grid.xyzgrid","evennia.contrib.grid.xyzgrid.commands","evennia.contrib.grid.xyzgrid.example","evennia.contrib.grid.xyzgrid.launchcmd","evennia.contrib.grid.xyzgrid.prototypes","evennia.contrib.grid.xyzgrid.tests","evennia.contrib.grid.xyzgrid.utils","evennia.contrib.grid.xyzgrid.xymap","evennia.contrib.grid.xyzgrid.xymap_legend","evennia.contrib.grid.xyzgrid.xyzgrid","evennia.contrib.grid.xyzgrid.xyzroom","evennia.contrib.rpg","evennia.contrib.rpg.buffs","evennia.contrib.rpg.buffs.buff","evennia.contrib.rpg.buffs.samplebuffs","evennia.contrib.rpg.buffs.tests","evennia.contrib.rpg.character_creator","evennia.contrib.rpg.character_creator.character_creator","evennia.contrib.rpg.character_creator.example_menu","evennia.contrib.rpg.character_creator.tests","evennia.contrib.rpg.dice","evennia.contrib.rpg.dice.dice","evennia.contrib.rpg.dice.tests","evennia.contrib.rpg.health_bar","evennia.contrib.rpg.health_bar.health_bar","evennia.contrib.rpg.health_bar.tests","evennia.contrib.rpg.rpsystem","evennia.contrib.rpg.rpsystem.rplanguage","evennia.contrib.rpg.rpsystem.rpsystem","evennia.contrib.rpg.rpsystem.tests","evennia.contrib.rpg.traits","evennia.contrib.rpg.traits.tests","evennia.contrib.rpg.traits.traits","evennia.contrib.tutorials","evennia.contrib.tutorials.batchprocessor","evennia.contrib.tutorials.batchprocessor.example_batch_code","evennia.contrib.tutorials.bodyfunctions","evennia.contrib.tutorials.bodyfunctions.bodyfunctions","evennia.contrib.tutorials.bodyfunctions.tests","evennia.contrib.tutorials.evadventure","evennia.contrib.tutorials.evadventure.build_techdemo","evennia.contrib.tutorials.evadventure.build_world","evennia.contrib.tutorials.evadventure.characters","evennia.contrib.tutorials.evadventure.chargen","evennia.contrib.tutorials.evadventure.combat_turnbased","evennia.contrib.tutorials.evadventure.commands","evennia.contrib.tutorials.evadventure.dungeon","evennia.contrib.tutorials.evadventure.enums","evennia.contrib.tutorials.evadventure.equipment","evennia.contrib.tutorials.evadventure.npcs","evennia.contrib.tutorials.evadventure.objects","evennia.contrib.tutorials.evadventure.quests","evennia.contrib.tutorials.evadventure.random_tables","evennia.contrib.tutorials.evadventure.rooms","evennia.contrib.tutorials.evadventure.rules","evennia.contrib.tutorials.evadventure.shops","evennia.contrib.tutorials.evadventure.tests","evennia.contrib.tutorials.evadventure.tests.mixins","evennia.contrib.tutorials.evadventure.tests.test_characters","evennia.contrib.tutorials.evadventure.tests.test_chargen","evennia.contrib.tutorials.evadventure.tests.test_combat","evennia.contrib.tutorials.evadventure.tests.test_commands","evennia.contrib.tutorials.evadventure.tests.test_dungeon","evennia.contrib.tutorials.evadventure.tests.test_equipment","evennia.contrib.tutorials.evadventure.tests.test_quests","evennia.contrib.tutorials.evadventure.tests.test_rules","evennia.contrib.tutorials.evadventure.tests.test_utils","evennia.contrib.tutorials.evadventure.utils","evennia.contrib.tutorials.mirror","evennia.contrib.tutorials.mirror.mirror","evennia.contrib.tutorials.red_button","evennia.contrib.tutorials.red_button.red_button","evennia.contrib.tutorials.talking_npc","evennia.contrib.tutorials.talking_npc.talking_npc","evennia.contrib.tutorials.talking_npc.tests","evennia.contrib.tutorials.tutorial_world","evennia.contrib.tutorials.tutorial_world.intro_menu","evennia.contrib.tutorials.tutorial_world.mob","evennia.contrib.tutorials.tutorial_world.objects","evennia.contrib.tutorials.tutorial_world.rooms","evennia.contrib.tutorials.tutorial_world.tests","evennia.contrib.utils","evennia.contrib.utils.auditing","evennia.contrib.utils.auditing.outputs","evennia.contrib.utils.auditing.server","evennia.contrib.utils.auditing.tests","evennia.contrib.utils.fieldfill","evennia.contrib.utils.fieldfill.fieldfill","evennia.contrib.utils.git_integration","evennia.contrib.utils.git_integration.git_integration","evennia.contrib.utils.git_integration.tests","evennia.contrib.utils.name_generator","evennia.contrib.utils.name_generator.namegen","evennia.contrib.utils.name_generator.tests","evennia.contrib.utils.random_string_generator","evennia.contrib.utils.random_string_generator.random_string_generator","evennia.contrib.utils.random_string_generator.tests","evennia.contrib.utils.tree_select","evennia.contrib.utils.tree_select.tests","evennia.contrib.utils.tree_select.tree_select","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.pronouns","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"],titleterms:{"2010":0,"2011":0,"2012":0,"2013":0,"2014":0,"2015":0,"2016":0,"2017":0,"break":136,"case":[103,149],"class":[11,21,24,50,83,101,138,139,144,149,151,184],"default":[1,27,33,35,36,53,55,125,139,141,170,173,220,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253],"enum":[157,163,409],"final":[182,211],"function":[7,33,36,40,55,83,129,143,145],"goto":30,"import":[2,9,114,125,128,137,143,144],"new":[0,9,11,45,50,55,70,82,89,100,101,138,139,149,157,165,169,192,194,196,197,210],"public":[209,221],"return":[30,46,136,143,174],"static":[119,394],"super":[59,141],"throw":161,"while":140,AWS:77,Adding:[1,22,35,40,48,52,55,64,70,89,101,103,111,133,134,140,141,171,173,180,181,189,190,192,194,196],And:[43,127],Are:149,Going:221,IDE:132,NOT:136,One:[105,125],PMs:169,TLS:207,The:[2,8,16,17,28,30,33,34,42,44,45,52,56,58,59,68,75,84,87,101,102,111,125,126,146,147,150,157,165,169,178,181,182,184,191,197,210],Tying:[152,187],Use:[2,133,218],Used:98,Uses:33,Using:[8,11,15,20,31,33,34,37,44,48,55,70,74,76,82,101,119,127,134,157,164,182,189,196,213,375,394],Will:[50,145,149],Yes:30,_famili:136,_should:149,abil:152,abl:[140,149],abort:172,about:[9,12,49,50,125,144,149,151,176],absolut:137,abus:57,access:[52,63],access_typ:36,account:[9,14,52,77,84,131,135,149,169,226,227,228,229,230,238,575,611],action:149,activ:[149,168,194],actor:60,actor_stance_cal:33,actual:[24,50],add:[1,55,155,165,192,205],add_choic:83,addclass:595,addit:[86,181,189,212],address:1,admin:[9,52,75,131,239,574,575,576,577,578,579,580,581,582,583,584,585],administr:[20,147,149],adminsit:598,advanc:[39,82,129,136,141,205,222],advantag:161,alia:9,alias:[48,145],all:[1,101,139,149,187,197,208,619],allow:[20,149],alpha:147,also:149,altern:[10,189],amount:149,amp:500,amp_client:488,amp_serv:501,analyz:8,android:211,ani:[16,130],annot:136,anoth:[45,128,141],ansi:[21,62,188,544],apach:207,api:[9,51,53,128,129,137,196,586,587,588,589,590,591,592,593],app:[194,197],appear:149,append:136,appli:[82,152,375],approach:111,april:0,arbitrari:30,area:[106,191],arg:[172,186],arg_regex:24,argument:[30,139,143,186],armi:179,armor:[155,157],around:[134,152,155],arx:189,arxcod:189,ascii:[21,100,106],ask:[24,30],asset:150,assign:[24,59],assort:[17,22,24,30,48,56,64,183],async:56,asynchron:56,at_look:84,at_object_cr:[139,157],attach:[10,45,47],attack:[149,191],attribut:[9,15,52,131,136,139,145,157,539,576],attributeproperti:[15,139],audit:[78,126,444,445,446,447],aug:0,auto:34,autodoc:128,automat:[1,198],avail:[26,47,111],awai:3,awar:171,aws_s3_cdn:261,awsstorag:[77,126,260,261,262],backend:599,backtrack:151,ban:57,bank:149,bar:99,bare:157,barter:[79,126,149,311,312,313],base:[0,1,44,92,107,113,121,125,149,157,178,187],base_system:[126,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],basic:[16,17,25,54,82,83,100,101,130,191,192,193,204],batch:[16,17,18,80,545],batchcod:16,batchprocess:240,batchprocessor:[126,396,397,545],battl:121,befor:2,begin:150,beginn:[132,142,148,158,164,166,176],behavior:20,best:186,beta:147,between:[16,30,50],block:[16,125,128,172],blockquot:128,blurb:55,board:149,bodyfunct:[126,398,399,400],bold:128,boot:57,bootstrap:[19,58],border:19,bot:228,branch:30,brief:197,briefli:71,broken:149,buff:[82,126,374,375,376,377],build:[52,59,83,106,128,134,140,147,149,169,179,180,182,241],build_techdemo:402,build_world:403,builder:[105,149],building_menu:[126,263,264,265],built:149,bulletin:149,busi:184,button:[19,115,134],cach:82,calendar:175,call:[24,101,139],call_ev:101,callabl:33,callback:[53,101,102,103],callbackhandl:283,caller:30,can:[15,83,130,140,144,145,149,179],cannot:149,capabl:[149,187],capcha:194,card:19,care:218,carri:[149,170],cast:322,categori:84,caveat:[16,17,50,62,211],certain:136,certif:208,chain:101,chair:[140,149],chang:[0,1,9,12,13,52,55,67,72,84,95,101,103,128,139,149,152,169,175,193,218,219],changelog:[0,3],channel:[1,20,131,135,149,169,201,202,203,612],charact:[1,20,33,40,52,84,100,102,131,135,139,140,141,147,149,151,152,156,169,177,191,194,195,206,404,613],character_cr:[126,378,379,380,381],charcreat:84,chargen:[191,405],chat:20,cheat:7,check:[15,36,42,77,82,161,215],checker:2,checkpoint:194,children:144,choic:[83,84],choos:[84,152,205],clean:189,clickabl:61,client:[53,68,71,75,132,206,217,493],client_opt:35,clone:13,close:217,cloth:[85,126,314,315,316],cloud9:217,cmdhandler:232,cmdparser:233,cmdset:[133,141,234],cmdset_account:242,cmdset_charact:243,cmdset_sess:244,cmdset_unloggedin:245,cmdsethandl:235,code:[1,2,3,7,12,13,15,16,20,21,28,38,39,45,72,83,91,101,127,128,133,135,136,143,147,149,163,177,184,207,321,545],coin:149,collabor:168,colon:196,color:[1,19,21,55,62,86,143,188],color_markup:[126,266,267,268],colour:62,combat:[178,191],combat_turnbas:406,comfort:212,comm:[110,246,254,255,256,257,577],command:[0,1,7,9,17,22,23,24,25,26,27,34,45,83,84,95,100,101,110,123,129,132,133,134,138,139,140,141,143,153,169,170,171,172,173,174,175,178,180,186,191,204,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,284,302,363,407,545],comment:[122,144,182],commit:13,commom:55,common:40,commun:[16,127,200],complet:36,complex:83,compon:[19,25,87,126,269,270,271,272,273,274,370],comprehens:140,comput:217,con:87,concept:[63,149,178,182],conclud:[181,191],conclus:[83,106,135,136,137,139,140,143,149,150,152,186],condit:[1,82],conf:[138,219],config:129,configur:[10,13,77,78,85,194,201,202,203,204,205,207,208,210,221],confus:215,congratul:147,conjug:570,connect:[9,26,151,155,201,202,203,204,209,217],connection_screen:[279,291],connection_wizard:489,conson:111,consum:157,contain:[45,212,546],content:1,context:82,continu:[4,5,6],contrib:[0,11,87,126,127,131,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,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461],contribut:[126,127,128,129,619],control:13,convert:[33,186],cooldown:[88,126,171,317,318,319],coordin:181,copi:207,core:[11,25,63,129,131,167],cost:77,count_slot:155,counter:[119,394],cprofil:8,craft:[89,126,149,320,321,322,323],crafter:89,creat:[5,9,14,21,24,40,50,57,70,82,101,103,106,129,133,134,135,139,143,149,152,157,164,165,180,191,194,196,197,212,547],create_object:139,createnpc:191,creation:150,creator:84,creatur:212,credit:[139,140,146,155,157],crop:21,crossov:171,current:[7,175],custom:[11,20,30,33,34,36,46,51,52,53,55,56,64,73,75,82,83,89,90,111,133,168,174,175,196,389],custom_gametim:[126,275,276,277],customis:[124,361],dai:149,data:[10,15,30,46,54,64,187],databas:[9,12,34,44,70,129,136,139,189,205],dbfield:271,dbref:[50,145],dbserial:548,deal:45,death:[149,161],debug:[7,16,218],debugg:10,dec:0,decid:149,decor:[30,56],dedent:21,dedic:194,deep:176,deeper:89,defaultobject:9,defeat:149,defin:[13,22,24,30,33,36,45,70,125,192],definit:36,delai:[21,45,56,172],delimit:1,demo:147,deni:101,depend:[12,60,77,98,189],deploi:212,deprec:[128,490],desc:[30,119,394],descer:168,descript:[95,149],design:94,detail:[77,95,112,124,125,176,194,196,197,361],detect:149,dev:200,develop:[3,168,210,212,218,222,619],dialogu:102,dice:[91,126,161,169,382,383,384],dictionari:30,differ:[50,60,149,167],diku:167,dir:[11,132,138,189,210,216],direct:128,director:60,directori:[217,219],disabl:[101,218],displai:[21,175,182,206],distribut:0,dive:176,django:[0,36,75,131,136,194,196,222],doc:[2,128],docker:212,docstr:[128,144],document:[74,127,128,619],doe:149,doing:150,don:[16,130,212],donat:127,done:146,down:[125,134,180],dummyrunn:[8,522],dummyrunner_set:523,dungeon:[154,408],durat:82,dure:222,dynam:[24,30,154,182],each:[145,149],easi:[96,120],echo:35,economi:149,edit:[28,83,101,128,191],editnpc:191,editor:[28,101,132],effici:171,elarion:111,elev:103,els:149,email:92,email_login:[126,278,279,280,281],emoji:100,emot:113,emul:167,encod:[18,73],encrypt:217,end:111,enemi:149,enforc:149,engin:150,enough:[146,149],enter:180,entir:103,entit:25,entiti:149,entri:[34,134],equip:[155,410],equipmenthandl:155,error:[45,133,143,174,222,614],escap:33,evadventur:[93,126,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],eval:128,eveditor:[28,549],even:[89,100],evennia:[0,1,2,3,7,9,10,11,12,13,33,44,51,53,58,66,67,76,77,100,101,109,113,122,127,128,130,137,143,149,151,167,168,169,186,188,189,200,201,202,203,204,205,207,209,210,211,212,216,217,220,222,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,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619],evennia_launch:491,event:[101,102,103,175],eventfunc:[101,285],everi:173,everyth:[83,155],evform:[29,169,550],evmenu:[0,1,30,84,152,551],evmor:[31,552],evscaperoom:[94,126,301,302,303,304,305,306,307,308,309],evtabl:[1,32,169,553],examin:[7,101,139],exampl:[7,28,30,33,36,42,45,53,55,72,80,81,83,84,86,87,88,89,102,105,114,115,118,124,125,137,158,177,178,181,187,217,361,364,389,545],example_batch_cod:397,example_menu:380,example_recip:322,except:140,execut:7,exist:[50,149,216],exit:[1,24,40,103,117,135,174,357],expand:[119,155,178,180,394],experi:149,explan:83,explor:[2,137],extend:[63,95,125,136,196],extended_room:[126,344,345,346],extern:[128,218],extra:[82,95,101,139,140,146,155,157],fail:[149,215],familiar:[167,168],fantasi:111,faq:1,faster:11,featur:[63,75,93,95,100,197,379],feb:0,feel:167,field:[96,131,136],fieldfil:[126,448,449],fight:149,figur:133,file:[13,16,17,18,34,128,219,220,545],filehelp:463,fill:21,fillabl:96,filter:587,find:[143,145,181],finish:172,firewal:218,first:[83,102,103,125,139,143,168],fix:[13,173],flat:[9,55],flexibl:128,flow:[54,149],flower:149,folder:[2,13,163,189],foreground:222,forget:9,fork:[13,127],form:[19,55,96,149,194,607],formal:149,format:[30,143],found:[215,222],framework:[121,196,200],fresh:132,friarzen:0,from:[1,9,30,34,53,91,106,130,134,143,194,212,217,551],front:[55,193,207],frontpag:578,full:[83,87,197],full_system:[126,300,301,302,303,304,305,306,307,308,309],func:[42,172],funcpars:[33,151,554],funcparser_cal:33,further:[56,193,207],futur:179,gain:149,game:[0,2,11,12,13,15,20,21,34,45,55,94,98,101,104,106,130,132,138,147,149,150,153,157,158,159,160,162,168,169,175,177,181,189,191,193,198,200,209,210,212,216,217,219,321],game_index_cli:[492,493,494],game_system:[126,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],gamedir:128,gameim:90,gameplai:146,gametim:[175,555],gaug:[119,394],gendersub:[97,126,324,325,326],gener:[0,19,63,82,83,111,114,149,152,154,161,191,194,200,247,551],general_context:600,get:[30,82,101,127,134,136,155,158,208],get_client_opt:35,get_input:30,get_inputfunc:35,get_valu:35,giant:179,git:[13,98,131,213,215],git_integr:[126,450,451,452],github:[13,131],give:[149,170],given:48,global:[129,149,186],global_script:45,glossari:131,gmcp:71,godhood:134,golden:0,goldenlayout:53,good:144,googl:194,grant:[52,169],grapevin:[201,502],graphic:143,grid:[125,126,182,206,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],group:[136,192],guest:65,guid:189,guidelin:127,had:146,hand:157,handl:[57,149,155,197,218,222],handler:[47,82,129,178,187,375],haproxi:208,have:[142,144,149,191],head:128,heal:161,health:99,health_bar:[126,385,386,387],hello:143,help:[2,3,34,127,134,197,248,462,463,464,465,466,579,615],helper:82,here:[2,130,139],hidden:149,hide:149,hierarchi:[42,149,169],hint:[8,45,67,122,146,205,207,218],hit:133,hold:141,holder:272,hook:50,host:217,hous:134,how:[14,24,40,50,73,87,127,149,152,158,169,212],howto:[176,619],html:[53,55,165,194],http:[207,217],human:149,idea:79,idmapp:[556,557,558,559],imag:[212,218],implement:[124,149,177,361],improv:[149,197],index:[0,126,194,197,209,210,616],infinit:149,influenc:149,info:[79,222,619],inform:[84,200,217],infrastructur:177,ingame_map_displai:[126,347,348,349],ingame_python:[126,282,283,284,285,286,287,288,289],ingo:68,inherit:[44,76,144,151],inherits_from:21,init:[137,139],initi:[0,1,152,178,192,205,210],initial_setup:495,inlin:[33,151],input:[24,30,33,71,78,141,143],inputfunc:[35,68,496],instal:[13,77,78,79,83,84,85,86,87,88,90,91,92,93,94,95,97,98,100,101,104,105,107,108,109,110,111,112,113,116,117,118,119,122,123,124,125,189,192,194,205,207,208,210,211,212,213,215,216,217,221,321,357,375,383,394],instanc:[24,50,70,144],instead:207,intal:89,integr:[3,4,5,6,98],interact:[2,16,17,56,143,214],interest:200,interfac:218,intern:128,internation:[0,67],internet:217,interpret:10,interrupt:125,intro:143,intro_menu:438,introduct:[2,8,30,94,130,144,194],invent:139,inventori:170,ipython:143,irc:[202,503],isol:210,issu:206,ital:128,item:[147,157],itself:140,jan:0,join:20,jumbotron:19,jupyt:2,just:[130,149],kei:[30,44,83,96,145],keyword:[102,139],kill:[149,222],kind:149,knave:161,know:[130,218],known:149,kwarg:172,languag:[30,67,113,389],larg:149,last:1,latest:[12,13,212],latin:1,launch:[28,30],launchcmd:365,layout:[0,58],learn:[2,130,200],leav:180,legaci:110,legend:[125,370],length:111,lesson:[142,148,158,164,166],let:[7,16,136,197,217],librari:[137,216],licens:[77,199],life:221,lift:57,like:[16,123,149,167,191],limit:[16,17,149,170],line:[7,28,132,136,143],link:[52,61,125,128,135,200],linux:[5,213,215,222],list:[4,7,128,136,139,140,141,149],list_nod:30,listen:183,literatur:200,live:[151,222],load:187,local:[128,186],localhost:215,locat:[145,173,215],locations_set:136,lock:[0,15,34,36,42,141,180,467,468,469],lockdown:217,lockfunc:[140,468],lockhandl:469,log:[20,21,138,143,189,197,210,217,218],logfil:10,logger:560,login:[35,65,92,107],logo:[55,193],longer:102,look:[34,134,149,167,191],lookup:[129,136],loop:139,loot:149,mac:[213,215,222],machin:217,magic:[9,157],mai:[0,149],mail:[13,104,126,327,328,329],main:[128,129,145,152],make:[11,13,21,94,127,133,134,139,140,143,149,161,168,169,171,172,179,180,184,187,191],manag:[15,42,53,229,256,464,471,480,497,540,557],manual:[149,209],map:[100,105,106,122,125,182,370],mapbuild:[126,350,351,352],mapper:182,march:0,mariadb:205,markup:[86,544],mass:170,master:[13,149,169],match:[9,141],matter:[144,149],max_slot:155,mccp:504,mean:149,mech:179,mechan:149,memori:15,memplot:524,menu:[21,30,83,107,120,152,184,303,475,551],menu_login:[126,290,291,292,293],merchant:184,merg:22,messag:[1,53,60,68,71,103,190],messagepath:68,method:[9,24,45,82,139,143,185],middlewar:601,migrat:[12,131,192],mind:13,minimap:106,mirror:[126,430,431],miss:174,mixin:[151,419,617],mob:[149,439],mock:161,mod:82,mod_ssl:207,mod_wsgi:207,mode:[16,17,46,69,131,217,222],model:[11,70,129,194,230,257,465,472,481,498,541,558],modif:169,modifi:[55,82,139,173,207,375],modul:[44,143,161,163,177,178],monitor:35,monitorhandl:[37,482],moral:161,more:[2,12,36,44,58,60,62,75,89,126,128,129,141,149,168,176],most:2,motiv:150,move:[1,140,155,180],msdp:71,msg:[38,68,133],mssp:505,mud:132,multi:[111,141,143,144,149,168],multidesc:[109,126,168,330,331,332],multipl:[15,82,84,149],multisess:[46,69,131],multivers:128,mush:[168,191],must:149,mutabl:[9,15],mux:74,mux_comms_cmd:[126,294,295,296],muxcommand:249,mxp:506,mygam:357,mysql:205,myst:128,nakku:111,name:[9,57,84,111,139,149,152,210],name_gener:[126,453,454,455],namegen:454,nattribut:15,naw:507,need:[103,130,132,141,149],nest:83,next:[168,196,204,210],nick:39,night:149,node:[30,125,152],non:[1,15,156,171,209,214],nop:206,note:[11,17,18,22,24,30,34,39,48,53,54,56,64,81,92,107,117,122,128,183,207,357],notebook:2,nov:0,npc:[79,118,149,156,183,184,185,191,411],number:186,numer:149,obfusc:113,obinson:111,obj:42,object:[1,9,15,21,36,40,45,46,48,52,60,84,106,131,134,135,136,139,141,143,144,145,147,149,157,170,180,185,187,304,412,440,470,471,472,473,580,618],obtain:194,oct:0,off:[1,149],offici:200,olc:44,old:176,older:0,onc:[101,146],one:[128,149,181],onli:[128,136,149,172,218,222],onlin:[13,217],oob:71,oop:144,open:184,oper:[56,103],oppos:161,option:[30,83,84,96,125,169,186,210,217,218,222],optionclass:561,optionhandl:562,other:[24,45,52,55,60,94,143,145,149,157,200,205,217,219],our:[72,83,103,133,139,143,147,149,180,194,197],ourselv:139,out:[50,64,133,145,149,169],outgo:68,output:[20,78,445],outputcommand:71,outputfunc:41,over:217,overal:177,overload:[50,75],overrid:[9,170],overview:[0,5,70,125,137,138,178,193],own:[14,24,35,40,53,64,94,111,119,143,149,196,212,217,394],page:[55,75,84,165,193,197],paramet:101,parent:[70,101,168,171],pars:[1,66,141,143,186],parser:33,part:[132,142,148,158,164,166],parti:[3,200],pass:143,patch:[127,161],path:[16,68,138],pathfind:125,paus:[24,103,172],pdb:7,penalti:149,percent:[119,394],perman:149,permiss:[36,42,48,59,101,169,192,196,588],perpetu:147,persist:[15,28,133,139,171,187],person:[134,149],philosophi:94,physic:149,picklefield:563,pictur:194,pip:[131,192,210],place:128,plai:[94,149],plan:[2,106,147,149],player:[149,151,156,168],playtim:82,plugin:53,point:2,polici:74,pop:136,port:[217,218],portal:[0,43,46,68,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520],portalsess:68,portalsessionhandl:[68,509],possibl:172,post:149,postgresql:205,practic:[186,218],prefix:24,prerequisit:[5,211],presenc:185,prevent:1,prioriti:[34,82],prison:149,privileg:149,pro:87,problem:72,process:[56,63,222],processor:[16,17,18,80,545],product:212,profil:[8,521,522,523,524,525,526,527,528],program:[7,130],project:[5,10],prompt:[30,173],pron:60,pronoun:571,prop:149,properti:[14,15,20,22,24,30,38,40,46,48,50,125,131,136],protfunc:[44,476],protocol:[0,64,71],prototyp:[0,44,125,366,474,475,476,477,478],proxi:[207,217,218],pseudo:114,pudb:7,pull:13,puppet:131,push:[13,134],put:[13,197,208],puzzl:[112,126,333,334,335],pvp:149,pycharm:10,python:[2,16,101,130,138,143,144,168,200],quell:[42,59,141],queri:[50,136,139],queryset:136,quest:[149,159,187,413],quick:[5,82,149],quiet:186,quirk:9,race:[149,151],rais:140,random:[111,114,152],random_string_gener:[126,456,457,458],random_t:414,rate:[119,394],react:185,read:[2,56,62,75,193],real:[16,111],reboot:222,recapcha:194,receiv:[60,64,71],recip:[89,321,322],recog:60,red:115,red_button:[126,432,433],refer:[1,128],referenc:60,regard:101,regist:[210,217],registri:114,regular:149,rel:[137,145],relat:[101,175,176],releas:147,relev:217,reli:16,reload:[1,9,144,207,222],remark:191,rememb:[9,128],remind:197,remot:[13,205,217],remov:[1,48,82,101,141,155],repair:149,repeat:[30,35,45],replac:141,repos:127,repositori:[2,13,131],reput:149,request:13,requir:[0,96,210,215],reset:[12,205,222],reshuffl:134,resourc:200,respawn:149,rest:[51,140,196],restart:[207,210],restrict:20,retriev:15,role:[149,169],roleplai:[60,113,149,169],roll:[91,161],roller:[91,161,169],rom:167,room:[1,40,95,103,106,122,135,147,149,160,169,181,182,190,305,415,441],root:589,router:125,rpg:[126,149,200,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394],rplanguag:389,rpsystem:[126,388,389,390,391],rss:[203,510],rst:128,rule:[22,111,149,161,177,178,416],run:[7,10,11,24,50,130,145,163,192,207,211,212,221],runner:11,safe:33,safeti:16,said:183,same:[30,102],samplebuff:376,save:[15,155,161,187],schema:12,score:191,screen:26,script:[45,81,101,131,135,180,286,306,479,480,481,482,483,484,485,486,581],scripthandl:483,search:[21,22,48,70,129,136,145,181,186,564],searching_cal:33,season:149,secret:194,section:619,secur:[101,207,218],see:[9,101,197,210],select:[1,120],self:186,send:[60,64,71,143],separ:[83,140,149],sept:0,serial:[196,590],server:[0,43,46,63,67,138,191,205,207,210,217,219,221,446,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,582],serversess:[68,530],serversessionhandl:68,servic:494,session:[1,46,68,131,169,531],sessionhandl:[46,532],set:[0,3,10,13,22,30,36,77,94,98,100,111,139,141,149,175,182,189,191,192,196,201,202,203,204,209,217,218,219,220],setpow:191,settings_default:537,settings_mixin:525,setup:[5,189,205,214,215,217,221,619],sever:[102,181,186],share:13,sharedmemorymodel:70,sheet:[7,152,169],shoot:179,shop:[162,184,417],shortcut:129,should:149,show:[152,166,182,191],side:53,sidebar:128,signal:[47,273,533],silversmith:111,similar:149,simpl:[7,8,30,36,45,83,111,149,165],simpledoor:[116,126,353,354,355],singl:[15,174],singleton:129,sit:140,site:[75,131],sitekei:194,skill:[89,149,150],slot:[95,155],slow:117,slow_exit:[126,356,357,358],soft:72,softcod:[72,168],solut:72,solv:149,some:[42,143,149,167,181],someth:[149,176],somewher:130,sort:149,sourc:[10,34,128],space:[19,139],spawn:[44,168],spawner:[44,478],special:[33,149],speed:175,spell:322,spread:127,spuriou:206,sql:136,sqlite3:205,ssh:[71,218,511],ssl:[217,512],stack:149,staff:149,stanc:60,standard:[0,74,175],start:[2,82,84,101,111,169,189,210,212,222],stat:198,state:[152,307],statement:133,statu:[149,222],status:149,step:[7,13,134,147,168,189,194,196,201,202,203,204,210,211],stop:[210,222],storabl:187,storag:[30,45,187],store:[1,15,30,44,149,152],strength:82,strikaco:0,string:[36,125,143,186,551],strip:186,structur:[101,128,151,163],studi:103,stuff:[130,134,191],style:[19,55,111,123],sub:83,subclass:40,subtop:34,succe:149,suggest:217,suit:11,summari:[57,129,133,141,144,145,151,155,161,163,213],superus:42,support:[2,71,100,206],suppress_ga:513,surround:7,swap:[50,152],sword:[141,322],syllabl:111,synchron:56,syntax:[2,128,168,222,545],syscommand:250,system:[23,24,34,36,58,60,77,79,89,92,101,104,107,112,113,121,124,147,149,176,177,178,191,197,251],tabl:[1,21,70,128,152,161],tag:[48,66,95,131,145,157,181,188,542,583],take:172,talk:118,talking_npc:[126,434,435,436],taskhandl:485,tb_basic:337,tb_equip:338,tb_item:339,tb_magic:340,tb_rang:341,teamciti:5,tech:147,technic:[34,77,79,94,115,433],teleport:125,telnet:[71,206,217,218,514],telnet_oob:515,telnet_ssl:516,templat:[5,30,96,194,196,197,551],templatetag:[594,595],tempmsg:38,temporari:30,term:144,termux:211,test:[8,11,95,130,143,151,155,157,161,163,191,252,262,265,268,274,277,281,287,293,296,298,308,313,316,319,323,326,329,332,335,342,346,349,352,355,358,360,367,377,381,384,387,391,393,400,418,419,420,421,422,423,424,425,426,427,428,436,442,447,452,455,458,460,517,527,559,572,591,602,608],test_charact:420,test_chargen:421,test_combat:422,test_command:423,test_dungeon:424,test_equip:425,test_queri:526,test_quest:426,test_resourc:565,test_rul:427,test_util:428,text2html:[53,566],text:[21,30,35,63,66,73,128,132,143,193],than:149,thei:149,them:149,theori:186,thi:[150,172,197],thing:[9,128,132,135,139,144,145,149,155,167,168],third:[3,200],those:149,thror:111,throttl:534,through:[7,212],tick:[82,375],ticker:[49,131],tickerhandl:[49,486],tie:169,time:[21,24,45,72,95,101,149,172,175],time_format:21,timer:[8,45],timetrac:528,tip:13,titl:[52,55],to_byt:21,to_str:21,togeth:[152,187,197,208],tool:[4,21,25,57,200],traceback:2,track:[13,149],train:180,trait:[119,126,392,393,394],traithandl:[119,394],traitproperti:[119,394],transit:125,translat:[0,67],travi:6,treat:16,tree:[120,149,322],tree_select:[126,459,460,461],trick:13,trigger:[82,375],troubleshoot:[13,211,215],ttype:518,tupl:[139,141],turn:[1,9,121,178],turnbattl:[126,336,337,338,339,340,341,342],tutori:[2,101,102,103,122,126,132,142,146,147,148,149,158,164,166,176,178,191,195,197,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,440,441,442,619],tutorial_world:[126,437,438,439,440,441,442],tutorialmirror:108,tweet:[198,204],twist:131,twitter:204,two:105,type:[14,15,40,119,157,394],typeclass:[0,9,50,76,101,129,131,133,138,139,140,145,168,288,357,538,539,540,541,542],under:13,understand:188,ungm:169,unimpl:223,uninstal:[77,146],unit:[11,151,155],univers:185,unix:123,unixcommand:[126,297,298,299],unloggedin:253,unmonitor:35,unquel:141,unrepeat:35,updat:[1,12,13,50,139],upgrad:[12,216],upload:218,url:[128,165,192,194,196,197,584,592,596,604,609],usag:[16,17,28,51,52,79,80,83,84,85,89,90,91,96,97,98,99,105,111,112,113,114,116,124,125,205,361,379,383,389],use:[9,20,49,130,149],used:[1,24,322],useful:[24,94],user:[13,24,55,59,67,167,168,197,218],using:[7,103,139,143,145],utf:100,util:[0,10,19,21,24,25,33,126,129,163,172,289,309,368,429,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,466,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,585,597,598,599,600,601,602],valid:[36,155,535],validate_slot_usag:155,validatorfunc:568,valu:[30,44,149],vanilla:149,variabl:[7,101],variant:140,verb_conjug:[569,570,571,572],verbatim:128,version:[13,77,128],versu:56,vhost:207,via:149,view:[20,75,82,165,194,195,196,197,217,593,605,610,611,612,613,614,615,616,617,618],viewpoint:60,viewset:196,virtualenv:[131,213,215],vocabulari:101,voic:103,volum:149,vowel:111,wai:[30,125,141,143],want:[130,148,149,176,212,218],warn:[101,128],weapon:[149,155,157],weather:[149,190],web:[0,9,25,52,53,55,63,71,75,138,165,176,194,195,217,218,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618],webclient:[0,54,519,603,604,605],webclient_ajax:520,webclient_gui:53,webpag:55,webserv:[54,207,218,536],websit:[55,75,192,193,606,607,608,609,610,611,612,613,614,615,616,617,618],websocket:207,weight:[149,170],werewolf:136,what:[4,15,58,130,142,144,145,148,149,150,152,164,183,186,196,212],when:[1,9,49],where:[130,137,150],whisper:113,whitespac:144,who:[24,133],why:[139,170,174],wiki:192,wilder:[124,126,359,360,361],willing:130,window:[67,189,213,215],wizard:209,word:[111,127],work:[13,24,50,77,101,125,130,149,152,172,186,197,212],workaround:206,workflow:3,world:[122,134,138,143,146,147,149,166],write:[11,53,64,128],xterm256:[62,188],xymap:[125,369],xymap_legend:370,xyzexit:125,xyzgrid:[125,126,181,362,363,364,365,366,367,368,369,370,371,372],xyzroom:[125,372],yield:[30,172],you:[2,130,132,140,141,146,149,218],your:[2,9,11,12,13,14,24,35,40,53,59,64,70,72,94,111,119,133,134,138,149,150,152,157,163,181,185,192,194,196,212,215,216,217,218,394],yourself:[134,147],yrinea:111,zcoord:125,zone:76}})
\ No newline at end of file
+Search.setIndex({docnames:["Coding/Changelog","Coding/Coding-FAQ","Coding/Coding-Overview","Coding/Continuous-Integration","Coding/Continuous-Integration-TeamCity","Coding/Continuous-Integration-Travis","Coding/Debugging","Coding/Evennia-Code-Style","Coding/Profiling","Coding/Quirks","Coding/Setting-up-PyCharm","Coding/Unit-Testing","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/Components-Overview","Components/Connection-Screen","Components/Default-Commands","Components/EvEditor","Components/EvForm","Components/EvMenu","Components/EvMore","Components/EvTable","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/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/Change-Messages-Per-Receiver","Concepts/Clickable-Links","Concepts/Colors","Concepts/Concepts-Overview","Concepts/Custom-Protocols","Concepts/Guest-Logins","Concepts/Inline-Tags-and-Functions","Concepts/Internationalization","Concepts/Messagepath","Concepts/Multisession-modes","Concepts/New-Models","Concepts/OOB","Concepts/Soft-Code","Concepts/Text-Encodings","Concepts/Using-MUX-as-a-Standard","Concepts/Web-Features","Concepts/Zones","Contribs/Contrib-AWSStorage","Contribs/Contrib-Auditing","Contribs/Contrib-Barter","Contribs/Contrib-Batchprocessor","Contribs/Contrib-Bodyfunctions","Contribs/Contrib-Buffs","Contribs/Contrib-Building-Menu","Contribs/Contrib-Character-Creator","Contribs/Contrib-Clothing","Contribs/Contrib-Color-Markups","Contribs/Contrib-Components","Contribs/Contrib-Cooldowns","Contribs/Contrib-Crafting","Contribs/Contrib-Custom-Gametime","Contribs/Contrib-Dice","Contribs/Contrib-Email-Login","Contribs/Contrib-Evadventure","Contribs/Contrib-Evscaperoom","Contribs/Contrib-Extended-Room","Contribs/Contrib-Fieldfill","Contribs/Contrib-Gendersub","Contribs/Contrib-Git-Integration","Contribs/Contrib-Health-Bar","Contribs/Contrib-Ingame-Map-Display","Contribs/Contrib-Ingame-Python","Contribs/Contrib-Ingame-Python-Tutorial-Dialogue","Contribs/Contrib-Ingame-Python-Tutorial-Elevator","Contribs/Contrib-Mail","Contribs/Contrib-Mapbuilder","Contribs/Contrib-Mapbuilder-Tutorial","Contribs/Contrib-Menu-Login","Contribs/Contrib-Mirror","Contribs/Contrib-Multidescer","Contribs/Contrib-Mux-Comms-Cmds","Contribs/Contrib-Name-Generator","Contribs/Contrib-Puzzles","Contribs/Contrib-RPSystem","Contribs/Contrib-Random-String-Generator","Contribs/Contrib-Red-Button","Contribs/Contrib-Simpledoor","Contribs/Contrib-Slow-Exit","Contribs/Contrib-Talking-Npc","Contribs/Contrib-Traits","Contribs/Contrib-Tree-Select","Contribs/Contrib-Turnbattle","Contribs/Contrib-Tutorial-World","Contribs/Contrib-Unixcommand","Contribs/Contrib-Wilderness","Contribs/Contrib-XYZGrid","Contribs/Contribs-Guidelines","Contribs/Contribs-Overview","Contributing","Contributing-Docs","Evennia-API","Evennia-Introduction","Glossary","Howtos/Beginner-Tutorial/Beginner-Tutorial-Overview","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Building-Quickstart","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Creating-Things","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Django-queries","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Evennia-Library-Overview","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Gamedir-Overview","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Learning-Typeclasses","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Making-A-Sittable-Object","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-More-on-Commands","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Part1-Overview","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Python-basic-introduction","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Python-classes-and-objects","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Searching-Things","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Tutorial-World","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Game-Planning","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Part2-Overview","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Planning-The-Tutorial-Game","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Planning-Where-Do-I-Begin","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Characters","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Chargen","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Commands","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Dungeon","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Equipment","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-NPCs","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Objects","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Part3-Overview","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Quests","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Rooms","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Rules","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Shops","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Utilities","Howtos/Beginner-Tutorial/Part4/Beginner-Tutorial-Part4-Overview","Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page","Howtos/Beginner-Tutorial/Part5/Beginner-Tutorial-Part5-Overview","Howtos/Evennia-for-Diku-Users","Howtos/Evennia-for-MUSH-Users","Howtos/Evennia-for-roleplaying-sessions","Howtos/Howto-Add-Object-Weight","Howtos/Howto-Command-Cooldown","Howtos/Howto-Command-Duration","Howtos/Howto-Command-Prompt","Howtos/Howto-Default-Exit-Errors","Howtos/Howto-Game-Time","Howtos/Howtos-Overview","Howtos/Implementing-a-game-rule-system","Howtos/Turn-based-Combat-System","Howtos/Tutorial-Building-a-Mech","Howtos/Tutorial-Building-a-Train","Howtos/Tutorial-Coordinates","Howtos/Tutorial-Displaying-Room-Map","Howtos/Tutorial-NPC-Listening","Howtos/Tutorial-NPC-Merchants","Howtos/Tutorial-NPC-Reacting","Howtos/Tutorial-Parsing-Commands","Howtos/Tutorial-Persistent-Handler","Howtos/Tutorial-Understanding-Color-Tags","Howtos/Tutorial-Using-Arxcode","Howtos/Tutorial-Weather-Effects","Howtos/Tutorial-for-basic-MUSH-like-game","Howtos/Web-Add-a-wiki","Howtos/Web-Changing-Webpage","Howtos/Web-Character-Generation","Howtos/Web-Character-View-Tutorial","Howtos/Web-Extending-the-REST-API","Howtos/Web-Help-System-Tutorial","Howtos/Web-Tweeting-Game-Stats","Licensing","Links","Setup/Channels-to-Grapevine","Setup/Channels-to-IRC","Setup/Channels-to-RSS","Setup/Channels-to-Twitter","Setup/Choosing-a-Database","Setup/Client-Support-Grid","Setup/Config-Apache-Proxy","Setup/Config-HAProxy","Setup/Evennia-Game-Index","Setup/Installation","Setup/Installation-Android","Setup/Installation-Docker","Setup/Installation-Git","Setup/Installation-Non-Interactive","Setup/Installation-Troubleshooting","Setup/Installation-Upgrade","Setup/Online-Setup","Setup/Running-Evennia","Setup/Security-Practices","Setup/Settings","Setup/Settings-Default","Setup/Setup-Overview","Setup/Updating-Evennia","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.base_systems","api/evennia.contrib.base_systems.awsstorage","api/evennia.contrib.base_systems.awsstorage.aws_s3_cdn","api/evennia.contrib.base_systems.awsstorage.tests","api/evennia.contrib.base_systems.building_menu","api/evennia.contrib.base_systems.building_menu.building_menu","api/evennia.contrib.base_systems.building_menu.tests","api/evennia.contrib.base_systems.color_markups","api/evennia.contrib.base_systems.color_markups.color_markups","api/evennia.contrib.base_systems.color_markups.tests","api/evennia.contrib.base_systems.components","api/evennia.contrib.base_systems.components.component","api/evennia.contrib.base_systems.components.dbfield","api/evennia.contrib.base_systems.components.holder","api/evennia.contrib.base_systems.components.signals","api/evennia.contrib.base_systems.components.tests","api/evennia.contrib.base_systems.custom_gametime","api/evennia.contrib.base_systems.custom_gametime.custom_gametime","api/evennia.contrib.base_systems.custom_gametime.tests","api/evennia.contrib.base_systems.email_login","api/evennia.contrib.base_systems.email_login.connection_screens","api/evennia.contrib.base_systems.email_login.email_login","api/evennia.contrib.base_systems.email_login.tests","api/evennia.contrib.base_systems.ingame_python","api/evennia.contrib.base_systems.ingame_python.callbackhandler","api/evennia.contrib.base_systems.ingame_python.commands","api/evennia.contrib.base_systems.ingame_python.eventfuncs","api/evennia.contrib.base_systems.ingame_python.scripts","api/evennia.contrib.base_systems.ingame_python.tests","api/evennia.contrib.base_systems.ingame_python.typeclasses","api/evennia.contrib.base_systems.ingame_python.utils","api/evennia.contrib.base_systems.menu_login","api/evennia.contrib.base_systems.menu_login.connection_screens","api/evennia.contrib.base_systems.menu_login.menu_login","api/evennia.contrib.base_systems.menu_login.tests","api/evennia.contrib.base_systems.mux_comms_cmds","api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds","api/evennia.contrib.base_systems.mux_comms_cmds.tests","api/evennia.contrib.base_systems.unixcommand","api/evennia.contrib.base_systems.unixcommand.tests","api/evennia.contrib.base_systems.unixcommand.unixcommand","api/evennia.contrib.full_systems","api/evennia.contrib.full_systems.evscaperoom","api/evennia.contrib.full_systems.evscaperoom.commands","api/evennia.contrib.full_systems.evscaperoom.menu","api/evennia.contrib.full_systems.evscaperoom.objects","api/evennia.contrib.full_systems.evscaperoom.room","api/evennia.contrib.full_systems.evscaperoom.scripts","api/evennia.contrib.full_systems.evscaperoom.state","api/evennia.contrib.full_systems.evscaperoom.tests","api/evennia.contrib.full_systems.evscaperoom.utils","api/evennia.contrib.game_systems","api/evennia.contrib.game_systems.barter","api/evennia.contrib.game_systems.barter.barter","api/evennia.contrib.game_systems.barter.tests","api/evennia.contrib.game_systems.clothing","api/evennia.contrib.game_systems.clothing.clothing","api/evennia.contrib.game_systems.clothing.tests","api/evennia.contrib.game_systems.cooldowns","api/evennia.contrib.game_systems.cooldowns.cooldowns","api/evennia.contrib.game_systems.cooldowns.tests","api/evennia.contrib.game_systems.crafting","api/evennia.contrib.game_systems.crafting.crafting","api/evennia.contrib.game_systems.crafting.example_recipes","api/evennia.contrib.game_systems.crafting.tests","api/evennia.contrib.game_systems.gendersub","api/evennia.contrib.game_systems.gendersub.gendersub","api/evennia.contrib.game_systems.gendersub.tests","api/evennia.contrib.game_systems.mail","api/evennia.contrib.game_systems.mail.mail","api/evennia.contrib.game_systems.mail.tests","api/evennia.contrib.game_systems.multidescer","api/evennia.contrib.game_systems.multidescer.multidescer","api/evennia.contrib.game_systems.multidescer.tests","api/evennia.contrib.game_systems.puzzles","api/evennia.contrib.game_systems.puzzles.puzzles","api/evennia.contrib.game_systems.puzzles.tests","api/evennia.contrib.game_systems.turnbattle","api/evennia.contrib.game_systems.turnbattle.tb_basic","api/evennia.contrib.game_systems.turnbattle.tb_equip","api/evennia.contrib.game_systems.turnbattle.tb_items","api/evennia.contrib.game_systems.turnbattle.tb_magic","api/evennia.contrib.game_systems.turnbattle.tb_range","api/evennia.contrib.game_systems.turnbattle.tests","api/evennia.contrib.grid","api/evennia.contrib.grid.extended_room","api/evennia.contrib.grid.extended_room.extended_room","api/evennia.contrib.grid.extended_room.tests","api/evennia.contrib.grid.ingame_map_display","api/evennia.contrib.grid.ingame_map_display.ingame_map_display","api/evennia.contrib.grid.ingame_map_display.tests","api/evennia.contrib.grid.mapbuilder","api/evennia.contrib.grid.mapbuilder.mapbuilder","api/evennia.contrib.grid.mapbuilder.tests","api/evennia.contrib.grid.simpledoor","api/evennia.contrib.grid.simpledoor.simpledoor","api/evennia.contrib.grid.simpledoor.tests","api/evennia.contrib.grid.slow_exit","api/evennia.contrib.grid.slow_exit.slow_exit","api/evennia.contrib.grid.slow_exit.tests","api/evennia.contrib.grid.wilderness","api/evennia.contrib.grid.wilderness.tests","api/evennia.contrib.grid.wilderness.wilderness","api/evennia.contrib.grid.xyzgrid","api/evennia.contrib.grid.xyzgrid.commands","api/evennia.contrib.grid.xyzgrid.example","api/evennia.contrib.grid.xyzgrid.launchcmd","api/evennia.contrib.grid.xyzgrid.prototypes","api/evennia.contrib.grid.xyzgrid.tests","api/evennia.contrib.grid.xyzgrid.utils","api/evennia.contrib.grid.xyzgrid.xymap","api/evennia.contrib.grid.xyzgrid.xymap_legend","api/evennia.contrib.grid.xyzgrid.xyzgrid","api/evennia.contrib.grid.xyzgrid.xyzroom","api/evennia.contrib.rpg","api/evennia.contrib.rpg.buffs","api/evennia.contrib.rpg.buffs.buff","api/evennia.contrib.rpg.buffs.samplebuffs","api/evennia.contrib.rpg.buffs.tests","api/evennia.contrib.rpg.character_creator","api/evennia.contrib.rpg.character_creator.character_creator","api/evennia.contrib.rpg.character_creator.example_menu","api/evennia.contrib.rpg.character_creator.tests","api/evennia.contrib.rpg.dice","api/evennia.contrib.rpg.dice.dice","api/evennia.contrib.rpg.dice.tests","api/evennia.contrib.rpg.health_bar","api/evennia.contrib.rpg.health_bar.health_bar","api/evennia.contrib.rpg.health_bar.tests","api/evennia.contrib.rpg.rpsystem","api/evennia.contrib.rpg.rpsystem.rplanguage","api/evennia.contrib.rpg.rpsystem.rpsystem","api/evennia.contrib.rpg.rpsystem.tests","api/evennia.contrib.rpg.traits","api/evennia.contrib.rpg.traits.tests","api/evennia.contrib.rpg.traits.traits","api/evennia.contrib.tutorials","api/evennia.contrib.tutorials.batchprocessor","api/evennia.contrib.tutorials.batchprocessor.example_batch_code","api/evennia.contrib.tutorials.bodyfunctions","api/evennia.contrib.tutorials.bodyfunctions.bodyfunctions","api/evennia.contrib.tutorials.bodyfunctions.tests","api/evennia.contrib.tutorials.evadventure","api/evennia.contrib.tutorials.evadventure.build_techdemo","api/evennia.contrib.tutorials.evadventure.build_world","api/evennia.contrib.tutorials.evadventure.characters","api/evennia.contrib.tutorials.evadventure.chargen","api/evennia.contrib.tutorials.evadventure.combat_turnbased","api/evennia.contrib.tutorials.evadventure.commands","api/evennia.contrib.tutorials.evadventure.dungeon","api/evennia.contrib.tutorials.evadventure.enums","api/evennia.contrib.tutorials.evadventure.equipment","api/evennia.contrib.tutorials.evadventure.npcs","api/evennia.contrib.tutorials.evadventure.objects","api/evennia.contrib.tutorials.evadventure.quests","api/evennia.contrib.tutorials.evadventure.random_tables","api/evennia.contrib.tutorials.evadventure.rooms","api/evennia.contrib.tutorials.evadventure.rules","api/evennia.contrib.tutorials.evadventure.shops","api/evennia.contrib.tutorials.evadventure.tests","api/evennia.contrib.tutorials.evadventure.tests.mixins","api/evennia.contrib.tutorials.evadventure.tests.test_characters","api/evennia.contrib.tutorials.evadventure.tests.test_chargen","api/evennia.contrib.tutorials.evadventure.tests.test_combat","api/evennia.contrib.tutorials.evadventure.tests.test_commands","api/evennia.contrib.tutorials.evadventure.tests.test_dungeon","api/evennia.contrib.tutorials.evadventure.tests.test_equipment","api/evennia.contrib.tutorials.evadventure.tests.test_quests","api/evennia.contrib.tutorials.evadventure.tests.test_rules","api/evennia.contrib.tutorials.evadventure.tests.test_utils","api/evennia.contrib.tutorials.evadventure.utils","api/evennia.contrib.tutorials.mirror","api/evennia.contrib.tutorials.mirror.mirror","api/evennia.contrib.tutorials.red_button","api/evennia.contrib.tutorials.red_button.red_button","api/evennia.contrib.tutorials.talking_npc","api/evennia.contrib.tutorials.talking_npc.talking_npc","api/evennia.contrib.tutorials.talking_npc.tests","api/evennia.contrib.tutorials.tutorial_world","api/evennia.contrib.tutorials.tutorial_world.intro_menu","api/evennia.contrib.tutorials.tutorial_world.mob","api/evennia.contrib.tutorials.tutorial_world.objects","api/evennia.contrib.tutorials.tutorial_world.rooms","api/evennia.contrib.tutorials.tutorial_world.tests","api/evennia.contrib.utils","api/evennia.contrib.utils.auditing","api/evennia.contrib.utils.auditing.outputs","api/evennia.contrib.utils.auditing.server","api/evennia.contrib.utils.auditing.tests","api/evennia.contrib.utils.fieldfill","api/evennia.contrib.utils.fieldfill.fieldfill","api/evennia.contrib.utils.git_integration","api/evennia.contrib.utils.git_integration.git_integration","api/evennia.contrib.utils.git_integration.tests","api/evennia.contrib.utils.name_generator","api/evennia.contrib.utils.name_generator.namegen","api/evennia.contrib.utils.name_generator.tests","api/evennia.contrib.utils.random_string_generator","api/evennia.contrib.utils.random_string_generator.random_string_generator","api/evennia.contrib.utils.random_string_generator.tests","api/evennia.contrib.utils.tree_select","api/evennia.contrib.utils.tree_select.tests","api/evennia.contrib.utils.tree_select.tree_select","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.pronouns","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"],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/Changelog.md","Coding/Coding-FAQ.md","Coding/Coding-Overview.md","Coding/Continuous-Integration.md","Coding/Continuous-Integration-TeamCity.md","Coding/Continuous-Integration-Travis.md","Coding/Debugging.md","Coding/Evennia-Code-Style.md","Coding/Profiling.md","Coding/Quirks.md","Coding/Setting-up-PyCharm.md","Coding/Unit-Testing.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/Components-Overview.md","Components/Connection-Screen.md","Components/Default-Commands.md","Components/EvEditor.md","Components/EvForm.md","Components/EvMenu.md","Components/EvMore.md","Components/EvTable.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/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/Change-Messages-Per-Receiver.md","Concepts/Clickable-Links.md","Concepts/Colors.md","Concepts/Concepts-Overview.md","Concepts/Custom-Protocols.md","Concepts/Guest-Logins.md","Concepts/Inline-Tags-and-Functions.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/Using-MUX-as-a-Standard.md","Concepts/Web-Features.md","Concepts/Zones.md","Contribs/Contrib-AWSStorage.md","Contribs/Contrib-Auditing.md","Contribs/Contrib-Barter.md","Contribs/Contrib-Batchprocessor.md","Contribs/Contrib-Bodyfunctions.md","Contribs/Contrib-Buffs.md","Contribs/Contrib-Building-Menu.md","Contribs/Contrib-Character-Creator.md","Contribs/Contrib-Clothing.md","Contribs/Contrib-Color-Markups.md","Contribs/Contrib-Components.md","Contribs/Contrib-Cooldowns.md","Contribs/Contrib-Crafting.md","Contribs/Contrib-Custom-Gametime.md","Contribs/Contrib-Dice.md","Contribs/Contrib-Email-Login.md","Contribs/Contrib-Evadventure.md","Contribs/Contrib-Evscaperoom.md","Contribs/Contrib-Extended-Room.md","Contribs/Contrib-Fieldfill.md","Contribs/Contrib-Gendersub.md","Contribs/Contrib-Git-Integration.md","Contribs/Contrib-Health-Bar.md","Contribs/Contrib-Ingame-Map-Display.md","Contribs/Contrib-Ingame-Python.md","Contribs/Contrib-Ingame-Python-Tutorial-Dialogue.md","Contribs/Contrib-Ingame-Python-Tutorial-Elevator.md","Contribs/Contrib-Mail.md","Contribs/Contrib-Mapbuilder.md","Contribs/Contrib-Mapbuilder-Tutorial.md","Contribs/Contrib-Menu-Login.md","Contribs/Contrib-Mirror.md","Contribs/Contrib-Multidescer.md","Contribs/Contrib-Mux-Comms-Cmds.md","Contribs/Contrib-Name-Generator.md","Contribs/Contrib-Puzzles.md","Contribs/Contrib-RPSystem.md","Contribs/Contrib-Random-String-Generator.md","Contribs/Contrib-Red-Button.md","Contribs/Contrib-Simpledoor.md","Contribs/Contrib-Slow-Exit.md","Contribs/Contrib-Talking-Npc.md","Contribs/Contrib-Traits.md","Contribs/Contrib-Tree-Select.md","Contribs/Contrib-Turnbattle.md","Contribs/Contrib-Tutorial-World.md","Contribs/Contrib-Unixcommand.md","Contribs/Contrib-Wilderness.md","Contribs/Contrib-XYZGrid.md","Contribs/Contribs-Guidelines.md","Contribs/Contribs-Overview.md","Contributing.md","Contributing-Docs.md","Evennia-API.md","Evennia-Introduction.md","Glossary.md","Howtos/Beginner-Tutorial/Beginner-Tutorial-Overview.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Adding-Commands.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Building-Quickstart.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Creating-Things.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Django-queries.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Evennia-Library-Overview.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Gamedir-Overview.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Learning-Typeclasses.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Making-A-Sittable-Object.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-More-on-Commands.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Part1-Overview.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Python-basic-introduction.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Python-classes-and-objects.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Searching-Things.md","Howtos/Beginner-Tutorial/Part1/Beginner-Tutorial-Tutorial-World.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Game-Planning.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Part2-Overview.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Planning-The-Tutorial-Game.md","Howtos/Beginner-Tutorial/Part2/Beginner-Tutorial-Planning-Where-Do-I-Begin.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Characters.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Chargen.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Commands.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Dungeon.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Equipment.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-NPCs.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Objects.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Part3-Overview.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Quests.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Rooms.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Rules.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Shops.md","Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Utilities.md","Howtos/Beginner-Tutorial/Part4/Beginner-Tutorial-Part4-Overview.md","Howtos/Beginner-Tutorial/Part5/Add-a-simple-new-web-page.md","Howtos/Beginner-Tutorial/Part5/Beginner-Tutorial-Part5-Overview.md","Howtos/Evennia-for-Diku-Users.md","Howtos/Evennia-for-MUSH-Users.md","Howtos/Evennia-for-roleplaying-sessions.md","Howtos/Howto-Add-Object-Weight.md","Howtos/Howto-Command-Cooldown.md","Howtos/Howto-Command-Duration.md","Howtos/Howto-Command-Prompt.md","Howtos/Howto-Default-Exit-Errors.md","Howtos/Howto-Game-Time.md","Howtos/Howtos-Overview.md","Howtos/Implementing-a-game-rule-system.md","Howtos/Turn-based-Combat-System.md","Howtos/Tutorial-Building-a-Mech.md","Howtos/Tutorial-Building-a-Train.md","Howtos/Tutorial-Coordinates.md","Howtos/Tutorial-Displaying-Room-Map.md","Howtos/Tutorial-NPC-Listening.md","Howtos/Tutorial-NPC-Merchants.md","Howtos/Tutorial-NPC-Reacting.md","Howtos/Tutorial-Parsing-Commands.md","Howtos/Tutorial-Persistent-Handler.md","Howtos/Tutorial-Understanding-Color-Tags.md","Howtos/Tutorial-Using-Arxcode.md","Howtos/Tutorial-Weather-Effects.md","Howtos/Tutorial-for-basic-MUSH-like-game.md","Howtos/Web-Add-a-wiki.md","Howtos/Web-Changing-Webpage.md","Howtos/Web-Character-Generation.md","Howtos/Web-Character-View-Tutorial.md","Howtos/Web-Extending-the-REST-API.md","Howtos/Web-Help-System-Tutorial.md","Howtos/Web-Tweeting-Game-Stats.md","Licensing.md","Links.md","Setup/Channels-to-Grapevine.md","Setup/Channels-to-IRC.md","Setup/Channels-to-RSS.md","Setup/Channels-to-Twitter.md","Setup/Choosing-a-Database.md","Setup/Client-Support-Grid.md","Setup/Config-Apache-Proxy.md","Setup/Config-HAProxy.md","Setup/Evennia-Game-Index.md","Setup/Installation.md","Setup/Installation-Android.md","Setup/Installation-Docker.md","Setup/Installation-Git.md","Setup/Installation-Non-Interactive.md","Setup/Installation-Troubleshooting.md","Setup/Installation-Upgrade.md","Setup/Online-Setup.md","Setup/Running-Evennia.md","Setup/Security-Practices.md","Setup/Settings.md","Setup/Settings-Default.md","Setup/Setup-Overview.md","Setup/Updating-Evennia.md","Unimplemented.md","api/evennia.md","api/evennia-api.md","api/evennia.accounts.md","api/evennia.accounts.accounts.md","api/evennia.accounts.bots.md","api/evennia.accounts.manager.md","api/evennia.accounts.models.md","api/evennia.commands.md","api/evennia.commands.cmdhandler.md","api/evennia.commands.cmdparser.md","api/evennia.commands.cmdset.md","api/evennia.commands.cmdsethandler.md","api/evennia.commands.command.md","api/evennia.commands.default.md","api/evennia.commands.default.account.md","api/evennia.commands.default.admin.md","api/evennia.commands.default.batchprocess.md","api/evennia.commands.default.building.md","api/evennia.commands.default.cmdset_account.md","api/evennia.commands.default.cmdset_character.md","api/evennia.commands.default.cmdset_session.md","api/evennia.commands.default.cmdset_unloggedin.md","api/evennia.commands.default.comms.md","api/evennia.commands.default.general.md","api/evennia.commands.default.help.md","api/evennia.commands.default.muxcommand.md","api/evennia.commands.default.syscommands.md","api/evennia.commands.default.system.md","api/evennia.commands.default.tests.md","api/evennia.commands.default.unloggedin.md","api/evennia.comms.md","api/evennia.comms.comms.md","api/evennia.comms.managers.md","api/evennia.comms.models.md","api/evennia.contrib.md","api/evennia.contrib.base_systems.md","api/evennia.contrib.base_systems.awsstorage.md","api/evennia.contrib.base_systems.awsstorage.aws_s3_cdn.md","api/evennia.contrib.base_systems.awsstorage.tests.md","api/evennia.contrib.base_systems.building_menu.md","api/evennia.contrib.base_systems.building_menu.building_menu.md","api/evennia.contrib.base_systems.building_menu.tests.md","api/evennia.contrib.base_systems.color_markups.md","api/evennia.contrib.base_systems.color_markups.color_markups.md","api/evennia.contrib.base_systems.color_markups.tests.md","api/evennia.contrib.base_systems.components.md","api/evennia.contrib.base_systems.components.component.md","api/evennia.contrib.base_systems.components.dbfield.md","api/evennia.contrib.base_systems.components.holder.md","api/evennia.contrib.base_systems.components.signals.md","api/evennia.contrib.base_systems.components.tests.md","api/evennia.contrib.base_systems.custom_gametime.md","api/evennia.contrib.base_systems.custom_gametime.custom_gametime.md","api/evennia.contrib.base_systems.custom_gametime.tests.md","api/evennia.contrib.base_systems.email_login.md","api/evennia.contrib.base_systems.email_login.connection_screens.md","api/evennia.contrib.base_systems.email_login.email_login.md","api/evennia.contrib.base_systems.email_login.tests.md","api/evennia.contrib.base_systems.ingame_python.md","api/evennia.contrib.base_systems.ingame_python.callbackhandler.md","api/evennia.contrib.base_systems.ingame_python.commands.md","api/evennia.contrib.base_systems.ingame_python.eventfuncs.md","api/evennia.contrib.base_systems.ingame_python.scripts.md","api/evennia.contrib.base_systems.ingame_python.tests.md","api/evennia.contrib.base_systems.ingame_python.typeclasses.md","api/evennia.contrib.base_systems.ingame_python.utils.md","api/evennia.contrib.base_systems.menu_login.md","api/evennia.contrib.base_systems.menu_login.connection_screens.md","api/evennia.contrib.base_systems.menu_login.menu_login.md","api/evennia.contrib.base_systems.menu_login.tests.md","api/evennia.contrib.base_systems.mux_comms_cmds.md","api/evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.md","api/evennia.contrib.base_systems.mux_comms_cmds.tests.md","api/evennia.contrib.base_systems.unixcommand.md","api/evennia.contrib.base_systems.unixcommand.tests.md","api/evennia.contrib.base_systems.unixcommand.unixcommand.md","api/evennia.contrib.full_systems.md","api/evennia.contrib.full_systems.evscaperoom.md","api/evennia.contrib.full_systems.evscaperoom.commands.md","api/evennia.contrib.full_systems.evscaperoom.menu.md","api/evennia.contrib.full_systems.evscaperoom.objects.md","api/evennia.contrib.full_systems.evscaperoom.room.md","api/evennia.contrib.full_systems.evscaperoom.scripts.md","api/evennia.contrib.full_systems.evscaperoom.state.md","api/evennia.contrib.full_systems.evscaperoom.tests.md","api/evennia.contrib.full_systems.evscaperoom.utils.md","api/evennia.contrib.game_systems.md","api/evennia.contrib.game_systems.barter.md","api/evennia.contrib.game_systems.barter.barter.md","api/evennia.contrib.game_systems.barter.tests.md","api/evennia.contrib.game_systems.clothing.md","api/evennia.contrib.game_systems.clothing.clothing.md","api/evennia.contrib.game_systems.clothing.tests.md","api/evennia.contrib.game_systems.cooldowns.md","api/evennia.contrib.game_systems.cooldowns.cooldowns.md","api/evennia.contrib.game_systems.cooldowns.tests.md","api/evennia.contrib.game_systems.crafting.md","api/evennia.contrib.game_systems.crafting.crafting.md","api/evennia.contrib.game_systems.crafting.example_recipes.md","api/evennia.contrib.game_systems.crafting.tests.md","api/evennia.contrib.game_systems.gendersub.md","api/evennia.contrib.game_systems.gendersub.gendersub.md","api/evennia.contrib.game_systems.gendersub.tests.md","api/evennia.contrib.game_systems.mail.md","api/evennia.contrib.game_systems.mail.mail.md","api/evennia.contrib.game_systems.mail.tests.md","api/evennia.contrib.game_systems.multidescer.md","api/evennia.contrib.game_systems.multidescer.multidescer.md","api/evennia.contrib.game_systems.multidescer.tests.md","api/evennia.contrib.game_systems.puzzles.md","api/evennia.contrib.game_systems.puzzles.puzzles.md","api/evennia.contrib.game_systems.puzzles.tests.md","api/evennia.contrib.game_systems.turnbattle.md","api/evennia.contrib.game_systems.turnbattle.tb_basic.md","api/evennia.contrib.game_systems.turnbattle.tb_equip.md","api/evennia.contrib.game_systems.turnbattle.tb_items.md","api/evennia.contrib.game_systems.turnbattle.tb_magic.md","api/evennia.contrib.game_systems.turnbattle.tb_range.md","api/evennia.contrib.game_systems.turnbattle.tests.md","api/evennia.contrib.grid.md","api/evennia.contrib.grid.extended_room.md","api/evennia.contrib.grid.extended_room.extended_room.md","api/evennia.contrib.grid.extended_room.tests.md","api/evennia.contrib.grid.ingame_map_display.md","api/evennia.contrib.grid.ingame_map_display.ingame_map_display.md","api/evennia.contrib.grid.ingame_map_display.tests.md","api/evennia.contrib.grid.mapbuilder.md","api/evennia.contrib.grid.mapbuilder.mapbuilder.md","api/evennia.contrib.grid.mapbuilder.tests.md","api/evennia.contrib.grid.simpledoor.md","api/evennia.contrib.grid.simpledoor.simpledoor.md","api/evennia.contrib.grid.simpledoor.tests.md","api/evennia.contrib.grid.slow_exit.md","api/evennia.contrib.grid.slow_exit.slow_exit.md","api/evennia.contrib.grid.slow_exit.tests.md","api/evennia.contrib.grid.wilderness.md","api/evennia.contrib.grid.wilderness.tests.md","api/evennia.contrib.grid.wilderness.wilderness.md","api/evennia.contrib.grid.xyzgrid.md","api/evennia.contrib.grid.xyzgrid.commands.md","api/evennia.contrib.grid.xyzgrid.example.md","api/evennia.contrib.grid.xyzgrid.launchcmd.md","api/evennia.contrib.grid.xyzgrid.prototypes.md","api/evennia.contrib.grid.xyzgrid.tests.md","api/evennia.contrib.grid.xyzgrid.utils.md","api/evennia.contrib.grid.xyzgrid.xymap.md","api/evennia.contrib.grid.xyzgrid.xymap_legend.md","api/evennia.contrib.grid.xyzgrid.xyzgrid.md","api/evennia.contrib.grid.xyzgrid.xyzroom.md","api/evennia.contrib.rpg.md","api/evennia.contrib.rpg.buffs.md","api/evennia.contrib.rpg.buffs.buff.md","api/evennia.contrib.rpg.buffs.samplebuffs.md","api/evennia.contrib.rpg.buffs.tests.md","api/evennia.contrib.rpg.character_creator.md","api/evennia.contrib.rpg.character_creator.character_creator.md","api/evennia.contrib.rpg.character_creator.example_menu.md","api/evennia.contrib.rpg.character_creator.tests.md","api/evennia.contrib.rpg.dice.md","api/evennia.contrib.rpg.dice.dice.md","api/evennia.contrib.rpg.dice.tests.md","api/evennia.contrib.rpg.health_bar.md","api/evennia.contrib.rpg.health_bar.health_bar.md","api/evennia.contrib.rpg.health_bar.tests.md","api/evennia.contrib.rpg.rpsystem.md","api/evennia.contrib.rpg.rpsystem.rplanguage.md","api/evennia.contrib.rpg.rpsystem.rpsystem.md","api/evennia.contrib.rpg.rpsystem.tests.md","api/evennia.contrib.rpg.traits.md","api/evennia.contrib.rpg.traits.tests.md","api/evennia.contrib.rpg.traits.traits.md","api/evennia.contrib.tutorials.md","api/evennia.contrib.tutorials.batchprocessor.md","api/evennia.contrib.tutorials.batchprocessor.example_batch_code.md","api/evennia.contrib.tutorials.bodyfunctions.md","api/evennia.contrib.tutorials.bodyfunctions.bodyfunctions.md","api/evennia.contrib.tutorials.bodyfunctions.tests.md","api/evennia.contrib.tutorials.evadventure.md","api/evennia.contrib.tutorials.evadventure.build_techdemo.md","api/evennia.contrib.tutorials.evadventure.build_world.md","api/evennia.contrib.tutorials.evadventure.characters.md","api/evennia.contrib.tutorials.evadventure.chargen.md","api/evennia.contrib.tutorials.evadventure.combat_turnbased.md","api/evennia.contrib.tutorials.evadventure.commands.md","api/evennia.contrib.tutorials.evadventure.dungeon.md","api/evennia.contrib.tutorials.evadventure.enums.md","api/evennia.contrib.tutorials.evadventure.equipment.md","api/evennia.contrib.tutorials.evadventure.npcs.md","api/evennia.contrib.tutorials.evadventure.objects.md","api/evennia.contrib.tutorials.evadventure.quests.md","api/evennia.contrib.tutorials.evadventure.random_tables.md","api/evennia.contrib.tutorials.evadventure.rooms.md","api/evennia.contrib.tutorials.evadventure.rules.md","api/evennia.contrib.tutorials.evadventure.shops.md","api/evennia.contrib.tutorials.evadventure.tests.md","api/evennia.contrib.tutorials.evadventure.tests.mixins.md","api/evennia.contrib.tutorials.evadventure.tests.test_characters.md","api/evennia.contrib.tutorials.evadventure.tests.test_chargen.md","api/evennia.contrib.tutorials.evadventure.tests.test_combat.md","api/evennia.contrib.tutorials.evadventure.tests.test_commands.md","api/evennia.contrib.tutorials.evadventure.tests.test_dungeon.md","api/evennia.contrib.tutorials.evadventure.tests.test_equipment.md","api/evennia.contrib.tutorials.evadventure.tests.test_quests.md","api/evennia.contrib.tutorials.evadventure.tests.test_rules.md","api/evennia.contrib.tutorials.evadventure.tests.test_utils.md","api/evennia.contrib.tutorials.evadventure.utils.md","api/evennia.contrib.tutorials.mirror.md","api/evennia.contrib.tutorials.mirror.mirror.md","api/evennia.contrib.tutorials.red_button.md","api/evennia.contrib.tutorials.red_button.red_button.md","api/evennia.contrib.tutorials.talking_npc.md","api/evennia.contrib.tutorials.talking_npc.talking_npc.md","api/evennia.contrib.tutorials.talking_npc.tests.md","api/evennia.contrib.tutorials.tutorial_world.md","api/evennia.contrib.tutorials.tutorial_world.intro_menu.md","api/evennia.contrib.tutorials.tutorial_world.mob.md","api/evennia.contrib.tutorials.tutorial_world.objects.md","api/evennia.contrib.tutorials.tutorial_world.rooms.md","api/evennia.contrib.tutorials.tutorial_world.tests.md","api/evennia.contrib.utils.md","api/evennia.contrib.utils.auditing.md","api/evennia.contrib.utils.auditing.outputs.md","api/evennia.contrib.utils.auditing.server.md","api/evennia.contrib.utils.auditing.tests.md","api/evennia.contrib.utils.fieldfill.md","api/evennia.contrib.utils.fieldfill.fieldfill.md","api/evennia.contrib.utils.git_integration.md","api/evennia.contrib.utils.git_integration.git_integration.md","api/evennia.contrib.utils.git_integration.tests.md","api/evennia.contrib.utils.name_generator.md","api/evennia.contrib.utils.name_generator.namegen.md","api/evennia.contrib.utils.name_generator.tests.md","api/evennia.contrib.utils.random_string_generator.md","api/evennia.contrib.utils.random_string_generator.random_string_generator.md","api/evennia.contrib.utils.random_string_generator.tests.md","api/evennia.contrib.utils.tree_select.md","api/evennia.contrib.utils.tree_select.tests.md","api/evennia.contrib.utils.tree_select.tree_select.md","api/evennia.help.md","api/evennia.help.filehelp.md","api/evennia.help.manager.md","api/evennia.help.models.md","api/evennia.help.utils.md","api/evennia.locks.md","api/evennia.locks.lockfuncs.md","api/evennia.locks.lockhandler.md","api/evennia.objects.md","api/evennia.objects.manager.md","api/evennia.objects.models.md","api/evennia.objects.objects.md","api/evennia.prototypes.md","api/evennia.prototypes.menus.md","api/evennia.prototypes.protfuncs.md","api/evennia.prototypes.prototypes.md","api/evennia.prototypes.spawner.md","api/evennia.scripts.md","api/evennia.scripts.manager.md","api/evennia.scripts.models.md","api/evennia.scripts.monitorhandler.md","api/evennia.scripts.scripthandler.md","api/evennia.scripts.scripts.md","api/evennia.scripts.taskhandler.md","api/evennia.scripts.tickerhandler.md","api/evennia.server.md","api/evennia.server.amp_client.md","api/evennia.server.connection_wizard.md","api/evennia.server.deprecations.md","api/evennia.server.evennia_launcher.md","api/evennia.server.game_index_client.md","api/evennia.server.game_index_client.client.md","api/evennia.server.game_index_client.service.md","api/evennia.server.initial_setup.md","api/evennia.server.inputfuncs.md","api/evennia.server.manager.md","api/evennia.server.models.md","api/evennia.server.portal.md","api/evennia.server.portal.amp.md","api/evennia.server.portal.amp_server.md","api/evennia.server.portal.grapevine.md","api/evennia.server.portal.irc.md","api/evennia.server.portal.mccp.md","api/evennia.server.portal.mssp.md","api/evennia.server.portal.mxp.md","api/evennia.server.portal.naws.md","api/evennia.server.portal.portal.md","api/evennia.server.portal.portalsessionhandler.md","api/evennia.server.portal.rss.md","api/evennia.server.portal.ssh.md","api/evennia.server.portal.ssl.md","api/evennia.server.portal.suppress_ga.md","api/evennia.server.portal.telnet.md","api/evennia.server.portal.telnet_oob.md","api/evennia.server.portal.telnet_ssl.md","api/evennia.server.portal.tests.md","api/evennia.server.portal.ttype.md","api/evennia.server.portal.webclient.md","api/evennia.server.portal.webclient_ajax.md","api/evennia.server.profiling.md","api/evennia.server.profiling.dummyrunner.md","api/evennia.server.profiling.dummyrunner_settings.md","api/evennia.server.profiling.memplot.md","api/evennia.server.profiling.settings_mixin.md","api/evennia.server.profiling.test_queries.md","api/evennia.server.profiling.tests.md","api/evennia.server.profiling.timetrace.md","api/evennia.server.server.md","api/evennia.server.serversession.md","api/evennia.server.session.md","api/evennia.server.sessionhandler.md","api/evennia.server.signals.md","api/evennia.server.throttle.md","api/evennia.server.validators.md","api/evennia.server.webserver.md","api/evennia.settings_default.md","api/evennia.typeclasses.md","api/evennia.typeclasses.attributes.md","api/evennia.typeclasses.managers.md","api/evennia.typeclasses.models.md","api/evennia.typeclasses.tags.md","api/evennia.utils.md","api/evennia.utils.ansi.md","api/evennia.utils.batchprocessors.md","api/evennia.utils.containers.md","api/evennia.utils.create.md","api/evennia.utils.dbserialize.md","api/evennia.utils.eveditor.md","api/evennia.utils.evform.md","api/evennia.utils.evmenu.md","api/evennia.utils.evmore.md","api/evennia.utils.evtable.md","api/evennia.utils.funcparser.md","api/evennia.utils.gametime.md","api/evennia.utils.idmapper.md","api/evennia.utils.idmapper.manager.md","api/evennia.utils.idmapper.models.md","api/evennia.utils.idmapper.tests.md","api/evennia.utils.logger.md","api/evennia.utils.optionclasses.md","api/evennia.utils.optionhandler.md","api/evennia.utils.picklefield.md","api/evennia.utils.search.md","api/evennia.utils.test_resources.md","api/evennia.utils.text2html.md","api/evennia.utils.utils.md","api/evennia.utils.validatorfuncs.md","api/evennia.utils.verb_conjugation.md","api/evennia.utils.verb_conjugation.conjugate.md","api/evennia.utils.verb_conjugation.pronouns.md","api/evennia.utils.verb_conjugation.tests.md","api/evennia.web.md","api/evennia.web.admin.md","api/evennia.web.admin.accounts.md","api/evennia.web.admin.attributes.md","api/evennia.web.admin.comms.md","api/evennia.web.admin.frontpage.md","api/evennia.web.admin.help.md","api/evennia.web.admin.objects.md","api/evennia.web.admin.scripts.md","api/evennia.web.admin.server.md","api/evennia.web.admin.tags.md","api/evennia.web.admin.urls.md","api/evennia.web.admin.utils.md","api/evennia.web.api.md","api/evennia.web.api.filters.md","api/evennia.web.api.permissions.md","api/evennia.web.api.root.md","api/evennia.web.api.serializers.md","api/evennia.web.api.tests.md","api/evennia.web.api.urls.md","api/evennia.web.api.views.md","api/evennia.web.templatetags.md","api/evennia.web.templatetags.addclass.md","api/evennia.web.urls.md","api/evennia.web.utils.md","api/evennia.web.utils.adminsite.md","api/evennia.web.utils.backends.md","api/evennia.web.utils.general_context.md","api/evennia.web.utils.middleware.md","api/evennia.web.utils.tests.md","api/evennia.web.webclient.md","api/evennia.web.webclient.urls.md","api/evennia.web.webclient.views.md","api/evennia.web.website.md","api/evennia.web.website.forms.md","api/evennia.web.website.tests.md","api/evennia.web.website.urls.md","api/evennia.web.website.views.md","api/evennia.web.website.views.accounts.md","api/evennia.web.website.views.channels.md","api/evennia.web.website.views.characters.md","api/evennia.web.website.views.errors.md","api/evennia.web.website.views.help.md","api/evennia.web.website.views.index.md","api/evennia.web.website.views.mixins.md","api/evennia.web.website.views.objects.md","index.md"],objects:{"":{evennia:[225,0,0,"-"]},"evennia.accounts":{accounts:[228,0,0,"-"],bots:[229,0,0,"-"],manager:[230,0,0,"-"],models:[231,0,0,"-"]},"evennia.accounts.accounts":{DefaultAccount:[228,1,1,""],DefaultGuest:[228,1,1,""]},"evennia.accounts.accounts.DefaultAccount":{"delete":[228,3,1,""],DoesNotExist:[228,2,1,""],MultipleObjectsReturned:[228,2,1,""],access:[228,3,1,""],at_access:[228,3,1,""],at_account_creation:[228,3,1,""],at_cmdset_get:[228,3,1,""],at_disconnect:[228,3,1,""],at_failed_login:[228,3,1,""],at_first_login:[228,3,1,""],at_first_save:[228,3,1,""],at_init:[228,3,1,""],at_look:[228,3,1,""],at_msg_receive:[228,3,1,""],at_msg_send:[228,3,1,""],at_password_change:[228,3,1,""],at_post_channel_msg:[228,3,1,""],at_post_disconnect:[228,3,1,""],at_post_login:[228,3,1,""],at_pre_channel_msg:[228,3,1,""],at_pre_login:[228,3,1,""],at_server_reload:[228,3,1,""],at_server_shutdown:[228,3,1,""],authenticate:[228,3,1,""],basetype_setup:[228,3,1,""],channel_msg:[228,3,1,""],character:[228,3,1,""],characters:[228,3,1,""],cmdset:[228,4,1,""],connection_time:[228,3,1,""],create:[228,3,1,""],create_character:[228,3,1,""],disconnect_session_from_account:[228,3,1,""],execute_cmd:[228,3,1,""],get_all_puppets:[228,3,1,""],get_display_name:[228,3,1,""],get_puppet:[228,3,1,""],get_username_validators:[228,3,1,""],idle_time:[228,3,1,""],is_banned:[228,3,1,""],msg:[228,3,1,""],nicks:[228,4,1,""],normalize_username:[228,3,1,""],objects:[228,4,1,""],ooc_appearance_template:[228,4,1,""],options:[228,4,1,""],path:[228,4,1,""],puppet:[228,3,1,""],puppet_object:[228,3,1,""],scripts:[228,4,1,""],search:[228,3,1,""],sessions:[228,4,1,""],set_password:[228,3,1,""],typename:[228,4,1,""],unpuppet_all:[228,3,1,""],unpuppet_object:[228,3,1,""],uses_screenreader:[228,3,1,""],validate_password:[228,3,1,""],validate_username:[228,3,1,""]},"evennia.accounts.accounts.DefaultGuest":{DoesNotExist:[228,2,1,""],MultipleObjectsReturned:[228,2,1,""],at_post_disconnect:[228,3,1,""],at_post_login:[228,3,1,""],at_server_shutdown:[228,3,1,""],authenticate:[228,3,1,""],create:[228,3,1,""],path:[228,4,1,""],typename:[228,4,1,""]},"evennia.accounts.bots":{Bot:[229,1,1,""],BotStarter:[229,1,1,""],GrapevineBot:[229,1,1,""],IRCBot:[229,1,1,""],RSSBot:[229,1,1,""]},"evennia.accounts.bots.Bot":{DoesNotExist:[229,2,1,""],MultipleObjectsReturned:[229,2,1,""],at_server_shutdown:[229,3,1,""],basetype_setup:[229,3,1,""],execute_cmd:[229,3,1,""],msg:[229,3,1,""],path:[229,4,1,""],start:[229,3,1,""],typename:[229,4,1,""]},"evennia.accounts.bots.BotStarter":{DoesNotExist:[229,2,1,""],MultipleObjectsReturned:[229,2,1,""],at_repeat:[229,3,1,""],at_script_creation:[229,3,1,""],at_server_reload:[229,3,1,""],at_server_shutdown:[229,3,1,""],at_start:[229,3,1,""],path:[229,4,1,""],typename:[229,4,1,""]},"evennia.accounts.bots.GrapevineBot":{DoesNotExist:[229,2,1,""],MultipleObjectsReturned:[229,2,1,""],at_msg_send:[229,3,1,""],execute_cmd:[229,3,1,""],factory_path:[229,4,1,""],msg:[229,3,1,""],path:[229,4,1,""],start:[229,3,1,""],typename:[229,4,1,""]},"evennia.accounts.bots.IRCBot":{DoesNotExist:[229,2,1,""],MultipleObjectsReturned:[229,2,1,""],at_msg_send:[229,3,1,""],execute_cmd:[229,3,1,""],factory_path:[229,4,1,""],get_nicklist:[229,3,1,""],msg:[229,3,1,""],path:[229,4,1,""],ping:[229,3,1,""],reconnect:[229,3,1,""],start:[229,3,1,""],typename:[229,4,1,""]},"evennia.accounts.bots.RSSBot":{DoesNotExist:[229,2,1,""],MultipleObjectsReturned:[229,2,1,""],execute_cmd:[229,3,1,""],path:[229,4,1,""],start:[229,3,1,""],typename:[229,4,1,""]},"evennia.accounts.manager":{AccountDBManager:[230,1,1,""],AccountManager:[230,1,1,""]},"evennia.accounts.manager.AccountDBManager":{account_search:[230,3,1,""],create_account:[230,3,1,""],get_account_from_email:[230,3,1,""],get_account_from_name:[230,3,1,""],get_account_from_uid:[230,3,1,""],get_connected_accounts:[230,3,1,""],get_recently_connected_accounts:[230,3,1,""],get_recently_created_accounts:[230,3,1,""],num_total_accounts:[230,3,1,""],search_account:[230,3,1,""]},"evennia.accounts.models":{AccountDB:[231,1,1,""]},"evennia.accounts.models.AccountDB":{DoesNotExist:[231,2,1,""],MultipleObjectsReturned:[231,2,1,""],account_subscription_set:[231,4,1,""],cmdset_storage:[231,3,1,""],date_joined:[231,4,1,""],db_attributes:[231,4,1,""],db_cmdset_storage:[231,4,1,""],db_date_created:[231,4,1,""],db_is_bot:[231,4,1,""],db_is_connected:[231,4,1,""],db_key:[231,4,1,""],db_lock_storage:[231,4,1,""],db_tags:[231,4,1,""],db_typeclass_path:[231,4,1,""],email:[231,4,1,""],first_name:[231,4,1,""],get_next_by_date_joined:[231,3,1,""],get_next_by_db_date_created:[231,3,1,""],get_previous_by_date_joined:[231,3,1,""],get_previous_by_db_date_created:[231,3,1,""],groups:[231,4,1,""],hide_from_accounts_set:[231,4,1,""],id:[231,4,1,""],is_active:[231,4,1,""],is_bot:[231,3,1,""],is_connected:[231,3,1,""],is_staff:[231,4,1,""],is_superuser:[231,4,1,""],key:[231,3,1,""],last_login:[231,4,1,""],last_name:[231,4,1,""],logentry_set:[231,4,1,""],name:[231,3,1,""],objectdb_set:[231,4,1,""],objects:[231,4,1,""],password:[231,4,1,""],path:[231,4,1,""],receiver_account_set:[231,4,1,""],scriptdb_set:[231,4,1,""],sender_account_set:[231,4,1,""],typename:[231,4,1,""],uid:[231,3,1,""],user_permissions:[231,4,1,""],username:[231,4,1,""]},"evennia.commands":{"default":[238,0,0,"-"],cmdhandler:[233,0,0,"-"],cmdparser:[234,0,0,"-"],cmdset:[235,0,0,"-"],cmdsethandler:[236,0,0,"-"],command:[237,0,0,"-"]},"evennia.commands.cmdhandler":{InterruptCommand:[233,2,1,""],cmdhandler:[233,5,1,""]},"evennia.commands.cmdparser":{build_matches:[234,5,1,""],cmdparser:[234,5,1,""],create_match:[234,5,1,""],try_num_differentiators:[234,5,1,""]},"evennia.commands.cmdset":{CmdSet:[235,1,1,""]},"evennia.commands.cmdset.CmdSet":{__init__:[235,3,1,""],add:[235,3,1,""],at_cmdset_creation:[235,3,1,""],count:[235,3,1,""],duplicates:[235,4,1,""],errmessage:[235,4,1,""],get:[235,3,1,""],get_all_cmd_keys_and_aliases:[235,3,1,""],get_system_cmds:[235,3,1,""],key:[235,4,1,""],key_mergetypes:[235,4,1,""],make_unique:[235,3,1,""],mergetype:[235,4,1,""],no_channels:[235,4,1,""],no_exits:[235,4,1,""],no_objs:[235,4,1,""],path:[235,4,1,""],persistent:[235,4,1,""],priority:[235,4,1,""],remove:[235,3,1,""],to_duplicate:[235,4,1,""]},"evennia.commands.cmdsethandler":{CmdSetHandler:[236,1,1,""],import_cmdset:[236,5,1,""]},"evennia.commands.cmdsethandler.CmdSetHandler":{"delete":[236,3,1,""],__init__:[236,3,1,""],add:[236,3,1,""],add_default:[236,3,1,""],all:[236,3,1,""],clear:[236,3,1,""],delete_default:[236,3,1,""],get:[236,3,1,""],has:[236,3,1,""],has_cmdset:[236,3,1,""],remove:[236,3,1,""],remove_default:[236,3,1,""],reset:[236,3,1,""],update:[236,3,1,""]},"evennia.commands.command":{Command:[237,1,1,""],CommandMeta:[237,1,1,""],InterruptCommand:[237,2,1,""]},"evennia.commands.command.Command":{__init__:[237,3,1,""],access:[237,3,1,""],aliases:[237,4,1,""],arg_regex:[237,4,1,""],at_post_cmd:[237,3,1,""],at_pre_cmd:[237,3,1,""],auto_help:[237,4,1,""],client_width:[237,3,1,""],execute_cmd:[237,3,1,""],func:[237,3,1,""],get_command_info:[237,3,1,""],get_extra_info:[237,3,1,""],get_help:[237,3,1,""],help_category:[237,4,1,""],is_exit:[237,4,1,""],key:[237,4,1,""],lock_storage:[237,4,1,""],lockhandler:[237,4,1,""],locks:[237,4,1,""],match:[237,3,1,""],msg:[237,3,1,""],msg_all_sessions:[237,4,1,""],parse:[237,3,1,""],retain_instance:[237,4,1,""],save_for_next:[237,4,1,""],search_index_entry:[237,4,1,""],set_aliases:[237,3,1,""],set_key:[237,3,1,""],styled_footer:[237,3,1,""],styled_header:[237,3,1,""],styled_separator:[237,3,1,""],styled_table:[237,3,1,""],web_get_admin_url:[237,3,1,""],web_get_detail_url:[237,3,1,""]},"evennia.commands.command.CommandMeta":{__init__:[237,3,1,""]},"evennia.commands.default":{account:[239,0,0,"-"],admin:[240,0,0,"-"],batchprocess:[241,0,0,"-"],building:[242,0,0,"-"],cmdset_account:[243,0,0,"-"],cmdset_character:[244,0,0,"-"],cmdset_session:[245,0,0,"-"],cmdset_unloggedin:[246,0,0,"-"],comms:[247,0,0,"-"],general:[248,0,0,"-"],help:[249,0,0,"-"],muxcommand:[250,0,0,"-"],syscommands:[251,0,0,"-"],system:[252,0,0,"-"],unloggedin:[254,0,0,"-"]},"evennia.commands.default.account":{CmdCharCreate:[239,1,1,""],CmdCharDelete:[239,1,1,""],CmdColorTest:[239,1,1,""],CmdIC:[239,1,1,""],CmdOOC:[239,1,1,""],CmdOOCLook:[239,1,1,""],CmdOption:[239,1,1,""],CmdPassword:[239,1,1,""],CmdQuell:[239,1,1,""],CmdQuit:[239,1,1,""],CmdSessions:[239,1,1,""],CmdStyle:[239,1,1,""],CmdWho:[239,1,1,""]},"evennia.commands.default.account.CmdCharCreate":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.account.CmdCharDelete":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.account.CmdColorTest":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""],slice_bright_bg:[239,4,1,""],slice_bright_fg:[239,4,1,""],slice_dark_bg:[239,4,1,""],slice_dark_fg:[239,4,1,""],table_format:[239,3,1,""]},"evennia.commands.default.account.CmdIC":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.account.CmdOOC":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.account.CmdOOCLook":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.account.CmdOption":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""],switch_options:[239,4,1,""]},"evennia.commands.default.account.CmdPassword":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.account.CmdQuell":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.account.CmdQuit":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""],switch_options:[239,4,1,""]},"evennia.commands.default.account.CmdSessions":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.account.CmdStyle":{aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],list_styles:[239,3,1,""],lock_storage:[239,4,1,""],search_index_entry:[239,4,1,""],set:[239,3,1,""],switch_options:[239,4,1,""]},"evennia.commands.default.account.CmdWho":{account_caller:[239,4,1,""],aliases:[239,4,1,""],func:[239,3,1,""],help_category:[239,4,1,""],key:[239,4,1,""],lock_storage:[239,4,1,""],locks:[239,4,1,""],search_index_entry:[239,4,1,""]},"evennia.commands.default.admin":{CmdBan:[240,1,1,""],CmdBoot:[240,1,1,""],CmdEmit:[240,1,1,""],CmdForce:[240,1,1,""],CmdNewPassword:[240,1,1,""],CmdPerm:[240,1,1,""],CmdUnban:[240,1,1,""],CmdWall:[240,1,1,""]},"evennia.commands.default.admin.CmdBan":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],search_index_entry:[240,4,1,""]},"evennia.commands.default.admin.CmdBoot":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],search_index_entry:[240,4,1,""],switch_options:[240,4,1,""]},"evennia.commands.default.admin.CmdEmit":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],search_index_entry:[240,4,1,""],switch_options:[240,4,1,""]},"evennia.commands.default.admin.CmdForce":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],perm_used:[240,4,1,""],search_index_entry:[240,4,1,""]},"evennia.commands.default.admin.CmdNewPassword":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],search_index_entry:[240,4,1,""]},"evennia.commands.default.admin.CmdPerm":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],search_index_entry:[240,4,1,""],switch_options:[240,4,1,""]},"evennia.commands.default.admin.CmdUnban":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],search_index_entry:[240,4,1,""]},"evennia.commands.default.admin.CmdWall":{aliases:[240,4,1,""],func:[240,3,1,""],help_category:[240,4,1,""],key:[240,4,1,""],lock_storage:[240,4,1,""],locks:[240,4,1,""],search_index_entry:[240,4,1,""]},"evennia.commands.default.batchprocess":{CmdBatchCode:[241,1,1,""],CmdBatchCommands:[241,1,1,""]},"evennia.commands.default.batchprocess.CmdBatchCode":{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,""],switch_options:[241,4,1,""]},"evennia.commands.default.batchprocess.CmdBatchCommands":{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,""],switch_options:[241,4,1,""]},"evennia.commands.default.building":{CmdCopy:[242,1,1,""],CmdCpAttr:[242,1,1,""],CmdCreate:[242,1,1,""],CmdDesc:[242,1,1,""],CmdDestroy:[242,1,1,""],CmdDig:[242,1,1,""],CmdExamine:[242,1,1,""],CmdFind:[242,1,1,""],CmdLink:[242,1,1,""],CmdListCmdSets:[242,1,1,""],CmdLock:[242,1,1,""],CmdMvAttr:[242,1,1,""],CmdName:[242,1,1,""],CmdObjects:[242,1,1,""],CmdOpen:[242,1,1,""],CmdScripts:[242,1,1,""],CmdSetAttribute:[242,1,1,""],CmdSetHome:[242,1,1,""],CmdSetObjAlias:[242,1,1,""],CmdSpawn:[242,1,1,""],CmdTag:[242,1,1,""],CmdTeleport:[242,1,1,""],CmdTunnel:[242,1,1,""],CmdTypeclass:[242,1,1,""],CmdUnLink:[242,1,1,""],CmdWipe:[242,1,1,""],ObjManipCommand:[242,1,1,""]},"evennia.commands.default.building.CmdCopy":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdCpAttr":{aliases:[242,4,1,""],check_from_attr:[242,3,1,""],check_has_attr:[242,3,1,""],check_to_attr:[242,3,1,""],func:[242,3,1,""],get_attr:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdCreate":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],new_obj_lockstring:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdDesc":{aliases:[242,4,1,""],edit_handler:[242,3,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdDestroy":{aliases:[242,4,1,""],confirm:[242,4,1,""],default_confirm:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdDig":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],new_room_lockstring:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdExamine":{aliases:[242,4,1,""],arg_regex:[242,4,1,""],detail_color:[242,4,1,""],format_account_key:[242,3,1,""],format_account_permissions:[242,3,1,""],format_account_typeclass:[242,3,1,""],format_aliases:[242,3,1,""],format_attributes:[242,3,1,""],format_channel_account_subs:[242,3,1,""],format_channel_object_subs:[242,3,1,""],format_channel_sub_totals:[242,3,1,""],format_chars:[242,3,1,""],format_current_cmds:[242,3,1,""],format_destination:[242,3,1,""],format_email:[242,3,1,""],format_exits:[242,3,1,""],format_home:[242,3,1,""],format_key:[242,3,1,""],format_location:[242,3,1,""],format_locks:[242,3,1,""],format_merged_cmdsets:[242,3,1,""],format_nattributes:[242,3,1,""],format_output:[242,3,1,""],format_permissions:[242,3,1,""],format_script_desc:[242,3,1,""],format_script_is_persistent:[242,3,1,""],format_script_timer_data:[242,3,1,""],format_scripts:[242,3,1,""],format_sessions:[242,3,1,""],format_single_attribute:[242,3,1,""],format_single_attribute_detail:[242,3,1,""],format_single_cmdset:[242,3,1,""],format_single_cmdset_options:[242,3,1,""],format_single_tag:[242,3,1,""],format_stored_cmdsets:[242,3,1,""],format_tags:[242,3,1,""],format_things:[242,3,1,""],format_typeclass:[242,3,1,""],func:[242,3,1,""],get_formatted_obj_data:[242,3,1,""],header_color:[242,4,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],msg:[242,3,1,""],object_type:[242,4,1,""],parse:[242,3,1,""],quell_color:[242,4,1,""],search_index_entry:[242,4,1,""],separator:[242,4,1,""],switch_options:[242,4,1,""],text:[242,4,1,""]},"evennia.commands.default.building.CmdFind":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdLink":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdListCmdSets":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdLock":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdMvAttr":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdName":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdObjects":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdOpen":{aliases:[242,4,1,""],create_exit:[242,3,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],new_obj_lockstring:[242,4,1,""],parse:[242,3,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdScripts":{aliases:[242,4,1,""],excluded_typeclass_paths:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],hide_script_paths:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_mapping:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdSetAttribute":{aliases:[242,4,1,""],check_attr:[242,3,1,""],check_obj:[242,3,1,""],do_nested_lookup:[242,3,1,""],edit_handler:[242,3,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],nested_re:[242,4,1,""],not_found:[242,4,1,""],rm_attr:[242,3,1,""],search_for_obj:[242,3,1,""],search_index_entry:[242,4,1,""],set_attr:[242,3,1,""],split_nested_attr:[242,3,1,""],view_attr:[242,3,1,""]},"evennia.commands.default.building.CmdSetHome":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdSetObjAlias":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdSpawn":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdTag":{aliases:[242,4,1,""],arg_regex:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],options:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdTeleport":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],parse:[242,3,1,""],rhs_split:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdTunnel":{aliases:[242,4,1,""],directions:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdTypeclass":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""],switch_options:[242,4,1,""]},"evennia.commands.default.building.CmdUnLink":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],help_key:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.CmdWipe":{aliases:[242,4,1,""],func:[242,3,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],locks:[242,4,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.building.ObjManipCommand":{aliases:[242,4,1,""],help_category:[242,4,1,""],key:[242,4,1,""],lock_storage:[242,4,1,""],parse:[242,3,1,""],search_index_entry:[242,4,1,""]},"evennia.commands.default.cmdset_account":{AccountCmdSet:[243,1,1,""]},"evennia.commands.default.cmdset_account.AccountCmdSet":{at_cmdset_creation:[243,3,1,""],key:[243,4,1,""],path:[243,4,1,""],priority:[243,4,1,""]},"evennia.commands.default.cmdset_character":{CharacterCmdSet:[244,1,1,""]},"evennia.commands.default.cmdset_character.CharacterCmdSet":{at_cmdset_creation:[244,3,1,""],key:[244,4,1,""],path:[244,4,1,""],priority:[244,4,1,""]},"evennia.commands.default.cmdset_session":{SessionCmdSet:[245,1,1,""]},"evennia.commands.default.cmdset_session.SessionCmdSet":{at_cmdset_creation:[245,3,1,""],key:[245,4,1,""],path:[245,4,1,""],priority:[245,4,1,""]},"evennia.commands.default.cmdset_unloggedin":{UnloggedinCmdSet:[246,1,1,""]},"evennia.commands.default.cmdset_unloggedin.UnloggedinCmdSet":{at_cmdset_creation:[246,3,1,""],key:[246,4,1,""],path:[246,4,1,""],priority:[246,4,1,""]},"evennia.commands.default.comms":{CmdChannel:[247,1,1,""],CmdGrapevine2Chan:[247,1,1,""],CmdIRC2Chan:[247,1,1,""],CmdIRCStatus:[247,1,1,""],CmdObjectChannel:[247,1,1,""],CmdPage:[247,1,1,""],CmdRSS2Chan:[247,1,1,""]},"evennia.commands.default.comms.CmdChannel":{account_caller:[247,4,1,""],add_alias:[247,3,1,""],aliases:[247,4,1,""],ban_user:[247,3,1,""],boot_user:[247,3,1,""],channel_list_bans:[247,3,1,""],channel_list_who:[247,3,1,""],create_channel:[247,3,1,""],destroy_channel:[247,3,1,""],display_all_channels:[247,3,1,""],display_subbed_channels:[247,3,1,""],func:[247,3,1,""],get_channel_aliases:[247,3,1,""],get_channel_history:[247,3,1,""],help_category:[247,4,1,""],key:[247,4,1,""],list_channels:[247,3,1,""],lock_storage:[247,4,1,""],locks:[247,4,1,""],msg_channel:[247,3,1,""],mute_channel:[247,3,1,""],remove_alias:[247,3,1,""],search_channel:[247,3,1,""],search_index_entry:[247,4,1,""],set_desc:[247,3,1,""],set_lock:[247,3,1,""],sub_to_channel:[247,3,1,""],switch_options:[247,4,1,""],unban_user:[247,3,1,""],unmute_channel:[247,3,1,""],unset_lock:[247,3,1,""],unsub_from_channel:[247,3,1,""]},"evennia.commands.default.comms.CmdGrapevine2Chan":{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,""],switch_options:[247,4,1,""]},"evennia.commands.default.comms.CmdIRC2Chan":{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,""],switch_options:[247,4,1,""]},"evennia.commands.default.comms.CmdIRCStatus":{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.commands.default.comms.CmdObjectChannel":{account_caller:[247,4,1,""],aliases:[247,4,1,""],help_category:[247,4,1,""],key:[247,4,1,""],lock_storage:[247,4,1,""],search_index_entry:[247,4,1,""]},"evennia.commands.default.comms.CmdPage":{account_caller:[247,4,1,""],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,""],switch_options:[247,4,1,""]},"evennia.commands.default.comms.CmdRSS2Chan":{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,""],switch_options:[247,4,1,""]},"evennia.commands.default.general":{CmdAccess:[248,1,1,""],CmdDrop:[248,1,1,""],CmdGet:[248,1,1,""],CmdGive:[248,1,1,""],CmdHome:[248,1,1,""],CmdInventory:[248,1,1,""],CmdLook:[248,1,1,""],CmdNick:[248,1,1,""],CmdPose:[248,1,1,""],CmdSay:[248,1,1,""],CmdSetDesc:[248,1,1,""],CmdWhisper:[248,1,1,""]},"evennia.commands.default.general.CmdAccess":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdDrop":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdGet":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdGive":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],rhs_split:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdHome":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdInventory":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdLook":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdNick":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],parse:[248,3,1,""],search_index_entry:[248,4,1,""],switch_options:[248,4,1,""]},"evennia.commands.default.general.CmdPose":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],parse:[248,3,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdSay":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdSetDesc":{aliases:[248,4,1,""],arg_regex:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.general.CmdWhisper":{aliases:[248,4,1,""],func:[248,3,1,""],help_category:[248,4,1,""],key:[248,4,1,""],lock_storage:[248,4,1,""],locks:[248,4,1,""],search_index_entry:[248,4,1,""]},"evennia.commands.default.help":{CmdHelp:[249,1,1,""],CmdSetHelp:[249,1,1,""]},"evennia.commands.default.help.CmdHelp":{aliases:[249,4,1,""],arg_regex:[249,4,1,""],can_list_topic:[249,3,1,""],can_read_topic:[249,3,1,""],clickable_topics:[249,4,1,""],collect_topics:[249,3,1,""],do_search:[249,3,1,""],format_help_entry:[249,3,1,""],format_help_index:[249,3,1,""],func:[249,3,1,""],help_category:[249,4,1,""],help_more:[249,4,1,""],index_category_clr:[249,4,1,""],index_topic_clr:[249,4,1,""],index_type_separator_clr:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],locks:[249,4,1,""],msg_help:[249,3,1,""],parse:[249,3,1,""],return_cmdset:[249,4,1,""],search_index_entry:[249,4,1,""],strip_cmd_prefix:[249,3,1,""],subtopic_separator_char:[249,4,1,""],suggestion_cutoff:[249,4,1,""],suggestion_maxnum:[249,4,1,""]},"evennia.commands.default.help.CmdSetHelp":{aliases:[249,4,1,""],arg_regex:[249,4,1,""],func:[249,3,1,""],help_category:[249,4,1,""],key:[249,4,1,""],lock_storage:[249,4,1,""],locks:[249,4,1,""],parse:[249,3,1,""],search_index_entry:[249,4,1,""],switch_options:[249,4,1,""]},"evennia.commands.default.muxcommand":{MuxAccountCommand:[250,1,1,""],MuxCommand:[250,1,1,""]},"evennia.commands.default.muxcommand.MuxAccountCommand":{account_caller:[250,4,1,""],aliases:[250,4,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],search_index_entry:[250,4,1,""]},"evennia.commands.default.muxcommand.MuxCommand":{aliases:[250,4,1,""],at_post_cmd:[250,3,1,""],at_pre_cmd:[250,3,1,""],func:[250,3,1,""],get_command_info:[250,3,1,""],has_perm:[250,3,1,""],help_category:[250,4,1,""],key:[250,4,1,""],lock_storage:[250,4,1,""],parse:[250,3,1,""],search_index_entry:[250,4,1,""]},"evennia.commands.default.syscommands":{SystemMultimatch:[251,1,1,""],SystemNoInput:[251,1,1,""],SystemNoMatch:[251,1,1,""]},"evennia.commands.default.syscommands.SystemMultimatch":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""]},"evennia.commands.default.syscommands.SystemNoInput":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""]},"evennia.commands.default.syscommands.SystemNoMatch":{aliases:[251,4,1,""],func:[251,3,1,""],help_category:[251,4,1,""],key:[251,4,1,""],lock_storage:[251,4,1,""],locks:[251,4,1,""],search_index_entry:[251,4,1,""]},"evennia.commands.default.system":{CmdAbout:[252,1,1,""],CmdAccounts:[252,1,1,""],CmdPy:[252,1,1,""],CmdReload:[252,1,1,""],CmdReset:[252,1,1,""],CmdServerLoad:[252,1,1,""],CmdService:[252,1,1,""],CmdShutdown:[252,1,1,""],CmdTasks:[252,1,1,""],CmdTickers:[252,1,1,""],CmdTime:[252,1,1,""]},"evennia.commands.default.system.CmdAbout":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""]},"evennia.commands.default.system.CmdAccounts":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""],switch_options:[252,4,1,""]},"evennia.commands.default.system.CmdPy":{aliases:[252,4,1,""],arg_regex:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""],switch_options:[252,4,1,""]},"evennia.commands.default.system.CmdReload":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""]},"evennia.commands.default.system.CmdReset":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""]},"evennia.commands.default.system.CmdServerLoad":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""],switch_options:[252,4,1,""]},"evennia.commands.default.system.CmdService":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""],switch_options:[252,4,1,""]},"evennia.commands.default.system.CmdShutdown":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""]},"evennia.commands.default.system.CmdTasks":{aliases:[252,4,1,""],coll_date_func:[252,3,1,""],do_task_action:[252,3,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""],switch_options:[252,4,1,""]},"evennia.commands.default.system.CmdTickers":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""]},"evennia.commands.default.system.CmdTime":{aliases:[252,4,1,""],func:[252,3,1,""],help_category:[252,4,1,""],key:[252,4,1,""],lock_storage:[252,4,1,""],locks:[252,4,1,""],search_index_entry:[252,4,1,""]},"evennia.commands.default.tests":{CmdInterrupt:[253,1,1,""],TestAccount:[253,1,1,""],TestAdmin:[253,1,1,""],TestBatchProcess:[253,1,1,""],TestBuilding:[253,1,1,""],TestCmdTasks:[253,1,1,""],TestComms:[253,1,1,""],TestCommsChannel:[253,1,1,""],TestGeneral:[253,1,1,""],TestHelp:[253,1,1,""],TestInterruptCommand:[253,1,1,""],TestSystem:[253,1,1,""],TestSystemCommands:[253,1,1,""],TestUnconnectedCommand:[253,1,1,""],func_test_cmd_tasks:[253,5,1,""]},"evennia.commands.default.tests.CmdInterrupt":{aliases:[253,4,1,""],func:[253,3,1,""],help_category:[253,4,1,""],key:[253,4,1,""],lock_storage:[253,4,1,""],parse:[253,3,1,""],search_index_entry:[253,4,1,""]},"evennia.commands.default.tests.TestAccount":{test_char_create:[253,3,1,""],test_char_delete:[253,3,1,""],test_color_test:[253,3,1,""],test_ic:[253,3,1,""],test_ic__nonaccess:[253,3,1,""],test_ic__other_object:[253,3,1,""],test_ooc:[253,3,1,""],test_ooc_look:[253,4,1,""],test_ooc_look_00:[253,3,1,""],test_ooc_look_01:[253,3,1,""],test_ooc_look_02:[253,3,1,""],test_ooc_look_03:[253,3,1,""],test_ooc_look_04:[253,3,1,""],test_ooc_look_05:[253,3,1,""],test_ooc_look_06:[253,3,1,""],test_ooc_look_07:[253,3,1,""],test_ooc_look_08:[253,3,1,""],test_ooc_look_09:[253,3,1,""],test_ooc_look_10:[253,3,1,""],test_ooc_look_11:[253,3,1,""],test_ooc_look_12:[253,3,1,""],test_ooc_look_13:[253,3,1,""],test_ooc_look_14:[253,3,1,""],test_ooc_look_15:[253,3,1,""],test_option:[253,3,1,""],test_password:[253,3,1,""],test_quell:[253,3,1,""],test_quit:[253,3,1,""],test_sessions:[253,3,1,""],test_who:[253,3,1,""]},"evennia.commands.default.tests.TestAdmin":{test_ban:[253,3,1,""],test_emit:[253,3,1,""],test_force:[253,3,1,""],test_perm:[253,3,1,""],test_wall:[253,3,1,""]},"evennia.commands.default.tests.TestBatchProcess":{red_button:[253,4,1,""],test_batch_commands:[253,3,1,""]},"evennia.commands.default.tests.TestBuilding":{test_attribute_commands:[253,3,1,""],test_copy:[253,3,1,""],test_create:[253,3,1,""],test_desc:[253,3,1,""],test_desc_default_to_room:[253,3,1,""],test_destroy:[253,3,1,""],test_destroy_sequence:[253,3,1,""],test_dig:[253,3,1,""],test_do_nested_lookup:[253,3,1,""],test_empty_desc:[253,3,1,""],test_examine:[253,3,1,""],test_exit_commands:[253,3,1,""],test_find:[253,3,1,""],test_list_cmdsets:[253,3,1,""],test_lock:[253,3,1,""],test_name:[253,3,1,""],test_nested_attribute_commands:[253,3,1,""],test_script:[253,3,1,""],test_script_multi_delete:[253,3,1,""],test_set_home:[253,3,1,""],test_set_obj_alias:[253,3,1,""],test_spawn:[253,3,1,""],test_split_nested_attr:[253,3,1,""],test_tag:[253,3,1,""],test_teleport:[253,3,1,""],test_tunnel:[253,3,1,""],test_tunnel_exit_typeclass:[253,3,1,""],test_typeclass:[253,3,1,""]},"evennia.commands.default.tests.TestCmdTasks":{setUp:[253,3,1,""],tearDown:[253,3,1,""],test_active_task:[253,3,1,""],test_call:[253,3,1,""],test_cancel:[253,3,1,""],test_do_task:[253,3,1,""],test_func_name_manipulation:[253,3,1,""],test_misformed_command:[253,3,1,""],test_new_task_waiting_input:[253,3,1,""],test_no_input:[253,3,1,""],test_no_tasks:[253,3,1,""],test_pause_unpause:[253,3,1,""],test_persistent_task:[253,3,1,""],test_remove:[253,3,1,""],test_responce_of_yes:[253,3,1,""],test_task_complete_waiting_input:[253,3,1,""],test_wrong_func_name:[253,3,1,""]},"evennia.commands.default.tests.TestComms":{test_page:[253,3,1,""]},"evennia.commands.default.tests.TestCommsChannel":{setUp:[253,3,1,""],tearDown:[253,3,1,""],test_channel__alias__unalias:[253,3,1,""],test_channel__all:[253,3,1,""],test_channel__ban__unban:[253,3,1,""],test_channel__boot:[253,3,1,""],test_channel__create:[253,3,1,""],test_channel__desc:[253,3,1,""],test_channel__destroy:[253,3,1,""],test_channel__history:[253,3,1,""],test_channel__list:[253,3,1,""],test_channel__lock:[253,3,1,""],test_channel__msg:[253,3,1,""],test_channel__mute:[253,3,1,""],test_channel__noarg:[253,3,1,""],test_channel__sub:[253,3,1,""],test_channel__unlock:[253,3,1,""],test_channel__unmute:[253,3,1,""],test_channel__unsub:[253,3,1,""],test_channel__who:[253,3,1,""]},"evennia.commands.default.tests.TestGeneral":{test_access:[253,3,1,""],test_get_and_drop:[253,3,1,""],test_give:[253,3,1,""],test_go_home:[253,3,1,""],test_home:[253,3,1,""],test_inventory:[253,3,1,""],test_look:[253,3,1,""],test_look_no_location:[253,3,1,""],test_look_nonexisting:[253,3,1,""],test_mux_command:[253,3,1,""],test_nick:[253,3,1,""],test_nick_list:[253,3,1,""],test_no_home:[253,3,1,""],test_pose:[253,3,1,""],test_say:[253,3,1,""],test_whisper:[253,3,1,""]},"evennia.commands.default.tests.TestHelp":{maxDiff:[253,4,1,""],setUp:[253,3,1,""],tearDown:[253,3,1,""],test_help:[253,3,1,""],test_set_help:[253,3,1,""],test_subtopic_fetch:[253,4,1,""],test_subtopic_fetch_00_test:[253,3,1,""],test_subtopic_fetch_01_test_creating_extra_stuff:[253,3,1,""],test_subtopic_fetch_02_test_creating:[253,3,1,""],test_subtopic_fetch_03_test_extra:[253,3,1,""],test_subtopic_fetch_04_test_extra_subsubtopic:[253,3,1,""],test_subtopic_fetch_05_test_creating_extra_subsub:[253,3,1,""],test_subtopic_fetch_06_test_Something_else:[253,3,1,""],test_subtopic_fetch_07_test_More:[253,3,1,""],test_subtopic_fetch_08_test_More_Second_more:[253,3,1,""],test_subtopic_fetch_09_test_More_more:[253,3,1,""],test_subtopic_fetch_10_test_more_second_more_again:[253,3,1,""],test_subtopic_fetch_11_test_more_second_third:[253,3,1,""]},"evennia.commands.default.tests.TestInterruptCommand":{test_interrupt_command:[253,3,1,""]},"evennia.commands.default.tests.TestSystem":{test_about:[253,3,1,""],test_objects:[253,3,1,""],test_py:[253,3,1,""],test_scripts:[253,3,1,""],test_server_load:[253,3,1,""]},"evennia.commands.default.tests.TestSystemCommands":{test_multimatch:[253,3,1,""],test_simple_defaults:[253,3,1,""]},"evennia.commands.default.tests.TestUnconnectedCommand":{test_info_command:[253,3,1,""]},"evennia.commands.default.unloggedin":{CmdUnconnectedConnect:[254,1,1,""],CmdUnconnectedCreate:[254,1,1,""],CmdUnconnectedEncoding:[254,1,1,""],CmdUnconnectedHelp:[254,1,1,""],CmdUnconnectedInfo:[254,1,1,""],CmdUnconnectedLook:[254,1,1,""],CmdUnconnectedQuit:[254,1,1,""],CmdUnconnectedScreenreader:[254,1,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedConnect":{aliases:[254,4,1,""],arg_regex:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],locks:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedCreate":{aliases:[254,4,1,""],arg_regex:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],locks:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedEncoding":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],locks:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedHelp":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],locks:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedInfo":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],locks:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedLook":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],locks:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedQuit":{aliases:[254,4,1,""],func:[254,3,1,""],help_category:[254,4,1,""],key:[254,4,1,""],lock_storage:[254,4,1,""],locks:[254,4,1,""],search_index_entry:[254,4,1,""]},"evennia.commands.default.unloggedin.CmdUnconnectedScreenreader":{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.comms":{comms:[256,0,0,"-"],managers:[257,0,0,"-"],models:[258,0,0,"-"]},"evennia.comms.comms":{DefaultChannel:[256,1,1,""]},"evennia.comms.comms.DefaultChannel":{"delete":[256,3,1,""],DoesNotExist:[256,2,1,""],MultipleObjectsReturned:[256,2,1,""],access:[256,3,1,""],add_user_channel_alias:[256,3,1,""],at_channel_creation:[256,3,1,""],at_first_save:[256,3,1,""],at_init:[256,3,1,""],at_post_msg:[256,3,1,""],at_pre_msg:[256,3,1,""],ban:[256,3,1,""],banlist:[256,3,1,""],basetype_setup:[256,3,1,""],channel_msg_nick_pattern:[256,4,1,""],channel_msg_nick_replacement:[256,4,1,""],channel_prefix:[256,3,1,""],channel_prefix_string:[256,4,1,""],connect:[256,3,1,""],create:[256,3,1,""],disconnect:[256,3,1,""],distribute_message:[256,3,1,""],format_external:[256,3,1,""],format_message:[256,3,1,""],format_senders:[256,3,1,""],get_absolute_url:[256,3,1,""],get_log_filename:[256,3,1,""],has_connection:[256,3,1,""],log_file:[256,4,1,""],message_transform:[256,3,1,""],msg:[256,3,1,""],mute:[256,3,1,""],mutelist:[256,3,1,""],objects:[256,4,1,""],path:[256,4,1,""],pose_transform:[256,3,1,""],post_join_channel:[256,3,1,""],post_leave_channel:[256,3,1,""],post_send_message:[256,3,1,""],pre_join_channel:[256,3,1,""],pre_leave_channel:[256,3,1,""],pre_send_message:[256,3,1,""],remove_user_channel_alias:[256,3,1,""],send_to_online_only:[256,4,1,""],set_log_filename:[256,3,1,""],typename:[256,4,1,""],unban:[256,3,1,""],unmute:[256,3,1,""],web_get_admin_url:[256,3,1,""],web_get_create_url:[256,3,1,""],web_get_delete_url:[256,3,1,""],web_get_detail_url:[256,3,1,""],web_get_update_url:[256,3,1,""],wholist:[256,3,1,""]},"evennia.comms.managers":{ChannelDBManager:[257,1,1,""],ChannelManager:[257,1,1,""],CommError:[257,2,1,""],MsgManager:[257,1,1,""],identify_object:[257,5,1,""],to_object:[257,5,1,""]},"evennia.comms.managers.ChannelDBManager":{channel_search:[257,3,1,""],create_channel:[257,3,1,""],get_all_channels:[257,3,1,""],get_channel:[257,3,1,""],get_subscriptions:[257,3,1,""],search_channel:[257,3,1,""]},"evennia.comms.managers.MsgManager":{create_message:[257,3,1,""],get_message_by_id:[257,3,1,""],get_messages_by_receiver:[257,3,1,""],get_messages_by_sender:[257,3,1,""],identify_object:[257,3,1,""],message_search:[257,3,1,""],search_message:[257,3,1,""]},"evennia.comms.models":{ChannelDB:[258,1,1,""],Msg:[258,1,1,""],SubscriptionHandler:[258,1,1,""],TempMsg:[258,1,1,""]},"evennia.comms.models.ChannelDB":{DoesNotExist:[258,2,1,""],MultipleObjectsReturned:[258,2,1,""],db_account_subscriptions:[258,4,1,""],db_attributes:[258,4,1,""],db_date_created:[258,4,1,""],db_key:[258,4,1,""],db_lock_storage:[258,4,1,""],db_object_subscriptions:[258,4,1,""],db_tags:[258,4,1,""],db_typeclass_path:[258,4,1,""],get_next_by_db_date_created:[258,3,1,""],get_previous_by_db_date_created:[258,3,1,""],id:[258,4,1,""],objects:[258,4,1,""],path:[258,4,1,""],subscriptions:[258,4,1,""],typename:[258,4,1,""]},"evennia.comms.models.Msg":{DoesNotExist:[258,2,1,""],MultipleObjectsReturned:[258,2,1,""],access:[258,3,1,""],date_created:[258,3,1,""],db_date_created:[258,4,1,""],db_header:[258,4,1,""],db_hide_from_accounts:[258,4,1,""],db_hide_from_objects:[258,4,1,""],db_lock_storage:[258,4,1,""],db_message:[258,4,1,""],db_receiver_external:[258,4,1,""],db_receivers_accounts:[258,4,1,""],db_receivers_objects:[258,4,1,""],db_receivers_scripts:[258,4,1,""],db_sender_accounts:[258,4,1,""],db_sender_external:[258,4,1,""],db_sender_objects:[258,4,1,""],db_sender_scripts:[258,4,1,""],db_tags:[258,4,1,""],get_next_by_db_date_created:[258,3,1,""],get_previous_by_db_date_created:[258,3,1,""],header:[258,3,1,""],hide_from:[258,3,1,""],id:[258,4,1,""],lock_storage:[258,3,1,""],locks:[258,4,1,""],message:[258,3,1,""],objects:[258,4,1,""],path:[258,4,1,""],receiver_external:[258,3,1,""],receivers:[258,3,1,""],remove_receiver:[258,3,1,""],remove_sender:[258,3,1,""],sender_external:[258,3,1,""],senders:[258,3,1,""],tags:[258,4,1,""],typename:[258,4,1,""]},"evennia.comms.models.SubscriptionHandler":{__init__:[258,3,1,""],add:[258,3,1,""],all:[258,3,1,""],clear:[258,3,1,""],get:[258,3,1,""],has:[258,3,1,""],online:[258,3,1,""],remove:[258,3,1,""]},"evennia.comms.models.TempMsg":{__init__:[258,3,1,""],access:[258,3,1,""],locks:[258,4,1,""],remove_receiver:[258,3,1,""],remove_sender:[258,3,1,""]},"evennia.contrib":{base_systems:[260,0,0,"-"],full_systems:[301,0,0,"-"],game_systems:[311,0,0,"-"],grid:[344,0,0,"-"],rpg:[374,0,0,"-"],tutorials:[396,0,0,"-"],utils:[444,0,0,"-"]},"evennia.contrib.base_systems":{awsstorage:[261,0,0,"-"],building_menu:[264,0,0,"-"],color_markups:[267,0,0,"-"],components:[270,0,0,"-"],custom_gametime:[276,0,0,"-"],email_login:[279,0,0,"-"],mux_comms_cmds:[295,0,0,"-"],unixcommand:[298,0,0,"-"]},"evennia.contrib.base_systems.awsstorage":{tests:[263,0,0,"-"]},"evennia.contrib.base_systems.awsstorage.tests":{S3Boto3StorageTests:[263,1,1,""],S3Boto3TestCase:[263,1,1,""]},"evennia.contrib.base_systems.awsstorage.tests.S3Boto3StorageTests":{test_auto_creating_bucket:[263,3,1,""],test_auto_creating_bucket_with_acl:[263,3,1,""],test_clean_name:[263,3,1,""],test_clean_name_normalize:[263,3,1,""],test_clean_name_trailing_slash:[263,3,1,""],test_clean_name_windows:[263,3,1,""],test_compress_content_len:[263,3,1,""],test_connection_threading:[263,3,1,""],test_content_type:[263,3,1,""],test_generated_url_is_encoded:[263,3,1,""],test_location_leading_slash:[263,3,1,""],test_override_class_variable:[263,3,1,""],test_override_init_argument:[263,3,1,""],test_pickle_with_bucket:[263,3,1,""],test_pickle_without_bucket:[263,3,1,""],test_special_characters:[263,3,1,""],test_storage_delete:[263,3,1,""],test_storage_exists:[263,3,1,""],test_storage_exists_doesnt_create_bucket:[263,3,1,""],test_storage_exists_false:[263,3,1,""],test_storage_listdir_base:[263,3,1,""],test_storage_listdir_subdir:[263,3,1,""],test_storage_mtime:[263,3,1,""],test_storage_open_no_overwrite_existing:[263,3,1,""],test_storage_open_no_write:[263,3,1,""],test_storage_open_write:[263,3,1,""],test_storage_save:[263,3,1,""],test_storage_save_gzip:[263,3,1,""],test_storage_save_gzip_twice:[263,3,1,""],test_storage_save_gzipped:[263,3,1,""],test_storage_save_with_acl:[263,3,1,""],test_storage_size:[263,3,1,""],test_storage_url:[263,3,1,""],test_storage_url_slashes:[263,3,1,""],test_storage_write_beyond_buffer_size:[263,3,1,""],test_strip_signing_parameters:[263,3,1,""]},"evennia.contrib.base_systems.awsstorage.tests.S3Boto3TestCase":{setUp:[263,3,1,""]},"evennia.contrib.base_systems.building_menu":{building_menu:[265,0,0,"-"],tests:[266,0,0,"-"]},"evennia.contrib.base_systems.building_menu.building_menu":{BuildingMenu:[265,1,1,""],BuildingMenuCmdSet:[265,1,1,""],Choice:[265,1,1,""],CmdNoInput:[265,1,1,""],CmdNoMatch:[265,1,1,""],GenericBuildingCmd:[265,1,1,""],GenericBuildingMenu:[265,1,1,""],menu_edit:[265,5,1,""],menu_quit:[265,5,1,""],menu_setattr:[265,5,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.BuildingMenu":{__init__:[265,3,1,""],add_choice:[265,3,1,""],add_choice_edit:[265,3,1,""],add_choice_quit:[265,3,1,""],close:[265,3,1,""],current_choice:[265,3,1,""],display:[265,3,1,""],display_choice:[265,3,1,""],display_title:[265,3,1,""],init:[265,3,1,""],joker_key:[265,4,1,""],keys_go_back:[265,4,1,""],min_shortcut:[265,4,1,""],move:[265,3,1,""],open:[265,3,1,""],open_parent_menu:[265,3,1,""],open_submenu:[265,3,1,""],relevant_choices:[265,3,1,""],restore:[265,3,1,""],sep_keys:[265,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.BuildingMenuCmdSet":{at_cmdset_creation:[265,3,1,""],key:[265,4,1,""],path:[265,4,1,""],priority:[265,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.Choice":{__init__:[265,3,1,""],enter:[265,3,1,""],format_text:[265,3,1,""],keys:[265,3,1,""],leave:[265,3,1,""],nomatch:[265,3,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.CmdNoInput":{__init__:[265,3,1,""],aliases:[265,4,1,""],func:[265,3,1,""],help_category:[265,4,1,""],key:[265,4,1,""],lock_storage:[265,4,1,""],locks:[265,4,1,""],search_index_entry:[265,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.CmdNoMatch":{__init__:[265,3,1,""],aliases:[265,4,1,""],func:[265,3,1,""],help_category:[265,4,1,""],key:[265,4,1,""],lock_storage:[265,4,1,""],locks:[265,4,1,""],search_index_entry:[265,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.GenericBuildingCmd":{aliases:[265,4,1,""],func:[265,3,1,""],help_category:[265,4,1,""],key:[265,4,1,""],lock_storage:[265,4,1,""],search_index_entry:[265,4,1,""]},"evennia.contrib.base_systems.building_menu.building_menu.GenericBuildingMenu":{init:[265,3,1,""]},"evennia.contrib.base_systems.building_menu.tests":{Submenu:[266,1,1,""],TestBuildingMenu:[266,1,1,""]},"evennia.contrib.base_systems.building_menu.tests.Submenu":{init:[266,3,1,""]},"evennia.contrib.base_systems.building_menu.tests.TestBuildingMenu":{setUp:[266,3,1,""],test_add_choice_without_key:[266,3,1,""],test_callbacks:[266,3,1,""],test_multi_level:[266,3,1,""],test_quit:[266,3,1,""],test_setattr:[266,3,1,""],test_submenu:[266,3,1,""]},"evennia.contrib.base_systems.color_markups":{color_markups:[268,0,0,"-"],tests:[269,0,0,"-"]},"evennia.contrib.base_systems.color_markups.tests":{TestColorMarkup:[269,1,1,""]},"evennia.contrib.base_systems.color_markups.tests.TestColorMarkup":{test_curly_markup:[269,3,1,""],test_mux_markup:[269,3,1,""]},"evennia.contrib.base_systems.components":{component:[271,0,0,"-"],dbfield:[272,0,0,"-"],get_component_class:[270,5,1,""],holder:[273,0,0,"-"],signals:[274,0,0,"-"],tests:[275,0,0,"-"]},"evennia.contrib.base_systems.components.component":{Component:[271,1,1,""],ComponentRegisterError:[271,2,1,""]},"evennia.contrib.base_systems.components.component.Component":{__init__:[271,3,1,""],at_added:[271,3,1,""],at_removed:[271,3,1,""],attributes:[271,3,1,""],cleanup:[271,3,1,""],create:[271,3,1,""],db_field_names:[271,3,1,""],default_create:[271,3,1,""],load:[271,3,1,""],name:[271,4,1,""],nattributes:[271,3,1,""],ndb_field_names:[271,3,1,""],tag_field_names:[271,3,1,""]},"evennia.contrib.base_systems.components.dbfield":{DBField:[272,1,1,""],NDBField:[272,1,1,""],TagField:[272,1,1,""]},"evennia.contrib.base_systems.components.dbfield.TagField":{__init__:[272,3,1,""]},"evennia.contrib.base_systems.components.holder":{ComponentDoesNotExist:[273,2,1,""],ComponentHandler:[273,1,1,""],ComponentHolderMixin:[273,1,1,""],ComponentIsNotRegistered:[273,2,1,""],ComponentProperty:[273,1,1,""]},"evennia.contrib.base_systems.components.holder.ComponentHandler":{__init__:[273,3,1,""],add:[273,3,1,""],add_default:[273,3,1,""],db_names:[273,3,1,""],get:[273,3,1,""],has:[273,3,1,""],initialize:[273,3,1,""],remove:[273,3,1,""],remove_by_name:[273,3,1,""]},"evennia.contrib.base_systems.components.holder.ComponentHolderMixin":{at_init:[273,3,1,""],at_post_puppet:[273,3,1,""],at_post_unpuppet:[273,3,1,""],basetype_posthook_setup:[273,3,1,""],basetype_setup:[273,3,1,""],cmp:[273,3,1,""],components:[273,3,1,""],signals:[273,3,1,""]},"evennia.contrib.base_systems.components.holder.ComponentProperty":{__init__:[273,3,1,""]},"evennia.contrib.base_systems.components.signals":{SignalsHandler:[274,1,1,""],as_listener:[274,5,1,""],as_responder:[274,5,1,""]},"evennia.contrib.base_systems.components.signals.SignalsHandler":{__init__:[274,3,1,""],add_listener:[274,3,1,""],add_object_listeners_and_responders:[274,3,1,""],add_responder:[274,3,1,""],query:[274,3,1,""],remove_listener:[274,3,1,""],remove_object_listeners_and_responders:[274,3,1,""],remove_responder:[274,3,1,""],trigger:[274,3,1,""]},"evennia.contrib.base_systems.components.tests":{CharWithSignal:[275,1,1,""],CharacterWithComponents:[275,1,1,""],ComponentTestA:[275,1,1,""],ComponentTestB:[275,1,1,""],ComponentWithSignal:[275,1,1,""],RuntimeComponentTestC:[275,1,1,""],TestComponentSignals:[275,1,1,""],TestComponents:[275,1,1,""]},"evennia.contrib.base_systems.components.tests.CharWithSignal":{DoesNotExist:[275,2,1,""],MultipleObjectsReturned:[275,2,1,""],my_other_response:[275,3,1,""],my_other_signal:[275,3,1,""],my_response:[275,3,1,""],my_signal:[275,3,1,""],path:[275,4,1,""],typename:[275,4,1,""]},"evennia.contrib.base_systems.components.tests.CharacterWithComponents":{DoesNotExist:[275,2,1,""],MultipleObjectsReturned:[275,2,1,""],path:[275,4,1,""],test_a:[275,4,1,""],test_b:[275,4,1,""],typename:[275,4,1,""]},"evennia.contrib.base_systems.components.tests.ComponentTestA":{my_int:[275,4,1,""],my_list:[275,4,1,""],name:[275,4,1,""]},"evennia.contrib.base_systems.components.tests.ComponentTestB":{default_single_tag:[275,4,1,""],default_tag:[275,4,1,""],multiple_tags:[275,4,1,""],my_int:[275,4,1,""],my_list:[275,4,1,""],name:[275,4,1,""],single_tag:[275,4,1,""]},"evennia.contrib.base_systems.components.tests.ComponentWithSignal":{my_component_response:[275,3,1,""],my_other_response:[275,3,1,""],my_other_signal:[275,3,1,""],my_response:[275,3,1,""],my_signal:[275,3,1,""],name:[275,4,1,""]},"evennia.contrib.base_systems.components.tests.RuntimeComponentTestC":{added_tag:[275,4,1,""],my_dict:[275,4,1,""],my_int:[275,4,1,""],name:[275,4,1,""]},"evennia.contrib.base_systems.components.tests.TestComponentSignals":{setUp:[275,3,1,""],test_component_can_register_as_listener:[275,3,1,""],test_component_can_register_as_responder:[275,3,1,""],test_component_handler_signals_connected_when_adding_default_component:[275,3,1,""],test_component_handler_signals_disconnected_when_removing_component:[275,3,1,""],test_component_handler_signals_disconnected_when_removing_component_by_name:[275,3,1,""],test_host_can_register_as_listener:[275,3,1,""],test_host_can_register_as_responder:[275,3,1,""],test_signals_can_add_listener:[275,3,1,""],test_signals_can_add_object_listeners_and_responders:[275,3,1,""],test_signals_can_add_responder:[275,3,1,""],test_signals_can_query_with_args:[275,3,1,""],test_signals_can_remove_listener:[275,3,1,""],test_signals_can_remove_object_listeners_and_responders:[275,3,1,""],test_signals_can_remove_responder:[275,3,1,""],test_signals_can_trigger_with_args:[275,3,1,""],test_signals_query_does_not_fail_wihout_responders:[275,3,1,""],test_signals_query_with_aggregate:[275,3,1,""],test_signals_trigger_does_not_fail_without_listener:[275,3,1,""]},"evennia.contrib.base_systems.components.tests.TestComponents":{character_typeclass:[275,4,1,""],test_can_access_component_regular_get:[275,3,1,""],test_can_get_component:[275,3,1,""],test_can_remove_component:[275,3,1,""],test_can_remove_component_by_name:[275,3,1,""],test_cannot_replace_component:[275,3,1,""],test_character_assigns_default_provided_values:[275,3,1,""],test_character_assigns_default_value:[275,3,1,""],test_character_can_register_runtime_component:[275,3,1,""],test_character_has_class_components:[275,3,1,""],test_character_instances_components_properly:[275,3,1,""],test_component_tags_default_value_is_overridden_when_enforce_single:[275,3,1,""],test_component_tags_only_hold_one_value_when_enforce_single:[275,3,1,""],test_component_tags_support_multiple_values_by_default:[275,3,1,""],test_handler_can_add_default_component:[275,3,1,""],test_handler_has_returns_true_for_any_components:[275,3,1,""],test_host_has_added_component_tags:[275,3,1,""],test_host_has_added_default_component_tags:[275,3,1,""],test_host_has_class_component_tags:[275,3,1,""],test_host_remove_by_name_component_tags:[275,3,1,""],test_host_remove_component_tags:[275,3,1,""],test_returns_none_with_regular_get_when_no_attribute:[275,3,1,""]},"evennia.contrib.base_systems.custom_gametime":{custom_gametime:[277,0,0,"-"],tests:[278,0,0,"-"]},"evennia.contrib.base_systems.custom_gametime.custom_gametime":{GametimeScript:[277,1,1,""],custom_gametime:[277,5,1,""],gametime_to_realtime:[277,5,1,""],real_seconds_until:[277,5,1,""],realtime_to_gametime:[277,5,1,""],schedule:[277,5,1,""],time_to_tuple:[277,5,1,""]},"evennia.contrib.base_systems.custom_gametime.custom_gametime.GametimeScript":{DoesNotExist:[277,2,1,""],MultipleObjectsReturned:[277,2,1,""],at_repeat:[277,3,1,""],at_script_creation:[277,3,1,""],path:[277,4,1,""],typename:[277,4,1,""]},"evennia.contrib.base_systems.custom_gametime.tests":{TestCustomGameTime:[278,1,1,""]},"evennia.contrib.base_systems.custom_gametime.tests.TestCustomGameTime":{tearDown:[278,3,1,""],test_custom_gametime:[278,3,1,""],test_gametime_to_realtime:[278,3,1,""],test_real_seconds_until:[278,3,1,""],test_realtime_to_gametime:[278,3,1,""],test_schedule:[278,3,1,""],test_time_to_tuple:[278,3,1,""]},"evennia.contrib.base_systems.email_login":{connection_screens:[280,0,0,"-"],email_login:[281,0,0,"-"],tests:[282,0,0,"-"]},"evennia.contrib.base_systems.email_login.email_login":{CmdUnconnectedConnect:[281,1,1,""],CmdUnconnectedCreate:[281,1,1,""],CmdUnconnectedHelp:[281,1,1,""],CmdUnconnectedLook:[281,1,1,""],CmdUnconnectedQuit:[281,1,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedConnect":{aliases:[281,4,1,""],func:[281,3,1,""],help_category:[281,4,1,""],key:[281,4,1,""],lock_storage:[281,4,1,""],locks:[281,4,1,""],search_index_entry:[281,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedCreate":{aliases:[281,4,1,""],func:[281,3,1,""],help_category:[281,4,1,""],key:[281,4,1,""],lock_storage:[281,4,1,""],locks:[281,4,1,""],parse:[281,3,1,""],search_index_entry:[281,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedHelp":{aliases:[281,4,1,""],func:[281,3,1,""],help_category:[281,4,1,""],key:[281,4,1,""],lock_storage:[281,4,1,""],locks:[281,4,1,""],search_index_entry:[281,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedLook":{aliases:[281,4,1,""],func:[281,3,1,""],help_category:[281,4,1,""],key:[281,4,1,""],lock_storage:[281,4,1,""],locks:[281,4,1,""],search_index_entry:[281,4,1,""]},"evennia.contrib.base_systems.email_login.email_login.CmdUnconnectedQuit":{aliases:[281,4,1,""],func:[281,3,1,""],help_category:[281,4,1,""],key:[281,4,1,""],lock_storage:[281,4,1,""],locks:[281,4,1,""],search_index_entry:[281,4,1,""]},"evennia.contrib.base_systems.email_login.tests":{TestEmailLogin:[282,1,1,""]},"evennia.contrib.base_systems.email_login.tests.TestEmailLogin":{test_connect:[282,3,1,""],test_quit:[282,3,1,""],test_unconnectedhelp:[282,3,1,""],test_unconnectedlook:[282,3,1,""]},"evennia.contrib.base_systems.ingame_python":{callbackhandler:[284,0,0,"-"],commands:[285,0,0,"-"],eventfuncs:[286,0,0,"-"],scripts:[287,0,0,"-"],tests:[288,0,0,"-"],utils:[290,0,0,"-"]},"evennia.contrib.base_systems.ingame_python.callbackhandler":{Callback:[284,1,1,""],CallbackHandler:[284,1,1,""]},"evennia.contrib.base_systems.ingame_python.callbackhandler.Callback":{author:[284,4,1,""],code:[284,4,1,""],created_on:[284,4,1,""],name:[284,4,1,""],number:[284,4,1,""],obj:[284,4,1,""],parameters:[284,4,1,""],updated_by:[284,4,1,""],updated_on:[284,4,1,""],valid:[284,4,1,""]},"evennia.contrib.base_systems.ingame_python.callbackhandler.CallbackHandler":{__init__:[284,3,1,""],add:[284,3,1,""],all:[284,3,1,""],call:[284,3,1,""],edit:[284,3,1,""],format_callback:[284,3,1,""],get:[284,3,1,""],get_variable:[284,3,1,""],remove:[284,3,1,""],script:[284,4,1,""]},"evennia.contrib.base_systems.ingame_python.commands":{CmdCallback:[285,1,1,""]},"evennia.contrib.base_systems.ingame_python.commands.CmdCallback":{accept_callback:[285,3,1,""],add_callback:[285,3,1,""],aliases:[285,4,1,""],del_callback:[285,3,1,""],edit_callback:[285,3,1,""],func:[285,3,1,""],get_help:[285,3,1,""],help_category:[285,4,1,""],key:[285,4,1,""],list_callbacks:[285,3,1,""],list_tasks:[285,3,1,""],lock_storage:[285,4,1,""],locks:[285,4,1,""],search_index_entry:[285,4,1,""]},"evennia.contrib.base_systems.ingame_python.eventfuncs":{call_event:[286,5,1,""],deny:[286,5,1,""],get:[286,5,1,""]},"evennia.contrib.base_systems.ingame_python.scripts":{EventHandler:[287,1,1,""],TimeEventScript:[287,1,1,""],complete_task:[287,5,1,""]},"evennia.contrib.base_systems.ingame_python.scripts.EventHandler":{DoesNotExist:[287,2,1,""],MultipleObjectsReturned:[287,2,1,""],accept_callback:[287,3,1,""],add_callback:[287,3,1,""],add_event:[287,3,1,""],at_script_creation:[287,3,1,""],at_server_start:[287,3,1,""],call:[287,3,1,""],del_callback:[287,3,1,""],edit_callback:[287,3,1,""],get_callbacks:[287,3,1,""],get_events:[287,3,1,""],get_variable:[287,3,1,""],handle_error:[287,3,1,""],path:[287,4,1,""],set_task:[287,3,1,""],typename:[287,4,1,""]},"evennia.contrib.base_systems.ingame_python.scripts.TimeEventScript":{DoesNotExist:[287,2,1,""],MultipleObjectsReturned:[287,2,1,""],at_repeat:[287,3,1,""],at_script_creation:[287,3,1,""],path:[287,4,1,""],typename:[287,4,1,""]},"evennia.contrib.base_systems.ingame_python.tests":{TestCmdCallback:[288,1,1,""],TestDefaultCallbacks:[288,1,1,""],TestEventHandler:[288,1,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestCmdCallback":{setUp:[288,3,1,""],tearDown:[288,3,1,""],test_accept:[288,3,1,""],test_add:[288,3,1,""],test_del:[288,3,1,""],test_list:[288,3,1,""],test_lock:[288,3,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestDefaultCallbacks":{setUp:[288,3,1,""],tearDown:[288,3,1,""],test_exit:[288,3,1,""]},"evennia.contrib.base_systems.ingame_python.tests.TestEventHandler":{setUp:[288,3,1,""],tearDown:[288,3,1,""],test_accept:[288,3,1,""],test_add_validation:[288,3,1,""],test_call:[288,3,1,""],test_del:[288,3,1,""],test_edit:[288,3,1,""],test_edit_validation:[288,3,1,""],test_handler:[288,3,1,""],test_start:[288,3,1,""]},"evennia.contrib.base_systems.ingame_python.utils":{InterruptEvent:[290,2,1,""],get_event_handler:[290,5,1,""],get_next_wait:[290,5,1,""],keyword_event:[290,5,1,""],phrase_event:[290,5,1,""],register_events:[290,5,1,""],time_event:[290,5,1,""]},"evennia.contrib.base_systems.menu_login":{connection_screens:[292,0,0,"-"]},"evennia.contrib.base_systems.mux_comms_cmds":{mux_comms_cmds:[296,0,0,"-"],tests:[297,0,0,"-"]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds":{CmdAddCom:[296,1,1,""],CmdAllCom:[296,1,1,""],CmdCBoot:[296,1,1,""],CmdCWho:[296,1,1,""],CmdCdesc:[296,1,1,""],CmdCdestroy:[296,1,1,""],CmdChannelCreate:[296,1,1,""],CmdClock:[296,1,1,""],CmdDelCom:[296,1,1,""],CmdSetLegacyComms:[296,1,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdAddCom":{account_caller:[296,4,1,""],aliases:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdAllCom":{account_caller:[296,4,1,""],aliases:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCBoot":{account_caller:[296,4,1,""],aliases:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],search_index_entry:[296,4,1,""],switch_options:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCWho":{account_caller:[296,4,1,""],aliases:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCdesc":{account_caller:[296,4,1,""],aliases:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdCdestroy":{account_caller:[296,4,1,""],aliases:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdChannelCreate":{account_caller:[296,4,1,""],aliases:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdClock":{account_caller:[296,4,1,""],aliases:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdDelCom":{account_caller:[296,4,1,""],aliases:[296,4,1,""],func:[296,3,1,""],help_category:[296,4,1,""],key:[296,4,1,""],lock_storage:[296,4,1,""],locks:[296,4,1,""],search_index_entry:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds.CmdSetLegacyComms":{at_cmdset_createion:[296,3,1,""],path:[296,4,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.tests":{TestLegacyMuxComms:[297,1,1,""]},"evennia.contrib.base_systems.mux_comms_cmds.tests.TestLegacyMuxComms":{setUp:[297,3,1,""],test_all_com:[297,3,1,""],test_cboot:[297,3,1,""],test_cdesc:[297,3,1,""],test_cdestroy:[297,3,1,""],test_clock:[297,3,1,""],test_cwho:[297,3,1,""],test_toggle_com:[297,3,1,""]},"evennia.contrib.base_systems.unixcommand":{tests:[299,0,0,"-"],unixcommand:[300,0,0,"-"]},"evennia.contrib.base_systems.unixcommand.tests":{CmdDummy:[299,1,1,""],TestUnixCommand:[299,1,1,""]},"evennia.contrib.base_systems.unixcommand.tests.CmdDummy":{aliases:[299,4,1,""],func:[299,3,1,""],help_category:[299,4,1,""],init_parser:[299,3,1,""],key:[299,4,1,""],lock_storage:[299,4,1,""],search_index_entry:[299,4,1,""]},"evennia.contrib.base_systems.unixcommand.tests.TestUnixCommand":{test_failure:[299,3,1,""],test_success:[299,3,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand":{HelpAction:[300,1,1,""],ParseError:[300,2,1,""],UnixCommand:[300,1,1,""],UnixCommandParser:[300,1,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand.UnixCommand":{__init__:[300,3,1,""],aliases:[300,4,1,""],func:[300,3,1,""],get_help:[300,3,1,""],help_category:[300,4,1,""],init_parser:[300,3,1,""],key:[300,4,1,""],lock_storage:[300,4,1,""],parse:[300,3,1,""],search_index_entry:[300,4,1,""]},"evennia.contrib.base_systems.unixcommand.unixcommand.UnixCommandParser":{__init__:[300,3,1,""],format_help:[300,3,1,""],format_usage:[300,3,1,""],print_help:[300,3,1,""],print_usage:[300,3,1,""]},"evennia.contrib.full_systems":{evscaperoom:[302,0,0,"-"]},"evennia.contrib.full_systems.evscaperoom":{commands:[303,0,0,"-"],menu:[304,0,0,"-"],objects:[305,0,0,"-"],room:[306,0,0,"-"],scripts:[307,0,0,"-"],state:[308,0,0,"-"],tests:[309,0,0,"-"],utils:[310,0,0,"-"]},"evennia.contrib.full_systems.evscaperoom.commands":{CmdCreateObj:[303,1,1,""],CmdEmote:[303,1,1,""],CmdEvscapeRoom:[303,1,1,""],CmdEvscapeRoomStart:[303,1,1,""],CmdFocus:[303,1,1,""],CmdFocusInteraction:[303,1,1,""],CmdGet:[303,1,1,""],CmdGiveUp:[303,1,1,""],CmdHelp:[303,1,1,""],CmdJumpState:[303,1,1,""],CmdLook:[303,1,1,""],CmdOptions:[303,1,1,""],CmdRerouter:[303,1,1,""],CmdSetEvScapeRoom:[303,1,1,""],CmdSetFlag:[303,1,1,""],CmdSpeak:[303,1,1,""],CmdStand:[303,1,1,""],CmdWho:[303,1,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdCreateObj":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],locks:[303,4,1,""],obj1_search:[303,4,1,""],obj2_search:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEmote":{aliases:[303,4,1,""],arg_regex:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],room_replace:[303,3,1,""],search_index_entry:[303,4,1,""],you_replace:[303,3,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEvscapeRoom":{aliases:[303,4,1,""],arg_regex:[303,4,1,""],focus:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],obj1_search:[303,4,1,""],obj2_search:[303,4,1,""],parse:[303,3,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdEvscapeRoomStart":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdFocus":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],obj1_search:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdFocusInteraction":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],obj1_search:[303,4,1,""],obj2_search:[303,4,1,""],parse:[303,3,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdGet":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdGiveUp":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdHelp":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdJumpState":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],locks:[303,4,1,""],obj1_search:[303,4,1,""],obj2_search:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdLook":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],obj1_search:[303,4,1,""],obj2_search:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdOptions":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdRerouter":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSetEvScapeRoom":{at_cmdset_creation:[303,3,1,""],path:[303,4,1,""],priority:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSetFlag":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],locks:[303,4,1,""],obj1_search:[303,4,1,""],obj2_search:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdSpeak":{aliases:[303,4,1,""],arg_regex:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdStand":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.commands.CmdWho":{aliases:[303,4,1,""],func:[303,3,1,""],help_category:[303,4,1,""],key:[303,4,1,""],lock_storage:[303,4,1,""],obj1_search:[303,4,1,""],obj2_search:[303,4,1,""],search_index_entry:[303,4,1,""]},"evennia.contrib.full_systems.evscaperoom.menu":{EvscaperoomMenu:[304,1,1,""],OptionsMenu:[304,1,1,""],node_create_room:[304,5,1,""],node_join_room:[304,5,1,""],node_options:[304,5,1,""],node_quit:[304,5,1,""],node_set_desc:[304,5,1,""],run_evscaperoom_menu:[304,5,1,""],run_option_menu:[304,5,1,""]},"evennia.contrib.full_systems.evscaperoom.menu.EvscaperoomMenu":{node_border_char:[304,4,1,""],nodetext_formatter:[304,3,1,""],options_formatter:[304,3,1,""]},"evennia.contrib.full_systems.evscaperoom.menu.OptionsMenu":{node_formatter:[304,3,1,""]},"evennia.contrib.full_systems.evscaperoom.objects":{BaseApplicable:[305,1,1,""],BaseConsumable:[305,1,1,""],BasePositionable:[305,1,1,""],Climbable:[305,1,1,""],CodeInput:[305,1,1,""],Combinable:[305,1,1,""],Drinkable:[305,1,1,""],Edible:[305,1,1,""],EvscaperoomObject:[305,1,1,""],Feelable:[305,1,1,""],HasButtons:[305,1,1,""],IndexReadable:[305,1,1,""],Insertable:[305,1,1,""],Kneelable:[305,1,1,""],Liable:[305,1,1,""],Listenable:[305,1,1,""],Mixable:[305,1,1,""],Movable:[305,1,1,""],Openable:[305,1,1,""],Positionable:[305,1,1,""],Readable:[305,1,1,""],Rotatable:[305,1,1,""],Sittable:[305,1,1,""],Smellable:[305,1,1,""],Usable:[305,1,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BaseApplicable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_apply:[305,3,1,""],at_cannot_apply:[305,3,1,""],handle_apply:[305,3,1,""],path:[305,4,1,""],target_flag:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BaseConsumable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_already_consumed:[305,3,1,""],at_consume:[305,3,1,""],consume_flag:[305,4,1,""],handle_consume:[305,3,1,""],has_consumed:[305,3,1,""],one_consume_only:[305,4,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.BasePositionable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_again_position:[305,3,1,""],at_cannot_position:[305,3,1,""],at_object_creation:[305,3,1,""],at_position:[305,3,1,""],handle_position:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Climbable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_focus_climb:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.CodeInput":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_code_correct:[305,3,1,""],at_code_incorrect:[305,3,1,""],at_focus_code:[305,3,1,""],at_no_code:[305,3,1,""],case_insensitive:[305,4,1,""],code:[305,4,1,""],code_hint:[305,4,1,""],get_cmd_signatures:[305,3,1,""],infinitely_locked:[305,4,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Combinable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_apply:[305,3,1,""],at_cannot_apply:[305,3,1,""],at_focus_combine:[305,3,1,""],destroy_components:[305,4,1,""],get_cmd_signatures:[305,3,1,""],new_create_dict:[305,4,1,""],path:[305,4,1,""],target_flag:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Drinkable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_already_consumed:[305,3,1,""],at_consume:[305,3,1,""],at_focus_drink:[305,3,1,""],at_focus_sip:[305,3,1,""],consume_flag:[305,4,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Edible":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_focus_eat:[305,3,1,""],consume_flag:[305,4,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.EvscaperoomObject":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],action_prepositions:[305,4,1,""],at_focus:[305,3,1,""],at_object_creation:[305,3,1,""],at_speech:[305,3,1,""],at_unfocus:[305,3,1,""],check_character_flag:[305,3,1,""],check_flag:[305,3,1,""],get_cmd_signatures:[305,3,1,""],get_help:[305,3,1,""],get_position:[305,3,1,""],get_short_desc:[305,3,1,""],msg_char:[305,3,1,""],msg_room:[305,3,1,""],msg_system:[305,3,1,""],next_state:[305,3,1,""],parse:[305,3,1,""],path:[305,4,1,""],position_prep_map:[305,4,1,""],return_appearance:[305,3,1,""],room:[305,3,1,""],roomstate:[305,3,1,""],set_character_flag:[305,3,1,""],set_flag:[305,3,1,""],set_position:[305,3,1,""],tagcategory:[305,3,1,""],typename:[305,4,1,""],unset_character_flag:[305,3,1,""],unset_flag:[305,3,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Feelable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_focus_feel:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.HasButtons":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_focus_press:[305,3,1,""],at_focus_push:[305,3,1,""],at_green_button:[305,3,1,""],at_nomatch:[305,3,1,""],at_red_button:[305,3,1,""],buttons:[305,4,1,""],get_cmd_signatures:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.IndexReadable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_cannot_read:[305,3,1,""],at_focus_read:[305,3,1,""],at_read:[305,3,1,""],get_cmd_signatures:[305,3,1,""],index:[305,4,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Insertable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_apply:[305,3,1,""],at_cannot_apply:[305,3,1,""],at_focus_insert:[305,3,1,""],get_cmd_signatures:[305,3,1,""],path:[305,4,1,""],target_flag:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Kneelable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_focus_kneel:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Liable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_focus_lie:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Listenable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_focus_listen:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Mixable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_mix:[305,3,1,""],at_mix_failure:[305,3,1,""],at_mix_success:[305,3,1,""],at_object_creation:[305,3,1,""],check_mixture:[305,3,1,""],handle_mix:[305,3,1,""],ingredient_recipe:[305,4,1,""],mixer_flag:[305,4,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Movable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_already_moved:[305,3,1,""],at_cannot_move:[305,3,1,""],at_focus_move:[305,3,1,""],at_focus_push:[305,3,1,""],at_focus_shove:[305,3,1,""],at_left:[305,3,1,""],at_object_creation:[305,3,1,""],at_right:[305,3,1,""],get_cmd_signatures:[305,3,1,""],move_positions:[305,4,1,""],path:[305,4,1,""],start_position:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Openable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_already_closed:[305,3,1,""],at_already_open:[305,3,1,""],at_close:[305,3,1,""],at_focus_close:[305,3,1,""],at_focus_open:[305,3,1,""],at_locked:[305,3,1,""],at_object_creation:[305,3,1,""],at_open:[305,3,1,""],open_flag:[305,4,1,""],path:[305,4,1,""],start_open:[305,4,1,""],typename:[305,4,1,""],unlock_flag:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Positionable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],get_cmd_signatures:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Readable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_cannot_read:[305,3,1,""],at_focus_read:[305,3,1,""],at_object_creation:[305,3,1,""],at_read:[305,3,1,""],path:[305,4,1,""],read_flag:[305,4,1,""],start_readable:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Rotatable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_cannot_rotate:[305,3,1,""],at_focus_rotate:[305,3,1,""],at_focus_turn:[305,3,1,""],at_object_creation:[305,3,1,""],at_rotate:[305,3,1,""],path:[305,4,1,""],rotate_flag:[305,4,1,""],start_rotatable:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Sittable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_focus_sit:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Smellable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_focus_smell:[305,3,1,""],path:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.objects.Usable":{DoesNotExist:[305,2,1,""],MultipleObjectsReturned:[305,2,1,""],at_apply:[305,3,1,""],at_cannot_apply:[305,3,1,""],at_focus_use:[305,3,1,""],path:[305,4,1,""],target_flag:[305,4,1,""],typename:[305,4,1,""]},"evennia.contrib.full_systems.evscaperoom.room":{EvscapeRoom:[306,1,1,""]},"evennia.contrib.full_systems.evscaperoom.room.EvscapeRoom":{"delete":[306,3,1,""],DoesNotExist:[306,2,1,""],MultipleObjectsReturned:[306,2,1,""],achievement:[306,3,1,""],at_object_creation:[306,3,1,""],at_object_leave:[306,3,1,""],at_object_receive:[306,3,1,""],character_cleanup:[306,3,1,""],character_exit:[306,3,1,""],check_flag:[306,3,1,""],check_perm:[306,3,1,""],get_all_characters:[306,3,1,""],log:[306,3,1,""],path:[306,4,1,""],progress:[306,3,1,""],return_appearance:[306,3,1,""],score:[306,3,1,""],set_flag:[306,3,1,""],state:[306,3,1,""],statehandler:[306,4,1,""],tag_all_characters:[306,3,1,""],tag_character:[306,3,1,""],typename:[306,4,1,""],unset_flag:[306,3,1,""]},"evennia.contrib.full_systems.evscaperoom.scripts":{CleanupScript:[307,1,1,""]},"evennia.contrib.full_systems.evscaperoom.scripts.CleanupScript":{DoesNotExist:[307,2,1,""],MultipleObjectsReturned:[307,2,1,""],at_repeat:[307,3,1,""],at_script_creation:[307,3,1,""],path:[307,4,1,""],typename:[307,4,1,""]},"evennia.contrib.full_systems.evscaperoom.state":{BaseState:[308,1,1,""],StateHandler:[308,1,1,""]},"evennia.contrib.full_systems.evscaperoom.state.BaseState":{__init__:[308,3,1,""],character_enters:[308,3,1,""],character_leaves:[308,3,1,""],cinematic:[308,3,1,""],clean:[308,3,1,""],create_object:[308,3,1,""],get_hint:[308,3,1,""],get_object:[308,3,1,""],hints:[308,4,1,""],init:[308,3,1,""],msg:[308,3,1,""],next:[308,3,1,""],next_state:[308,4,1,""]},"evennia.contrib.full_systems.evscaperoom.state.StateHandler":{__init__:[308,3,1,""],init_state:[308,3,1,""],load_state:[308,3,1,""],next_state:[308,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests":{TestEvScapeRoom:[309,1,1,""],TestEvscaperoomCommands:[309,1,1,""],TestStates:[309,1,1,""],TestUtils:[309,1,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestEvScapeRoom":{setUp:[309,3,1,""],tearDown:[309,3,1,""],test_room_methods:[309,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestEvscaperoomCommands":{setUp:[309,3,1,""],test_base_parse:[309,3,1,""],test_base_search:[309,3,1,""],test_emote:[309,3,1,""],test_focus:[309,3,1,""],test_focus_interaction:[309,3,1,""],test_look:[309,3,1,""],test_set_focus:[309,3,1,""],test_speech:[309,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestStates":{setUp:[309,3,1,""],tearDown:[309,3,1,""],test_all_states:[309,3,1,""],test_base_state:[309,3,1,""]},"evennia.contrib.full_systems.evscaperoom.tests.TestUtils":{test_overwrite:[309,3,1,""],test_parse_for_perspectives:[309,3,1,""],test_parse_for_things:[309,3,1,""]},"evennia.contrib.full_systems.evscaperoom.utils":{add_msg_borders:[310,5,1,""],create_evscaperoom_object:[310,5,1,""],create_fantasy_word:[310,5,1,""],msg_cinematic:[310,5,1,""],parse_for_perspectives:[310,5,1,""],parse_for_things:[310,5,1,""]},"evennia.contrib.game_systems":{barter:[312,0,0,"-"],clothing:[315,0,0,"-"],cooldowns:[318,0,0,"-"],crafting:[321,0,0,"-"],gendersub:[325,0,0,"-"],mail:[328,0,0,"-"],multidescer:[331,0,0,"-"],puzzles:[334,0,0,"-"],turnbattle:[337,0,0,"-"]},"evennia.contrib.game_systems.barter":{barter:[313,0,0,"-"],tests:[314,0,0,"-"]},"evennia.contrib.game_systems.barter.barter":{CmdAccept:[313,1,1,""],CmdDecline:[313,1,1,""],CmdEvaluate:[313,1,1,""],CmdFinish:[313,1,1,""],CmdOffer:[313,1,1,""],CmdStatus:[313,1,1,""],CmdTrade:[313,1,1,""],CmdTradeBase:[313,1,1,""],CmdTradeHelp:[313,1,1,""],CmdsetTrade:[313,1,1,""],TradeHandler:[313,1,1,""],TradeTimeout:[313,1,1,""]},"evennia.contrib.game_systems.barter.barter.CmdAccept":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],locks:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdDecline":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],locks:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdEvaluate":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],locks:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdFinish":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],locks:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdOffer":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],locks:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdStatus":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],locks:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTrade":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],locks:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTradeBase":{aliases:[313,4,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],parse:[313,3,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdTradeHelp":{aliases:[313,4,1,""],func:[313,3,1,""],help_category:[313,4,1,""],key:[313,4,1,""],lock_storage:[313,4,1,""],locks:[313,4,1,""],search_index_entry:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.CmdsetTrade":{at_cmdset_creation:[313,3,1,""],key:[313,4,1,""],path:[313,4,1,""]},"evennia.contrib.game_systems.barter.barter.TradeHandler":{__init__:[313,3,1,""],accept:[313,3,1,""],decline:[313,3,1,""],finish:[313,3,1,""],get_other:[313,3,1,""],join:[313,3,1,""],list:[313,3,1,""],msg_other:[313,3,1,""],offer:[313,3,1,""],search:[313,3,1,""],unjoin:[313,3,1,""]},"evennia.contrib.game_systems.barter.barter.TradeTimeout":{DoesNotExist:[313,2,1,""],MultipleObjectsReturned:[313,2,1,""],at_repeat:[313,3,1,""],at_script_creation:[313,3,1,""],is_valid:[313,3,1,""],path:[313,4,1,""],typename:[313,4,1,""]},"evennia.contrib.game_systems.barter.tests":{TestBarter:[314,1,1,""]},"evennia.contrib.game_systems.barter.tests.TestBarter":{setUp:[314,3,1,""],test_cmdtrade:[314,3,1,""],test_cmdtradehelp:[314,3,1,""],test_tradehandler_base:[314,3,1,""],test_tradehandler_joins:[314,3,1,""],test_tradehandler_offers:[314,3,1,""]},"evennia.contrib.game_systems.clothing":{clothing:[316,0,0,"-"],tests:[317,0,0,"-"]},"evennia.contrib.game_systems.clothing.clothing":{ClothedCharacter:[316,1,1,""],ClothedCharacterCmdSet:[316,1,1,""],CmdCover:[316,1,1,""],CmdInventory:[316,1,1,""],CmdRemove:[316,1,1,""],CmdUncover:[316,1,1,""],CmdWear:[316,1,1,""],ContribClothing:[316,1,1,""],clothing_type_count:[316,5,1,""],get_worn_clothes:[316,5,1,""],order_clothes_list:[316,5,1,""],single_type_count:[316,5,1,""]},"evennia.contrib.game_systems.clothing.clothing.ClothedCharacter":{DoesNotExist:[316,2,1,""],MultipleObjectsReturned:[316,2,1,""],get_display_desc:[316,3,1,""],get_display_things:[316,3,1,""],path:[316,4,1,""],typename:[316,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.ClothedCharacterCmdSet":{at_cmdset_creation:[316,3,1,""],key:[316,4,1,""],path:[316,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdCover":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],rhs_split:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdInventory":{aliases:[316,4,1,""],arg_regex:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],locks:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdRemove":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdUncover":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.CmdWear":{aliases:[316,4,1,""],func:[316,3,1,""],help_category:[316,4,1,""],key:[316,4,1,""],lock_storage:[316,4,1,""],search_index_entry:[316,4,1,""]},"evennia.contrib.game_systems.clothing.clothing.ContribClothing":{DoesNotExist:[316,2,1,""],MultipleObjectsReturned:[316,2,1,""],at_get:[316,3,1,""],at_pre_move:[316,3,1,""],path:[316,4,1,""],remove:[316,3,1,""],typename:[316,4,1,""],wear:[316,3,1,""]},"evennia.contrib.game_systems.clothing.tests":{TestClothingCmd:[317,1,1,""],TestClothingFunc:[317,1,1,""]},"evennia.contrib.game_systems.clothing.tests.TestClothingCmd":{setUp:[317,3,1,""],test_clothingcommands:[317,3,1,""]},"evennia.contrib.game_systems.clothing.tests.TestClothingFunc":{setUp:[317,3,1,""],test_clothingfunctions:[317,3,1,""]},"evennia.contrib.game_systems.cooldowns":{cooldowns:[319,0,0,"-"],tests:[320,0,0,"-"]},"evennia.contrib.game_systems.cooldowns.cooldowns":{CooldownHandler:[319,1,1,""]},"evennia.contrib.game_systems.cooldowns.cooldowns.CooldownHandler":{__init__:[319,3,1,""],add:[319,3,1,""],all:[319,3,1,""],cleanup:[319,3,1,""],clear:[319,3,1,""],data:[319,4,1,""],db_attribute:[319,4,1,""],extend:[319,3,1,""],obj:[319,4,1,""],ready:[319,3,1,""],reset:[319,3,1,""],set:[319,3,1,""],time_left:[319,3,1,""]},"evennia.contrib.game_systems.cooldowns.tests":{TestCooldowns:[320,1,1,""]},"evennia.contrib.game_systems.cooldowns.tests.TestCooldowns":{setUp:[320,3,1,""],test_add:[320,3,1,""],test_add_float:[320,3,1,""],test_add_multi:[320,3,1,""],test_add_negative:[320,3,1,""],test_add_none:[320,3,1,""],test_add_overwrite:[320,3,1,""],test_cleanup:[320,3,1,""],test_cleanup_doesnt_delete_anything:[320,3,1,""],test_clear:[320,3,1,""],test_empty:[320,3,1,""],test_extend:[320,3,1,""],test_extend_float:[320,3,1,""],test_extend_negative:[320,3,1,""],test_extend_none:[320,3,1,""],test_reset:[320,3,1,""],test_reset_non_existent:[320,3,1,""]},"evennia.contrib.game_systems.crafting":{crafting:[322,0,0,"-"],example_recipes:[323,0,0,"-"],tests:[324,0,0,"-"]},"evennia.contrib.game_systems.crafting.crafting":{CmdCraft:[322,1,1,""],CraftingCmdSet:[322,1,1,""],CraftingError:[322,2,1,""],CraftingRecipe:[322,1,1,""],CraftingRecipeBase:[322,1,1,""],CraftingValidationError:[322,2,1,""],NonExistentRecipe:[322,1,1,""],craft:[322,5,1,""]},"evennia.contrib.game_systems.crafting.crafting.CmdCraft":{aliases:[322,4,1,""],arg_regex:[322,4,1,""],func:[322,3,1,""],help_category:[322,4,1,""],key:[322,4,1,""],lock_storage:[322,4,1,""],locks:[322,4,1,""],parse:[322,3,1,""],search_index_entry:[322,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingCmdSet":{at_cmdset_creation:[322,3,1,""],key:[322,4,1,""],path:[322,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingRecipe":{__init__:[322,3,1,""],consumable_names:[322,4,1,""],consumable_tag_category:[322,4,1,""],consumable_tags:[322,4,1,""],consume_on_fail:[322,4,1,""],do_craft:[322,3,1,""],error_consumable_excess_message:[322,4,1,""],error_consumable_missing_message:[322,4,1,""],error_consumable_order_message:[322,4,1,""],error_tool_excess_message:[322,4,1,""],error_tool_missing_message:[322,4,1,""],error_tool_order_message:[322,4,1,""],exact_consumable_order:[322,4,1,""],exact_consumables:[322,4,1,""],exact_tool_order:[322,4,1,""],exact_tools:[322,4,1,""],failure_message:[322,4,1,""],name:[322,4,1,""],output_names:[322,4,1,""],output_prototypes:[322,4,1,""],post_craft:[322,3,1,""],pre_craft:[322,3,1,""],seed:[322,3,1,""],success_message:[322,4,1,""],tool_names:[322,4,1,""],tool_tag_category:[322,4,1,""],tool_tags:[322,4,1,""]},"evennia.contrib.game_systems.crafting.crafting.CraftingRecipeBase":{__init__:[322,3,1,""],allow_reuse:[322,4,1,""],craft:[322,3,1,""],do_craft:[322,3,1,""],msg:[322,3,1,""],name:[322,4,1,""],post_craft:[322,3,1,""],pre_craft:[322,3,1,""]},"evennia.contrib.game_systems.crafting.crafting.NonExistentRecipe":{__init__:[322,3,1,""],allow_craft:[322,4,1,""],allow_reuse:[322,4,1,""],pre_craft:[322,3,1,""]},"evennia.contrib.game_systems.crafting.example_recipes":{CmdCast:[323,1,1,""],CrucibleSteelRecipe:[323,1,1,""],FireballRecipe:[323,1,1,""],HealingRecipe:[323,1,1,""],LeatherRecipe:[323,1,1,""],OakBarkRecipe:[323,1,1,""],PigIronRecipe:[323,1,1,""],RawhideRecipe:[323,1,1,""],SwordBladeRecipe:[323,1,1,""],SwordGuardRecipe:[323,1,1,""],SwordHandleRecipe:[323,1,1,""],SwordPommelRecipe:[323,1,1,""],SwordRecipe:[323,1,1,""],random:[323,5,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.CmdCast":{aliases:[323,4,1,""],func:[323,3,1,""],help_category:[323,4,1,""],key:[323,4,1,""],lock_storage:[323,4,1,""],parse:[323,3,1,""],search_index_entry:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.CrucibleSteelRecipe":{consumable_tags:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.FireballRecipe":{desired_effects:[323,4,1,""],failure_effects:[323,4,1,""],name:[323,4,1,""],skill_requirements:[323,4,1,""],skill_roll:[323,4,1,""],success_message:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.HealingRecipe":{desired_effects:[323,4,1,""],failure_effects:[323,4,1,""],name:[323,4,1,""],skill_requirements:[323,4,1,""],skill_roll:[323,4,1,""],success_message:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.LeatherRecipe":{consumable_tags:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.OakBarkRecipe":{consumable_tags:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.PigIronRecipe":{consumable_tags:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.RawhideRecipe":{consumable_tags:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordBladeRecipe":{consumable_tags:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordGuardRecipe":{consumable_tags:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordHandleRecipe":{consumable_tags:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordPommelRecipe":{consumable_tags:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.example_recipes.SwordRecipe":{consumable_tags:[323,4,1,""],exact_consumable_order:[323,4,1,""],name:[323,4,1,""],output_prototypes:[323,4,1,""],tool_tags:[323,4,1,""]},"evennia.contrib.game_systems.crafting.tests":{TestCraftCommand:[324,1,1,""],TestCraftSword:[324,1,1,""],TestCraftUtils:[324,1,1,""],TestCraftingRecipe:[324,1,1,""],TestCraftingRecipeBase:[324,1,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftCommand":{setUp:[324,3,1,""],test_craft__nocons__failure:[324,3,1,""],test_craft__notools__failure:[324,3,1,""],test_craft__success:[324,3,1,""],test_craft__unknown_recipe__failure:[324,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftSword":{setUp:[324,3,1,""],test_craft_sword:[324,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftUtils":{maxDiff:[324,4,1,""],test_load_recipes:[324,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftingRecipe":{maxDiff:[324,4,1,""],setUp:[324,3,1,""],tearDown:[324,3,1,""],test_craft__success:[324,3,1,""],test_craft_cons_excess__fail:[324,3,1,""],test_craft_cons_excess__sucess:[324,3,1,""],test_craft_cons_order__fail:[324,3,1,""],test_craft_missing_cons__always_consume__fail:[324,3,1,""],test_craft_missing_cons__fail:[324,3,1,""],test_craft_missing_tool__fail:[324,3,1,""],test_craft_tool_excess__fail:[324,3,1,""],test_craft_tool_excess__sucess:[324,3,1,""],test_craft_tool_order__fail:[324,3,1,""],test_craft_wrong_tool__fail:[324,3,1,""],test_error_format:[324,3,1,""],test_seed__success:[324,3,1,""]},"evennia.contrib.game_systems.crafting.tests.TestCraftingRecipeBase":{setUp:[324,3,1,""],test_craft_hook__fail:[324,3,1,""],test_craft_hook__succeed:[324,3,1,""],test_msg:[324,3,1,""],test_pre_craft:[324,3,1,""],test_pre_craft_fail:[324,3,1,""]},"evennia.contrib.game_systems.gendersub":{gendersub:[326,0,0,"-"],tests:[327,0,0,"-"]},"evennia.contrib.game_systems.gendersub.gendersub":{GenderCharacter:[326,1,1,""],SetGender:[326,1,1,""]},"evennia.contrib.game_systems.gendersub.gendersub.GenderCharacter":{DoesNotExist:[326,2,1,""],MultipleObjectsReturned:[326,2,1,""],at_object_creation:[326,3,1,""],msg:[326,3,1,""],path:[326,4,1,""],typename:[326,4,1,""]},"evennia.contrib.game_systems.gendersub.gendersub.SetGender":{aliases:[326,4,1,""],func:[326,3,1,""],help_category:[326,4,1,""],key:[326,4,1,""],lock_storage:[326,4,1,""],locks:[326,4,1,""],search_index_entry:[326,4,1,""]},"evennia.contrib.game_systems.gendersub.tests":{TestGenderSub:[327,1,1,""]},"evennia.contrib.game_systems.gendersub.tests.TestGenderSub":{test_gendercharacter:[327,3,1,""],test_setgender:[327,3,1,""]},"evennia.contrib.game_systems.mail":{mail:[329,0,0,"-"],tests:[330,0,0,"-"]},"evennia.contrib.game_systems.mail.mail":{CmdMail:[329,1,1,""],CmdMailCharacter:[329,1,1,""]},"evennia.contrib.game_systems.mail.mail.CmdMail":{aliases:[329,4,1,""],func:[329,3,1,""],get_all_mail:[329,3,1,""],help_category:[329,4,1,""],key:[329,4,1,""],lock:[329,4,1,""],lock_storage:[329,4,1,""],parse:[329,3,1,""],search_index_entry:[329,4,1,""],search_targets:[329,3,1,""],send_mail:[329,3,1,""]},"evennia.contrib.game_systems.mail.mail.CmdMailCharacter":{account_caller:[329,4,1,""],aliases:[329,4,1,""],help_category:[329,4,1,""],key:[329,4,1,""],lock_storage:[329,4,1,""],search_index_entry:[329,4,1,""]},"evennia.contrib.game_systems.mail.tests":{TestMail:[330,1,1,""]},"evennia.contrib.game_systems.mail.tests.TestMail":{test_mail:[330,3,1,""]},"evennia.contrib.game_systems.multidescer":{multidescer:[332,0,0,"-"],tests:[333,0,0,"-"]},"evennia.contrib.game_systems.multidescer.multidescer":{CmdMultiDesc:[332,1,1,""],DescValidateError:[332,2,1,""]},"evennia.contrib.game_systems.multidescer.multidescer.CmdMultiDesc":{aliases:[332,4,1,""],func:[332,3,1,""],help_category:[332,4,1,""],key:[332,4,1,""],lock_storage:[332,4,1,""],locks:[332,4,1,""],search_index_entry:[332,4,1,""]},"evennia.contrib.game_systems.multidescer.tests":{TestMultidescer:[333,1,1,""]},"evennia.contrib.game_systems.multidescer.tests.TestMultidescer":{test_cmdmultidesc:[333,3,1,""]},"evennia.contrib.game_systems.puzzles":{puzzles:[335,0,0,"-"],tests:[336,0,0,"-"]},"evennia.contrib.game_systems.puzzles.puzzles":{CmdArmPuzzle:[335,1,1,""],CmdCreatePuzzleRecipe:[335,1,1,""],CmdEditPuzzle:[335,1,1,""],CmdListArmedPuzzles:[335,1,1,""],CmdListPuzzleRecipes:[335,1,1,""],CmdUsePuzzleParts:[335,1,1,""],PuzzleRecipe:[335,1,1,""],PuzzleSystemCmdSet:[335,1,1,""],maskout_protodef:[335,5,1,""],proto_def:[335,5,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdArmPuzzle":{aliases:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdCreatePuzzleRecipe":{aliases:[335,4,1,""],confirm:[335,4,1,""],default_confirm:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdEditPuzzle":{aliases:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdListArmedPuzzles":{aliases:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdListPuzzleRecipes":{aliases:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.CmdUsePuzzleParts":{aliases:[335,4,1,""],func:[335,3,1,""],help_category:[335,4,1,""],key:[335,4,1,""],lock_storage:[335,4,1,""],locks:[335,4,1,""],search_index_entry:[335,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.PuzzleRecipe":{DoesNotExist:[335,2,1,""],MultipleObjectsReturned:[335,2,1,""],path:[335,4,1,""],save_recipe:[335,3,1,""],typename:[335,4,1,""]},"evennia.contrib.game_systems.puzzles.puzzles.PuzzleSystemCmdSet":{at_cmdset_creation:[335,3,1,""],path:[335,4,1,""]},"evennia.contrib.game_systems.puzzles.tests":{TestPuzzles:[336,1,1,""]},"evennia.contrib.game_systems.puzzles.tests.TestPuzzles":{setUp:[336,3,1,""],test_cmd_armpuzzle:[336,3,1,""],test_cmd_puzzle:[336,3,1,""],test_cmd_use:[336,3,1,""],test_cmdset_puzzle:[336,3,1,""],test_e2e:[336,3,1,""],test_e2e_accumulative:[336,3,1,""],test_e2e_interchangeable_parts_and_results:[336,3,1,""],test_lspuzzlerecipes_lsarmedpuzzles:[336,3,1,""],test_puzzleedit:[336,3,1,""],test_puzzleedit_add_remove_parts_results:[336,3,1,""]},"evennia.contrib.game_systems.turnbattle":{tb_basic:[338,0,0,"-"],tb_equip:[339,0,0,"-"],tb_items:[340,0,0,"-"],tb_magic:[341,0,0,"-"],tb_range:[342,0,0,"-"],tests:[343,0,0,"-"]},"evennia.contrib.game_systems.turnbattle.tb_basic":{ACTIONS_PER_TURN:[338,6,1,""],BasicCombatRules:[338,1,1,""],BattleCmdSet:[338,1,1,""],COMBAT_RULES:[338,6,1,""],CmdAttack:[338,1,1,""],CmdCombatHelp:[338,1,1,""],CmdDisengage:[338,1,1,""],CmdFight:[338,1,1,""],CmdPass:[338,1,1,""],CmdRest:[338,1,1,""],TBBasicCharacter:[338,1,1,""],TBBasicTurnHandler:[338,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.BasicCombatRules":{apply_damage:[338,3,1,""],at_defeat:[338,3,1,""],combat_cleanup:[338,3,1,""],get_attack:[338,3,1,""],get_damage:[338,3,1,""],get_defense:[338,3,1,""],is_in_combat:[338,3,1,""],is_turn:[338,3,1,""],resolve_attack:[338,3,1,""],roll_init:[338,3,1,""],spend_action:[338,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.BattleCmdSet":{at_cmdset_creation:[338,3,1,""],key:[338,4,1,""],path:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdAttack":{aliases:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdCombatHelp":{aliases:[338,4,1,""],combat_help_text:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdDisengage":{aliases:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdFight":{aliases:[338,4,1,""],combat_handler_class:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdPass":{aliases:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.CmdRest":{aliases:[338,4,1,""],func:[338,3,1,""],help_category:[338,4,1,""],key:[338,4,1,""],lock_storage:[338,4,1,""],rules:[338,4,1,""],search_index_entry:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.TBBasicCharacter":{DoesNotExist:[338,2,1,""],MultipleObjectsReturned:[338,2,1,""],at_object_creation:[338,3,1,""],at_pre_move:[338,3,1,""],path:[338,4,1,""],rules:[338,4,1,""],typename:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_basic.TBBasicTurnHandler":{DoesNotExist:[338,2,1,""],MultipleObjectsReturned:[338,2,1,""],at_repeat:[338,3,1,""],at_script_creation:[338,3,1,""],at_stop:[338,3,1,""],initialize_for_combat:[338,3,1,""],join_fight:[338,3,1,""],next_turn:[338,3,1,""],path:[338,4,1,""],rules:[338,4,1,""],start_turn:[338,3,1,""],turn_end_check:[338,3,1,""],typename:[338,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip":{ACTIONS_PER_TURN:[339,6,1,""],BattleCmdSet:[339,1,1,""],COMBAT_RULES:[339,6,1,""],CmdAttack:[339,1,1,""],CmdCombatHelp:[339,1,1,""],CmdDisengage:[339,1,1,""],CmdDoff:[339,1,1,""],CmdDon:[339,1,1,""],CmdFight:[339,1,1,""],CmdPass:[339,1,1,""],CmdRest:[339,1,1,""],CmdUnwield:[339,1,1,""],CmdWield:[339,1,1,""],EquipmentCombatRules:[339,1,1,""],TBEArmor:[339,1,1,""],TBEWeapon:[339,1,1,""],TBEquipCharacter:[339,1,1,""],TBEquipTurnHandler:[339,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.BattleCmdSet":{at_cmdset_creation:[339,3,1,""],key:[339,4,1,""],path:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdAttack":{aliases:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdCombatHelp":{aliases:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDisengage":{aliases:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDoff":{aliases:[339,4,1,""],func:[339,3,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdDon":{aliases:[339,4,1,""],func:[339,3,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdFight":{aliases:[339,4,1,""],command_handler_class:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdPass":{aliases:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdRest":{aliases:[339,4,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdUnwield":{aliases:[339,4,1,""],func:[339,3,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.CmdWield":{aliases:[339,4,1,""],func:[339,3,1,""],help_category:[339,4,1,""],key:[339,4,1,""],lock_storage:[339,4,1,""],rules:[339,4,1,""],search_index_entry:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.EquipmentCombatRules":{get_attack:[339,3,1,""],get_damage:[339,3,1,""],get_defense:[339,3,1,""],resolve_attack:[339,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEArmor":{DoesNotExist:[339,2,1,""],MultipleObjectsReturned:[339,2,1,""],at_drop:[339,3,1,""],at_give:[339,3,1,""],at_object_creation:[339,3,1,""],at_pre_drop:[339,3,1,""],at_pre_give:[339,3,1,""],path:[339,4,1,""],typename:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEWeapon":{DoesNotExist:[339,2,1,""],MultipleObjectsReturned:[339,2,1,""],at_drop:[339,3,1,""],at_give:[339,3,1,""],at_object_creation:[339,3,1,""],path:[339,4,1,""],rules:[339,4,1,""],typename:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEquipCharacter":{DoesNotExist:[339,2,1,""],MultipleObjectsReturned:[339,2,1,""],at_object_creation:[339,3,1,""],path:[339,4,1,""],typename:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_equip.TBEquipTurnHandler":{DoesNotExist:[339,2,1,""],MultipleObjectsReturned:[339,2,1,""],path:[339,4,1,""],rules:[339,4,1,""],typename:[339,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items":{AMULET_OF_WEAKNESS:[340,6,1,""],BattleCmdSet:[340,1,1,""],CmdAttack:[340,1,1,""],CmdCombatHelp:[340,1,1,""],CmdDisengage:[340,1,1,""],CmdFight:[340,1,1,""],CmdPass:[340,1,1,""],CmdRest:[340,1,1,""],CmdUse:[340,1,1,""],DEF_DOWN_MOD:[340,6,1,""],ITEMFUNCS:[340,6,1,""],ItemCombatRules:[340,1,1,""],TBItemsCharacter:[340,1,1,""],TBItemsCharacterTest:[340,1,1,""],TBItemsTurnHandler:[340,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.BattleCmdSet":{at_cmdset_creation:[340,3,1,""],key:[340,4,1,""],path:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdAttack":{aliases:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdCombatHelp":{aliases:[340,4,1,""],combat_help_text:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdDisengage":{aliases:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdFight":{aliases:[340,4,1,""],combat_handler_class:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdPass":{aliases:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdRest":{aliases:[340,4,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.CmdUse":{aliases:[340,4,1,""],func:[340,3,1,""],help_category:[340,4,1,""],key:[340,4,1,""],lock_storage:[340,4,1,""],rules:[340,4,1,""],search_index_entry:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.ItemCombatRules":{add_condition:[340,3,1,""],condition_tickdown:[340,3,1,""],get_attack:[340,3,1,""],get_damage:[340,3,1,""],get_defense:[340,3,1,""],itemfunc_add_condition:[340,3,1,""],itemfunc_attack:[340,3,1,""],itemfunc_cure_condition:[340,3,1,""],itemfunc_heal:[340,3,1,""],resolve_attack:[340,3,1,""],spend_item_use:[340,3,1,""],use_item:[340,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsCharacter":{DoesNotExist:[340,2,1,""],MultipleObjectsReturned:[340,2,1,""],apply_turn_conditions:[340,3,1,""],at_object_creation:[340,3,1,""],at_turn_start:[340,3,1,""],at_update:[340,3,1,""],path:[340,4,1,""],rules:[340,4,1,""],typename:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsCharacterTest":{DoesNotExist:[340,2,1,""],MultipleObjectsReturned:[340,2,1,""],at_object_creation:[340,3,1,""],path:[340,4,1,""],typename:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_items.TBItemsTurnHandler":{DoesNotExist:[340,2,1,""],MultipleObjectsReturned:[340,2,1,""],next_turn:[340,3,1,""],path:[340,4,1,""],rules:[340,4,1,""],typename:[340,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic":{ACTIONS_PER_TURN:[341,6,1,""],BattleCmdSet:[341,1,1,""],COMBAT_RULES:[341,6,1,""],CmdAttack:[341,1,1,""],CmdCast:[341,1,1,""],CmdCombatHelp:[341,1,1,""],CmdDisengage:[341,1,1,""],CmdFight:[341,1,1,""],CmdLearnSpell:[341,1,1,""],CmdPass:[341,1,1,""],CmdRest:[341,1,1,""],CmdStatus:[341,1,1,""],MagicCombatRules:[341,1,1,""],SPELLS:[341,6,1,""],TBMagicCharacter:[341,1,1,""],TBMagicTurnHandler:[341,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.BattleCmdSet":{at_cmdset_creation:[341,3,1,""],key:[341,4,1,""],path:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdAttack":{aliases:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdCast":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdCombatHelp":{aliases:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdDisengage":{aliases:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdFight":{aliases:[341,4,1,""],combat_handler_class:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdLearnSpell":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdPass":{aliases:[341,4,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdRest":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],rules:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.CmdStatus":{aliases:[341,4,1,""],func:[341,3,1,""],help_category:[341,4,1,""],key:[341,4,1,""],lock_storage:[341,4,1,""],search_index_entry:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.MagicCombatRules":{spell_attack:[341,3,1,""],spell_conjure:[341,3,1,""],spell_healing:[341,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.TBMagicCharacter":{DoesNotExist:[341,2,1,""],MultipleObjectsReturned:[341,2,1,""],at_object_creation:[341,3,1,""],path:[341,4,1,""],rules:[341,4,1,""],typename:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_magic.TBMagicTurnHandler":{DoesNotExist:[341,2,1,""],MultipleObjectsReturned:[341,2,1,""],path:[341,4,1,""],rules:[341,4,1,""],typename:[341,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range":{ACTIONS_PER_TURN:[342,6,1,""],BattleCmdSet:[342,1,1,""],COMBAT_RULES:[342,6,1,""],CmdApproach:[342,1,1,""],CmdAttack:[342,1,1,""],CmdCombatHelp:[342,1,1,""],CmdDisengage:[342,1,1,""],CmdFight:[342,1,1,""],CmdPass:[342,1,1,""],CmdRest:[342,1,1,""],CmdShoot:[342,1,1,""],CmdStatus:[342,1,1,""],CmdWithdraw:[342,1,1,""],RangedCombatRules:[342,1,1,""],TBRangeCharacter:[342,1,1,""],TBRangeObject:[342,1,1,""],TBRangeTurnHandler:[342,1,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.BattleCmdSet":{at_cmdset_creation:[342,3,1,""],key:[342,4,1,""],path:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdApproach":{aliases:[342,4,1,""],func:[342,3,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdAttack":{aliases:[342,4,1,""],func:[342,3,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdCombatHelp":{aliases:[342,4,1,""],combat_help_text:[342,4,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdDisengage":{aliases:[342,4,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdFight":{aliases:[342,4,1,""],combat_handler_class:[342,4,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdPass":{aliases:[342,4,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdRest":{aliases:[342,4,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdShoot":{aliases:[342,4,1,""],func:[342,3,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdStatus":{aliases:[342,4,1,""],func:[342,3,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.CmdWithdraw":{aliases:[342,4,1,""],func:[342,3,1,""],help_category:[342,4,1,""],key:[342,4,1,""],lock_storage:[342,4,1,""],rules:[342,4,1,""],search_index_entry:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.RangedCombatRules":{approach:[342,3,1,""],combat_status_message:[342,3,1,""],distance_dec:[342,3,1,""],distance_inc:[342,3,1,""],get_attack:[342,3,1,""],get_defense:[342,3,1,""],get_range:[342,3,1,""],resolve_attack:[342,3,1,""],withdraw:[342,3,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeCharacter":{DoesNotExist:[342,2,1,""],MultipleObjectsReturned:[342,2,1,""],path:[342,4,1,""],rules:[342,4,1,""],typename:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeObject":{DoesNotExist:[342,2,1,""],MultipleObjectsReturned:[342,2,1,""],at_drop:[342,3,1,""],at_get:[342,3,1,""],at_give:[342,3,1,""],at_pre_drop:[342,3,1,""],at_pre_get:[342,3,1,""],at_pre_give:[342,3,1,""],path:[342,4,1,""],typename:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tb_range.TBRangeTurnHandler":{DoesNotExist:[342,2,1,""],MultipleObjectsReturned:[342,2,1,""],init_range:[342,3,1,""],join_fight:[342,3,1,""],join_rangefield:[342,3,1,""],path:[342,4,1,""],rules:[342,4,1,""],start_turn:[342,3,1,""],typename:[342,4,1,""]},"evennia.contrib.game_systems.turnbattle.tests":{TestTurnBattleBasicCmd:[343,1,1,""],TestTurnBattleBasicFunc:[343,1,1,""],TestTurnBattleEquipCmd:[343,1,1,""],TestTurnBattleEquipFunc:[343,1,1,""],TestTurnBattleItemsCmd:[343,1,1,""],TestTurnBattleItemsFunc:[343,1,1,""],TestTurnBattleMagicCmd:[343,1,1,""],TestTurnBattleMagicFunc:[343,1,1,""],TestTurnBattleRangeCmd:[343,1,1,""],TestTurnBattleRangeFunc:[343,1,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleBasicCmd":{test_turnbattlecmd:[343,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleBasicFunc":{setUp:[343,3,1,""],tearDown:[343,3,1,""],test_tbbasicfunc:[343,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleEquipCmd":{setUp:[343,3,1,""],test_turnbattleequipcmd:[343,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleEquipFunc":{setUp:[343,3,1,""],tearDown:[343,3,1,""],test_tbequipfunc:[343,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleItemsCmd":{setUp:[343,3,1,""],test_turnbattleitemcmd:[343,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleItemsFunc":{setUp:[343,3,1,""],tearDown:[343,3,1,""],test_tbitemsfunc:[343,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleMagicCmd":{test_turnbattlemagiccmd:[343,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleMagicFunc":{setUp:[343,3,1,""],tearDown:[343,3,1,""],test_tbbasicfunc:[343,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleRangeCmd":{test_turnbattlerangecmd:[343,3,1,""]},"evennia.contrib.game_systems.turnbattle.tests.TestTurnBattleRangeFunc":{setUp:[343,3,1,""],tearDown:[343,3,1,""],test_tbrangefunc:[343,3,1,""]},"evennia.contrib.grid":{extended_room:[345,0,0,"-"],ingame_map_display:[348,0,0,"-"],simpledoor:[354,0,0,"-"],slow_exit:[357,0,0,"-"],wilderness:[360,0,0,"-"],xyzgrid:[363,0,0,"-"]},"evennia.contrib.grid.extended_room":{extended_room:[346,0,0,"-"],tests:[347,0,0,"-"]},"evennia.contrib.grid.extended_room.extended_room":{CmdExtendedRoomDesc:[346,1,1,""],CmdExtendedRoomDetail:[346,1,1,""],CmdExtendedRoomGameTime:[346,1,1,""],CmdExtendedRoomLook:[346,1,1,""],ExtendedRoom:[346,1,1,""],ExtendedRoomCmdSet:[346,1,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomDesc":{aliases:[346,4,1,""],func:[346,3,1,""],help_category:[346,4,1,""],key:[346,4,1,""],lock_storage:[346,4,1,""],reset_times:[346,3,1,""],search_index_entry:[346,4,1,""],switch_options:[346,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomDetail":{aliases:[346,4,1,""],func:[346,3,1,""],help_category:[346,4,1,""],key:[346,4,1,""],lock_storage:[346,4,1,""],locks:[346,4,1,""],search_index_entry:[346,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomGameTime":{aliases:[346,4,1,""],func:[346,3,1,""],help_category:[346,4,1,""],key:[346,4,1,""],lock_storage:[346,4,1,""],locks:[346,4,1,""],search_index_entry:[346,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.CmdExtendedRoomLook":{aliases:[346,4,1,""],func:[346,3,1,""],help_category:[346,4,1,""],key:[346,4,1,""],lock_storage:[346,4,1,""],search_index_entry:[346,4,1,""]},"evennia.contrib.grid.extended_room.extended_room.ExtendedRoom":{DoesNotExist:[346,2,1,""],MultipleObjectsReturned:[346,2,1,""],at_object_creation:[346,3,1,""],del_detail:[346,3,1,""],get_time_and_season:[346,3,1,""],path:[346,4,1,""],replace_timeslots:[346,3,1,""],return_appearance:[346,3,1,""],return_detail:[346,3,1,""],set_detail:[346,3,1,""],typename:[346,4,1,""],update_current_description:[346,3,1,""]},"evennia.contrib.grid.extended_room.extended_room.ExtendedRoomCmdSet":{at_cmdset_creation:[346,3,1,""],path:[346,4,1,""]},"evennia.contrib.grid.extended_room.tests":{ForceUTCDatetime:[347,1,1,""],TestExtendedRoom:[347,1,1,""]},"evennia.contrib.grid.extended_room.tests.ForceUTCDatetime":{fromtimestamp:[347,3,1,""]},"evennia.contrib.grid.extended_room.tests.TestExtendedRoom":{DETAIL_DESC:[347,4,1,""],OLD_DESC:[347,4,1,""],SPRING_DESC:[347,4,1,""],room_typeclass:[347,4,1,""],setUp:[347,3,1,""],test_cmdextendedlook:[347,3,1,""],test_cmdgametime:[347,3,1,""],test_cmdsetdetail:[347,3,1,""],test_return_appearance:[347,3,1,""],test_return_detail:[347,3,1,""]},"evennia.contrib.grid.ingame_map_display":{ingame_map_display:[349,0,0,"-"]},"evennia.contrib.grid.ingame_map_display.ingame_map_display":{CmdMap:[349,1,1,""],Map:[349,1,1,""],MapDisplayCmdSet:[349,1,1,""]},"evennia.contrib.grid.ingame_map_display.ingame_map_display.CmdMap":{aliases:[349,4,1,""],func:[349,3,1,""],help_category:[349,4,1,""],key:[349,4,1,""],lock_storage:[349,4,1,""],search_index_entry:[349,4,1,""]},"evennia.contrib.grid.ingame_map_display.ingame_map_display.Map":{__init__:[349,3,1,""],create_grid:[349,3,1,""],draw:[349,3,1,""],draw_exits:[349,3,1,""],draw_room_on_map:[349,3,1,""],exit_name_as_ordinal:[349,3,1,""],has_drawn:[349,3,1,""],render_room:[349,3,1,""],show_map:[349,3,1,""],start_loc_on_grid:[349,3,1,""],update_pos:[349,3,1,""]},"evennia.contrib.grid.ingame_map_display.ingame_map_display.MapDisplayCmdSet":{at_cmdset_creation:[349,3,1,""],path:[349,4,1,""]},"evennia.contrib.grid.simpledoor":{simpledoor:[355,0,0,"-"],tests:[356,0,0,"-"]},"evennia.contrib.grid.simpledoor.simpledoor":{CmdOpen:[355,1,1,""],CmdOpenCloseDoor:[355,1,1,""],SimpleDoor:[355,1,1,""],SimpleDoorCmdSet:[355,1,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.CmdOpen":{aliases:[355,4,1,""],create_exit:[355,3,1,""],help_category:[355,4,1,""],key:[355,4,1,""],lock_storage:[355,4,1,""],search_index_entry:[355,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.CmdOpenCloseDoor":{aliases:[355,4,1,""],func:[355,3,1,""],help_category:[355,4,1,""],key:[355,4,1,""],lock_storage:[355,4,1,""],locks:[355,4,1,""],search_index_entry:[355,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.SimpleDoor":{"delete":[355,3,1,""],DoesNotExist:[355,2,1,""],MultipleObjectsReturned:[355,2,1,""],at_failed_traverse:[355,3,1,""],at_object_creation:[355,3,1,""],path:[355,4,1,""],setdesc:[355,3,1,""],setlock:[355,3,1,""],typename:[355,4,1,""]},"evennia.contrib.grid.simpledoor.simpledoor.SimpleDoorCmdSet":{at_cmdset_creation:[355,3,1,""],path:[355,4,1,""]},"evennia.contrib.grid.simpledoor.tests":{TestSimpleDoor:[356,1,1,""]},"evennia.contrib.grid.simpledoor.tests.TestSimpleDoor":{test_cmdopen:[356,3,1,""]},"evennia.contrib.grid.slow_exit":{slow_exit:[358,0,0,"-"],tests:[359,0,0,"-"]},"evennia.contrib.grid.slow_exit.slow_exit":{CmdSetSpeed:[358,1,1,""],CmdStop:[358,1,1,""],SlowExit:[358,1,1,""],SlowExitCmdSet:[358,1,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.CmdSetSpeed":{aliases:[358,4,1,""],func:[358,3,1,""],help_category:[358,4,1,""],key:[358,4,1,""],lock_storage:[358,4,1,""],search_index_entry:[358,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.CmdStop":{aliases:[358,4,1,""],func:[358,3,1,""],help_category:[358,4,1,""],key:[358,4,1,""],lock_storage:[358,4,1,""],search_index_entry:[358,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.SlowExit":{DoesNotExist:[358,2,1,""],MultipleObjectsReturned:[358,2,1,""],at_traverse:[358,3,1,""],path:[358,4,1,""],typename:[358,4,1,""]},"evennia.contrib.grid.slow_exit.slow_exit.SlowExitCmdSet":{at_cmdset_creation:[358,3,1,""],path:[358,4,1,""]},"evennia.contrib.grid.slow_exit.tests":{TestSlowExit:[359,1,1,""]},"evennia.contrib.grid.slow_exit.tests.TestSlowExit":{test_exit:[359,3,1,""]},"evennia.contrib.grid.wilderness":{tests:[361,0,0,"-"],wilderness:[362,0,0,"-"]},"evennia.contrib.grid.wilderness.tests":{TestWilderness:[361,1,1,""]},"evennia.contrib.grid.wilderness.tests.TestWilderness":{get_wilderness_script:[361,3,1,""],setUp:[361,3,1,""],test_create_wilderness_custom_name:[361,3,1,""],test_create_wilderness_default_name:[361,3,1,""],test_enter_wilderness:[361,3,1,""],test_enter_wilderness_custom_coordinates:[361,3,1,""],test_enter_wilderness_custom_name:[361,3,1,""],test_get_new_coordinates:[361,3,1,""],test_preserve_items:[361,3,1,""],test_room_creation:[361,3,1,""],test_wilderness_correct_exits:[361,3,1,""]},"evennia.contrib.grid.wilderness.wilderness":{WildernessExit:[362,1,1,""],WildernessMapProvider:[362,1,1,""],WildernessRoom:[362,1,1,""],WildernessScript:[362,1,1,""],create_wilderness:[362,5,1,""],enter_wilderness:[362,5,1,""],get_new_coordinates:[362,5,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessExit":{DoesNotExist:[362,2,1,""],MultipleObjectsReturned:[362,2,1,""],at_traverse:[362,3,1,""],at_traverse_coordinates:[362,3,1,""],mapprovider:[362,3,1,""],path:[362,4,1,""],typename:[362,4,1,""],wilderness:[362,3,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessMapProvider":{at_prepare_room:[362,3,1,""],exit_typeclass:[362,4,1,""],get_location_name:[362,3,1,""],is_valid_coordinates:[362,3,1,""],room_typeclass:[362,4,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessRoom":{DoesNotExist:[362,2,1,""],MultipleObjectsReturned:[362,2,1,""],at_object_leave:[362,3,1,""],at_object_receive:[362,3,1,""],coordinates:[362,3,1,""],get_display_desc:[362,3,1,""],get_display_name:[362,3,1,""],location_name:[362,3,1,""],path:[362,4,1,""],set_active_coordinates:[362,3,1,""],typename:[362,4,1,""],wilderness:[362,3,1,""]},"evennia.contrib.grid.wilderness.wilderness.WildernessScript":{DoesNotExist:[362,2,1,""],MultipleObjectsReturned:[362,2,1,""],at_post_object_leave:[362,3,1,""],at_script_creation:[362,3,1,""],at_server_start:[362,3,1,""],get_obj_coordinates:[362,3,1,""],get_objs_at_coordinates:[362,3,1,""],is_valid_coordinates:[362,3,1,""],itemcoordinates:[362,4,1,""],mapprovider:[362,4,1,""],move_obj:[362,3,1,""],path:[362,4,1,""],preserve_items:[362,4,1,""],typename:[362,4,1,""]},"evennia.contrib.grid.xyzgrid":{commands:[364,0,0,"-"],example:[365,0,0,"-"],launchcmd:[366,0,0,"-"],prototypes:[367,0,0,"-"],tests:[368,0,0,"-"],utils:[369,0,0,"-"],xymap:[370,0,0,"-"],xymap_legend:[371,0,0,"-"],xyzgrid:[372,0,0,"-"],xyzroom:[373,0,0,"-"]},"evennia.contrib.grid.xyzgrid.commands":{CmdGoto:[364,1,1,""],CmdMap:[364,1,1,""],CmdXYZOpen:[364,1,1,""],CmdXYZTeleport:[364,1,1,""],PathData:[364,1,1,""],XYZGridCmdSet:[364,1,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdGoto":{aliases:[364,4,1,""],auto_step_delay:[364,4,1,""],default_xyz_path_interrupt_msg:[364,4,1,""],func:[364,3,1,""],help_category:[364,4,1,""],key:[364,4,1,""],lock_storage:[364,4,1,""],locks:[364,4,1,""],search_index_entry:[364,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdMap":{aliases:[364,4,1,""],func:[364,3,1,""],help_category:[364,4,1,""],key:[364,4,1,""],lock_storage:[364,4,1,""],locks:[364,4,1,""],search_index_entry:[364,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdXYZOpen":{aliases:[364,4,1,""],help_category:[364,4,1,""],key:[364,4,1,""],lock_storage:[364,4,1,""],parse:[364,3,1,""],search_index_entry:[364,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.CmdXYZTeleport":{aliases:[364,4,1,""],help_category:[364,4,1,""],key:[364,4,1,""],lock_storage:[364,4,1,""],parse:[364,3,1,""],search_index_entry:[364,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.PathData":{directions:[364,4,1,""],step_sequence:[364,4,1,""],target:[364,4,1,""],task:[364,4,1,""],xymap:[364,4,1,""]},"evennia.contrib.grid.xyzgrid.commands.XYZGridCmdSet":{at_cmdset_creation:[364,3,1,""],key:[364,4,1,""],path:[364,4,1,""]},"evennia.contrib.grid.xyzgrid.example":{TransitionToCave:[365,1,1,""],TransitionToLargeTree:[365,1,1,""]},"evennia.contrib.grid.xyzgrid.example.TransitionToCave":{symbol:[365,4,1,""],target_map_xyz:[365,4,1,""]},"evennia.contrib.grid.xyzgrid.example.TransitionToLargeTree":{symbol:[365,4,1,""],target_map_xyz:[365,4,1,""]},"evennia.contrib.grid.xyzgrid.launchcmd":{xyzcommand:[366,5,1,""]},"evennia.contrib.grid.xyzgrid.tests":{Map12aTransition:[368,1,1,""],Map12bTransition:[368,1,1,""],TestBuildExampleGrid:[368,1,1,""],TestCallbacks:[368,1,1,""],TestMap10:[368,1,1,""],TestMap11:[368,1,1,""],TestMap1:[368,1,1,""],TestMap2:[368,1,1,""],TestMap3:[368,1,1,""],TestMap4:[368,1,1,""],TestMap5:[368,1,1,""],TestMap6:[368,1,1,""],TestMap7:[368,1,1,""],TestMap8:[368,1,1,""],TestMap9:[368,1,1,""],TestMapStressTest:[368,1,1,""],TestXYZGrid:[368,1,1,""],TestXYZGridTransition:[368,1,1,""],TestXyzExit:[368,1,1,""],TestXyzRoom:[368,1,1,""]},"evennia.contrib.grid.xyzgrid.tests.Map12aTransition":{symbol:[368,4,1,""],target_map_xyz:[368,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.Map12bTransition":{symbol:[368,4,1,""],target_map_xyz:[368,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestBuildExampleGrid":{setUp:[368,3,1,""],tearDown:[368,3,1,""],test_build:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestCallbacks":{setUp:[368,3,1,""],setup_grid:[368,3,1,""],tearDown:[368,3,1,""],test_typeclassed_xyzroom_and_xyzexit_with_at_object_creation_are_called:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap1":{test_get_shortest_path:[368,3,1,""],test_get_visual_range__nodes__character:[368,4,1,""],test_get_visual_range__nodes__character_0:[368,3,1,""],test_get_visual_range__nodes__character_1:[368,3,1,""],test_get_visual_range__nodes__character_2:[368,3,1,""],test_get_visual_range__nodes__character_3:[368,3,1,""],test_get_visual_range__nodes__character_4:[368,3,1,""],test_get_visual_range__scan:[368,4,1,""],test_get_visual_range__scan_0:[368,3,1,""],test_get_visual_range__scan_1:[368,3,1,""],test_get_visual_range__scan_2:[368,3,1,""],test_get_visual_range__scan_3:[368,3,1,""],test_get_visual_range__scan__character:[368,4,1,""],test_get_visual_range__scan__character_0:[368,3,1,""],test_get_visual_range__scan__character_1:[368,3,1,""],test_get_visual_range__scan__character_2:[368,3,1,""],test_get_visual_range__scan__character_3:[368,3,1,""],test_node_from_coord:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap10":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_paths:[368,4,1,""],test_paths_0:[368,3,1,""],test_paths_1:[368,3,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_shortest_path_2:[368,3,1,""],test_shortest_path_3:[368,3,1,""],test_shortest_path_4:[368,3,1,""],test_shortest_path_5:[368,3,1,""],test_shortest_path_6:[368,3,1,""],test_shortest_path_7:[368,3,1,""],test_shortest_path_8:[368,3,1,""],test_shortest_path_9:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap11":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_get_visual_range_with_path:[368,4,1,""],test_get_visual_range_with_path_0:[368,3,1,""],test_get_visual_range_with_path_1:[368,3,1,""],test_paths:[368,4,1,""],test_paths_0:[368,3,1,""],test_paths_1:[368,3,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap2":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_extended_path_tracking__horizontal:[368,3,1,""],test_extended_path_tracking__vertical:[368,3,1,""],test_get_visual_range__nodes__character:[368,4,1,""],test_get_visual_range__nodes__character_0:[368,3,1,""],test_get_visual_range__nodes__character_1:[368,3,1,""],test_get_visual_range__nodes__character_2:[368,3,1,""],test_get_visual_range__nodes__character_3:[368,3,1,""],test_get_visual_range__nodes__character_4:[368,3,1,""],test_get_visual_range__nodes__character_5:[368,3,1,""],test_get_visual_range__nodes__character_6:[368,3,1,""],test_get_visual_range__nodes__character_7:[368,3,1,""],test_get_visual_range__nodes__character_8:[368,3,1,""],test_get_visual_range__nodes__character_9:[368,3,1,""],test_get_visual_range__scan__character:[368,4,1,""],test_get_visual_range__scan__character_0:[368,3,1,""],test_get_visual_range__scan__character_1:[368,3,1,""],test_get_visual_range__scan__character_2:[368,3,1,""],test_get_visual_range__scan__character_3:[368,3,1,""],test_node_from_coord:[368,3,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_shortest_path_2:[368,3,1,""],test_shortest_path_3:[368,3,1,""],test_shortest_path_4:[368,3,1,""],test_shortest_path_5:[368,3,1,""],test_shortest_path_6:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap3":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_get_visual_range__nodes__character:[368,4,1,""],test_get_visual_range__nodes__character_0:[368,3,1,""],test_get_visual_range__nodes__character_1:[368,3,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_00:[368,3,1,""],test_shortest_path_01:[368,3,1,""],test_shortest_path_02:[368,3,1,""],test_shortest_path_03:[368,3,1,""],test_shortest_path_04:[368,3,1,""],test_shortest_path_05:[368,3,1,""],test_shortest_path_06:[368,3,1,""],test_shortest_path_07:[368,3,1,""],test_shortest_path_08:[368,3,1,""],test_shortest_path_09:[368,3,1,""],test_shortest_path_10:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap4":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_shortest_path_2:[368,3,1,""],test_shortest_path_3:[368,3,1,""],test_shortest_path_4:[368,3,1,""],test_shortest_path_5:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap5":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_shortest_path_2:[368,3,1,""],test_shortest_path_3:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap6":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_shortest_path_2:[368,3,1,""],test_shortest_path_3:[368,3,1,""],test_shortest_path_4:[368,3,1,""],test_shortest_path_5:[368,3,1,""],test_shortest_path_6:[368,3,1,""],test_shortest_path_7:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap7":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_shortest_path_2:[368,3,1,""],test_shortest_path_3:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap8":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_get_visual_range__nodes__character:[368,4,1,""],test_get_visual_range__nodes__character_0:[368,3,1,""],test_get_visual_range_with_path:[368,4,1,""],test_get_visual_range_with_path_0:[368,3,1,""],test_get_visual_range_with_path_1:[368,3,1,""],test_get_visual_range_with_path_2:[368,3,1,""],test_get_visual_range_with_path_3:[368,3,1,""],test_get_visual_range_with_path_4:[368,3,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_shortest_path_2:[368,3,1,""],test_shortest_path_3:[368,3,1,""],test_shortest_path_4:[368,3,1,""],test_shortest_path_5:[368,3,1,""],test_shortest_path_6:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMap9":{map_data:[368,4,1,""],map_display:[368,4,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_shortest_path_2:[368,3,1,""],test_shortest_path_3:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestMapStressTest":{test_grid_creation:[368,4,1,""],test_grid_creation_0:[368,3,1,""],test_grid_creation_1:[368,3,1,""],test_grid_pathfind:[368,4,1,""],test_grid_pathfind_0:[368,3,1,""],test_grid_pathfind_1:[368,3,1,""],test_grid_visibility:[368,4,1,""],test_grid_visibility_0:[368,3,1,""],test_grid_visibility_1:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXYZGrid":{setUp:[368,3,1,""],tearDown:[368,3,1,""],test_spawn:[368,3,1,""],test_str_output:[368,3,1,""],zcoord:[368,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXYZGridTransition":{setUp:[368,3,1,""],tearDown:[368,3,1,""],test_shortest_path:[368,4,1,""],test_shortest_path_0:[368,3,1,""],test_shortest_path_1:[368,3,1,""],test_spawn:[368,3,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXyzExit":{DoesNotExist:[368,2,1,""],MultipleObjectsReturned:[368,2,1,""],at_object_creation:[368,3,1,""],path:[368,4,1,""],typename:[368,4,1,""]},"evennia.contrib.grid.xyzgrid.tests.TestXyzRoom":{DoesNotExist:[368,2,1,""],MultipleObjectsReturned:[368,2,1,""],at_object_creation:[368,3,1,""],path:[368,4,1,""],typename:[368,4,1,""]},"evennia.contrib.grid.xyzgrid.utils":{MapError:[369,2,1,""],MapParserError:[369,2,1,""],MapTransition:[369,2,1,""]},"evennia.contrib.grid.xyzgrid.utils.MapError":{__init__:[369,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap":{XYMap:[370,1,1,""]},"evennia.contrib.grid.xyzgrid.xymap.XYMap":{__init__:[370,3,1,""],calculate_path_matrix:[370,3,1,""],empty_symbol:[370,4,1,""],get_components_with_symbol:[370,3,1,""],get_node_from_coord:[370,3,1,""],get_shortest_path:[370,3,1,""],get_visual_range:[370,3,1,""],legend_key_exceptions:[370,4,1,""],log:[370,3,1,""],mapcorner_symbol:[370,4,1,""],max_pathfinding_length:[370,4,1,""],parse:[370,3,1,""],reload:[370,3,1,""],spawn_links:[370,3,1,""],spawn_nodes:[370,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend":{BasicMapNode:[371,1,1,""],BlockedMapLink:[371,1,1,""],CrossMapLink:[371,1,1,""],DownMapLink:[371,1,1,""],EWMapLink:[371,1,1,""],EWOneWayMapLink:[371,1,1,""],InterruptMapLink:[371,1,1,""],InterruptMapNode:[371,1,1,""],InvisibleSmartMapLink:[371,1,1,""],MapLink:[371,1,1,""],MapNode:[371,1,1,""],MapTransitionNode:[371,1,1,""],NESWMapLink:[371,1,1,""],NSMapLink:[371,1,1,""],NSOneWayMapLink:[371,1,1,""],PlusMapLink:[371,1,1,""],RouterMapLink:[371,1,1,""],SENWMapLink:[371,1,1,""],SNOneWayMapLink:[371,1,1,""],SmartMapLink:[371,1,1,""],SmartRerouterMapLink:[371,1,1,""],SmartTeleporterMapLink:[371,1,1,""],TeleporterMapLink:[371,1,1,""],TransitionMapNode:[371,1,1,""],UpMapLink:[371,1,1,""],WEOneWayMapLink:[371,1,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.BasicMapNode":{prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.BlockedMapLink":{prototype:[371,4,1,""],symbol:[371,4,1,""],weights:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.CrossMapLink":{directions:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.DownMapLink":{direction_aliases:[371,4,1,""],prototype:[371,4,1,""],spawn_aliases:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.EWMapLink":{directions:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.EWOneWayMapLink":{directions:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InterruptMapLink":{interrupt_path:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InterruptMapNode":{display_symbol:[371,4,1,""],interrupt_path:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.InvisibleSmartMapLink":{direction_aliases:[371,4,1,""],display_symbol_aliases:[371,4,1,""],get_display_symbol:[371,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapLink":{__init__:[371,3,1,""],at_empty_target:[371,3,1,""],average_long_link_weights:[371,4,1,""],default_weight:[371,4,1,""],direction_aliases:[371,4,1,""],directions:[371,4,1,""],display_symbol:[371,4,1,""],generate_prototype_key:[371,3,1,""],get_direction:[371,3,1,""],get_display_symbol:[371,3,1,""],get_linked_neighbors:[371,3,1,""],get_weight:[371,3,1,""],interrupt_path:[371,4,1,""],multilink:[371,4,1,""],prototype:[371,4,1,""],spawn_aliases:[371,4,1,""],symbol:[371,4,1,""],traverse:[371,3,1,""],weights:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapNode":{__init__:[371,3,1,""],build_links:[371,3,1,""],direction_spawn_defaults:[371,4,1,""],display_symbol:[371,4,1,""],generate_prototype_key:[371,3,1,""],get_display_symbol:[371,3,1,""],get_exit_spawn_name:[371,3,1,""],get_spawn_xyz:[371,3,1,""],interrupt_path:[371,4,1,""],linkweights:[371,3,1,""],log:[371,3,1,""],multilink:[371,4,1,""],node_index:[371,4,1,""],prototype:[371,4,1,""],spawn:[371,3,1,""],spawn_links:[371,3,1,""],symbol:[371,4,1,""],unspawn:[371,3,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.MapTransitionNode":{display_symbol:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""],target_map_xyz:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NESWMapLink":{directions:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NSMapLink":{directions:[371,4,1,""],display_symbol:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.NSOneWayMapLink":{directions:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.PlusMapLink":{directions:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.RouterMapLink":{symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SENWMapLink":{directions:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SNOneWayMapLink":{directions:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartMapLink":{get_direction:[371,3,1,""],multilink:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartRerouterMapLink":{get_direction:[371,3,1,""],multilink:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.SmartTeleporterMapLink":{__init__:[371,3,1,""],at_empty_target:[371,3,1,""],direction_name:[371,4,1,""],display_symbol:[371,4,1,""],get_direction:[371,3,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.TeleporterMapLink":{symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.TransitionMapNode":{build_links:[371,3,1,""],display_symbol:[371,4,1,""],get_spawn_xyz:[371,3,1,""],symbol:[371,4,1,""],taget_map_xyz:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.UpMapLink":{direction_aliases:[371,4,1,""],prototype:[371,4,1,""],spawn_aliases:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xymap_legend.WEOneWayMapLink":{directions:[371,4,1,""],prototype:[371,4,1,""],symbol:[371,4,1,""]},"evennia.contrib.grid.xyzgrid.xyzgrid":{XYZGrid:[372,1,1,""],get_xyzgrid:[372,5,1,""]},"evennia.contrib.grid.xyzgrid.xyzgrid.XYZGrid":{"delete":[372,3,1,""],DoesNotExist:[372,2,1,""],MultipleObjectsReturned:[372,2,1,""],add_maps:[372,3,1,""],all_maps:[372,3,1,""],at_script_creation:[372,3,1,""],get_exit:[372,3,1,""],get_map:[372,3,1,""],get_room:[372,3,1,""],grid:[372,3,1,""],log:[372,3,1,""],maps_from_module:[372,3,1,""],path:[372,4,1,""],reload:[372,3,1,""],remove_map:[372,3,1,""],spawn:[372,3,1,""],typename:[372,4,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom":{XYZExit:[373,1,1,""],XYZExitManager:[373,1,1,""],XYZManager:[373,1,1,""],XYZRoom:[373,1,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZExit":{DoesNotExist:[373,2,1,""],MultipleObjectsReturned:[373,2,1,""],create:[373,3,1,""],objects:[373,4,1,""],path:[373,4,1,""],typename:[373,4,1,""],xyz:[373,3,1,""],xyz_destination:[373,3,1,""],xyzgrid:[373,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZExitManager":{filter_xyz_exit:[373,3,1,""],get_xyz_exit:[373,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZManager":{filter_xyz:[373,3,1,""],get_xyz:[373,3,1,""]},"evennia.contrib.grid.xyzgrid.xyzroom.XYZRoom":{DoesNotExist:[373,2,1,""],MultipleObjectsReturned:[373,2,1,""],create:[373,3,1,""],get_display_name:[373,3,1,""],map_align:[373,4,1,""],map_character_symbol:[373,4,1,""],map_display:[373,4,1,""],map_fill_all:[373,4,1,""],map_mode:[373,4,1,""],map_separator_char:[373,4,1,""],map_target_path_style:[373,4,1,""],map_visual_range:[373,4,1,""],objects:[373,4,1,""],path:[373,4,1,""],return_appearance:[373,3,1,""],typename:[373,4,1,""],xymap:[373,3,1,""],xyz:[373,3,1,""],xyzgrid:[373,3,1,""]},"evennia.contrib.rpg":{buffs:[375,0,0,"-"],character_creator:[379,0,0,"-"],dice:[383,0,0,"-"],health_bar:[386,0,0,"-"],rpsystem:[389,0,0,"-"],traits:[393,0,0,"-"]},"evennia.contrib.rpg.buffs":{buff:[376,0,0,"-"],samplebuffs:[377,0,0,"-"],tests:[378,0,0,"-"]},"evennia.contrib.rpg.buffs.buff":{BaseBuff:[376,1,1,""],BuffHandler:[376,1,1,""],BuffableProperty:[376,1,1,""],CmdBuff:[376,1,1,""],Mod:[376,1,1,""],cleanup_buffs:[376,5,1,""],random:[376,5,1,""],tick_buff:[376,5,1,""]},"evennia.contrib.rpg.buffs.buff.BaseBuff":{__init__:[376,3,1,""],at_apply:[376,3,1,""],at_dispel:[376,3,1,""],at_expire:[376,3,1,""],at_init:[376,3,1,""],at_pause:[376,3,1,""],at_post_check:[376,3,1,""],at_pre_check:[376,3,1,""],at_remove:[376,3,1,""],at_tick:[376,3,1,""],at_trigger:[376,3,1,""],at_unpause:[376,3,1,""],cache:[376,4,1,""],conditional:[376,3,1,""],dispel:[376,3,1,""],duration:[376,4,1,""],flavor:[376,4,1,""],handler:[376,4,1,""],key:[376,4,1,""],maxstacks:[376,4,1,""],mods:[376,4,1,""],name:[376,4,1,""],owner:[376,3,1,""],pause:[376,3,1,""],playtime:[376,4,1,""],refresh:[376,4,1,""],remove:[376,3,1,""],reset:[376,3,1,""],stacking:[376,3,1,""],stacks:[376,4,1,""],start:[376,4,1,""],ticking:[376,3,1,""],ticknum:[376,3,1,""],tickrate:[376,4,1,""],timeleft:[376,3,1,""],triggers:[376,4,1,""],unique:[376,4,1,""],unpause:[376,3,1,""],update_cache:[376,3,1,""],visible:[376,4,1,""]},"evennia.contrib.rpg.buffs.buff.BuffHandler":{__init__:[376,3,1,""],add:[376,3,1,""],all:[376,3,1,""],autopause:[376,4,1,""],buffcache:[376,3,1,""],check:[376,3,1,""],cleanup:[376,3,1,""],clear:[376,3,1,""],dbkey:[376,4,1,""],effects:[376,3,1,""],expired:[376,3,1,""],get:[376,3,1,""],get_all:[376,3,1,""],get_by_cachevalue:[376,3,1,""],get_by_source:[376,3,1,""],get_by_stat:[376,3,1,""],get_by_trigger:[376,3,1,""],get_by_type:[376,3,1,""],has:[376,3,1,""],owner:[376,3,1,""],ownerref:[376,4,1,""],pause:[376,3,1,""],paused:[376,3,1,""],playtime:[376,3,1,""],remove:[376,3,1,""],remove_by_cachevalue:[376,3,1,""],remove_by_source:[376,3,1,""],remove_by_stat:[376,3,1,""],remove_by_trigger:[376,3,1,""],remove_by_type:[376,3,1,""],traits:[376,3,1,""],trigger:[376,3,1,""],unpause:[376,3,1,""],view:[376,3,1,""],view_modifiers:[376,3,1,""],visible:[376,3,1,""]},"evennia.contrib.rpg.buffs.buff.BuffableProperty":{at_get:[376,3,1,""]},"evennia.contrib.rpg.buffs.buff.CmdBuff":{aliases:[376,4,1,""],bufflist:[376,4,1,""],func:[376,3,1,""],help_category:[376,4,1,""],key:[376,4,1,""],lock_storage:[376,4,1,""],parse:[376,3,1,""],search_index_entry:[376,4,1,""]},"evennia.contrib.rpg.buffs.buff.Mod":{__init__:[376,3,1,""],modifier:[376,4,1,""],perstack:[376,4,1,""],stat:[376,4,1,""],value:[376,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs":{Exploit:[377,1,1,""],Exploited:[377,1,1,""],Leeching:[377,1,1,""],Poison:[377,1,1,""],Sated:[377,1,1,""],StatBuff:[377,1,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Exploit":{at_trigger:[377,3,1,""],conditional:[377,3,1,""],duration:[377,4,1,""],flavor:[377,4,1,""],key:[377,4,1,""],maxstacks:[377,4,1,""],name:[377,4,1,""],stack_msg:[377,4,1,""],triggers:[377,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Exploited":{at_post_check:[377,3,1,""],at_remove:[377,3,1,""],duration:[377,4,1,""],flavor:[377,4,1,""],key:[377,4,1,""],mods:[377,4,1,""],name:[377,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Leeching":{at_trigger:[377,3,1,""],duration:[377,4,1,""],flavor:[377,4,1,""],key:[377,4,1,""],name:[377,4,1,""],triggers:[377,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Poison":{at_pause:[377,3,1,""],at_tick:[377,3,1,""],at_unpause:[377,3,1,""],dmg:[377,4,1,""],duration:[377,4,1,""],flavor:[377,4,1,""],key:[377,4,1,""],maxstacks:[377,4,1,""],name:[377,4,1,""],playtime:[377,4,1,""],tickrate:[377,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.Sated":{duration:[377,4,1,""],flavor:[377,4,1,""],key:[377,4,1,""],maxstacks:[377,4,1,""],mods:[377,4,1,""],name:[377,4,1,""]},"evennia.contrib.rpg.buffs.samplebuffs.StatBuff":{__init__:[377,3,1,""],cache:[377,4,1,""],flavor:[377,4,1,""],key:[377,4,1,""],maxstacks:[377,4,1,""],name:[377,4,1,""],refresh:[377,4,1,""],unique:[377,4,1,""]},"evennia.contrib.rpg.buffs.tests":{BuffableObject:[378,1,1,""],TestBuffsAndHandler:[378,1,1,""]},"evennia.contrib.rpg.buffs.tests.BuffableObject":{DoesNotExist:[378,2,1,""],MultipleObjectsReturned:[378,2,1,""],at_init:[378,3,1,""],buffs:[378,4,1,""],path:[378,4,1,""],stat1:[378,4,1,""],typename:[378,4,1,""]},"evennia.contrib.rpg.buffs.tests.TestBuffsAndHandler":{setUp:[378,3,1,""],tearDown:[378,3,1,""],test_addremove:[378,3,1,""],test_buffableproperty:[378,3,1,""],test_cacheattrlink:[378,3,1,""],test_complex:[378,3,1,""],test_context_conditional:[378,3,1,""],test_details:[378,3,1,""],test_getters:[378,3,1,""],test_modgen:[378,3,1,""],test_modify:[378,3,1,""],test_stresstest:[378,3,1,""],test_timing:[378,3,1,""],test_trigger:[378,3,1,""]},"evennia.contrib.rpg.character_creator":{character_creator:[380,0,0,"-"],tests:[382,0,0,"-"]},"evennia.contrib.rpg.character_creator.character_creator":{ContribChargenAccount:[380,1,1,""],ContribCmdCharCreate:[380,1,1,""]},"evennia.contrib.rpg.character_creator.character_creator.ContribChargenAccount":{DoesNotExist:[380,2,1,""],MultipleObjectsReturned:[380,2,1,""],at_look:[380,3,1,""],path:[380,4,1,""],typename:[380,4,1,""]},"evennia.contrib.rpg.character_creator.character_creator.ContribCmdCharCreate":{aliases:[380,4,1,""],func:[380,3,1,""],help_category:[380,4,1,""],key:[380,4,1,""],lock_storage:[380,4,1,""],locks:[380,4,1,""],search_index_entry:[380,4,1,""]},"evennia.contrib.rpg.character_creator.tests":{TestCharacterCreator:[382,1,1,""]},"evennia.contrib.rpg.character_creator.tests.TestCharacterCreator":{setUp:[382,3,1,""],test_char_create:[382,3,1,""],test_ooc_look:[382,3,1,""]},"evennia.contrib.rpg.dice":{dice:[384,0,0,"-"],tests:[385,0,0,"-"]},"evennia.contrib.rpg.dice.dice":{CmdDice:[384,1,1,""],DiceCmdSet:[384,1,1,""],roll:[384,5,1,""],roll_dice:[384,5,1,""]},"evennia.contrib.rpg.dice.dice.CmdDice":{aliases:[384,4,1,""],func:[384,3,1,""],help_category:[384,4,1,""],key:[384,4,1,""],lock_storage:[384,4,1,""],locks:[384,4,1,""],search_index_entry:[384,4,1,""]},"evennia.contrib.rpg.dice.dice.DiceCmdSet":{at_cmdset_creation:[384,3,1,""],path:[384,4,1,""]},"evennia.contrib.rpg.dice.tests":{TestDice:[385,1,1,""]},"evennia.contrib.rpg.dice.tests.TestDice":{test_cmddice:[385,3,1,""],test_roll_dice:[385,3,1,""]},"evennia.contrib.rpg.health_bar":{health_bar:[387,0,0,"-"],tests:[388,0,0,"-"]},"evennia.contrib.rpg.health_bar.health_bar":{display_meter:[387,5,1,""]},"evennia.contrib.rpg.health_bar.tests":{TestHealthBar:[388,1,1,""]},"evennia.contrib.rpg.health_bar.tests.TestHealthBar":{test_healthbar:[388,3,1,""]},"evennia.contrib.rpg.rpsystem":{rplanguage:[390,0,0,"-"],rpsystem:[391,0,0,"-"],tests:[392,0,0,"-"]},"evennia.contrib.rpg.rpsystem.rplanguage":{LanguageError:[390,2,1,""],LanguageExistsError:[390,2,1,""],LanguageHandler:[390,1,1,""],add_language:[390,5,1,""],available_languages:[390,5,1,""],obfuscate_language:[390,5,1,""],obfuscate_whisper:[390,5,1,""]},"evennia.contrib.rpg.rpsystem.rplanguage.LanguageHandler":{DoesNotExist:[390,2,1,""],MultipleObjectsReturned:[390,2,1,""],add:[390,3,1,""],at_script_creation:[390,3,1,""],path:[390,4,1,""],translate:[390,3,1,""],typename:[390,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem":{CmdEmote:[391,1,1,""],CmdMask:[391,1,1,""],CmdPose:[391,1,1,""],CmdRecog:[391,1,1,""],CmdSay:[391,1,1,""],CmdSdesc:[391,1,1,""],ContribRPCharacter:[391,1,1,""],ContribRPObject:[391,1,1,""],ContribRPRoom:[391,1,1,""],EmoteError:[391,2,1,""],LanguageError:[391,2,1,""],RPCommand:[391,1,1,""],RPSystemCmdSet:[391,1,1,""],RecogError:[391,2,1,""],RecogHandler:[391,1,1,""],SdescError:[391,2,1,""],SdescHandler:[391,1,1,""],parse_language:[391,5,1,""],parse_sdescs_and_recogs:[391,5,1,""],send_emote:[391,5,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdEmote":{aliases:[391,4,1,""],arg_regex:[391,4,1,""],func:[391,3,1,""],help_category:[391,4,1,""],key:[391,4,1,""],lock_storage:[391,4,1,""],locks:[391,4,1,""],search_index_entry:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdMask":{aliases:[391,4,1,""],func:[391,3,1,""],help_category:[391,4,1,""],key:[391,4,1,""],lock_storage:[391,4,1,""],search_index_entry:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdPose":{aliases:[391,4,1,""],func:[391,3,1,""],help_category:[391,4,1,""],key:[391,4,1,""],lock_storage:[391,4,1,""],parse:[391,3,1,""],search_index_entry:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdRecog":{aliases:[391,4,1,""],func:[391,3,1,""],help_category:[391,4,1,""],key:[391,4,1,""],lock_storage:[391,4,1,""],parse:[391,3,1,""],search_index_entry:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdSay":{aliases:[391,4,1,""],arg_regex:[391,4,1,""],func:[391,3,1,""],help_category:[391,4,1,""],key:[391,4,1,""],lock_storage:[391,4,1,""],locks:[391,4,1,""],search_index_entry:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.CmdSdesc":{aliases:[391,4,1,""],func:[391,3,1,""],help_category:[391,4,1,""],key:[391,4,1,""],lock_storage:[391,4,1,""],locks:[391,4,1,""],search_index_entry:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPCharacter":{DoesNotExist:[391,2,1,""],MultipleObjectsReturned:[391,2,1,""],at_object_creation:[391,3,1,""],at_pre_say:[391,3,1,""],get_display_name:[391,3,1,""],get_sdesc:[391,3,1,""],path:[391,4,1,""],process_language:[391,3,1,""],process_recog:[391,3,1,""],process_sdesc:[391,3,1,""],recog:[391,4,1,""],typename:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPObject":{DoesNotExist:[391,2,1,""],MultipleObjectsReturned:[391,2,1,""],at_object_creation:[391,3,1,""],get_display_characters:[391,3,1,""],get_display_name:[391,3,1,""],get_display_things:[391,3,1,""],get_posed_sdesc:[391,3,1,""],path:[391,4,1,""],sdesc:[391,4,1,""],search:[391,3,1,""],typename:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.ContribRPRoom":{DoesNotExist:[391,2,1,""],MultipleObjectsReturned:[391,2,1,""],path:[391,4,1,""],typename:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RPCommand":{aliases:[391,4,1,""],help_category:[391,4,1,""],key:[391,4,1,""],lock_storage:[391,4,1,""],parse:[391,3,1,""],search_index_entry:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RPSystemCmdSet":{at_cmdset_creation:[391,3,1,""],path:[391,4,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.RecogHandler":{__init__:[391,3,1,""],add:[391,3,1,""],all:[391,3,1,""],get:[391,3,1,""],remove:[391,3,1,""]},"evennia.contrib.rpg.rpsystem.rpsystem.SdescHandler":{__init__:[391,3,1,""],add:[391,3,1,""],get:[391,3,1,""]},"evennia.contrib.rpg.rpsystem.tests":{TestLanguage:[392,1,1,""],TestRPSystem:[392,1,1,""],TestRPSystemCommands:[392,1,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestLanguage":{setUp:[392,3,1,""],tearDown:[392,3,1,""],test_available_languages:[392,3,1,""],test_faulty_language:[392,3,1,""],test_obfuscate_language:[392,3,1,""],test_obfuscate_whisper:[392,3,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestRPSystem":{maxDiff:[392,4,1,""],setUp:[392,3,1,""],test_get_sdesc:[392,3,1,""],test_parse_language:[392,3,1,""],test_parse_sdescs_and_recogs:[392,3,1,""],test_posed_contents:[392,3,1,""],test_possessive_selfref:[392,3,1,""],test_recog_handler:[392,3,1,""],test_rpsearch:[392,3,1,""],test_sdesc_handler:[392,3,1,""],test_send_case_sensitive_emote:[392,3,1,""],test_send_emote:[392,3,1,""],test_send_emote_fallback:[392,3,1,""]},"evennia.contrib.rpg.rpsystem.tests.TestRPSystemCommands":{setUp:[392,3,1,""],test_commands:[392,3,1,""]},"evennia.contrib.rpg.traits":{tests:[394,0,0,"-"],traits:[395,0,0,"-"]},"evennia.contrib.rpg.traits.tests":{DummyCharacter:[394,1,1,""],TestNumericTraitOperators:[394,1,1,""],TestTrait:[394,1,1,""],TestTraitCounter:[394,1,1,""],TestTraitCounterTimed:[394,1,1,""],TestTraitFields:[394,1,1,""],TestTraitGauge:[394,1,1,""],TestTraitGaugeTimed:[394,1,1,""],TestTraitStatic:[394,1,1,""],TraitContribTestingChar:[394,1,1,""],TraitHandlerTest:[394,1,1,""],TraitPropertyTestCase:[394,1,1,""]},"evennia.contrib.rpg.traits.tests.DummyCharacter":{health:[394,4,1,""],hunting:[394,4,1,""],strength:[394,4,1,""]},"evennia.contrib.rpg.traits.tests.TestNumericTraitOperators":{setUp:[394,3,1,""],tearDown:[394,3,1,""],test_add_traits:[394,3,1,""],test_comparisons_numeric:[394,3,1,""],test_comparisons_traits:[394,3,1,""],test_floordiv:[394,3,1,""],test_mul_traits:[394,3,1,""],test_pos_shortcut:[394,3,1,""],test_sub_traits:[394,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTrait":{setUp:[394,3,1,""],test_init:[394,3,1,""],test_repr:[394,3,1,""],test_trait_getset:[394,3,1,""],test_validate_input__fail:[394,3,1,""],test_validate_input__valid:[394,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitCounter":{setUp:[394,3,1,""],test_boundaries__bigmod:[394,3,1,""],test_boundaries__change_boundaries:[394,3,1,""],test_boundaries__disable:[394,3,1,""],test_boundaries__inverse:[394,3,1,""],test_boundaries__minmax:[394,3,1,""],test_current:[394,3,1,""],test_delete:[394,3,1,""],test_descs:[394,3,1,""],test_init:[394,3,1,""],test_percentage:[394,3,1,""],test_value:[394,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitCounterTimed":{setUp:[394,3,1,""],test_timer_rate:[394,3,1,""],test_timer_ratetarget:[394,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitFields":{test_traitfields:[394,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitGauge":{setUp:[394,3,1,""],test_boundaries__bigmod:[394,3,1,""],test_boundaries__change_boundaries:[394,3,1,""],test_boundaries__disable:[394,3,1,""],test_boundaries__inverse:[394,3,1,""],test_boundaries__minmax:[394,3,1,""],test_current:[394,3,1,""],test_delete:[394,3,1,""],test_descs:[394,3,1,""],test_init:[394,3,1,""],test_percentage:[394,3,1,""],test_value:[394,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitGaugeTimed":{setUp:[394,3,1,""],test_timer_rate:[394,3,1,""],test_timer_ratetarget:[394,3,1,""]},"evennia.contrib.rpg.traits.tests.TestTraitStatic":{setUp:[394,3,1,""],test_delete:[394,3,1,""],test_init:[394,3,1,""],test_value:[394,3,1,""]},"evennia.contrib.rpg.traits.tests.TraitContribTestingChar":{DoesNotExist:[394,2,1,""],HP:[394,4,1,""],MultipleObjectsReturned:[394,2,1,""],path:[394,4,1,""],typename:[394,4,1,""]},"evennia.contrib.rpg.traits.tests.TraitHandlerTest":{setUp:[394,3,1,""],test_add_trait:[394,3,1,""],test_all:[394,3,1,""],test_cache:[394,3,1,""],test_clear:[394,3,1,""],test_getting:[394,3,1,""],test_remove:[394,3,1,""],test_setting:[394,3,1,""],test_trait_db_connection:[394,3,1,""]},"evennia.contrib.rpg.traits.tests.TraitPropertyTestCase":{character_typeclass:[394,4,1,""],test_round1:[394,3,1,""],test_round2:[394,3,1,""]},"evennia.contrib.rpg.traits.traits":{CounterTrait:[395,1,1,""],GaugeTrait:[395,1,1,""],MandatoryTraitKey:[395,1,1,""],StaticTrait:[395,1,1,""],Trait:[395,1,1,""],TraitException:[395,2,1,""],TraitHandler:[395,1,1,""],TraitProperty:[395,1,1,""]},"evennia.contrib.rpg.traits.traits.CounterTrait":{base:[395,3,1,""],current:[395,3,1,""],default_keys:[395,4,1,""],desc:[395,3,1,""],max:[395,3,1,""],min:[395,3,1,""],mod:[395,3,1,""],mult:[395,3,1,""],percent:[395,3,1,""],ratetarget:[395,3,1,""],reset:[395,3,1,""],trait_type:[395,4,1,""],validate_input:[395,3,1,""],value:[395,3,1,""]},"evennia.contrib.rpg.traits.traits.GaugeTrait":{base:[395,3,1,""],current:[395,3,1,""],default_keys:[395,4,1,""],max:[395,3,1,""],min:[395,3,1,""],mod:[395,3,1,""],mult:[395,3,1,""],percent:[395,3,1,""],reset:[395,3,1,""],trait_type:[395,4,1,""],value:[395,3,1,""]},"evennia.contrib.rpg.traits.traits.StaticTrait":{base:[395,3,1,""],default_keys:[395,4,1,""],mod:[395,3,1,""],mult:[395,3,1,""],trait_type:[395,4,1,""],value:[395,3,1,""]},"evennia.contrib.rpg.traits.traits.Trait":{__init__:[395,3,1,""],allow_extra_properties:[395,4,1,""],default_keys:[395,4,1,""],key:[395,3,1,""],name:[395,3,1,""],trait_type:[395,4,1,""],validate_input:[395,3,1,""],value:[395,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitException":{__init__:[395,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitHandler":{__init__:[395,3,1,""],add:[395,3,1,""],all:[395,3,1,""],clear:[395,3,1,""],get:[395,3,1,""],remove:[395,3,1,""]},"evennia.contrib.rpg.traits.traits.TraitProperty":{__init__:[395,3,1,""]},"evennia.contrib.tutorials":{batchprocessor:[397,0,0,"-"],bodyfunctions:[399,0,0,"-"],evadventure:[402,0,0,"-"],mirror:[431,0,0,"-"],red_button:[433,0,0,"-"],talking_npc:[435,0,0,"-"],tutorial_world:[438,0,0,"-"]},"evennia.contrib.tutorials.bodyfunctions":{bodyfunctions:[400,0,0,"-"],tests:[401,0,0,"-"]},"evennia.contrib.tutorials.bodyfunctions.bodyfunctions":{BodyFunctions:[400,1,1,""]},"evennia.contrib.tutorials.bodyfunctions.bodyfunctions.BodyFunctions":{DoesNotExist:[400,2,1,""],MultipleObjectsReturned:[400,2,1,""],at_repeat:[400,3,1,""],at_script_creation:[400,3,1,""],path:[400,4,1,""],send_random_message:[400,3,1,""],typename:[400,4,1,""]},"evennia.contrib.tutorials.bodyfunctions.tests":{TestBodyFunctions:[401,1,1,""]},"evennia.contrib.tutorials.bodyfunctions.tests.TestBodyFunctions":{script_typeclass:[401,4,1,""],setUp:[401,3,1,""],tearDown:[401,3,1,""],test_at_repeat:[401,3,1,""],test_send_random_message:[401,3,1,""]},"evennia.contrib.tutorials.evadventure":{build_world:[404,0,0,"-"],characters:[405,0,0,"-"],chargen:[406,0,0,"-"],combat_turnbased:[407,0,0,"-"],commands:[408,0,0,"-"],dungeon:[409,0,0,"-"],enums:[410,0,0,"-"],equipment:[411,0,0,"-"],npcs:[412,0,0,"-"],objects:[413,0,0,"-"],quests:[414,0,0,"-"],random_tables:[415,0,0,"-"],rooms:[416,0,0,"-"],rules:[417,0,0,"-"],shops:[418,0,0,"-"],tests:[419,0,0,"-"],utils:[430,0,0,"-"]},"evennia.contrib.tutorials.evadventure.characters":{EvAdventureCharacter:[405,1,1,""],LivingMixin:[405,1,1,""],get_character_sheet:[405,5,1,""]},"evennia.contrib.tutorials.evadventure.characters.EvAdventureCharacter":{DoesNotExist:[405,2,1,""],MultipleObjectsReturned:[405,2,1,""],add_xp:[405,3,1,""],armor:[405,3,1,""],at_death:[405,3,1,""],at_defeat:[405,3,1,""],at_looted:[405,3,1,""],at_object_leave:[405,3,1,""],at_object_receive:[405,3,1,""],at_pre_loot:[405,3,1,""],at_pre_object_leave:[405,3,1,""],at_pre_object_receive:[405,3,1,""],charisma:[405,4,1,""],coins:[405,4,1,""],constitution:[405,4,1,""],dexterity:[405,4,1,""],equipment:[405,4,1,""],hp:[405,4,1,""],hp_max:[405,4,1,""],intelligence:[405,4,1,""],is_pc:[405,4,1,""],level:[405,4,1,""],level_up:[405,3,1,""],path:[405,4,1,""],quests:[405,4,1,""],strength:[405,4,1,""],typename:[405,4,1,""],weapon:[405,3,1,""],wisdom:[405,4,1,""],xp:[405,4,1,""],xp_per_level:[405,4,1,""]},"evennia.contrib.tutorials.evadventure.characters.LivingMixin":{at_damage:[405,3,1,""],at_death:[405,3,1,""],at_defeat:[405,3,1,""],at_do_loot:[405,3,1,""],at_looted:[405,3,1,""],at_pay:[405,3,1,""],heal:[405,3,1,""],hurt_level:[405,3,1,""],is_pc:[405,4,1,""],post_loot:[405,3,1,""],pre_loot:[405,3,1,""]},"evennia.contrib.tutorials.evadventure.chargen":{TemporaryCharacterSheet:[406,1,1,""],node_apply_character:[406,5,1,""],node_change_name:[406,5,1,""],node_chargen:[406,5,1,""],node_swap_abilities:[406,5,1,""],start_chargen:[406,5,1,""]},"evennia.contrib.tutorials.evadventure.chargen.TemporaryCharacterSheet":{__init__:[406,3,1,""],apply:[406,3,1,""],show_sheet:[406,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased":{CombatAction:[407,1,1,""],CombatActionAttack:[407,1,1,""],CombatActionBlock:[407,1,1,""],CombatActionDoNothing:[407,1,1,""],CombatActionFlee:[407,1,1,""],CombatActionStunt:[407,1,1,""],CombatActionSwapWieldedWeaponOrSpell:[407,1,1,""],CombatActionUseItem:[407,1,1,""],CombatFailure:[407,2,1,""],EvAdventureCombatHandler:[407,1,1,""],join_combat:[407,5,1,""],node_confirm_register_action:[407,5,1,""],node_select_action:[407,5,1,""],node_select_enemy_target:[407,5,1,""],node_select_friendly_target:[407,5,1,""],node_select_use_item_from_inventory:[407,5,1,""],node_select_wield_from_inventory:[407,5,1,""],node_wait_start:[407,5,1,""],node_wait_turn:[407,5,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatAction":{__init__:[407,3,1,""],aliases:[407,4,1,""],can_use:[407,3,1,""],desc:[407,4,1,""],get_help:[407,3,1,""],help_text:[407,4,1,""],key:[407,4,1,""],max_uses:[407,4,1,""],msg:[407,3,1,""],next_menu_node:[407,4,1,""],post_use:[407,3,1,""],pre_use:[407,3,1,""],priority:[407,4,1,""],use:[407,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionAttack":{aliases:[407,4,1,""],desc:[407,4,1,""],help_text:[407,4,1,""],key:[407,4,1,""],next_menu_node:[407,4,1,""],priority:[407,4,1,""],use:[407,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionBlock":{aliases:[407,4,1,""],attack_type:[407,4,1,""],defense_type:[407,4,1,""],desc:[407,4,1,""],help_text:[407,4,1,""],key:[407,4,1,""],next_menu_node:[407,4,1,""],priority:[407,4,1,""],use:[407,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionDoNothing":{aliases:[407,4,1,""],desc:[407,4,1,""],help_text:[407,4,1,""],key:[407,4,1,""],next_menu_node:[407,4,1,""],post_action_text:[407,4,1,""],use:[407,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionFlee":{aliases:[407,4,1,""],desc:[407,4,1,""],help_text:[407,4,1,""],key:[407,4,1,""],next_menu_node:[407,4,1,""],priority:[407,4,1,""],use:[407,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionStunt":{aliases:[407,4,1,""],attack_type:[407,4,1,""],defense_type:[407,4,1,""],desc:[407,4,1,""],give_advantage:[407,4,1,""],help_text:[407,4,1,""],key:[407,4,1,""],max_uses:[407,4,1,""],next_menu_node:[407,4,1,""],priority:[407,4,1,""],use:[407,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionSwapWieldedWeaponOrSpell":{aliases:[407,4,1,""],desc:[407,4,1,""],help_text:[407,4,1,""],key:[407,4,1,""],next_menu_node:[407,4,1,""],use:[407,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.CombatActionUseItem":{aliases:[407,4,1,""],desc:[407,4,1,""],get_help:[407,3,1,""],help_text:[407,4,1,""],key:[407,4,1,""],next_menu_node:[407,4,1,""],post_use:[407,3,1,""],use:[407,3,1,""]},"evennia.contrib.tutorials.evadventure.combat_turnbased.EvAdventureCombatHandler":{DoesNotExist:[407,2,1,""],MultipleObjectsReturned:[407,2,1,""],action_queue:[407,4,1,""],add_combatant:[407,3,1,""],advantage_matrix:[407,4,1,""],at_repeat:[407,3,1,""],at_script_creation:[407,3,1,""],combatant_actions:[407,4,1,""],combatants:[407,4,1,""],default_action_classes:[407,4,1,""],defeated_combatants:[407,4,1,""],disadvantage_matrix:[407,4,1,""],flee:[407,3,1,""],fleeing_combatants:[407,4,1,""],gain_advantage:[407,3,1,""],gain_disadvantage:[407,3,1,""],get_available_actions:[407,3,1,""],get_combat_summary:[407,3,1,""],get_enemy_targets:[407,3,1,""],get_friendly_targets:[407,3,1,""],msg:[407,3,1,""],path:[407,4,1,""],register_action:[407,3,1,""],remove_combatant:[407,3,1,""],start_combat:[407,3,1,""],stop_combat:[407,3,1,""],stunt_duration:[407,4,1,""],turn:[407,4,1,""],turn_stats:[407,4,1,""],typename:[407,4,1,""],unflee:[407,3,1,""]},"evennia.contrib.tutorials.evadventure.commands":{CmdAttackTurnBased:[408,1,1,""],CmdGive:[408,1,1,""],CmdInventory:[408,1,1,""],CmdRemove:[408,1,1,""],CmdTalk:[408,1,1,""],CmdWieldOrWear:[408,1,1,""],EvAdventureCmdSet:[408,1,1,""],EvAdventureCommand:[408,1,1,""],node_end:[408,5,1,""],node_give:[408,5,1,""],node_receive:[408,5,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdAttackTurnBased":{aliases:[408,4,1,""],func:[408,3,1,""],help_category:[408,4,1,""],key:[408,4,1,""],lock_storage:[408,4,1,""],parse:[408,3,1,""],search_index_entry:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdGive":{aliases:[408,4,1,""],func:[408,3,1,""],help_category:[408,4,1,""],key:[408,4,1,""],lock_storage:[408,4,1,""],parse:[408,3,1,""],search_index_entry:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdInventory":{aliases:[408,4,1,""],func:[408,3,1,""],help_category:[408,4,1,""],key:[408,4,1,""],lock_storage:[408,4,1,""],search_index_entry:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdRemove":{aliases:[408,4,1,""],func:[408,3,1,""],help_category:[408,4,1,""],key:[408,4,1,""],lock_storage:[408,4,1,""],search_index_entry:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdTalk":{aliases:[408,4,1,""],func:[408,3,1,""],help_category:[408,4,1,""],key:[408,4,1,""],lock_storage:[408,4,1,""],search_index_entry:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.CmdWieldOrWear":{aliases:[408,4,1,""],func:[408,3,1,""],help_category:[408,4,1,""],key:[408,4,1,""],lock_storage:[408,4,1,""],out_txts:[408,4,1,""],search_index_entry:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.EvAdventureCmdSet":{at_cmdset_creation:[408,3,1,""],key:[408,4,1,""],path:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.commands.EvAdventureCommand":{aliases:[408,4,1,""],help_category:[408,4,1,""],key:[408,4,1,""],lock_storage:[408,4,1,""],parse:[408,3,1,""],search_index_entry:[408,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon":{EvAdventureDungeonBranchDeleter:[409,1,1,""],EvAdventureDungeonExit:[409,1,1,""],EvAdventureDungeonOrchestrator:[409,1,1,""],EvAdventureDungeonRoom:[409,1,1,""],EvAdventureDungeonStartRoom:[409,1,1,""],EvAdventureDungeonStartRoomExit:[409,1,1,""],EvAdventureStartRoomResetter:[409,1,1,""],random:[409,5,1,""],room_generator:[409,5,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonBranchDeleter":{DoesNotExist:[409,2,1,""],MultipleObjectsReturned:[409,2,1,""],at_repeat:[409,3,1,""],at_script_creation:[409,3,1,""],branch_max_life:[409,4,1,""],path:[409,4,1,""],typename:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonExit":{DoesNotExist:[409,2,1,""],MultipleObjectsReturned:[409,2,1,""],at_failed_traverse:[409,3,1,""],at_object_creation:[409,3,1,""],at_traverse:[409,3,1,""],path:[409,4,1,""],typename:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonOrchestrator":{"delete":[409,3,1,""],DoesNotExist:[409,2,1,""],MultipleObjectsReturned:[409,2,1,""],create_out_exit:[409,3,1,""],highest_depth:[409,4,1,""],last_updated:[409,4,1,""],max_new_exits_per_room:[409,4,1,""],max_unexplored_exits:[409,4,1,""],new_room:[409,3,1,""],path:[409,4,1,""],register_exit_traversed:[409,3,1,""],room_generator:[409,4,1,""],rooms:[409,4,1,""],start_room:[409,4,1,""],typename:[409,4,1,""],unvisited_exits:[409,4,1,""],xy_grid:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonRoom":{DoesNotExist:[409,2,1,""],MultipleObjectsReturned:[409,2,1,""],allow_combat:[409,4,1,""],allow_death:[409,4,1,""],at_object_creation:[409,3,1,""],back_exit:[409,4,1,""],clear_room:[409,3,1,""],dungeon_orchestrator:[409,4,1,""],get_display_footer:[409,3,1,""],is_room_clear:[409,3,1,""],path:[409,4,1,""],typename:[409,4,1,""],xy_coords:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonStartRoom":{DoesNotExist:[409,2,1,""],MultipleObjectsReturned:[409,2,1,""],at_object_creation:[409,3,1,""],at_object_receive:[409,3,1,""],branch_check_time:[409,4,1,""],branch_max_life:[409,4,1,""],get_display_footer:[409,3,1,""],path:[409,4,1,""],recycle_time:[409,4,1,""],room_generator:[409,4,1,""],typename:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureDungeonStartRoomExit":{DoesNotExist:[409,2,1,""],MultipleObjectsReturned:[409,2,1,""],at_traverse:[409,3,1,""],path:[409,4,1,""],reset_exit:[409,3,1,""],typename:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.dungeon.EvAdventureStartRoomResetter":{DoesNotExist:[409,2,1,""],MultipleObjectsReturned:[409,2,1,""],at_repeat:[409,3,1,""],at_script_creation:[409,3,1,""],path:[409,4,1,""],typename:[409,4,1,""]},"evennia.contrib.tutorials.evadventure.enums":{Ability:[410,1,1,""],ObjType:[410,1,1,""],WieldLocation:[410,1,1,""]},"evennia.contrib.tutorials.evadventure.enums.Ability":{ALLEGIANCE_FRIENDLY:[410,4,1,""],ALLEGIANCE_HOSTILE:[410,4,1,""],ALLEGIANCE_NEUTRAL:[410,4,1,""],ARMOR:[410,4,1,""],CHA:[410,4,1,""],CON:[410,4,1,""],CRITICAL_FAILURE:[410,4,1,""],CRITICAL_SUCCESS:[410,4,1,""],DEX:[410,4,1,""],INT:[410,4,1,""],STR:[410,4,1,""],WIS:[410,4,1,""]},"evennia.contrib.tutorials.evadventure.enums.ObjType":{ARMOR:[410,4,1,""],CONSUMABLE:[410,4,1,""],GEAR:[410,4,1,""],HELMET:[410,4,1,""],MAGIC:[410,4,1,""],QUEST:[410,4,1,""],SHIELD:[410,4,1,""],TREASURE:[410,4,1,""],WEAPON:[410,4,1,""]},"evennia.contrib.tutorials.evadventure.enums.WieldLocation":{BACKPACK:[410,4,1,""],BODY:[410,4,1,""],HEAD:[410,4,1,""],SHIELD_HAND:[410,4,1,""],TWO_HANDS:[410,4,1,""],WEAPON_HAND:[410,4,1,""]},"evennia.contrib.tutorials.evadventure.equipment":{EquipmentError:[411,2,1,""],EquipmentHandler:[411,1,1,""]},"evennia.contrib.tutorials.evadventure.equipment.EquipmentHandler":{__init__:[411,3,1,""],add:[411,3,1,""],all:[411,3,1,""],armor:[411,3,1,""],count_slots:[411,3,1,""],display_backpack:[411,3,1,""],display_loadout:[411,3,1,""],display_slot_usage:[411,3,1,""],get_current_slot:[411,3,1,""],get_usable_objects_from_backpack:[411,3,1,""],get_wearable_objects_from_backpack:[411,3,1,""],get_wieldable_objects_from_backpack:[411,3,1,""],max_slots:[411,3,1,""],move:[411,3,1,""],remove:[411,3,1,""],save_attribute:[411,4,1,""],validate_slot_usage:[411,3,1,""],weapon:[411,3,1,""]},"evennia.contrib.tutorials.evadventure.npcs":{EvAdventureMob:[412,1,1,""],EvAdventureNPC:[412,1,1,""],EvAdventureQuestGiver:[412,1,1,""],EvAdventureShopKeeper:[412,1,1,""],EvAdventureTalkativeNPC:[412,1,1,""],node_start:[412,5,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureMob":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],ai_combat_next_action:[412,3,1,""],at_defeat:[412,3,1,""],at_do_loot:[412,3,1,""],loot_chance:[412,4,1,""],path:[412,4,1,""],typename:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureNPC":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],ai_combat_next_action:[412,3,1,""],allegiance:[412,4,1,""],armor:[412,4,1,""],at_object_creation:[412,3,1,""],charisma:[412,3,1,""],coins:[412,4,1,""],constitution:[412,3,1,""],dexterity:[412,3,1,""],hit_dice:[412,4,1,""],hp:[412,4,1,""],hp_max:[412,3,1,""],hp_multiplier:[412,4,1,""],intelligence:[412,3,1,""],is_idle:[412,4,1,""],is_pc:[412,4,1,""],morale:[412,4,1,""],path:[412,4,1,""],strength:[412,3,1,""],typename:[412,4,1,""],weapon:[412,4,1,""],wisdom:[412,3,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureQuestGiver":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],path:[412,4,1,""],typename:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureShopKeeper":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],at_damage:[412,3,1,""],common_ware_prototypes:[412,4,1,""],miser_factor:[412,4,1,""],path:[412,4,1,""],typename:[412,4,1,""],upsell_factor:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.npcs.EvAdventureTalkativeNPC":{DoesNotExist:[412,2,1,""],MultipleObjectsReturned:[412,2,1,""],at_damage:[412,3,1,""],at_talk:[412,3,1,""],create:[412,3,1,""],hi_text:[412,4,1,""],menu_kwargs:[412,4,1,""],menudata:[412,4,1,""],path:[412,4,1,""],typename:[412,4,1,""]},"evennia.contrib.tutorials.evadventure.objects":{EvAdventureArmor:[413,1,1,""],EvAdventureConsumable:[413,1,1,""],EvAdventureHelmet:[413,1,1,""],EvAdventureObject:[413,1,1,""],EvAdventureObjectFiller:[413,1,1,""],EvAdventureQuestObject:[413,1,1,""],EvAdventureRunestone:[413,1,1,""],EvAdventureShield:[413,1,1,""],EvAdventureTreasure:[413,1,1,""],EvAdventureWeapon:[413,1,1,""],WeaponEmptyHand:[413,1,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureArmor":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],armor:[413,4,1,""],inventory_use_slot:[413,4,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],quality:[413,4,1,""],typename:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureConsumable":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],at_post_use:[413,3,1,""],at_use:[413,3,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],size:[413,4,1,""],typename:[413,4,1,""],uses:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureHelmet":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],inventory_use_slot:[413,4,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],typename:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureObject":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],at_object_creation:[413,3,1,""],get_display_desc:[413,3,1,""],get_display_header:[413,3,1,""],get_help:[413,3,1,""],has_obj_type:[413,3,1,""],inventory_use_slot:[413,4,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],size:[413,4,1,""],typename:[413,4,1,""],value:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureObjectFiller":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],quality:[413,4,1,""],typename:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureQuestObject":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],typename:[413,4,1,""],value:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureRunestone":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],at_post_use:[413,3,1,""],attack_type:[413,4,1,""],damage_roll:[413,4,1,""],defense_type:[413,4,1,""],inventory_use_slot:[413,4,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],quality:[413,4,1,""],refresh:[413,3,1,""],typename:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureShield":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],inventory_use_slot:[413,4,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],typename:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureTreasure":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],typename:[413,4,1,""],value:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.EvAdventureWeapon":{DoesNotExist:[413,2,1,""],MultipleObjectsReturned:[413,2,1,""],attack_type:[413,4,1,""],damage_roll:[413,4,1,""],defense_type:[413,4,1,""],inventory_use_slot:[413,4,1,""],obj_type:[413,4,1,""],path:[413,4,1,""],quality:[413,4,1,""],typename:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.objects.WeaponEmptyHand":{attack_type:[413,4,1,""],damage_roll:[413,4,1,""],defense_type:[413,4,1,""],inventory_use_slot:[413,4,1,""],key:[413,4,1,""],obj_type:[413,4,1,""],quality:[413,4,1,""]},"evennia.contrib.tutorials.evadventure.quests":{EvAdventureQuest:[414,1,1,""],EvAdventureQuestHandler:[414,1,1,""]},"evennia.contrib.tutorials.evadventure.quests.EvAdventureQuest":{__init__:[414,3,1,""],abandon:[414,3,1,""],abandoned_text:[414,4,1,""],cleanup:[414,3,1,""],complete:[414,3,1,""],completed_text:[414,4,1,""],current_step:[414,3,1,""],desc:[414,4,1,""],help:[414,3,1,""],help_end:[414,4,1,""],help_start:[414,4,1,""],key:[414,4,1,""],progress:[414,3,1,""],questhandler:[414,3,1,""],start_step:[414,4,1,""],step_start:[414,3,1,""]},"evennia.contrib.tutorials.evadventure.quests.EvAdventureQuestHandler":{__init__:[414,3,1,""],add:[414,3,1,""],get:[414,3,1,""],get_help:[414,3,1,""],has:[414,3,1,""],progress:[414,3,1,""],quest_storage_attribute_category:[414,4,1,""],quest_storage_attribute_key:[414,4,1,""],remove:[414,3,1,""]},"evennia.contrib.tutorials.evadventure.rooms":{EvAdventurePvPRoom:[416,1,1,""],EvAdventureRoom:[416,1,1,""]},"evennia.contrib.tutorials.evadventure.rooms.EvAdventurePvPRoom":{DoesNotExist:[416,2,1,""],MultipleObjectsReturned:[416,2,1,""],allow_combat:[416,4,1,""],allow_pvp:[416,4,1,""],get_display_footer:[416,3,1,""],path:[416,4,1,""],typename:[416,4,1,""]},"evennia.contrib.tutorials.evadventure.rooms.EvAdventureRoom":{DoesNotExist:[416,2,1,""],MultipleObjectsReturned:[416,2,1,""],allow_combat:[416,4,1,""],allow_death:[416,4,1,""],allow_pvp:[416,4,1,""],format_appearance:[416,3,1,""],get_display_header:[416,3,1,""],path:[416,4,1,""],typename:[416,4,1,""]},"evennia.contrib.tutorials.evadventure.rules":{EvAdventureRollEngine:[417,1,1,""]},"evennia.contrib.tutorials.evadventure.rules.EvAdventureRollEngine":{death_map:[417,4,1,""],heal_from_rest:[417,3,1,""],morale_check:[417,3,1,""],opposed_saving_throw:[417,3,1,""],roll:[417,3,1,""],roll_death:[417,3,1,""],roll_random_table:[417,3,1,""],roll_with_advantage_or_disadvantage:[417,3,1,""],saving_throw:[417,3,1,""]},"evennia.contrib.tutorials.evadventure.shops":{BuyItem:[418,1,1,""],node_confirm_buy:[418,5,1,""],node_confirm_sell:[418,5,1,""]},"evennia.contrib.tutorials.evadventure.shops.BuyItem":{__init__:[418,3,1,""],attack_type:[418,4,1,""],create_from_obj:[418,3,1,""],create_from_prototype:[418,3,1,""],damage_roll:[418,4,1,""],defense_type:[418,4,1,""],desc:[418,4,1,""],get_detail:[418,3,1,""],key:[418,4,1,""],obj:[418,4,1,""],obj_type:[418,4,1,""],prototype:[418,4,1,""],quality:[418,4,1,""],size:[418,4,1,""],to_obj:[418,3,1,""],use_slot:[418,4,1,""],uses:[418,4,1,""],value:[418,4,1,""]},"evennia.contrib.tutorials.evadventure.tests":{mixins:[420,0,0,"-"],test_characters:[421,0,0,"-"],test_chargen:[422,0,0,"-"],test_combat:[423,0,0,"-"],test_commands:[424,0,0,"-"],test_dungeon:[425,0,0,"-"],test_equipment:[426,0,0,"-"],test_quests:[427,0,0,"-"],test_rules:[428,0,0,"-"],test_utils:[429,0,0,"-"]},"evennia.contrib.tutorials.evadventure.tests.mixins":{EvAdventureMixin:[420,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.mixins.EvAdventureMixin":{setUp:[420,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_characters":{TestCharacters:[421,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_characters.TestCharacters":{setUp:[421,3,1,""],test_abilities:[421,3,1,""],test_at_damage:[421,3,1,""],test_at_pay:[421,3,1,""],test_heal:[421,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_chargen":{EvAdventureCharacterGenerationTest:[422,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_chargen.EvAdventureCharacterGenerationTest":{setUp:[422,3,1,""],test_apply:[422,3,1,""],test_base_chargen:[422,3,1,""],test_build_desc:[422,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_combat":{EvAdventureTurnbasedCombatActionTest:[423,1,1,""],EvAdventureTurnbasedCombatHandlerTest:[423,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_combat.EvAdventureTurnbasedCombatActionTest":{setUp:[423,3,1,""],test_attack__miss:[423,3,1,""],test_attack__success__kill:[423,3,1,""],test_attack__success__still_alive:[423,3,1,""],test_do_nothing:[423,3,1,""],test_flee__blocked:[423,3,1,""],test_flee__success:[423,3,1,""],test_stunt_advantage__success:[423,3,1,""],test_stunt_disadvantage__success:[423,3,1,""],test_stunt_fail:[423,3,1,""],test_swap_wielded_weapon_or_spell:[423,3,1,""],test_use_item:[423,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_combat.EvAdventureTurnbasedCombatHandlerTest":{maxDiff:[423,4,1,""],setUp:[423,3,1,""],tearDown:[423,3,1,""],test_add_combatant:[423,3,1,""],test_combat_summary:[423,3,1,""],test_end_of_turn__empty:[423,3,1,""],test_flee:[423,3,1,""],test_gain_advantage:[423,3,1,""],test_gain_disadvantage:[423,3,1,""],test_get_available_actions:[423,3,1,""],test_msg:[423,3,1,""],test_register_and_run_action:[423,3,1,""],test_remove_combatant:[423,3,1,""],test_start_combat:[423,3,1,""],test_start_turn:[423,3,1,""],test_unflee:[423,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_commands":{TestEvAdventureCommands:[424,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_commands.TestEvAdventureCommands":{setUp:[424,3,1,""],test_attack:[424,3,1,""],test_give__coins:[424,3,1,""],test_give__item:[424,3,1,""],test_inventory:[424,3,1,""],test_remove:[424,3,1,""],test_talk:[424,3,1,""],test_wield_or_wear:[424,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_dungeon":{TestDungeon:[425,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_dungeon.TestDungeon":{setUp:[425,3,1,""],test_different_start_directions:[425,3,1,""],test_start_room:[425,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_equipment":{TestEquipment:[426,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_equipment.TestEquipment":{test_add:[426,3,1,""],test_add__remove:[426,3,1,""],test_count_slots:[426,3,1,""],test_equipmenthandler_max_slots:[426,3,1,""],test_get_wearable_or_wieldable_objects_from_backpack:[426,3,1,""],test_max_slots:[426,3,1,""],test_move:[426,4,1,""],test_move_0_helmet:[426,3,1,""],test_move_1_shield:[426,3,1,""],test_move_2_armor:[426,3,1,""],test_move_3_weapon:[426,3,1,""],test_move_4_big_weapon:[426,3,1,""],test_move_5_item:[426,3,1,""],test_move__get_current_slot:[426,3,1,""],test_properties:[426,3,1,""],test_remove__with_obj:[426,3,1,""],test_remove__with_slot:[426,3,1,""],test_two_handed_exclusive:[426,3,1,""],test_validate_slot_usage:[426,4,1,""],test_validate_slot_usage_0:[426,3,1,""],test_validate_slot_usage_1:[426,3,1,""],test_validate_slot_usage_2:[426,3,1,""],test_validate_slot_usage_3:[426,3,1,""],test_validate_slot_usage_4:[426,3,1,""],test_validate_slot_usage_5:[426,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_quests":{EvAdventureQuestTest:[427,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_quests.EvAdventureQuestTest":{setUp:[427,3,1,""],test_help:[427,3,1,""],test_progress:[427,3,1,""],test_progress__fail:[427,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_rules":{EvAdventureRollEngineTest:[428,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_rules.EvAdventureRollEngineTest":{setUp:[428,3,1,""],test_heal_from_rest:[428,3,1,""],test_morale_check:[428,3,1,""],test_opposed_saving_throw:[428,3,1,""],test_roll:[428,3,1,""],test_roll_death:[428,3,1,""],test_roll_limits:[428,3,1,""],test_roll_random_table:[428,3,1,""],test_roll_with_advantage_disadvantage:[428,3,1,""],test_saving_throw:[428,3,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_utils":{TestUtils:[429,1,1,""]},"evennia.contrib.tutorials.evadventure.tests.test_utils.TestUtils":{test_get_obj_stats:[429,3,1,""]},"evennia.contrib.tutorials.evadventure.utils":{get_obj_stats:[430,5,1,""]},"evennia.contrib.tutorials.mirror":{mirror:[432,0,0,"-"]},"evennia.contrib.tutorials.mirror.mirror":{TutorialMirror:[432,1,1,""]},"evennia.contrib.tutorials.mirror.mirror.TutorialMirror":{DoesNotExist:[432,2,1,""],MultipleObjectsReturned:[432,2,1,""],msg:[432,3,1,""],path:[432,4,1,""],return_appearance:[432,3,1,""],typename:[432,4,1,""]},"evennia.contrib.tutorials.red_button":{red_button:[434,0,0,"-"]},"evennia.contrib.tutorials.red_button.red_button":{BlindCmdSet:[434,1,1,""],CmdBlindHelp:[434,1,1,""],CmdBlindLook:[434,1,1,""],CmdCloseLid:[434,1,1,""],CmdNudge:[434,1,1,""],CmdOpenLid:[434,1,1,""],CmdPushLidClosed:[434,1,1,""],CmdPushLidOpen:[434,1,1,""],CmdSmashGlass:[434,1,1,""],LidClosedCmdSet:[434,1,1,""],LidOpenCmdSet:[434,1,1,""],RedButton:[434,1,1,""]},"evennia.contrib.tutorials.red_button.red_button.BlindCmdSet":{at_cmdset_creation:[434,3,1,""],key:[434,4,1,""],mergetype:[434,4,1,""],no_exits:[434,4,1,""],no_objs:[434,4,1,""],path:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdBlindHelp":{aliases:[434,4,1,""],func:[434,3,1,""],help_category:[434,4,1,""],key:[434,4,1,""],lock_storage:[434,4,1,""],locks:[434,4,1,""],search_index_entry:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdBlindLook":{aliases:[434,4,1,""],func:[434,3,1,""],help_category:[434,4,1,""],key:[434,4,1,""],lock_storage:[434,4,1,""],locks:[434,4,1,""],search_index_entry:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdCloseLid":{aliases:[434,4,1,""],func:[434,3,1,""],help_category:[434,4,1,""],key:[434,4,1,""],lock_storage:[434,4,1,""],locks:[434,4,1,""],search_index_entry:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdNudge":{aliases:[434,4,1,""],func:[434,3,1,""],help_category:[434,4,1,""],key:[434,4,1,""],lock_storage:[434,4,1,""],locks:[434,4,1,""],search_index_entry:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdOpenLid":{aliases:[434,4,1,""],func:[434,3,1,""],help_category:[434,4,1,""],key:[434,4,1,""],lock_storage:[434,4,1,""],locks:[434,4,1,""],search_index_entry:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdPushLidClosed":{aliases:[434,4,1,""],func:[434,3,1,""],help_category:[434,4,1,""],key:[434,4,1,""],lock_storage:[434,4,1,""],locks:[434,4,1,""],search_index_entry:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdPushLidOpen":{aliases:[434,4,1,""],func:[434,3,1,""],help_category:[434,4,1,""],key:[434,4,1,""],lock_storage:[434,4,1,""],locks:[434,4,1,""],search_index_entry:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.CmdSmashGlass":{aliases:[434,4,1,""],func:[434,3,1,""],help_category:[434,4,1,""],key:[434,4,1,""],lock_storage:[434,4,1,""],locks:[434,4,1,""],search_index_entry:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.LidClosedCmdSet":{at_cmdset_creation:[434,3,1,""],key:[434,4,1,""],path:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.LidOpenCmdSet":{at_cmdset_creation:[434,3,1,""],key:[434,4,1,""],path:[434,4,1,""]},"evennia.contrib.tutorials.red_button.red_button.RedButton":{DoesNotExist:[434,2,1,""],MultipleObjectsReturned:[434,2,1,""],at_object_creation:[434,3,1,""],auto_close_msg:[434,4,1,""],blind_target:[434,3,1,""],blink_msgs:[434,4,1,""],break_lamp:[434,3,1,""],desc_add_lamp_broken:[434,4,1,""],desc_closed_lid:[434,4,1,""],desc_open_lid:[434,4,1,""],lamp_breaks_msg:[434,4,1,""],path:[434,4,1,""],to_closed_state:[434,3,1,""],to_open_state:[434,3,1,""],typename:[434,4,1,""]},"evennia.contrib.tutorials.talking_npc":{talking_npc:[436,0,0,"-"],tests:[437,0,0,"-"]},"evennia.contrib.tutorials.talking_npc.talking_npc":{CmdTalk:[436,1,1,""],END:[436,5,1,""],TalkingCmdSet:[436,1,1,""],TalkingNPC:[436,1,1,""],info1:[436,5,1,""],info2:[436,5,1,""],info3:[436,5,1,""],menu_start_node:[436,5,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.CmdTalk":{aliases:[436,4,1,""],func:[436,3,1,""],help_category:[436,4,1,""],key:[436,4,1,""],lock_storage:[436,4,1,""],locks:[436,4,1,""],search_index_entry:[436,4,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.TalkingCmdSet":{at_cmdset_creation:[436,3,1,""],key:[436,4,1,""],path:[436,4,1,""]},"evennia.contrib.tutorials.talking_npc.talking_npc.TalkingNPC":{DoesNotExist:[436,2,1,""],MultipleObjectsReturned:[436,2,1,""],at_object_creation:[436,3,1,""],path:[436,4,1,""],typename:[436,4,1,""]},"evennia.contrib.tutorials.talking_npc.tests":{TestTalkingNPC:[437,1,1,""]},"evennia.contrib.tutorials.talking_npc.tests.TestTalkingNPC":{test_talkingnpc:[437,3,1,""]},"evennia.contrib.tutorials.tutorial_world":{intro_menu:[439,0,0,"-"],mob:[440,0,0,"-"],objects:[441,0,0,"-"],rooms:[442,0,0,"-"],tests:[443,0,0,"-"]},"evennia.contrib.tutorials.tutorial_world.intro_menu":{DemoCommandSetComms:[439,1,1,""],DemoCommandSetHelp:[439,1,1,""],DemoCommandSetRoom:[439,1,1,""],TutorialEvMenu:[439,1,1,""],do_nothing:[439,5,1,""],goto_cleanup_cmdsets:[439,5,1,""],goto_command_demo_comms:[439,5,1,""],goto_command_demo_help:[439,5,1,""],goto_command_demo_room:[439,5,1,""],init_menu:[439,5,1,""],send_testing_tagged:[439,5,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetComms":{at_cmdset_creation:[439,3,1,""],key:[439,4,1,""],no_exits:[439,4,1,""],no_objs:[439,4,1,""],path:[439,4,1,""],priority:[439,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetHelp":{at_cmdset_creation:[439,3,1,""],key:[439,4,1,""],path:[439,4,1,""],priority:[439,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.DemoCommandSetRoom":{at_cmdset_creation:[439,3,1,""],key:[439,4,1,""],no_exits:[439,4,1,""],no_objs:[439,4,1,""],path:[439,4,1,""],priority:[439,4,1,""]},"evennia.contrib.tutorials.tutorial_world.intro_menu.TutorialEvMenu":{close_menu:[439,3,1,""],options_formatter:[439,3,1,""]},"evennia.contrib.tutorials.tutorial_world.mob":{CmdMobOnOff:[440,1,1,""],Mob:[440,1,1,""],MobCmdSet:[440,1,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.CmdMobOnOff":{aliases:[440,4,1,""],func:[440,3,1,""],help_category:[440,4,1,""],key:[440,4,1,""],lock_storage:[440,4,1,""],locks:[440,4,1,""],search_index_entry:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.Mob":{DoesNotExist:[440,2,1,""],MultipleObjectsReturned:[440,2,1,""],at_hit:[440,3,1,""],at_init:[440,3,1,""],at_new_arrival:[440,3,1,""],at_object_creation:[440,3,1,""],do_attack:[440,3,1,""],do_hunting:[440,3,1,""],do_patrol:[440,3,1,""],path:[440,4,1,""],set_alive:[440,3,1,""],set_dead:[440,3,1,""],start_attacking:[440,3,1,""],start_hunting:[440,3,1,""],start_idle:[440,3,1,""],start_patrolling:[440,3,1,""],typename:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.mob.MobCmdSet":{at_cmdset_creation:[440,3,1,""],path:[440,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects":{CmdAttack:[441,1,1,""],CmdClimb:[441,1,1,""],CmdGetWeapon:[441,1,1,""],CmdLight:[441,1,1,""],CmdPressButton:[441,1,1,""],CmdRead:[441,1,1,""],CmdSetClimbable:[441,1,1,""],CmdSetCrumblingWall:[441,1,1,""],CmdSetLight:[441,1,1,""],CmdSetReadable:[441,1,1,""],CmdSetWeapon:[441,1,1,""],CmdSetWeaponRack:[441,1,1,""],CmdShiftRoot:[441,1,1,""],CrumblingWall:[441,1,1,""],LightSource:[441,1,1,""],Obelisk:[441,1,1,""],TutorialClimbable:[441,1,1,""],TutorialObject:[441,1,1,""],TutorialReadable:[441,1,1,""],TutorialWeapon:[441,1,1,""],TutorialWeaponRack:[441,1,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdAttack":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdClimb":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdGetWeapon":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdLight":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdPressButton":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdRead":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetClimbable":{at_cmdset_creation:[441,3,1,""],path:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetCrumblingWall":{at_cmdset_creation:[441,3,1,""],key:[441,4,1,""],path:[441,4,1,""],priority:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetLight":{at_cmdset_creation:[441,3,1,""],key:[441,4,1,""],path:[441,4,1,""],priority:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetReadable":{at_cmdset_creation:[441,3,1,""],path:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetWeapon":{at_cmdset_creation:[441,3,1,""],path:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdSetWeaponRack":{at_cmdset_creation:[441,3,1,""],key:[441,4,1,""],path:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CmdShiftRoot":{aliases:[441,4,1,""],func:[441,3,1,""],help_category:[441,4,1,""],key:[441,4,1,""],lock_storage:[441,4,1,""],locks:[441,4,1,""],parse:[441,3,1,""],search_index_entry:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.CrumblingWall":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_failed_traverse:[441,3,1,""],at_init:[441,3,1,""],at_object_creation:[441,3,1,""],at_post_traverse:[441,3,1,""],open_wall:[441,3,1,""],path:[441,4,1,""],reset:[441,3,1,""],return_appearance:[441,3,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.LightSource":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_init:[441,3,1,""],at_object_creation:[441,3,1,""],light:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.Obelisk":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],path:[441,4,1,""],return_appearance:[441,3,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialClimbable":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialObject":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],path:[441,4,1,""],reset:[441,3,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialReadable":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],path:[441,4,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialWeapon":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],path:[441,4,1,""],reset:[441,3,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.objects.TutorialWeaponRack":{DoesNotExist:[441,2,1,""],MultipleObjectsReturned:[441,2,1,""],at_object_creation:[441,3,1,""],path:[441,4,1,""],produce_weapon:[441,3,1,""],typename:[441,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms":{BridgeCmdSet:[442,1,1,""],BridgeRoom:[442,1,1,""],CmdBridgeHelp:[442,1,1,""],CmdDarkHelp:[442,1,1,""],CmdDarkNoMatch:[442,1,1,""],CmdEast:[442,1,1,""],CmdEvenniaIntro:[442,1,1,""],CmdLookBridge:[442,1,1,""],CmdLookDark:[442,1,1,""],CmdSetEvenniaIntro:[442,1,1,""],CmdTutorial:[442,1,1,""],CmdTutorialGiveUp:[442,1,1,""],CmdTutorialLook:[442,1,1,""],CmdTutorialSetDetail:[442,1,1,""],CmdWest:[442,1,1,""],DarkCmdSet:[442,1,1,""],DarkRoom:[442,1,1,""],IntroRoom:[442,1,1,""],OutroRoom:[442,1,1,""],TeleportRoom:[442,1,1,""],TutorialRoom:[442,1,1,""],TutorialRoomCmdSet:[442,1,1,""],TutorialStartExit:[442,1,1,""],WeatherRoom:[442,1,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.BridgeCmdSet":{at_cmdset_creation:[442,3,1,""],key:[442,4,1,""],path:[442,4,1,""],priority:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.BridgeRoom":{DoesNotExist:[442,2,1,""],MultipleObjectsReturned:[442,2,1,""],at_object_creation:[442,3,1,""],at_object_leave:[442,3,1,""],at_object_receive:[442,3,1,""],path:[442,4,1,""],typename:[442,4,1,""],update_weather:[442,3,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdBridgeHelp":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],locks:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdDarkHelp":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],locks:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdDarkNoMatch":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],locks:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdEast":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],locks:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdEvenniaIntro":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdLookBridge":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],locks:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdLookDark":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],locks:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdSetEvenniaIntro":{at_cmdset_creation:[442,3,1,""],key:[442,4,1,""],path:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorial":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],locks:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialGiveUp":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialLook":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdTutorialSetDetail":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],locks:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.CmdWest":{aliases:[442,4,1,""],func:[442,3,1,""],help_category:[442,4,1,""],key:[442,4,1,""],lock_storage:[442,4,1,""],locks:[442,4,1,""],search_index_entry:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.DarkCmdSet":{at_cmdset_creation:[442,3,1,""],key:[442,4,1,""],mergetype:[442,4,1,""],path:[442,4,1,""],priority:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.DarkRoom":{DoesNotExist:[442,2,1,""],MultipleObjectsReturned:[442,2,1,""],at_init:[442,3,1,""],at_object_creation:[442,3,1,""],at_object_leave:[442,3,1,""],at_object_receive:[442,3,1,""],check_light_state:[442,3,1,""],path:[442,4,1,""],typename:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.IntroRoom":{DoesNotExist:[442,2,1,""],MultipleObjectsReturned:[442,2,1,""],at_object_creation:[442,3,1,""],at_object_receive:[442,3,1,""],path:[442,4,1,""],typename:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.OutroRoom":{DoesNotExist:[442,2,1,""],MultipleObjectsReturned:[442,2,1,""],at_object_creation:[442,3,1,""],at_object_leave:[442,3,1,""],at_object_receive:[442,3,1,""],path:[442,4,1,""],typename:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TeleportRoom":{DoesNotExist:[442,2,1,""],MultipleObjectsReturned:[442,2,1,""],at_object_creation:[442,3,1,""],at_object_receive:[442,3,1,""],path:[442,4,1,""],typename:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialRoom":{DoesNotExist:[442,2,1,""],MultipleObjectsReturned:[442,2,1,""],at_object_creation:[442,3,1,""],at_object_receive:[442,3,1,""],path:[442,4,1,""],return_detail:[442,3,1,""],set_detail:[442,3,1,""],typename:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialRoomCmdSet":{at_cmdset_creation:[442,3,1,""],key:[442,4,1,""],path:[442,4,1,""],priority:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.TutorialStartExit":{DoesNotExist:[442,2,1,""],MultipleObjectsReturned:[442,2,1,""],at_object_creation:[442,3,1,""],path:[442,4,1,""],typename:[442,4,1,""]},"evennia.contrib.tutorials.tutorial_world.rooms.WeatherRoom":{DoesNotExist:[442,2,1,""],MultipleObjectsReturned:[442,2,1,""],at_object_creation:[442,3,1,""],path:[442,4,1,""],typename:[442,4,1,""],update_weather:[442,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests":{TestTutorialWorldMob:[443,1,1,""],TestTutorialWorldObjects:[443,1,1,""],TestTutorialWorldRooms:[443,1,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldMob":{test_mob:[443,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldObjects":{test_climbable:[443,3,1,""],test_crumblingwall:[443,3,1,""],test_lightsource:[443,3,1,""],test_obelisk:[443,3,1,""],test_readable:[443,3,1,""],test_tutorialobj:[443,3,1,""],test_weapon:[443,3,1,""],test_weaponrack:[443,3,1,""]},"evennia.contrib.tutorials.tutorial_world.tests.TestTutorialWorldRooms":{test_bridgeroom:[443,3,1,""],test_cmdtutorial:[443,3,1,""],test_darkroom:[443,3,1,""],test_introroom:[443,3,1,""],test_outroroom:[443,3,1,""],test_teleportroom:[443,3,1,""],test_weatherroom:[443,3,1,""]},"evennia.contrib.utils":{auditing:[445,0,0,"-"],fieldfill:[449,0,0,"-"],git_integration:[451,0,0,"-"],name_generator:[454,0,0,"-"],random_string_generator:[457,0,0,"-"],tree_select:[460,0,0,"-"]},"evennia.contrib.utils.auditing":{outputs:[446,0,0,"-"],server:[447,0,0,"-"],tests:[448,0,0,"-"]},"evennia.contrib.utils.auditing.outputs":{to_file:[446,5,1,""],to_syslog:[446,5,1,""]},"evennia.contrib.utils.auditing.server":{AuditedServerSession:[447,1,1,""]},"evennia.contrib.utils.auditing.server.AuditedServerSession":{audit:[447,3,1,""],data_in:[447,3,1,""],data_out:[447,3,1,""],mask:[447,3,1,""]},"evennia.contrib.utils.auditing.tests":{AuditingTest:[448,1,1,""]},"evennia.contrib.utils.auditing.tests.AuditingTest":{setup_session:[448,3,1,""],test_audit:[448,3,1,""],test_mask:[448,3,1,""]},"evennia.contrib.utils.fieldfill":{fieldfill:[450,0,0,"-"]},"evennia.contrib.utils.fieldfill.fieldfill":{CmdTestMenu:[450,1,1,""],FieldEvMenu:[450,1,1,""],display_formdata:[450,5,1,""],form_template_to_dict:[450,5,1,""],init_delayed_message:[450,5,1,""],init_fill_field:[450,5,1,""],menunode_fieldfill:[450,5,1,""],sendmessage:[450,5,1,""],verify_online_player:[450,5,1,""]},"evennia.contrib.utils.fieldfill.fieldfill.CmdTestMenu":{aliases:[450,4,1,""],func:[450,3,1,""],help_category:[450,4,1,""],key:[450,4,1,""],lock_storage:[450,4,1,""],search_index_entry:[450,4,1,""]},"evennia.contrib.utils.fieldfill.fieldfill.FieldEvMenu":{node_formatter:[450,3,1,""]},"evennia.contrib.utils.git_integration":{git_integration:[452,0,0,"-"],tests:[453,0,0,"-"]},"evennia.contrib.utils.git_integration.git_integration":{CmdGit:[452,1,1,""],CmdGitEvennia:[452,1,1,""],GitCmdSet:[452,1,1,""],GitCommand:[452,1,1,""]},"evennia.contrib.utils.git_integration.git_integration.CmdGit":{aliases:[452,4,1,""],directory:[452,4,1,""],help_category:[452,4,1,""],key:[452,4,1,""],lock_storage:[452,4,1,""],locks:[452,4,1,""],remote_link:[452,4,1,""],repo_type:[452,4,1,""],search_index_entry:[452,4,1,""]},"evennia.contrib.utils.git_integration.git_integration.CmdGitEvennia":{aliases:[452,4,1,""],directory:[452,4,1,""],help_category:[452,4,1,""],key:[452,4,1,""],lock_storage:[452,4,1,""],locks:[452,4,1,""],remote_link:[452,4,1,""],repo_type:[452,4,1,""],search_index_entry:[452,4,1,""]},"evennia.contrib.utils.git_integration.git_integration.GitCmdSet":{at_cmdset_creation:[452,3,1,""],path:[452,4,1,""]},"evennia.contrib.utils.git_integration.git_integration.GitCommand":{aliases:[452,4,1,""],checkout:[452,3,1,""],func:[452,3,1,""],get_branches:[452,3,1,""],get_status:[452,3,1,""],help_category:[452,4,1,""],key:[452,4,1,""],lock_storage:[452,4,1,""],parse:[452,3,1,""],pull:[452,3,1,""],search_index_entry:[452,4,1,""],short_sha:[452,3,1,""]},"evennia.contrib.utils.git_integration.tests":{TestGitIntegration:[453,1,1,""]},"evennia.contrib.utils.git_integration.tests.TestGitIntegration":{setUp:[453,3,1,""],test_git_branch:[453,3,1,""],test_git_checkout:[453,3,1,""],test_git_pull:[453,3,1,""],test_git_status:[453,3,1,""]},"evennia.contrib.utils.name_generator":{namegen:[455,0,0,"-"],tests:[456,0,0,"-"]},"evennia.contrib.utils.name_generator.namegen":{fantasy_name:[455,5,1,""],first_name:[455,5,1,""],full_name:[455,5,1,""],last_name:[455,5,1,""]},"evennia.contrib.utils.name_generator.tests":{TestNameGenerator:[456,1,1,""]},"evennia.contrib.utils.name_generator.tests.TestNameGenerator":{test_fantasy_name:[456,3,1,""],test_first_name:[456,3,1,""],test_full_name:[456,3,1,""],test_last_name:[456,3,1,""],test_structure_validation:[456,3,1,""]},"evennia.contrib.utils.random_string_generator":{random_string_generator:[458,0,0,"-"],tests:[459,0,0,"-"]},"evennia.contrib.utils.random_string_generator.random_string_generator":{ExhaustedGenerator:[458,2,1,""],RandomStringGenerator:[458,1,1,""],RandomStringGeneratorScript:[458,1,1,""],RejectedRegex:[458,2,1,""]},"evennia.contrib.utils.random_string_generator.random_string_generator.RandomStringGenerator":{__init__:[458,3,1,""],all:[458,3,1,""],clear:[458,3,1,""],get:[458,3,1,""],remove:[458,3,1,""],script:[458,4,1,""]},"evennia.contrib.utils.random_string_generator.random_string_generator.RandomStringGeneratorScript":{DoesNotExist:[458,2,1,""],MultipleObjectsReturned:[458,2,1,""],at_script_creation:[458,3,1,""],path:[458,4,1,""],typename:[458,4,1,""]},"evennia.contrib.utils.random_string_generator.tests":{TestRandomStringGenerator:[459,1,1,""]},"evennia.contrib.utils.random_string_generator.tests.TestRandomStringGenerator":{test_generate:[459,3,1,""]},"evennia.contrib.utils.tree_select":{tests:[461,0,0,"-"],tree_select:[462,0,0,"-"]},"evennia.contrib.utils.tree_select.tests":{TestFieldFillFunc:[461,1,1,""],TestTreeSelectFunc:[461,1,1,""]},"evennia.contrib.utils.tree_select.tests.TestFieldFillFunc":{test_field_functions:[461,3,1,""]},"evennia.contrib.utils.tree_select.tests.TestTreeSelectFunc":{test_tree_functions:[461,3,1,""]},"evennia.contrib.utils.tree_select.tree_select":{CmdNameColor:[462,1,1,""],change_name_color:[462,5,1,""],dashcount:[462,5,1,""],go_up_one_category:[462,5,1,""],index_to_selection:[462,5,1,""],init_tree_selection:[462,5,1,""],is_category:[462,5,1,""],menunode_treeselect:[462,5,1,""],optlist_to_menuoptions:[462,5,1,""],parse_opts:[462,5,1,""]},"evennia.contrib.utils.tree_select.tree_select.CmdNameColor":{aliases:[462,4,1,""],func:[462,3,1,""],help_category:[462,4,1,""],key:[462,4,1,""],lock_storage:[462,4,1,""],search_index_entry:[462,4,1,""]},"evennia.help":{filehelp:[464,0,0,"-"],manager:[465,0,0,"-"],models:[466,0,0,"-"],utils:[467,0,0,"-"]},"evennia.help.filehelp":{FileHelpEntry:[464,1,1,""],FileHelpStorageHandler:[464,1,1,""]},"evennia.help.filehelp.FileHelpEntry":{__init__:[464,3,1,""],access:[464,3,1,""],aliases:[464,4,1,""],entrytext:[464,4,1,""],help_category:[464,4,1,""],key:[464,4,1,""],lock_storage:[464,4,1,""],locks:[464,4,1,""],search_index_entry:[464,3,1,""],web_get_admin_url:[464,3,1,""],web_get_detail_url:[464,3,1,""]},"evennia.help.filehelp.FileHelpStorageHandler":{__init__:[464,3,1,""],all:[464,3,1,""],load:[464,3,1,""]},"evennia.help.manager":{HelpEntryManager:[465,1,1,""]},"evennia.help.manager.HelpEntryManager":{all_to_category:[465,3,1,""],create_help:[465,3,1,""],find_apropos:[465,3,1,""],find_topicmatch:[465,3,1,""],find_topics_with_category:[465,3,1,""],find_topicsuggestions:[465,3,1,""],get_all_categories:[465,3,1,""],get_all_topics:[465,3,1,""],search_help:[465,3,1,""]},"evennia.help.models":{HelpEntry:[466,1,1,""]},"evennia.help.models.HelpEntry":{DoesNotExist:[466,2,1,""],MultipleObjectsReturned:[466,2,1,""],access:[466,3,1,""],aliases:[466,4,1,""],date_created:[466,3,1,""],db_date_created:[466,4,1,""],db_entrytext:[466,4,1,""],db_help_category:[466,4,1,""],db_key:[466,4,1,""],db_lock_storage:[466,4,1,""],db_tags:[466,4,1,""],entrytext:[466,3,1,""],get_absolute_url:[466,3,1,""],get_next_by_db_date_created:[466,3,1,""],get_previous_by_db_date_created:[466,3,1,""],help_category:[466,3,1,""],id:[466,4,1,""],key:[466,3,1,""],lock_storage:[466,3,1,""],locks:[466,4,1,""],objects:[466,4,1,""],path:[466,4,1,""],search_index_entry:[466,3,1,""],tags:[466,4,1,""],typename:[466,4,1,""],web_get_admin_url:[466,3,1,""],web_get_create_url:[466,3,1,""],web_get_delete_url:[466,3,1,""],web_get_detail_url:[466,3,1,""],web_get_update_url:[466,3,1,""]},"evennia.help.utils":{help_search_with_index:[467,5,1,""],parse_entry_for_subcategories:[467,5,1,""]},"evennia.locks":{lockfuncs:[469,0,0,"-"],lockhandler:[470,0,0,"-"]},"evennia.locks.lockfuncs":{"false":[469,5,1,""],"true":[469,5,1,""],all:[469,5,1,""],attr:[469,5,1,""],attr_eq:[469,5,1,""],attr_ge:[469,5,1,""],attr_gt:[469,5,1,""],attr_le:[469,5,1,""],attr_lt:[469,5,1,""],attr_ne:[469,5,1,""],dbref:[469,5,1,""],has_account:[469,5,1,""],holds:[469,5,1,""],id:[469,5,1,""],inside:[469,5,1,""],inside_rec:[469,5,1,""],is_ooc:[469,5,1,""],locattr:[469,5,1,""],none:[469,5,1,""],objattr:[469,5,1,""],objlocattr:[469,5,1,""],objloctag:[469,5,1,""],objtag:[469,5,1,""],pdbref:[469,5,1,""],perm:[469,5,1,""],perm_above:[469,5,1,""],pid:[469,5,1,""],pperm:[469,5,1,""],pperm_above:[469,5,1,""],self:[469,5,1,""],serversetting:[469,5,1,""],superuser:[469,5,1,""],tag:[469,5,1,""]},"evennia.locks.lockhandler":{LockException:[470,2,1,""],LockHandler:[470,1,1,""]},"evennia.locks.lockhandler.LockHandler":{"delete":[470,3,1,""],__init__:[470,3,1,""],add:[470,3,1,""],all:[470,3,1,""],append:[470,3,1,""],cache_lock_bypass:[470,3,1,""],check:[470,3,1,""],check_lockstring:[470,3,1,""],clear:[470,3,1,""],get:[470,3,1,""],remove:[470,3,1,""],replace:[470,3,1,""],reset:[470,3,1,""],validate:[470,3,1,""]},"evennia.objects":{manager:[472,0,0,"-"],models:[473,0,0,"-"],objects:[474,0,0,"-"]},"evennia.objects.manager":{ObjectDBManager:[472,1,1,""],ObjectManager:[472,1,1,""]},"evennia.objects.manager.ObjectDBManager":{clear_all_sessids:[472,3,1,""],copy_object:[472,3,1,""],create_object:[472,3,1,""],get_contents:[472,3,1,""],get_object_with_account:[472,3,1,""],get_objs_with_attr:[472,3,1,""],get_objs_with_attr_value:[472,3,1,""],get_objs_with_db_property:[472,3,1,""],get_objs_with_db_property_value:[472,3,1,""],get_objs_with_key_and_typeclass:[472,3,1,""],get_objs_with_key_or_alias:[472,3,1,""],object_search:[472,3,1,""],search:[472,3,1,""],search_object:[472,3,1,""]},"evennia.objects.models":{ContentsHandler:[473,1,1,""],ObjectDB:[473,1,1,""]},"evennia.objects.models.ContentsHandler":{__init__:[473,3,1,""],add:[473,3,1,""],clear:[473,3,1,""],get:[473,3,1,""],init:[473,3,1,""],load:[473,3,1,""],remove:[473,3,1,""]},"evennia.objects.models.ObjectDB":{DoesNotExist:[473,2,1,""],MultipleObjectsReturned:[473,2,1,""],account:[473,3,1,""],at_db_location_postsave:[473,3,1,""],cmdset_storage:[473,3,1,""],contents_cache:[473,4,1,""],db_account:[473,4,1,""],db_account_id:[473,4,1,""],db_attributes:[473,4,1,""],db_cmdset_storage:[473,4,1,""],db_date_created:[473,4,1,""],db_destination:[473,4,1,""],db_destination_id:[473,4,1,""],db_home:[473,4,1,""],db_home_id:[473,4,1,""],db_key:[473,4,1,""],db_location:[473,4,1,""],db_location_id:[473,4,1,""],db_lock_storage:[473,4,1,""],db_sessid:[473,4,1,""],db_tags:[473,4,1,""],db_typeclass_path:[473,4,1,""],destination:[473,3,1,""],destinations_set:[473,4,1,""],get_next_by_db_date_created:[473,3,1,""],get_previous_by_db_date_created:[473,3,1,""],hide_from_objects_set:[473,4,1,""],home:[473,3,1,""],homes_set:[473,4,1,""],id:[473,4,1,""],location:[473,3,1,""],locations_set:[473,4,1,""],object_subscription_set:[473,4,1,""],objects:[473,4,1,""],path:[473,4,1,""],receiver_object_set:[473,4,1,""],scriptdb_set:[473,4,1,""],sender_object_set:[473,4,1,""],sessid:[473,3,1,""],typename:[473,4,1,""]},"evennia.objects.objects":{DefaultCharacter:[474,1,1,""],DefaultExit:[474,1,1,""],DefaultObject:[474,1,1,""],DefaultRoom:[474,1,1,""],ExitCommand:[474,1,1,""],ObjectSessionHandler:[474,1,1,""]},"evennia.objects.objects.DefaultCharacter":{DoesNotExist:[474,2,1,""],MultipleObjectsReturned:[474,2,1,""],at_after_move:[474,3,1,""],at_post_move:[474,3,1,""],at_post_puppet:[474,3,1,""],at_post_unpuppet:[474,3,1,""],at_pre_puppet:[474,3,1,""],basetype_setup:[474,3,1,""],connection_time:[474,3,1,""],create:[474,3,1,""],idle_time:[474,3,1,""],lockstring:[474,4,1,""],normalize_name:[474,3,1,""],path:[474,4,1,""],typename:[474,4,1,""],validate_name:[474,3,1,""]},"evennia.objects.objects.DefaultExit":{DoesNotExist:[474,2,1,""],MultipleObjectsReturned:[474,2,1,""],at_cmdset_get:[474,3,1,""],at_failed_traverse:[474,3,1,""],at_init:[474,3,1,""],at_traverse:[474,3,1,""],basetype_setup:[474,3,1,""],create:[474,3,1,""],create_exit_cmdset:[474,3,1,""],exit_command:[474,4,1,""],get_return_exit:[474,3,1,""],lockstring:[474,4,1,""],path:[474,4,1,""],priority:[474,4,1,""],typename:[474,4,1,""]},"evennia.objects.objects.DefaultObject":{"delete":[474,3,1,""],DoesNotExist:[474,2,1,""],MultipleObjectsReturned:[474,2,1,""],access:[474,3,1,""],announce_move_from:[474,3,1,""],announce_move_to:[474,3,1,""],appearance_template:[474,4,1,""],at_access:[474,3,1,""],at_after_move:[474,3,1,""],at_after_traverse:[474,3,1,""],at_before_drop:[474,3,1,""],at_before_get:[474,3,1,""],at_before_give:[474,3,1,""],at_before_move:[474,3,1,""],at_before_say:[474,3,1,""],at_cmdset_get:[474,3,1,""],at_desc:[474,3,1,""],at_drop:[474,3,1,""],at_failed_traverse:[474,3,1,""],at_first_save:[474,3,1,""],at_get:[474,3,1,""],at_give:[474,3,1,""],at_init:[474,3,1,""],at_look:[474,3,1,""],at_msg_receive:[474,3,1,""],at_msg_send:[474,3,1,""],at_object_creation:[474,3,1,""],at_object_delete:[474,3,1,""],at_object_leave:[474,3,1,""],at_object_post_copy:[474,3,1,""],at_object_receive:[474,3,1,""],at_post_move:[474,3,1,""],at_post_puppet:[474,3,1,""],at_post_traverse:[474,3,1,""],at_post_unpuppet:[474,3,1,""],at_pre_drop:[474,3,1,""],at_pre_get:[474,3,1,""],at_pre_give:[474,3,1,""],at_pre_move:[474,3,1,""],at_pre_object_leave:[474,3,1,""],at_pre_object_receive:[474,3,1,""],at_pre_puppet:[474,3,1,""],at_pre_say:[474,3,1,""],at_pre_unpuppet:[474,3,1,""],at_say:[474,3,1,""],at_server_reload:[474,3,1,""],at_server_shutdown:[474,3,1,""],at_traverse:[474,3,1,""],basetype_posthook_setup:[474,3,1,""],basetype_setup:[474,3,1,""],clear_contents:[474,3,1,""],clear_exits:[474,3,1,""],cmdset:[474,4,1,""],contents:[474,3,1,""],contents_get:[474,3,1,""],contents_set:[474,3,1,""],copy:[474,3,1,""],create:[474,3,1,""],execute_cmd:[474,3,1,""],exits:[474,3,1,""],for_contents:[474,3,1,""],format_appearance:[474,3,1,""],get_content_names:[474,3,1,""],get_display_characters:[474,3,1,""],get_display_desc:[474,3,1,""],get_display_exits:[474,3,1,""],get_display_footer:[474,3,1,""],get_display_header:[474,3,1,""],get_display_name:[474,3,1,""],get_display_things:[474,3,1,""],get_numbered_name:[474,3,1,""],get_visible_contents:[474,3,1,""],has_account:[474,3,1,""],is_connected:[474,3,1,""],is_superuser:[474,3,1,""],lockstring:[474,4,1,""],move_to:[474,3,1,""],msg:[474,3,1,""],msg_contents:[474,3,1,""],nicks:[474,4,1,""],objects:[474,4,1,""],path:[474,4,1,""],return_appearance:[474,3,1,""],scripts:[474,4,1,""],search:[474,3,1,""],search_account:[474,3,1,""],sessions:[474,4,1,""],typename:[474,4,1,""]},"evennia.objects.objects.DefaultRoom":{DoesNotExist:[474,2,1,""],MultipleObjectsReturned:[474,2,1,""],basetype_setup:[474,3,1,""],create:[474,3,1,""],lockstring:[474,4,1,""],path:[474,4,1,""],typename:[474,4,1,""]},"evennia.objects.objects.ExitCommand":{aliases:[474,4,1,""],func:[474,3,1,""],get_extra_info:[474,3,1,""],help_category:[474,4,1,""],key:[474,4,1,""],lock_storage:[474,4,1,""],obj:[474,4,1,""],search_index_entry:[474,4,1,""]},"evennia.objects.objects.ObjectSessionHandler":{__init__:[474,3,1,""],add:[474,3,1,""],all:[474,3,1,""],clear:[474,3,1,""],count:[474,3,1,""],get:[474,3,1,""],remove:[474,3,1,""]},"evennia.prototypes":{menus:[476,0,0,"-"],protfuncs:[477,0,0,"-"],prototypes:[478,0,0,"-"],spawner:[479,0,0,"-"]},"evennia.prototypes.menus":{OLCMenu:[476,1,1,""],node_apply_diff:[476,5,1,""],node_destination:[476,5,1,""],node_examine_entity:[476,5,1,""],node_home:[476,5,1,""],node_index:[476,5,1,""],node_key:[476,5,1,""],node_location:[476,5,1,""],node_prototype_desc:[476,5,1,""],node_prototype_key:[476,5,1,""],node_prototype_save:[476,5,1,""],node_prototype_spawn:[476,5,1,""],node_validate_prototype:[476,5,1,""],start_olc:[476,5,1,""]},"evennia.prototypes.menus.OLCMenu":{display_helptext:[476,3,1,""],helptext_formatter:[476,3,1,""],nodetext_formatter:[476,3,1,""],options_formatter:[476,3,1,""]},"evennia.prototypes.protfuncs":{protfunc_callable_protkey:[477,5,1,""]},"evennia.prototypes.prototypes":{DBPrototypeCache:[478,1,1,""],DbPrototype:[478,1,1,""],PermissionError:[478,2,1,""],PrototypeEvMore:[478,1,1,""],ValidationError:[478,2,1,""],check_permission:[478,5,1,""],create_prototype:[478,5,1,""],delete_prototype:[478,5,1,""],format_available_protfuncs:[478,5,1,""],homogenize_prototype:[478,5,1,""],init_spawn_value:[478,5,1,""],list_prototypes:[478,5,1,""],load_module_prototypes:[478,5,1,""],protfunc_parser:[478,5,1,""],prototype_to_str:[478,5,1,""],save_prototype:[478,5,1,""],search_objects_with_prototype:[478,5,1,""],search_prototype:[478,5,1,""],validate_prototype:[478,5,1,""],value_to_obj:[478,5,1,""],value_to_obj_or_any:[478,5,1,""]},"evennia.prototypes.prototypes.DBPrototypeCache":{__init__:[478,3,1,""],add:[478,3,1,""],clear:[478,3,1,""],get:[478,3,1,""],remove:[478,3,1,""],replace:[478,3,1,""]},"evennia.prototypes.prototypes.DbPrototype":{DoesNotExist:[478,2,1,""],MultipleObjectsReturned:[478,2,1,""],at_script_creation:[478,3,1,""],path:[478,4,1,""],prototype:[478,3,1,""],typename:[478,4,1,""]},"evennia.prototypes.prototypes.PrototypeEvMore":{__init__:[478,3,1,""],init_pages:[478,3,1,""],page_formatter:[478,3,1,""],prototype_paginator:[478,3,1,""]},"evennia.prototypes.spawner":{Unset:[479,1,1,""],batch_create_object:[479,5,1,""],batch_update_objects_with_prototype:[479,5,1,""],flatten_diff:[479,5,1,""],flatten_prototype:[479,5,1,""],format_diff:[479,5,1,""],prototype_diff:[479,5,1,""],prototype_diff_from_object:[479,5,1,""],prototype_from_object:[479,5,1,""],spawn:[479,5,1,""]},"evennia.scripts":{manager:[481,0,0,"-"],models:[482,0,0,"-"],monitorhandler:[483,0,0,"-"],scripthandler:[484,0,0,"-"],scripts:[485,0,0,"-"],taskhandler:[486,0,0,"-"],tickerhandler:[487,0,0,"-"]},"evennia.scripts.manager":{ScriptDBManager:[481,1,1,""],ScriptManager:[481,1,1,""]},"evennia.scripts.manager.ScriptDBManager":{copy_script:[481,3,1,""],create_script:[481,3,1,""],delete_script:[481,3,1,""],get_all_scripts:[481,3,1,""],get_all_scripts_on_obj:[481,3,1,""],script_search:[481,3,1,""],search_script:[481,3,1,""],update_scripts_after_server_start:[481,3,1,""]},"evennia.scripts.models":{ScriptDB:[482,1,1,""]},"evennia.scripts.models.ScriptDB":{DoesNotExist:[482,2,1,""],MultipleObjectsReturned:[482,2,1,""],account:[482,3,1,""],db_account:[482,4,1,""],db_account_id:[482,4,1,""],db_attributes:[482,4,1,""],db_date_created:[482,4,1,""],db_desc:[482,4,1,""],db_interval:[482,4,1,""],db_is_active:[482,4,1,""],db_key:[482,4,1,""],db_lock_storage:[482,4,1,""],db_obj:[482,4,1,""],db_obj_id:[482,4,1,""],db_persistent:[482,4,1,""],db_repeats:[482,4,1,""],db_start_delay:[482,4,1,""],db_tags:[482,4,1,""],db_typeclass_path:[482,4,1,""],desc:[482,3,1,""],get_next_by_db_date_created:[482,3,1,""],get_previous_by_db_date_created:[482,3,1,""],id:[482,4,1,""],interval:[482,3,1,""],is_active:[482,3,1,""],obj:[482,3,1,""],object:[482,3,1,""],objects:[482,4,1,""],path:[482,4,1,""],persistent:[482,3,1,""],receiver_script_set:[482,4,1,""],repeats:[482,3,1,""],sender_script_set:[482,4,1,""],start_delay:[482,3,1,""],typename:[482,4,1,""]},"evennia.scripts.monitorhandler":{MonitorHandler:[483,1,1,""]},"evennia.scripts.monitorhandler.MonitorHandler":{__init__:[483,3,1,""],add:[483,3,1,""],all:[483,3,1,""],at_update:[483,3,1,""],clear:[483,3,1,""],remove:[483,3,1,""],restore:[483,3,1,""],save:[483,3,1,""]},"evennia.scripts.scripthandler":{ScriptHandler:[484,1,1,""]},"evennia.scripts.scripthandler.ScriptHandler":{"delete":[484,3,1,""],__init__:[484,3,1,""],add:[484,3,1,""],all:[484,3,1,""],get:[484,3,1,""],remove:[484,3,1,""],start:[484,3,1,""],stop:[484,3,1,""]},"evennia.scripts.scripts":{DefaultScript:[485,1,1,""],DoNothing:[485,1,1,""],Store:[485,1,1,""]},"evennia.scripts.scripts.DefaultScript":{DoesNotExist:[485,2,1,""],MultipleObjectsReturned:[485,2,1,""],at_pause:[485,3,1,""],at_repeat:[485,3,1,""],at_script_creation:[485,3,1,""],at_script_delete:[485,3,1,""],at_server_reload:[485,3,1,""],at_server_shutdown:[485,3,1,""],at_server_start:[485,3,1,""],at_start:[485,3,1,""],at_stop:[485,3,1,""],create:[485,3,1,""],is_valid:[485,3,1,""],path:[485,4,1,""],typename:[485,4,1,""]},"evennia.scripts.scripts.DoNothing":{DoesNotExist:[485,2,1,""],MultipleObjectsReturned:[485,2,1,""],at_script_creation:[485,3,1,""],path:[485,4,1,""],typename:[485,4,1,""]},"evennia.scripts.scripts.Store":{DoesNotExist:[485,2,1,""],MultipleObjectsReturned:[485,2,1,""],at_script_creation:[485,3,1,""],path:[485,4,1,""],typename:[485,4,1,""]},"evennia.scripts.taskhandler":{TaskHandler:[486,1,1,""],TaskHandlerTask:[486,1,1,""],handle_error:[486,5,1,""]},"evennia.scripts.taskhandler.TaskHandler":{__init__:[486,3,1,""],active:[486,3,1,""],add:[486,3,1,""],call_task:[486,3,1,""],cancel:[486,3,1,""],clean_stale_tasks:[486,3,1,""],clear:[486,3,1,""],create_delays:[486,3,1,""],do_task:[486,3,1,""],exists:[486,3,1,""],get_deferred:[486,3,1,""],load:[486,3,1,""],remove:[486,3,1,""],save:[486,3,1,""]},"evennia.scripts.taskhandler.TaskHandlerTask":{__init__:[486,3,1,""],active:[486,3,1,"id6"],call:[486,3,1,"id3"],called:[486,3,1,""],cancel:[486,3,1,"id5"],do_task:[486,3,1,"id2"],exists:[486,3,1,"id7"],get_deferred:[486,3,1,""],get_id:[486,3,1,"id8"],pause:[486,3,1,"id0"],paused:[486,3,1,""],remove:[486,3,1,"id4"],unpause:[486,3,1,"id1"]},"evennia.scripts.tickerhandler":{Ticker:[487,1,1,""],TickerHandler:[487,1,1,""],TickerPool:[487,1,1,""]},"evennia.scripts.tickerhandler.Ticker":{__init__:[487,3,1,""],add:[487,3,1,""],remove:[487,3,1,""],stop:[487,3,1,""],validate:[487,3,1,""]},"evennia.scripts.tickerhandler.TickerHandler":{__init__:[487,3,1,""],add:[487,3,1,""],all:[487,3,1,""],all_display:[487,3,1,""],clear:[487,3,1,""],remove:[487,3,1,""],restore:[487,3,1,""],save:[487,3,1,""],ticker_pool_class:[487,4,1,""]},"evennia.scripts.tickerhandler.TickerPool":{__init__:[487,3,1,""],add:[487,3,1,""],remove:[487,3,1,""],stop:[487,3,1,""],ticker_class:[487,4,1,""]},"evennia.server":{amp_client:[489,0,0,"-"],connection_wizard:[490,0,0,"-"],deprecations:[491,0,0,"-"],evennia_launcher:[492,0,0,"-"],game_index_client:[493,0,0,"-"],initial_setup:[496,0,0,"-"],inputfuncs:[497,0,0,"-"],manager:[498,0,0,"-"],models:[499,0,0,"-"],portal:[500,0,0,"-"],profiling:[522,0,0,"-"],server:[530,0,0,"-"],serversession:[531,0,0,"-"],session:[532,0,0,"-"],sessionhandler:[533,0,0,"-"],signals:[534,0,0,"-"],throttle:[535,0,0,"-"],validators:[536,0,0,"-"],webserver:[537,0,0,"-"]},"evennia.server.amp_client":{AMPClientFactory:[489,1,1,""],AMPServerClientProtocol:[489,1,1,""]},"evennia.server.amp_client.AMPClientFactory":{__init__:[489,3,1,""],buildProtocol:[489,3,1,""],clientConnectionFailed:[489,3,1,""],clientConnectionLost:[489,3,1,""],factor:[489,4,1,""],initialDelay:[489,4,1,""],maxDelay:[489,4,1,""],noisy:[489,4,1,""],startedConnecting:[489,3,1,""]},"evennia.server.amp_client.AMPServerClientProtocol":{connectionMade:[489,3,1,""],data_to_portal:[489,3,1,""],send_AdminServer2Portal:[489,3,1,""],send_MsgServer2Portal:[489,3,1,""],server_receive_adminportal2server:[489,3,1,""],server_receive_msgportal2server:[489,3,1,""],server_receive_status:[489,3,1,""]},"evennia.server.connection_wizard":{ConnectionWizard:[490,1,1,""],node_game_index_fields:[490,5,1,""],node_game_index_start:[490,5,1,""],node_mssp_start:[490,5,1,""],node_start:[490,5,1,""],node_view_and_apply_settings:[490,5,1,""]},"evennia.server.connection_wizard.ConnectionWizard":{__init__:[490,3,1,""],ask_choice:[490,3,1,""],ask_continue:[490,3,1,""],ask_input:[490,3,1,""],ask_node:[490,3,1,""],ask_yesno:[490,3,1,""],display:[490,3,1,""]},"evennia.server.deprecations":{check_errors:[491,5,1,""],check_warnings:[491,5,1,""]},"evennia.server.evennia_launcher":{AMPLauncherProtocol:[492,1,1,""],MsgLauncher2Portal:[492,1,1,""],MsgStatus:[492,1,1,""],check_database:[492,5,1,""],check_main_evennia_dependencies:[492,5,1,""],collectstatic:[492,5,1,""],create_game_directory:[492,5,1,""],create_secret_key:[492,5,1,""],create_settings_file:[492,5,1,""],create_superuser:[492,5,1,""],del_pid:[492,5,1,""],error_check_python_modules:[492,5,1,""],evennia_version:[492,5,1,""],get_pid:[492,5,1,""],getenv:[492,5,1,""],init_game_directory:[492,5,1,""],kill:[492,5,1,""],list_settings:[492,5,1,""],main:[492,5,1,""],query_info:[492,5,1,""],query_status:[492,5,1,""],reboot_evennia:[492,5,1,""],reload_evennia:[492,5,1,""],run_connect_wizard:[492,5,1,""],run_custom_commands:[492,5,1,""],run_dummyrunner:[492,5,1,""],run_menu:[492,5,1,""],send_instruction:[492,5,1,""],set_gamedir:[492,5,1,""],show_version_info:[492,5,1,""],start_evennia:[492,5,1,""],start_only_server:[492,5,1,""],start_portal_interactive:[492,5,1,""],start_server_interactive:[492,5,1,""],stop_evennia:[492,5,1,""],stop_server_only:[492,5,1,""],tail_log_files:[492,5,1,""],wait_for_status:[492,5,1,""],wait_for_status_reply:[492,5,1,""]},"evennia.server.evennia_launcher.AMPLauncherProtocol":{__init__:[492,3,1,""],receive_status_from_portal:[492,3,1,""],wait_for_status:[492,3,1,""]},"evennia.server.evennia_launcher.MsgLauncher2Portal":{allErrors:[492,4,1,""],arguments:[492,4,1,""],commandName:[492,4,1,""],errors:[492,4,1,""],key:[492,4,1,""],response:[492,4,1,""],reverseErrors:[492,4,1,""]},"evennia.server.evennia_launcher.MsgStatus":{allErrors:[492,4,1,""],arguments:[492,4,1,""],commandName:[492,4,1,""],errors:[492,4,1,""],key:[492,4,1,""],response:[492,4,1,""],reverseErrors:[492,4,1,""]},"evennia.server.game_index_client":{client:[494,0,0,"-"],service:[495,0,0,"-"]},"evennia.server.game_index_client.client":{EvenniaGameIndexClient:[494,1,1,""],QuietHTTP11ClientFactory:[494,1,1,""],SimpleResponseReceiver:[494,1,1,""],StringProducer:[494,1,1,""]},"evennia.server.game_index_client.client.EvenniaGameIndexClient":{__init__:[494,3,1,""],handle_egd_response:[494,3,1,""],send_game_details:[494,3,1,""]},"evennia.server.game_index_client.client.QuietHTTP11ClientFactory":{noisy:[494,4,1,""]},"evennia.server.game_index_client.client.SimpleResponseReceiver":{__init__:[494,3,1,""],connectionLost:[494,3,1,""],dataReceived:[494,3,1,""]},"evennia.server.game_index_client.client.StringProducer":{__init__:[494,3,1,""],pauseProducing:[494,3,1,""],startProducing:[494,3,1,""],stopProducing:[494,3,1,""]},"evennia.server.game_index_client.service":{EvenniaGameIndexService:[495,1,1,""]},"evennia.server.game_index_client.service.EvenniaGameIndexService":{__init__:[495,3,1,""],name:[495,4,1,""],startService:[495,3,1,""],stopService:[495,3,1,""]},"evennia.server.initial_setup":{at_initial_setup:[496,5,1,""],collectstatic:[496,5,1,""],create_objects:[496,5,1,""],handle_setup:[496,5,1,""],reset_server:[496,5,1,""]},"evennia.server.inputfuncs":{"default":[497,5,1,""],bot_data_in:[497,5,1,""],client_gui:[497,5,1,""],client_options:[497,5,1,""],echo:[497,5,1,""],external_discord_hello:[497,5,1,""],get_client_options:[497,5,1,""],get_inputfuncs:[497,5,1,""],get_value:[497,5,1,""],hello:[497,5,1,""],login:[497,5,1,""],monitor:[497,5,1,""],monitored:[497,5,1,""],msdp_list:[497,5,1,""],msdp_report:[497,5,1,""],msdp_send:[497,5,1,""],msdp_unreport:[497,5,1,""],repeat:[497,5,1,""],supports_set:[497,5,1,""],text:[497,5,1,""],unmonitor:[497,5,1,""],unrepeat:[497,5,1,""],webclient_options:[497,5,1,""]},"evennia.server.manager":{ServerConfigManager:[498,1,1,""]},"evennia.server.manager.ServerConfigManager":{conf:[498,3,1,""]},"evennia.server.models":{ServerConfig:[499,1,1,""]},"evennia.server.models.ServerConfig":{DoesNotExist:[499,2,1,""],MultipleObjectsReturned:[499,2,1,""],db_key:[499,4,1,""],db_value:[499,4,1,""],id:[499,4,1,""],key:[499,3,1,""],objects:[499,4,1,""],path:[499,4,1,""],store:[499,3,1,""],typename:[499,4,1,""],value:[499,3,1,""]},"evennia.server.portal":{amp:[501,0,0,"-"],amp_server:[502,0,0,"-"],grapevine:[503,0,0,"-"],irc:[504,0,0,"-"],mccp:[505,0,0,"-"],mssp:[506,0,0,"-"],mxp:[507,0,0,"-"],naws:[508,0,0,"-"],portal:[509,0,0,"-"],portalsessionhandler:[510,0,0,"-"],rss:[511,0,0,"-"],ssh:[512,0,0,"-"],ssl:[513,0,0,"-"],suppress_ga:[514,0,0,"-"],telnet:[515,0,0,"-"],telnet_oob:[516,0,0,"-"],telnet_ssl:[517,0,0,"-"],tests:[518,0,0,"-"],ttype:[519,0,0,"-"],webclient:[520,0,0,"-"],webclient_ajax:[521,0,0,"-"]},"evennia.server.portal.amp":{AMPMultiConnectionProtocol:[501,1,1,""],AdminPortal2Server:[501,1,1,""],AdminServer2Portal:[501,1,1,""],Compressed:[501,1,1,""],FunctionCall:[501,1,1,""],MsgLauncher2Portal:[501,1,1,""],MsgPortal2Server:[501,1,1,""],MsgServer2Portal:[501,1,1,""],MsgStatus:[501,1,1,""],dumps:[501,5,1,""],loads:[501,5,1,""]},"evennia.server.portal.amp.AMPMultiConnectionProtocol":{__init__:[501,3,1,""],broadcast:[501,3,1,""],connectionLost:[501,3,1,""],connectionMade:[501,3,1,""],dataReceived:[501,3,1,""],data_in:[501,3,1,""],errback:[501,3,1,""],makeConnection:[501,3,1,""],receive_functioncall:[501,3,1,""],send_FunctionCall:[501,3,1,""],stringReceived:[501,3,1,""]},"evennia.server.portal.amp.AdminPortal2Server":{allErrors:[501,4,1,""],arguments:[501,4,1,""],commandName:[501,4,1,""],errors:[501,4,1,""],key:[501,4,1,""],response:[501,4,1,""],reverseErrors:[501,4,1,""]},"evennia.server.portal.amp.AdminServer2Portal":{allErrors:[501,4,1,""],arguments:[501,4,1,""],commandName:[501,4,1,""],errors:[501,4,1,""],key:[501,4,1,""],response:[501,4,1,""],reverseErrors:[501,4,1,""]},"evennia.server.portal.amp.Compressed":{fromBox:[501,3,1,""],fromString:[501,3,1,""],toBox:[501,3,1,""],toString:[501,3,1,""]},"evennia.server.portal.amp.FunctionCall":{allErrors:[501,4,1,""],arguments:[501,4,1,""],commandName:[501,4,1,""],errors:[501,4,1,""],key:[501,4,1,""],response:[501,4,1,""],reverseErrors:[501,4,1,""]},"evennia.server.portal.amp.MsgLauncher2Portal":{allErrors:[501,4,1,""],arguments:[501,4,1,""],commandName:[501,4,1,""],errors:[501,4,1,""],key:[501,4,1,""],response:[501,4,1,""],reverseErrors:[501,4,1,""]},"evennia.server.portal.amp.MsgPortal2Server":{allErrors:[501,4,1,""],arguments:[501,4,1,""],commandName:[501,4,1,""],errors:[501,4,1,""],key:[501,4,1,""],response:[501,4,1,""],reverseErrors:[501,4,1,""]},"evennia.server.portal.amp.MsgServer2Portal":{allErrors:[501,4,1,""],arguments:[501,4,1,""],commandName:[501,4,1,""],errors:[501,4,1,""],key:[501,4,1,""],response:[501,4,1,""],reverseErrors:[501,4,1,""]},"evennia.server.portal.amp.MsgStatus":{allErrors:[501,4,1,""],arguments:[501,4,1,""],commandName:[501,4,1,""],errors:[501,4,1,""],key:[501,4,1,""],response:[501,4,1,""],reverseErrors:[501,4,1,""]},"evennia.server.portal.amp_server":{AMPServerFactory:[502,1,1,""],AMPServerProtocol:[502,1,1,""],getenv:[502,5,1,""]},"evennia.server.portal.amp_server.AMPServerFactory":{__init__:[502,3,1,""],buildProtocol:[502,3,1,""],logPrefix:[502,3,1,""],noisy:[502,4,1,""]},"evennia.server.portal.amp_server.AMPServerProtocol":{connectionLost:[502,3,1,""],data_to_server:[502,3,1,""],get_status:[502,3,1,""],portal_receive_adminserver2portal:[502,3,1,""],portal_receive_launcher2portal:[502,3,1,""],portal_receive_server2portal:[502,3,1,""],portal_receive_status:[502,3,1,""],send_AdminPortal2Server:[502,3,1,""],send_MsgPortal2Server:[502,3,1,""],send_Status2Launcher:[502,3,1,""],start_server:[502,3,1,""],stop_server:[502,3,1,""],wait_for_disconnect:[502,3,1,""],wait_for_server_connect:[502,3,1,""]},"evennia.server.portal.grapevine":{GrapevineClient:[503,1,1,""],RestartingWebsocketServerFactory:[503,1,1,""]},"evennia.server.portal.grapevine.GrapevineClient":{__init__:[503,3,1,""],at_login:[503,3,1,""],data_in:[503,3,1,""],disconnect:[503,3,1,""],onClose:[503,3,1,""],onMessage:[503,3,1,""],onOpen:[503,3,1,""],send_authenticate:[503,3,1,""],send_channel:[503,3,1,""],send_default:[503,3,1,""],send_heartbeat:[503,3,1,""],send_subscribe:[503,3,1,""],send_unsubscribe:[503,3,1,""]},"evennia.server.portal.grapevine.RestartingWebsocketServerFactory":{__init__:[503,3,1,""],buildProtocol:[503,3,1,""],clientConnectionFailed:[503,3,1,""],clientConnectionLost:[503,3,1,""],factor:[503,4,1,""],initialDelay:[503,4,1,""],maxDelay:[503,4,1,""],reconnect:[503,3,1,""],start:[503,3,1,""],startedConnecting:[503,3,1,""]},"evennia.server.portal.irc":{IRCBot:[504,1,1,""],IRCBotFactory:[504,1,1,""],parse_ansi_to_irc:[504,5,1,""],parse_irc_to_ansi:[504,5,1,""]},"evennia.server.portal.irc.IRCBot":{action:[504,3,1,""],at_login:[504,3,1,""],channel:[504,4,1,""],data_in:[504,3,1,""],disconnect:[504,3,1,""],factory:[504,4,1,""],get_nicklist:[504,3,1,""],irc_RPL_ENDOFNAMES:[504,3,1,""],irc_RPL_NAMREPLY:[504,3,1,""],lineRate:[504,4,1,""],logger:[504,4,1,""],nickname:[504,4,1,""],pong:[504,3,1,""],privmsg:[504,3,1,""],send_channel:[504,3,1,""],send_default:[504,3,1,""],send_ping:[504,3,1,""],send_privmsg:[504,3,1,""],send_reconnect:[504,3,1,""],send_request_nicklist:[504,3,1,""],signedOn:[504,3,1,""],sourceURL:[504,4,1,""]},"evennia.server.portal.irc.IRCBotFactory":{__init__:[504,3,1,""],buildProtocol:[504,3,1,""],clientConnectionFailed:[504,3,1,""],clientConnectionLost:[504,3,1,""],factor:[504,4,1,""],initialDelay:[504,4,1,""],maxDelay:[504,4,1,""],reconnect:[504,3,1,""],start:[504,3,1,""],startedConnecting:[504,3,1,""]},"evennia.server.portal.mccp":{Mccp:[505,1,1,""],mccp_compress:[505,5,1,""]},"evennia.server.portal.mccp.Mccp":{__init__:[505,3,1,""],do_mccp:[505,3,1,""],no_mccp:[505,3,1,""]},"evennia.server.portal.mssp":{Mssp:[506,1,1,""]},"evennia.server.portal.mssp.Mssp":{__init__:[506,3,1,""],do_mssp:[506,3,1,""],get_player_count:[506,3,1,""],get_uptime:[506,3,1,""],no_mssp:[506,3,1,""]},"evennia.server.portal.mxp":{Mxp:[507,1,1,""],mxp_parse:[507,5,1,""]},"evennia.server.portal.mxp.Mxp":{__init__:[507,3,1,""],do_mxp:[507,3,1,""],no_mxp:[507,3,1,""]},"evennia.server.portal.naws":{Naws:[508,1,1,""]},"evennia.server.portal.naws.Naws":{__init__:[508,3,1,""],do_naws:[508,3,1,""],negotiate_sizes:[508,3,1,""],no_naws:[508,3,1,""]},"evennia.server.portal.portal":{Portal:[509,1,1,""],Websocket:[509,1,1,""]},"evennia.server.portal.portal.Portal":{__init__:[509,3,1,""],get_info_dict:[509,3,1,""],shutdown:[509,3,1,""]},"evennia.server.portal.portalsessionhandler":{PortalSessionHandler:[510,1,1,""]},"evennia.server.portal.portalsessionhandler.PortalSessionHandler":{__init__:[510,3,1,""],announce_all:[510,3,1,""],at_server_connection:[510,3,1,""],connect:[510,3,1,""],count_loggedin:[510,3,1,""],data_in:[510,3,1,""],data_out:[510,3,1,""],disconnect:[510,3,1,""],disconnect_all:[510,3,1,""],generate_sessid:[510,3,1,""],server_connect:[510,3,1,""],server_disconnect:[510,3,1,""],server_disconnect_all:[510,3,1,""],server_logged_in:[510,3,1,""],server_session_sync:[510,3,1,""],sessions_from_csessid:[510,3,1,""],sync:[510,3,1,""]},"evennia.server.portal.rss":{RSSBotFactory:[511,1,1,""],RSSReader:[511,1,1,""]},"evennia.server.portal.rss.RSSBotFactory":{__init__:[511,3,1,""],start:[511,3,1,""]},"evennia.server.portal.rss.RSSReader":{__init__:[511,3,1,""],data_in:[511,3,1,""],disconnect:[511,3,1,""],get_new:[511,3,1,""],update:[511,3,1,""]},"evennia.server.portal.ssh":{AccountDBPasswordChecker:[512,1,1,""],ExtraInfoAuthServer:[512,1,1,""],PassAvatarIdTerminalRealm:[512,1,1,""],SSHServerFactory:[512,1,1,""],SshProtocol:[512,1,1,""],TerminalSessionTransport_getPeer:[512,1,1,""],getKeyPair:[512,5,1,""],makeFactory:[512,5,1,""]},"evennia.server.portal.ssh.AccountDBPasswordChecker":{__init__:[512,3,1,""],credentialInterfaces:[512,4,1,""],noisy:[512,4,1,""],requestAvatarId:[512,3,1,""]},"evennia.server.portal.ssh.ExtraInfoAuthServer":{auth_password:[512,3,1,""],noisy:[512,4,1,""]},"evennia.server.portal.ssh.PassAvatarIdTerminalRealm":{noisy:[512,4,1,""]},"evennia.server.portal.ssh.SSHServerFactory":{logPrefix:[512,3,1,""],noisy:[512,4,1,""]},"evennia.server.portal.ssh.SshProtocol":{__init__:[512,3,1,""],at_login:[512,3,1,""],connectionLost:[512,3,1,""],connectionMade:[512,3,1,""],data_out:[512,3,1,""],disconnect:[512,3,1,""],getClientAddress:[512,3,1,""],handle_EOF:[512,3,1,""],handle_FF:[512,3,1,""],handle_INT:[512,3,1,""],handle_QUIT:[512,3,1,""],lineReceived:[512,3,1,""],noisy:[512,4,1,""],sendLine:[512,3,1,""],send_default:[512,3,1,""],send_prompt:[512,3,1,""],send_text:[512,3,1,""],terminalSize:[512,3,1,""]},"evennia.server.portal.ssh.TerminalSessionTransport_getPeer":{__init__:[512,3,1,""],noisy:[512,4,1,""]},"evennia.server.portal.ssl":{SSLProtocol:[513,1,1,""],getSSLContext:[513,5,1,""],verify_SSL_key_and_cert:[513,5,1,""]},"evennia.server.portal.ssl.SSLProtocol":{__init__:[513,3,1,""]},"evennia.server.portal.suppress_ga":{SuppressGA:[514,1,1,""]},"evennia.server.portal.suppress_ga.SuppressGA":{__init__:[514,3,1,""],will_suppress_ga:[514,3,1,""],wont_suppress_ga:[514,3,1,""]},"evennia.server.portal.telnet":{TelnetProtocol:[515,1,1,""],TelnetServerFactory:[515,1,1,""]},"evennia.server.portal.telnet.TelnetProtocol":{__init__:[515,3,1,""],applicationDataReceived:[515,3,1,""],at_login:[515,3,1,""],connectionLost:[515,3,1,""],connectionMade:[515,3,1,""],dataReceived:[515,3,1,""],data_in:[515,3,1,""],data_out:[515,3,1,""],disableLocal:[515,3,1,""],disableRemote:[515,3,1,""],disconnect:[515,3,1,""],enableLocal:[515,3,1,""],enableRemote:[515,3,1,""],handshake_done:[515,3,1,""],sendLine:[515,3,1,""],send_default:[515,3,1,""],send_prompt:[515,3,1,""],send_text:[515,3,1,""],toggle_nop_keepalive:[515,3,1,""]},"evennia.server.portal.telnet.TelnetServerFactory":{logPrefix:[515,3,1,""],noisy:[515,4,1,""]},"evennia.server.portal.telnet_oob":{TelnetOOB:[516,1,1,""]},"evennia.server.portal.telnet_oob.TelnetOOB":{__init__:[516,3,1,""],data_out:[516,3,1,""],decode_gmcp:[516,3,1,""],decode_msdp:[516,3,1,""],do_gmcp:[516,3,1,""],do_msdp:[516,3,1,""],encode_gmcp:[516,3,1,""],encode_msdp:[516,3,1,""],no_gmcp:[516,3,1,""],no_msdp:[516,3,1,""]},"evennia.server.portal.telnet_ssl":{SSLProtocol:[517,1,1,""],getSSLContext:[517,5,1,""],verify_or_create_SSL_key_and_cert:[517,5,1,""]},"evennia.server.portal.telnet_ssl.SSLProtocol":{__init__:[517,3,1,""]},"evennia.server.portal.tests":{TestAMPServer:[518,1,1,""],TestIRC:[518,1,1,""],TestTelnet:[518,1,1,""],TestWebSocket:[518,1,1,""]},"evennia.server.portal.tests.TestAMPServer":{setUp:[518,3,1,""],test_amp_in:[518,3,1,""],test_amp_out:[518,3,1,""],test_large_msg:[518,3,1,""]},"evennia.server.portal.tests.TestIRC":{test_bold:[518,3,1,""],test_colors:[518,3,1,""],test_identity:[518,3,1,""],test_italic:[518,3,1,""],test_plain_ansi:[518,3,1,""]},"evennia.server.portal.tests.TestTelnet":{setUp:[518,3,1,""],test_mudlet_ttype:[518,3,1,""]},"evennia.server.portal.tests.TestWebSocket":{setUp:[518,3,1,""],tearDown:[518,3,1,""],test_data_in:[518,3,1,""],test_data_out:[518,3,1,""]},"evennia.server.portal.ttype":{Ttype:[519,1,1,""]},"evennia.server.portal.ttype.Ttype":{__init__:[519,3,1,""],will_ttype:[519,3,1,""],wont_ttype:[519,3,1,""]},"evennia.server.portal.webclient":{WebSocketClient:[520,1,1,""]},"evennia.server.portal.webclient.WebSocketClient":{__init__:[520,3,1,""],at_login:[520,3,1,""],data_in:[520,3,1,""],disconnect:[520,3,1,""],get_client_session:[520,3,1,""],nonce:[520,4,1,""],onClose:[520,3,1,""],onMessage:[520,3,1,""],onOpen:[520,3,1,""],sendLine:[520,3,1,""],send_default:[520,3,1,""],send_prompt:[520,3,1,""],send_text:[520,3,1,""]},"evennia.server.portal.webclient_ajax":{AjaxWebClient:[521,1,1,""],AjaxWebClientSession:[521,1,1,""],LazyEncoder:[521,1,1,""],jsonify:[521,5,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClient":{__init__:[521,3,1,""],allowedMethods:[521,4,1,""],at_login:[521,3,1,""],client_disconnect:[521,3,1,""],get_browserstr:[521,3,1,""],get_client_sessid:[521,3,1,""],isLeaf:[521,4,1,""],lineSend:[521,3,1,""],mode_close:[521,3,1,""],mode_init:[521,3,1,""],mode_input:[521,3,1,""],mode_keepalive:[521,3,1,""],mode_receive:[521,3,1,""],render_POST:[521,3,1,""]},"evennia.server.portal.webclient_ajax.AjaxWebClientSession":{__init__:[521,3,1,""],at_login:[521,3,1,""],data_in:[521,3,1,""],data_out:[521,3,1,""],disconnect:[521,3,1,""],get_client_session:[521,3,1,""],send_default:[521,3,1,""],send_prompt:[521,3,1,""],send_text:[521,3,1,""]},"evennia.server.portal.webclient_ajax.LazyEncoder":{"default":[521,3,1,""]},"evennia.server.profiling":{dummyrunner:[523,0,0,"-"],dummyrunner_settings:[524,0,0,"-"],memplot:[525,0,0,"-"],settings_mixin:[526,0,0,"-"],test_queries:[527,0,0,"-"],tests:[528,0,0,"-"],timetrace:[529,0,0,"-"]},"evennia.server.profiling.dummyrunner":{CmdDummyRunnerEchoResponse:[523,1,1,""],DummyClient:[523,1,1,""],DummyFactory:[523,1,1,""],DummyRunnerCmdSet:[523,1,1,""],gidcounter:[523,5,1,""],idcounter:[523,5,1,""],makeiter:[523,5,1,""],start_all_dummy_clients:[523,5,1,""]},"evennia.server.profiling.dummyrunner.CmdDummyRunnerEchoResponse":{aliases:[523,4,1,""],func:[523,3,1,""],help_category:[523,4,1,""],key:[523,4,1,""],lock_storage:[523,4,1,""],search_index_entry:[523,4,1,""]},"evennia.server.profiling.dummyrunner.DummyClient":{connectionLost:[523,3,1,""],connectionMade:[523,3,1,""],counter:[523,3,1,""],dataReceived:[523,3,1,""],error:[523,3,1,""],logout:[523,3,1,""],report:[523,3,1,""],step:[523,3,1,""]},"evennia.server.profiling.dummyrunner.DummyFactory":{__init__:[523,3,1,""],initialDelay:[523,4,1,""],maxDelay:[523,4,1,""],noisy:[523,4,1,""],protocol:[523,4,1,""]},"evennia.server.profiling.dummyrunner.DummyRunnerCmdSet":{at_cmdset_creation:[523,3,1,""],path:[523,4,1,""]},"evennia.server.profiling.dummyrunner_settings":{c_creates_button:[524,5,1,""],c_creates_obj:[524,5,1,""],c_digs:[524,5,1,""],c_examines:[524,5,1,""],c_help:[524,5,1,""],c_idles:[524,5,1,""],c_login:[524,5,1,""],c_login_nodig:[524,5,1,""],c_logout:[524,5,1,""],c_looks:[524,5,1,""],c_measure_lag:[524,5,1,""],c_moves:[524,5,1,""],c_moves_n:[524,5,1,""],c_moves_s:[524,5,1,""],c_socialize:[524,5,1,""]},"evennia.server.profiling.memplot":{Memplot:[525,1,1,""]},"evennia.server.profiling.memplot.Memplot":{DoesNotExist:[525,2,1,""],MultipleObjectsReturned:[525,2,1,""],at_repeat:[525,3,1,""],at_script_creation:[525,3,1,""],path:[525,4,1,""],typename:[525,4,1,""]},"evennia.server.profiling.test_queries":{count_queries:[527,5,1,""]},"evennia.server.profiling.tests":{TestDummyrunnerSettings:[528,1,1,""],TestMemPlot:[528,1,1,""]},"evennia.server.profiling.tests.TestDummyrunnerSettings":{clear_client_lists:[528,3,1,""],perception_method_tests:[528,3,1,""],setUp:[528,3,1,""],test_c_creates_button:[528,3,1,""],test_c_creates_obj:[528,3,1,""],test_c_digs:[528,3,1,""],test_c_examines:[528,3,1,""],test_c_help:[528,3,1,""],test_c_login:[528,3,1,""],test_c_login_no_dig:[528,3,1,""],test_c_logout:[528,3,1,""],test_c_looks:[528,3,1,""],test_c_move_n:[528,3,1,""],test_c_move_s:[528,3,1,""],test_c_moves:[528,3,1,""],test_c_socialize:[528,3,1,""],test_idles:[528,3,1,""]},"evennia.server.profiling.tests.TestMemPlot":{test_memplot:[528,3,1,""]},"evennia.server.profiling.timetrace":{timetrace:[529,5,1,""]},"evennia.server.server":{Evennia:[530,1,1,""]},"evennia.server.server.Evennia":{__init__:[530,3,1,""],at_post_portal_sync:[530,3,1,""],at_server_cold_start:[530,3,1,""],at_server_cold_stop:[530,3,1,""],at_server_init:[530,3,1,""],at_server_reload_start:[530,3,1,""],at_server_reload_stop:[530,3,1,""],at_server_start:[530,3,1,""],at_server_stop:[530,3,1,""],create_default_channels:[530,3,1,""],get_info_dict:[530,3,1,""],run_init_hooks:[530,3,1,""],run_initial_setup:[530,3,1,""],shutdown:[530,3,1,""],sqlite3_prep:[530,3,1,""],update_defaults:[530,3,1,""]},"evennia.server.serversession":{ServerSession:[531,1,1,""]},"evennia.server.serversession.ServerSession":{__init__:[531,3,1,""],access:[531,3,1,""],at_cmdset_get:[531,3,1,""],at_disconnect:[531,3,1,""],at_login:[531,3,1,""],at_sync:[531,3,1,""],attributes:[531,4,1,""],cmdset_storage:[531,3,1,""],data_in:[531,3,1,""],data_out:[531,3,1,""],db:[531,3,1,""],execute_cmd:[531,3,1,""],get_account:[531,3,1,""],get_character:[531,3,1,""],get_client_size:[531,3,1,""],get_display_name:[531,3,1,""],get_puppet:[531,3,1,""],get_puppet_or_account:[531,3,1,""],id:[531,3,1,""],log:[531,3,1,""],msg:[531,3,1,""],nattributes:[531,4,1,""],ndb:[531,3,1,""],ndb_del:[531,3,1,""],ndb_get:[531,3,1,""],ndb_set:[531,3,1,""],update_flags:[531,3,1,""],update_session_counters:[531,3,1,""]},"evennia.server.session":{Session:[532,1,1,""]},"evennia.server.session.Session":{at_sync:[532,3,1,""],data_in:[532,3,1,""],data_out:[532,3,1,""],disconnect:[532,3,1,""],get_sync_data:[532,3,1,""],init_session:[532,3,1,""],load_sync_data:[532,3,1,""]},"evennia.server.sessionhandler":{DummySession:[533,1,1,""],ServerSessionHandler:[533,1,1,""],SessionHandler:[533,1,1,""],delayed_import:[533,5,1,""]},"evennia.server.sessionhandler.DummySession":{sessid:[533,4,1,""]},"evennia.server.sessionhandler.ServerSessionHandler":{__init__:[533,3,1,""],account_count:[533,3,1,""],all_connected_accounts:[533,3,1,""],all_sessions_portal_sync:[533,3,1,""],announce_all:[533,3,1,""],call_inputfuncs:[533,3,1,""],data_in:[533,3,1,""],data_out:[533,3,1,""],disconnect:[533,3,1,""],disconnect_all_sessions:[533,3,1,""],disconnect_duplicate_sessions:[533,3,1,""],get_inputfuncs:[533,3,1,""],login:[533,3,1,""],portal_connect:[533,3,1,""],portal_disconnect:[533,3,1,""],portal_disconnect_all:[533,3,1,""],portal_reset_server:[533,3,1,""],portal_restart_server:[533,3,1,""],portal_session_sync:[533,3,1,""],portal_sessions_sync:[533,3,1,""],portal_shutdown:[533,3,1,""],session_from_account:[533,3,1,""],session_from_sessid:[533,3,1,""],session_portal_partial_sync:[533,3,1,""],session_portal_sync:[533,3,1,""],sessions_from_account:[533,3,1,""],sessions_from_character:[533,3,1,""],sessions_from_csessid:[533,3,1,""],sessions_from_puppet:[533,3,1,""],start_bot_session:[533,3,1,""],validate_sessions:[533,3,1,""]},"evennia.server.sessionhandler.SessionHandler":{clean_senddata:[533,3,1,""],get:[533,3,1,""],get_all_sync_data:[533,3,1,""],get_sessions:[533,3,1,""]},"evennia.server.throttle":{Throttle:[535,1,1,""]},"evennia.server.throttle.Throttle":{__init__:[535,3,1,""],check:[535,3,1,""],error_msg:[535,4,1,""],get:[535,3,1,""],get_cache_key:[535,3,1,""],record_ip:[535,3,1,""],remove:[535,3,1,""],touch:[535,3,1,""],unrecord_ip:[535,3,1,""],update:[535,3,1,""]},"evennia.server.validators":{EvenniaPasswordValidator:[536,1,1,""],EvenniaUsernameAvailabilityValidator:[536,1,1,""]},"evennia.server.validators.EvenniaPasswordValidator":{__init__:[536,3,1,""],get_help_text:[536,3,1,""],validate:[536,3,1,""]},"evennia.server.webserver":{DjangoWebRoot:[537,1,1,""],EvenniaReverseProxyResource:[537,1,1,""],HTTPChannelWithXForwardedFor:[537,1,1,""],LockableThreadPool:[537,1,1,""],PrivateStaticRoot:[537,1,1,""],WSGIWebServer:[537,1,1,""],Website:[537,1,1,""]},"evennia.server.webserver.DjangoWebRoot":{__init__:[537,3,1,""],empty_threadpool:[537,3,1,""],getChild:[537,3,1,""]},"evennia.server.webserver.EvenniaReverseProxyResource":{getChild:[537,3,1,""],render:[537,3,1,""]},"evennia.server.webserver.HTTPChannelWithXForwardedFor":{allHeadersReceived:[537,3,1,""]},"evennia.server.webserver.LockableThreadPool":{__init__:[537,3,1,""],callInThread:[537,3,1,""],lock:[537,3,1,""]},"evennia.server.webserver.PrivateStaticRoot":{directoryListing:[537,3,1,""]},"evennia.server.webserver.WSGIWebServer":{__init__:[537,3,1,""],startService:[537,3,1,""],stopService:[537,3,1,""]},"evennia.server.webserver.Website":{log:[537,3,1,""],logPrefix:[537,3,1,""],noisy:[537,4,1,""]},"evennia.typeclasses":{attributes:[540,0,0,"-"],managers:[541,0,0,"-"],models:[542,0,0,"-"],tags:[543,0,0,"-"]},"evennia.typeclasses.attributes":{Attribute:[540,1,1,""],AttributeHandler:[540,1,1,""],AttributeProperty:[540,1,1,""],DbHolder:[540,1,1,""],IAttribute:[540,1,1,""],IAttributeBackend:[540,1,1,""],InMemoryAttribute:[540,1,1,""],InMemoryAttributeBackend:[540,1,1,""],ModelAttributeBackend:[540,1,1,""],NAttributeProperty:[540,1,1,""],NickHandler:[540,1,1,""],NickTemplateInvalid:[540,2,1,""],initialize_nick_templates:[540,5,1,""],parse_nick_template:[540,5,1,""]},"evennia.typeclasses.attributes.Attribute":{DoesNotExist:[540,2,1,""],MultipleObjectsReturned:[540,2,1,""],accountdb_set:[540,4,1,""],attrtype:[540,3,1,""],category:[540,3,1,""],channeldb_set:[540,4,1,""],date_created:[540,3,1,""],db_attrtype:[540,4,1,""],db_category:[540,4,1,""],db_date_created:[540,4,1,""],db_key:[540,4,1,""],db_lock_storage:[540,4,1,""],db_model:[540,4,1,""],db_strvalue:[540,4,1,""],db_value:[540,4,1,""],get_next_by_db_date_created:[540,3,1,""],get_previous_by_db_date_created:[540,3,1,""],id:[540,4,1,""],key:[540,3,1,""],lock_storage:[540,3,1,""],model:[540,3,1,""],objectdb_set:[540,4,1,""],path:[540,4,1,""],scriptdb_set:[540,4,1,""],strvalue:[540,3,1,""],typename:[540,4,1,""],value:[540,3,1,""]},"evennia.typeclasses.attributes.AttributeHandler":{__init__:[540,3,1,""],add:[540,3,1,""],all:[540,3,1,""],batch_add:[540,3,1,""],clear:[540,3,1,""],get:[540,3,1,""],has:[540,3,1,""],remove:[540,3,1,""],reset_cache:[540,3,1,""]},"evennia.typeclasses.attributes.AttributeProperty":{__init__:[540,3,1,""],at_get:[540,3,1,""],at_set:[540,3,1,""],attrhandler_name:[540,4,1,""]},"evennia.typeclasses.attributes.DbHolder":{__init__:[540,3,1,""],all:[540,3,1,""],get_all:[540,3,1,""]},"evennia.typeclasses.attributes.IAttribute":{access:[540,3,1,""],attrtype:[540,3,1,""],category:[540,3,1,""],date_created:[540,3,1,""],key:[540,3,1,""],lock_storage:[540,3,1,""],locks:[540,4,1,""],model:[540,3,1,""],strvalue:[540,3,1,""]},"evennia.typeclasses.attributes.IAttributeBackend":{__init__:[540,3,1,""],batch_add:[540,3,1,""],clear_attributes:[540,3,1,""],create_attribute:[540,3,1,""],delete_attribute:[540,3,1,""],do_batch_delete:[540,3,1,""],do_batch_finish:[540,3,1,""],do_batch_update_attribute:[540,3,1,""],do_create_attribute:[540,3,1,""],do_delete_attribute:[540,3,1,""],do_update_attribute:[540,3,1,""],get:[540,3,1,""],get_all_attributes:[540,3,1,""],query_all:[540,3,1,""],query_category:[540,3,1,""],query_key:[540,3,1,""],reset_cache:[540,3,1,""],update_attribute:[540,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttribute":{__init__:[540,3,1,""],value:[540,3,1,""]},"evennia.typeclasses.attributes.InMemoryAttributeBackend":{__init__:[540,3,1,""],do_batch_finish:[540,3,1,""],do_batch_update_attribute:[540,3,1,""],do_create_attribute:[540,3,1,""],do_delete_attribute:[540,3,1,""],do_update_attribute:[540,3,1,""],query_all:[540,3,1,""],query_category:[540,3,1,""],query_key:[540,3,1,""]},"evennia.typeclasses.attributes.ModelAttributeBackend":{__init__:[540,3,1,""],do_batch_finish:[540,3,1,""],do_batch_update_attribute:[540,3,1,""],do_create_attribute:[540,3,1,""],do_delete_attribute:[540,3,1,""],do_update_attribute:[540,3,1,""],query_all:[540,3,1,""],query_category:[540,3,1,""],query_key:[540,3,1,""]},"evennia.typeclasses.attributes.NAttributeProperty":{attrhandler_name:[540,4,1,""]},"evennia.typeclasses.attributes.NickHandler":{__init__:[540,3,1,""],add:[540,3,1,""],get:[540,3,1,""],has:[540,3,1,""],nickreplace:[540,3,1,""],remove:[540,3,1,""]},"evennia.typeclasses.managers":{TypedObjectManager:[541,1,1,""]},"evennia.typeclasses.managers.TypedObjectManager":{create_tag:[541,3,1,""],dbref:[541,3,1,""],dbref_search:[541,3,1,""],get_alias:[541,3,1,""],get_attribute:[541,3,1,""],get_by_alias:[541,3,1,""],get_by_attribute:[541,3,1,""],get_by_nick:[541,3,1,""],get_by_permission:[541,3,1,""],get_by_tag:[541,3,1,""],get_dbref_range:[541,3,1,""],get_id:[541,3,1,""],get_nick:[541,3,1,""],get_permission:[541,3,1,""],get_tag:[541,3,1,""],get_typeclass_totals:[541,3,1,""],object_totals:[541,3,1,""],search_dbref:[541,3,1,""],typeclass_search:[541,3,1,""]},"evennia.typeclasses.models":{TypedObject:[542,1,1,""]},"evennia.typeclasses.models.TypedObject":{"delete":[542,3,1,""],Meta:[542,1,1,""],__init__:[542,3,1,""],access:[542,3,1,""],aliases:[542,4,1,""],at_idmapper_flush:[542,3,1,""],at_init:[542,3,1,""],at_rename:[542,3,1,""],attributes:[542,4,1,""],check_permstring:[542,3,1,""],date_created:[542,3,1,""],db:[542,3,1,""],db_attributes:[542,4,1,""],db_date_created:[542,4,1,""],db_key:[542,4,1,""],db_lock_storage:[542,4,1,""],db_tags:[542,4,1,""],db_typeclass_path:[542,4,1,""],dbid:[542,3,1,""],dbref:[542,3,1,""],get_absolute_url:[542,3,1,""],get_display_name:[542,3,1,""],get_extra_info:[542,3,1,""],get_next_by_db_date_created:[542,3,1,""],get_previous_by_db_date_created:[542,3,1,""],init_evennia_properties:[542,3,1,""],is_typeclass:[542,3,1,""],key:[542,3,1,""],lock_storage:[542,3,1,""],locks:[542,4,1,""],name:[542,3,1,""],nattributes:[542,4,1,""],ndb:[542,3,1,""],objects:[542,4,1,""],path:[542,4,1,""],permissions:[542,4,1,""],search:[542,3,1,""],set_class_from_typeclass:[542,3,1,""],swap_typeclass:[542,3,1,""],tags:[542,4,1,""],typeclass_path:[542,3,1,""],typename:[542,4,1,""],web_get_admin_url:[542,3,1,""],web_get_create_url:[542,3,1,""],web_get_delete_url:[542,3,1,""],web_get_detail_url:[542,3,1,""],web_get_puppet_url:[542,3,1,""],web_get_update_url:[542,3,1,""]},"evennia.typeclasses.models.TypedObject.Meta":{"abstract":[542,4,1,""],ordering:[542,4,1,""],verbose_name:[542,4,1,""]},"evennia.typeclasses.tags":{AliasHandler:[543,1,1,""],AliasProperty:[543,1,1,""],PermissionHandler:[543,1,1,""],PermissionProperty:[543,1,1,""],Tag:[543,1,1,""],TagHandler:[543,1,1,""],TagProperty:[543,1,1,""]},"evennia.typeclasses.tags.AliasProperty":{taghandler_name:[543,4,1,""]},"evennia.typeclasses.tags.PermissionHandler":{check:[543,3,1,""]},"evennia.typeclasses.tags.PermissionProperty":{taghandler_name:[543,4,1,""]},"evennia.typeclasses.tags.Tag":{DoesNotExist:[543,2,1,""],MultipleObjectsReturned:[543,2,1,""],accountdb_set:[543,4,1,""],channeldb_set:[543,4,1,""],db_category:[543,4,1,""],db_data:[543,4,1,""],db_key:[543,4,1,""],db_model:[543,4,1,""],db_tagtype:[543,4,1,""],helpentry_set:[543,4,1,""],id:[543,4,1,""],msg_set:[543,4,1,""],objectdb_set:[543,4,1,""],objects:[543,4,1,""],scriptdb_set:[543,4,1,""]},"evennia.typeclasses.tags.TagHandler":{__init__:[543,3,1,""],add:[543,3,1,""],all:[543,3,1,""],batch_add:[543,3,1,""],clear:[543,3,1,""],get:[543,3,1,""],has:[543,3,1,""],remove:[543,3,1,""],reset_cache:[543,3,1,""]},"evennia.typeclasses.tags.TagProperty":{__init__:[543,3,1,""],taghandler_name:[543,4,1,""]},"evennia.utils":{ansi:[545,0,0,"-"],batchprocessors:[546,0,0,"-"],containers:[547,0,0,"-"],create:[548,0,0,"-"],dbserialize:[549,0,0,"-"],eveditor:[550,0,0,"-"],evform:[551,0,0,"-"],evmenu:[552,0,0,"-"],evmore:[553,0,0,"-"],evtable:[554,0,0,"-"],funcparser:[555,0,0,"-"],gametime:[556,0,0,"-"],idmapper:[557,0,0,"-"],logger:[561,0,0,"-"],optionclasses:[562,0,0,"-"],optionhandler:[563,0,0,"-"],picklefield:[564,0,0,"-"],search:[565,0,0,"-"],test_resources:[566,0,0,"-"],text2html:[567,0,0,"-"],utils:[568,0,0,"-"],validatorfuncs:[569,0,0,"-"],verb_conjugation:[570,0,0,"-"]},"evennia.utils.ansi":{ANSIMeta:[545,1,1,""],ANSIParser:[545,1,1,""],ANSIString:[545,1,1,""],parse_ansi:[545,5,1,""],raw:[545,5,1,""],strip_ansi:[545,5,1,""],strip_mxp:[545,5,1,""],strip_raw_ansi:[545,5,1,""],strip_unsafe_tokens:[545,5,1,""]},"evennia.utils.ansi.ANSIMeta":{__init__:[545,3,1,""]},"evennia.utils.ansi.ANSIParser":{ansi_escapes:[545,4,1,""],ansi_map:[545,4,1,""],ansi_map_dict:[545,4,1,""],ansi_re:[545,4,1,""],ansi_regex:[545,4,1,""],ansi_sub:[545,4,1,""],ansi_xterm256_bright_bg_map:[545,4,1,""],ansi_xterm256_bright_bg_map_dict:[545,4,1,""],brightbg_sub:[545,4,1,""],mxp_re:[545,4,1,""],mxp_sub:[545,4,1,""],mxp_url_re:[545,4,1,""],mxp_url_sub:[545,4,1,""],parse_ansi:[545,3,1,""],strip_mxp:[545,3,1,""],strip_raw_codes:[545,3,1,""],strip_unsafe_tokens:[545,3,1,""],sub_ansi:[545,3,1,""],sub_brightbg:[545,3,1,""],sub_xterm256:[545,3,1,""],unsafe_tokens:[545,4,1,""],xterm256_bg:[545,4,1,""],xterm256_bg_sub:[545,4,1,""],xterm256_fg:[545,4,1,""],xterm256_fg_sub:[545,4,1,""],xterm256_gbg:[545,4,1,""],xterm256_gbg_sub:[545,4,1,""],xterm256_gfg:[545,4,1,""],xterm256_gfg_sub:[545,4,1,""]},"evennia.utils.ansi.ANSIString":{__init__:[545,3,1,""],capitalize:[545,3,1,""],center:[545,3,1,""],clean:[545,3,1,""],count:[545,3,1,""],decode:[545,3,1,""],encode:[545,3,1,""],endswith:[545,3,1,""],expandtabs:[545,3,1,""],find:[545,3,1,""],format:[545,3,1,""],index:[545,3,1,""],isalnum:[545,3,1,""],isalpha:[545,3,1,""],isdigit:[545,3,1,""],islower:[545,3,1,""],isspace:[545,3,1,""],istitle:[545,3,1,""],isupper:[545,3,1,""],join:[545,3,1,""],ljust:[545,3,1,""],lower:[545,3,1,""],lstrip:[545,3,1,""],partition:[545,3,1,""],raw:[545,3,1,""],re_format:[545,4,1,""],replace:[545,3,1,""],rfind:[545,3,1,""],rindex:[545,3,1,""],rjust:[545,3,1,""],rsplit:[545,3,1,""],rstrip:[545,3,1,""],split:[545,3,1,""],startswith:[545,3,1,""],strip:[545,3,1,""],swapcase:[545,3,1,""],translate:[545,3,1,""],upper:[545,3,1,""]},"evennia.utils.batchprocessors":{BatchCodeProcessor:[546,1,1,""],BatchCommandProcessor:[546,1,1,""],read_batchfile:[546,5,1,""],tb_filename:[546,5,1,""],tb_iter:[546,5,1,""]},"evennia.utils.batchprocessors.BatchCodeProcessor":{code_exec:[546,3,1,""],parse_file:[546,3,1,""]},"evennia.utils.batchprocessors.BatchCommandProcessor":{parse_file:[546,3,1,""]},"evennia.utils.containers":{Container:[547,1,1,""],GlobalScriptContainer:[547,1,1,""],OptionContainer:[547,1,1,""]},"evennia.utils.containers.Container":{__init__:[547,3,1,""],all:[547,3,1,""],get:[547,3,1,""],load_data:[547,3,1,""],storage_modules:[547,4,1,""]},"evennia.utils.containers.GlobalScriptContainer":{__init__:[547,3,1,""],all:[547,3,1,""],get:[547,3,1,""],load_data:[547,3,1,""],start:[547,3,1,""]},"evennia.utils.containers.OptionContainer":{storage_modules:[547,4,1,""]},"evennia.utils.create":{create_account:[548,5,1,""],create_channel:[548,5,1,""],create_help_entry:[548,5,1,""],create_message:[548,5,1,""],create_object:[548,5,1,""],create_script:[548,5,1,""]},"evennia.utils.dbserialize":{dbserialize:[549,5,1,""],dbunserialize:[549,5,1,""],do_pickle:[549,5,1,""],do_unpickle:[549,5,1,""],from_pickle:[549,5,1,""],to_pickle:[549,5,1,""]},"evennia.utils.eveditor":{CmdEditorBase:[550,1,1,""],CmdEditorGroup:[550,1,1,""],CmdLineInput:[550,1,1,""],CmdSaveYesNo:[550,1,1,""],EvEditor:[550,1,1,""],EvEditorCmdSet:[550,1,1,""],SaveYesNoCmdSet:[550,1,1,""]},"evennia.utils.eveditor.CmdEditorBase":{aliases:[550,4,1,""],editor:[550,4,1,""],help_category:[550,4,1,""],help_entry:[550,4,1,""],key:[550,4,1,""],lock_storage:[550,4,1,""],locks:[550,4,1,""],parse:[550,3,1,""],search_index_entry:[550,4,1,""]},"evennia.utils.eveditor.CmdEditorGroup":{aliases:[550,4,1,""],arg_regex:[550,4,1,""],func:[550,3,1,""],help_category:[550,4,1,""],key:[550,4,1,""],lock_storage:[550,4,1,""],search_index_entry:[550,4,1,""]},"evennia.utils.eveditor.CmdLineInput":{aliases:[550,4,1,""],func:[550,3,1,""],help_category:[550,4,1,""],key:[550,4,1,""],lock_storage:[550,4,1,""],search_index_entry:[550,4,1,""]},"evennia.utils.eveditor.CmdSaveYesNo":{aliases:[550,4,1,""],func:[550,3,1,""],help_category:[550,4,1,""],help_cateogory:[550,4,1,""],key:[550,4,1,""],lock_storage:[550,4,1,""],locks:[550,4,1,""],search_index_entry:[550,4,1,""]},"evennia.utils.eveditor.EvEditor":{__init__:[550,3,1,""],decrease_indent:[550,3,1,""],deduce_indent:[550,3,1,""],display_buffer:[550,3,1,""],display_help:[550,3,1,""],get_buffer:[550,3,1,""],increase_indent:[550,3,1,""],load_buffer:[550,3,1,""],quit:[550,3,1,""],save_buffer:[550,3,1,""],swap_autoindent:[550,3,1,""],update_buffer:[550,3,1,""],update_undo:[550,3,1,""]},"evennia.utils.eveditor.EvEditorCmdSet":{at_cmdset_creation:[550,3,1,""],key:[550,4,1,""],mergetype:[550,4,1,""],path:[550,4,1,""]},"evennia.utils.eveditor.SaveYesNoCmdSet":{at_cmdset_creation:[550,3,1,""],key:[550,4,1,""],mergetype:[550,4,1,""],path:[550,4,1,""],priority:[550,4,1,""]},"evennia.utils.evform":{EvForm:[551,1,1,""]},"evennia.utils.evform.EvForm":{__init__:[551,3,1,""],cell_options:[551,4,1,""],map:[551,3,1,""],reload:[551,3,1,""],table_options:[551,4,1,""]},"evennia.utils.evmenu":{CmdEvMenuNode:[552,1,1,""],CmdGetInput:[552,1,1,""],CmdYesNoQuestion:[552,1,1,""],EvMenu:[552,1,1,""],EvMenuCmdSet:[552,1,1,""],EvMenuError:[552,2,1,""],EvMenuGotoAbortMessage:[552,2,1,""],InputCmdSet:[552,1,1,""],YesNoQuestionCmdSet:[552,1,1,""],ask_yes_no:[552,5,1,""],get_input:[552,5,1,""],list_node:[552,5,1,""],parse_menu_template:[552,5,1,""],template2menu:[552,5,1,""]},"evennia.utils.evmenu.CmdEvMenuNode":{aliases:[552,4,1,""],auto_help_display_key:[552,4,1,""],func:[552,3,1,""],get_help:[552,3,1,""],help_category:[552,4,1,""],key:[552,4,1,""],lock_storage:[552,4,1,""],locks:[552,4,1,""],search_index_entry:[552,4,1,""]},"evennia.utils.evmenu.CmdGetInput":{aliases:[552,4,1,""],func:[552,3,1,""],help_category:[552,4,1,""],key:[552,4,1,""],lock_storage:[552,4,1,""],search_index_entry:[552,4,1,""]},"evennia.utils.evmenu.CmdYesNoQuestion":{aliases:[552,4,1,""],arg_regex:[552,4,1,""],func:[552,3,1,""],help_category:[552,4,1,""],key:[552,4,1,""],lock_storage:[552,4,1,""],search_index_entry:[552,4,1,""]},"evennia.utils.evmenu.EvMenu":{"goto":[552,3,1,""],__init__:[552,3,1,""],close_menu:[552,3,1,""],display_helptext:[552,3,1,""],display_nodetext:[552,3,1,""],helptext_formatter:[552,3,1,""],msg:[552,3,1,""],node_border_char:[552,4,1,""],node_formatter:[552,3,1,""],nodetext_formatter:[552,3,1,""],options_formatter:[552,3,1,""],parse_input:[552,3,1,""],print_debug_info:[552,3,1,""]},"evennia.utils.evmenu.EvMenuCmdSet":{at_cmdset_creation:[552,3,1,""],key:[552,4,1,""],mergetype:[552,4,1,""],no_channels:[552,4,1,""],no_exits:[552,4,1,""],no_objs:[552,4,1,""],path:[552,4,1,""],priority:[552,4,1,""]},"evennia.utils.evmenu.InputCmdSet":{at_cmdset_creation:[552,3,1,""],key:[552,4,1,""],mergetype:[552,4,1,""],no_channels:[552,4,1,""],no_exits:[552,4,1,""],no_objs:[552,4,1,""],path:[552,4,1,""],priority:[552,4,1,""]},"evennia.utils.evmenu.YesNoQuestionCmdSet":{at_cmdset_creation:[552,3,1,""],key:[552,4,1,""],mergetype:[552,4,1,""],no_channels:[552,4,1,""],no_exits:[552,4,1,""],no_objs:[552,4,1,""],path:[552,4,1,""],priority:[552,4,1,""]},"evennia.utils.evmore":{CmdMore:[553,1,1,""],CmdMoreExit:[553,1,1,""],CmdSetMore:[553,1,1,""],EvMore:[553,1,1,""],msg:[553,5,1,""],queryset_maxsize:[553,5,1,""]},"evennia.utils.evmore.CmdMore":{aliases:[553,4,1,""],auto_help:[553,4,1,""],func:[553,3,1,""],help_category:[553,4,1,""],key:[553,4,1,""],lock_storage:[553,4,1,""],search_index_entry:[553,4,1,""]},"evennia.utils.evmore.CmdMoreExit":{aliases:[553,4,1,""],func:[553,3,1,""],help_category:[553,4,1,""],key:[553,4,1,""],lock_storage:[553,4,1,""],search_index_entry:[553,4,1,""]},"evennia.utils.evmore.CmdSetMore":{at_cmdset_creation:[553,3,1,""],key:[553,4,1,""],mergetype:[553,4,1,""],path:[553,4,1,""],priority:[553,4,1,""]},"evennia.utils.evmore.EvMore":{__init__:[553,3,1,""],display:[553,3,1,""],init_django_paginator:[553,3,1,""],init_evtable:[553,3,1,""],init_f_str:[553,3,1,""],init_iterable:[553,3,1,""],init_pages:[553,3,1,""],init_queryset:[553,3,1,""],init_str:[553,3,1,""],page_back:[553,3,1,""],page_end:[553,3,1,""],page_formatter:[553,3,1,""],page_next:[553,3,1,""],page_quit:[553,3,1,""],page_top:[553,3,1,""],paginator:[553,3,1,""],paginator_django:[553,3,1,""],paginator_index:[553,3,1,""],paginator_slice:[553,3,1,""],start:[553,3,1,""]},"evennia.utils.evtable":{ANSITextWrapper:[554,1,1,""],EvCell:[554,1,1,""],EvColumn:[554,1,1,""],EvTable:[554,1,1,""],fill:[554,5,1,""],wrap:[554,5,1,""]},"evennia.utils.evtable.EvCell":{__init__:[554,3,1,""],get:[554,3,1,""],get_height:[554,3,1,""],get_min_height:[554,3,1,""],get_min_width:[554,3,1,""],get_width:[554,3,1,""],reformat:[554,3,1,""],replace_data:[554,3,1,""]},"evennia.utils.evtable.EvColumn":{__init__:[554,3,1,""],add_rows:[554,3,1,""],reformat:[554,3,1,""],reformat_cell:[554,3,1,""]},"evennia.utils.evtable.EvTable":{__init__:[554,3,1,""],add_column:[554,3,1,""],add_header:[554,3,1,""],add_row:[554,3,1,""],get:[554,3,1,""],reformat:[554,3,1,""],reformat_column:[554,3,1,""]},"evennia.utils.funcparser":{FuncParser:[555,1,1,""],ParsingError:[555,2,1,""],funcparser_callable_add:[555,5,1,""],funcparser_callable_an:[555,5,1,""],funcparser_callable_center_justify:[555,5,1,""],funcparser_callable_choice:[555,5,1,""],funcparser_callable_clr:[555,5,1,""],funcparser_callable_conjugate:[555,5,1,""],funcparser_callable_crop:[555,5,1,""],funcparser_callable_div:[555,5,1,""],funcparser_callable_eval:[555,5,1,""],funcparser_callable_int2str:[555,5,1,""],funcparser_callable_justify:[555,5,1,""],funcparser_callable_left_justify:[555,5,1,""],funcparser_callable_mult:[555,5,1,""],funcparser_callable_pad:[555,5,1,""],funcparser_callable_pluralize:[555,5,1,""],funcparser_callable_pronoun:[555,5,1,""],funcparser_callable_pronoun_capitalize:[555,5,1,""],funcparser_callable_randint:[555,5,1,""],funcparser_callable_random:[555,5,1,""],funcparser_callable_right_justify:[555,5,1,""],funcparser_callable_round:[555,5,1,""],funcparser_callable_search:[555,5,1,""],funcparser_callable_search_list:[555,5,1,""],funcparser_callable_space:[555,5,1,""],funcparser_callable_sub:[555,5,1,""],funcparser_callable_toint:[555,5,1,""],funcparser_callable_you:[555,5,1,""],funcparser_callable_you_capitalize:[555,5,1,""]},"evennia.utils.funcparser.FuncParser":{__init__:[555,3,1,""],execute:[555,3,1,""],parse:[555,3,1,""],parse_to_any:[555,3,1,""],validate_callables:[555,3,1,""]},"evennia.utils.gametime":{TimeScript:[556,1,1,""],game_epoch:[556,5,1,""],gametime:[556,5,1,""],portal_uptime:[556,5,1,""],real_seconds_until:[556,5,1,""],reset_gametime:[556,5,1,""],runtime:[556,5,1,""],schedule:[556,5,1,""],server_epoch:[556,5,1,""],uptime:[556,5,1,""]},"evennia.utils.gametime.TimeScript":{DoesNotExist:[556,2,1,""],MultipleObjectsReturned:[556,2,1,""],at_repeat:[556,3,1,""],at_script_creation:[556,3,1,""],path:[556,4,1,""],typename:[556,4,1,""]},"evennia.utils.idmapper":{manager:[558,0,0,"-"],models:[559,0,0,"-"],tests:[560,0,0,"-"]},"evennia.utils.idmapper.manager":{SharedMemoryManager:[558,1,1,""]},"evennia.utils.idmapper.manager.SharedMemoryManager":{get:[558,3,1,""]},"evennia.utils.idmapper.models":{SharedMemoryModel:[559,1,1,""],SharedMemoryModelBase:[559,1,1,""],WeakSharedMemoryModel:[559,1,1,""],WeakSharedMemoryModelBase:[559,1,1,""],cache_size:[559,5,1,""],conditional_flush:[559,5,1,""],flush_cache:[559,5,1,""],flush_cached_instance:[559,5,1,""],update_cached_instance:[559,5,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel":{"delete":[559,3,1,""],Meta:[559,1,1,""],at_idmapper_flush:[559,3,1,""],cache_instance:[559,3,1,""],flush_cached_instance:[559,3,1,""],flush_from_cache:[559,3,1,""],flush_instance_cache:[559,3,1,""],get_all_cached_instances:[559,3,1,""],get_cached_instance:[559,3,1,""],objects:[559,4,1,""],path:[559,4,1,""],save:[559,3,1,""],typename:[559,4,1,""]},"evennia.utils.idmapper.models.SharedMemoryModel.Meta":{"abstract":[559,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel":{Meta:[559,1,1,""],path:[559,4,1,""],typename:[559,4,1,""]},"evennia.utils.idmapper.models.WeakSharedMemoryModel.Meta":{"abstract":[559,4,1,""]},"evennia.utils.idmapper.tests":{Article:[560,1,1,""],Category:[560,1,1,""],RegularArticle:[560,1,1,""],RegularCategory:[560,1,1,""],SharedMemorysTest:[560,1,1,""]},"evennia.utils.idmapper.tests.Article":{DoesNotExist:[560,2,1,""],MultipleObjectsReturned:[560,2,1,""],category2:[560,4,1,""],category2_id:[560,4,1,""],category:[560,4,1,""],category_id:[560,4,1,""],id:[560,4,1,""],name:[560,4,1,""],path:[560,4,1,""],typename:[560,4,1,""]},"evennia.utils.idmapper.tests.Category":{DoesNotExist:[560,2,1,""],MultipleObjectsReturned:[560,2,1,""],article_set:[560,4,1,""],id:[560,4,1,""],name:[560,4,1,""],path:[560,4,1,""],regulararticle_set:[560,4,1,""],typename:[560,4,1,""]},"evennia.utils.idmapper.tests.RegularArticle":{DoesNotExist:[560,2,1,""],MultipleObjectsReturned:[560,2,1,""],category2:[560,4,1,""],category2_id:[560,4,1,""],category:[560,4,1,""],category_id:[560,4,1,""],id:[560,4,1,""],name:[560,4,1,""],objects:[560,4,1,""]},"evennia.utils.idmapper.tests.RegularCategory":{DoesNotExist:[560,2,1,""],MultipleObjectsReturned:[560,2,1,""],article_set:[560,4,1,""],id:[560,4,1,""],name:[560,4,1,""],objects:[560,4,1,""],regulararticle_set:[560,4,1,""]},"evennia.utils.idmapper.tests.SharedMemorysTest":{setUp:[560,3,1,""],testMixedReferences:[560,3,1,""],testObjectDeletion:[560,3,1,""],testRegularReferences:[560,3,1,""],testSharedMemoryReferences:[560,3,1,""]},"evennia.utils.logger":{EvenniaLogFile:[561,1,1,""],GetLogObserver:[561,1,1,""],GetPortalLogObserver:[561,1,1,""],GetServerLogObserver:[561,1,1,""],WeeklyLogFile:[561,1,1,""],critical:[561,5,1,""],dep:[561,5,1,""],deprecated:[561,5,1,""],err:[561,5,1,""],error:[561,5,1,""],exception:[561,5,1,""],info:[561,5,1,""],log_dep:[561,5,1,""],log_depmsg:[561,5,1,""],log_err:[561,5,1,""],log_errmsg:[561,5,1,""],log_file:[561,5,1,""],log_file_exists:[561,5,1,""],log_info:[561,5,1,""],log_infomsg:[561,5,1,""],log_msg:[561,5,1,""],log_sec:[561,5,1,""],log_secmsg:[561,5,1,""],log_server:[561,5,1,""],log_trace:[561,5,1,""],log_tracemsg:[561,5,1,""],log_warn:[561,5,1,""],log_warnmsg:[561,5,1,""],rotate_log_file:[561,5,1,""],sec:[561,5,1,""],security:[561,5,1,""],tail_log_file:[561,5,1,""],timeformat:[561,5,1,""],trace:[561,5,1,""],warn:[561,5,1,""],warning:[561,5,1,""]},"evennia.utils.logger.EvenniaLogFile":{num_lines_to_append:[561,4,1,""],readlines:[561,3,1,""],rotate:[561,3,1,""],seek:[561,3,1,""],settings:[561,4,1,""]},"evennia.utils.logger.GetLogObserver":{component_prefix:[561,4,1,""],event_levels:[561,4,1,""],format_log_event:[561,3,1,""]},"evennia.utils.logger.GetPortalLogObserver":{component_prefix:[561,4,1,""]},"evennia.utils.logger.GetServerLogObserver":{component_prefix:[561,4,1,""]},"evennia.utils.logger.WeeklyLogFile":{__init__:[561,3,1,""],rotate:[561,3,1,""],shouldRotate:[561,3,1,""],suffix:[561,3,1,""],write:[561,3,1,""]},"evennia.utils.optionclasses":{BaseOption:[562,1,1,""],Boolean:[562,1,1,""],Color:[562,1,1,""],Datetime:[562,1,1,""],Duration:[562,1,1,""],Email:[562,1,1,""],Future:[562,1,1,""],Lock:[562,1,1,""],PositiveInteger:[562,1,1,""],SignedInteger:[562,1,1,""],Text:[562,1,1,""],Timezone:[562,1,1,""],UnsignedInteger:[562,1,1,""]},"evennia.utils.optionclasses.BaseOption":{"default":[562,3,1,""],__init__:[562,3,1,""],changed:[562,3,1,""],deserialize:[562,3,1,""],display:[562,3,1,""],load:[562,3,1,""],save:[562,3,1,""],serialize:[562,3,1,""],set:[562,3,1,""],validate:[562,3,1,""],value:[562,3,1,""]},"evennia.utils.optionclasses.Boolean":{deserialize:[562,3,1,""],display:[562,3,1,""],serialize:[562,3,1,""],validate:[562,3,1,""]},"evennia.utils.optionclasses.Color":{deserialize:[562,3,1,""],display:[562,3,1,""],validate:[562,3,1,""]},"evennia.utils.optionclasses.Datetime":{deserialize:[562,3,1,""],serialize:[562,3,1,""],validate:[562,3,1,""]},"evennia.utils.optionclasses.Duration":{deserialize:[562,3,1,""],serialize:[562,3,1,""],validate:[562,3,1,""]},"evennia.utils.optionclasses.Email":{deserialize:[562,3,1,""],validate:[562,3,1,""]},"evennia.utils.optionclasses.Future":{validate:[562,3,1,""]},"evennia.utils.optionclasses.Lock":{validate:[562,3,1,""]},"evennia.utils.optionclasses.PositiveInteger":{deserialize:[562,3,1,""],validate:[562,3,1,""]},"evennia.utils.optionclasses.SignedInteger":{deserialize:[562,3,1,""],validate:[562,3,1,""]},"evennia.utils.optionclasses.Text":{deserialize:[562,3,1,""]},"evennia.utils.optionclasses.Timezone":{"default":[562,3,1,""],deserialize:[562,3,1,""],serialize:[562,3,1,""],validate:[562,3,1,""]},"evennia.utils.optionclasses.UnsignedInteger":{deserialize:[562,3,1,""],validate:[562,3,1,""],validator_key:[562,4,1,""]},"evennia.utils.optionhandler":{InMemorySaveHandler:[563,1,1,""],OptionHandler:[563,1,1,""]},"evennia.utils.optionhandler.InMemorySaveHandler":{__init__:[563,3,1,""],add:[563,3,1,""],get:[563,3,1,""]},"evennia.utils.optionhandler.OptionHandler":{__init__:[563,3,1,""],all:[563,3,1,""],get:[563,3,1,""],set:[563,3,1,""]},"evennia.utils.picklefield":{PickledFormField:[564,1,1,""],PickledObject:[564,1,1,""],PickledObjectField:[564,1,1,""],PickledWidget:[564,1,1,""],dbsafe_decode:[564,5,1,""],dbsafe_encode:[564,5,1,""],wrap_conflictual_object:[564,5,1,""]},"evennia.utils.picklefield.PickledFormField":{__init__:[564,3,1,""],clean:[564,3,1,""],default_error_messages:[564,4,1,""],widget:[564,4,1,""]},"evennia.utils.picklefield.PickledObjectField":{__init__:[564,3,1,""],formfield:[564,3,1,""],from_db_value:[564,3,1,""],get_db_prep_lookup:[564,3,1,""],get_db_prep_value:[564,3,1,""],get_default:[564,3,1,""],get_internal_type:[564,3,1,""],pre_save:[564,3,1,""],value_to_string:[564,3,1,""]},"evennia.utils.picklefield.PickledWidget":{media:[564,3,1,""],render:[564,3,1,""],value_from_datadict:[564,3,1,""]},"evennia.utils.search":{search_account:[565,5,1,""],search_account_tag:[565,5,1,""],search_channel:[565,5,1,""],search_channel_tag:[565,5,1,""],search_help_entry:[565,5,1,""],search_message:[565,5,1,""],search_object:[565,5,1,""],search_script:[565,5,1,""],search_script_tag:[565,5,1,""],search_tag:[565,5,1,""],search_typeclass:[565,5,1,""]},"evennia.utils.test_resources":{BaseEvenniaCommandTest:[566,1,1,""],BaseEvenniaTest:[566,1,1,""],BaseEvenniaTestCase:[566,1,1,""],EvenniaCommandTest:[566,1,1,""],EvenniaCommandTestMixin:[566,1,1,""],EvenniaTest:[566,1,1,""],EvenniaTestCase:[566,1,1,""],EvenniaTestMixin:[566,1,1,""],mockdeferLater:[566,5,1,""],mockdelay:[566,5,1,""],unload_module:[566,5,1,""]},"evennia.utils.test_resources.EvenniaCommandTestMixin":{call:[566,3,1,""]},"evennia.utils.test_resources.EvenniaTest":{account_typeclass:[566,4,1,""],character_typeclass:[566,4,1,""],exit_typeclass:[566,4,1,""],object_typeclass:[566,4,1,""],room_typeclass:[566,4,1,""],script_typeclass:[566,4,1,""]},"evennia.utils.test_resources.EvenniaTestMixin":{account_typeclass:[566,4,1,""],character_typeclass:[566,4,1,""],create_accounts:[566,3,1,""],create_chars:[566,3,1,""],create_objs:[566,3,1,""],create_rooms:[566,3,1,""],create_script:[566,3,1,""],exit_typeclass:[566,4,1,""],object_typeclass:[566,4,1,""],room_typeclass:[566,4,1,""],script_typeclass:[566,4,1,""],setUp:[566,3,1,""],setup_session:[566,3,1,""],tearDown:[566,3,1,""],teardown_accounts:[566,3,1,""],teardown_session:[566,3,1,""]},"evennia.utils.text2html":{TextToHTMLparser:[567,1,1,""],parse_html:[567,5,1,""]},"evennia.utils.text2html.TextToHTMLparser":{ansi_bg_codes:[567,4,1,""],ansi_color_codes:[567,4,1,""],bglist:[567,4,1,""],colorlist:[567,4,1,""],convert_linebreaks:[567,3,1,""],convert_urls:[567,3,1,""],format_styles:[567,3,1,""],parse:[567,3,1,""],re_mxplink:[567,4,1,""],re_mxpurl:[567,4,1,""],re_protocol:[567,4,1,""],re_string:[567,4,1,""],re_style:[567,4,1,""],re_url:[567,4,1,""],re_valid_no_protocol:[567,4,1,""],remove_backspaces:[567,3,1,""],remove_bells:[567,3,1,""],style_codes:[567,4,1,""],sub_mxp_links:[567,3,1,""],sub_mxp_urls:[567,3,1,""],sub_text:[567,3,1,""],tabstop:[567,4,1,""],xterm_bg_codes:[567,4,1,""],xterm_fg_codes:[567,4,1,""]},"evennia.utils.utils":{LimitedSizeOrderedDict:[568,1,1,""],all_from_module:[568,5,1,""],at_search_result:[568,5,1,""],callables_from_module:[568,5,1,""],calledby:[568,5,1,""],check_evennia_dependencies:[568,5,1,""],class_from_module:[568,5,1,""],columnize:[568,5,1,""],copy_word_case:[568,5,1,""],crop:[568,5,1,""],datetime_format:[568,5,1,""],dbid_to_obj:[568,5,1,""],dbref:[568,5,1,""],dbref_to_obj:[568,5,1,""],dedent:[568,5,1,""],deepsize:[568,5,1,""],delay:[568,5,1,""],display_len:[568,5,1,""],fill:[568,5,1,""],format_grid:[568,5,1,""],format_table:[568,5,1,""],fuzzy_import_from_module:[568,5,1,""],get_all_cmdsets:[568,5,1,""],get_all_typeclasses:[568,5,1,""],get_evennia_pids:[568,5,1,""],get_evennia_version:[568,5,1,""],get_game_dir_path:[568,5,1,""],has_parent:[568,5,1,""],host_os_is:[568,5,1,""],inherits_from:[568,5,1,""],init_new_account:[568,5,1,""],int2str:[568,5,1,""],interactive:[568,5,1,""],is_iter:[568,5,1,""],iter_to_str:[568,5,1,""],iter_to_string:[568,5,1,""],justify:[568,5,1,""],latinify:[568,5,1,""],lazy_property:[568,1,1,""],list_to_string:[568,5,1,""],m_len:[568,5,1,""],make_iter:[568,5,1,""],mod_import:[568,5,1,""],mod_import_from_path:[568,5,1,""],object_from_module:[568,5,1,""],pad:[568,5,1,""],percent:[568,5,1,""],percentile:[568,5,1,""],pypath_to_realpath:[568,5,1,""],random_string_from_module:[568,5,1,""],repeat:[568,5,1,""],run_async:[568,5,1,""],run_in_main_thread:[568,5,1,""],safe_convert_to_types:[568,5,1,""],server_services:[568,5,1,""],str2int:[568,5,1,""],string_from_module:[568,5,1,""],string_partial_matching:[568,5,1,""],string_similarity:[568,5,1,""],string_suggestions:[568,5,1,""],strip_control_sequences:[568,5,1,""],strip_unsafe_input:[568,5,1,""],time_format:[568,5,1,""],to_bytes:[568,5,1,""],to_str:[568,5,1,""],unrepeat:[568,5,1,""],uses_database:[568,5,1,""],validate_email_address:[568,5,1,""],variable_from_module:[568,5,1,""],wildcard_to_regexp:[568,5,1,""],wrap:[568,5,1,""]},"evennia.utils.utils.LimitedSizeOrderedDict":{__init__:[568,3,1,""],update:[568,3,1,""]},"evennia.utils.utils.lazy_property":{__init__:[568,3,1,""]},"evennia.utils.validatorfuncs":{"boolean":[569,5,1,""],color:[569,5,1,""],datetime:[569,5,1,""],duration:[569,5,1,""],email:[569,5,1,""],future:[569,5,1,""],lock:[569,5,1,""],positive_integer:[569,5,1,""],signed_integer:[569,5,1,""],text:[569,5,1,""],timezone:[569,5,1,""],unsigned_integer:[569,5,1,""]},"evennia.utils.verb_conjugation":{conjugate:[571,0,0,"-"],pronouns:[572,0,0,"-"],tests:[573,0,0,"-"]},"evennia.utils.verb_conjugation.conjugate":{verb_actor_stance_components:[571,5,1,""],verb_all_tenses:[571,5,1,""],verb_conjugate:[571,5,1,""],verb_infinitive:[571,5,1,""],verb_is_past:[571,5,1,""],verb_is_past_participle:[571,5,1,""],verb_is_present:[571,5,1,""],verb_is_present_participle:[571,5,1,""],verb_is_tense:[571,5,1,""],verb_past:[571,5,1,""],verb_past_participle:[571,5,1,""],verb_present:[571,5,1,""],verb_present_participle:[571,5,1,""],verb_tense:[571,5,1,""]},"evennia.utils.verb_conjugation.pronouns":{pronoun_to_viewpoints:[572,5,1,""]},"evennia.utils.verb_conjugation.tests":{TestPronounMapping:[573,1,1,""],TestVerbConjugate:[573,1,1,""]},"evennia.utils.verb_conjugation.tests.TestPronounMapping":{test_colloquial_plurals:[573,4,1,""],test_colloquial_plurals_0_you:[573,3,1,""],test_colloquial_plurals_1_I:[573,3,1,""],test_colloquial_plurals_2_Me:[573,3,1,""],test_colloquial_plurals_3_your:[573,3,1,""],test_colloquial_plurals_4_they:[573,3,1,""],test_colloquial_plurals_5_they:[573,3,1,""],test_colloquial_plurals_6_yourself:[573,3,1,""],test_colloquial_plurals_7_myself:[573,3,1,""],test_default_mapping:[573,4,1,""],test_default_mapping_00_you:[573,3,1,""],test_default_mapping_01_I:[573,3,1,""],test_default_mapping_02_Me:[573,3,1,""],test_default_mapping_03_ours:[573,3,1,""],test_default_mapping_04_yourself:[573,3,1,""],test_default_mapping_05_yourselves:[573,3,1,""],test_default_mapping_06_he:[573,3,1,""],test_default_mapping_07_her:[573,3,1,""],test_default_mapping_08_their:[573,3,1,""],test_default_mapping_09_itself:[573,3,1,""],test_default_mapping_10_herself:[573,3,1,""],test_default_mapping_11_themselves:[573,3,1,""],test_mapping_with_options:[573,4,1,""],test_mapping_with_options_00_you:[573,3,1,""],test_mapping_with_options_01_you:[573,3,1,""],test_mapping_with_options_02_you:[573,3,1,""],test_mapping_with_options_03_I:[573,3,1,""],test_mapping_with_options_04_Me:[573,3,1,""],test_mapping_with_options_05_your:[573,3,1,""],test_mapping_with_options_06_yourself:[573,3,1,""],test_mapping_with_options_07_yourself:[573,3,1,""],test_mapping_with_options_08_yourselves:[573,3,1,""],test_mapping_with_options_09_he:[573,3,1,""],test_mapping_with_options_10_he:[573,3,1,""],test_mapping_with_options_11_we:[573,3,1,""],test_mapping_with_options_12_her:[573,3,1,""],test_mapping_with_options_13_her:[573,3,1,""],test_mapping_with_options_14_their:[573,3,1,""]},"evennia.utils.verb_conjugation.tests.TestVerbConjugate":{test_verb_actor_stance_components:[573,4,1,""],test_verb_actor_stance_components_00_have:[573,3,1,""],test_verb_actor_stance_components_01_swimming:[573,3,1,""],test_verb_actor_stance_components_02_give:[573,3,1,""],test_verb_actor_stance_components_03_given:[573,3,1,""],test_verb_actor_stance_components_04_am:[573,3,1,""],test_verb_actor_stance_components_05_doing:[573,3,1,""],test_verb_actor_stance_components_06_are:[573,3,1,""],test_verb_actor_stance_components_07_had:[573,3,1,""],test_verb_actor_stance_components_08_grin:[573,3,1,""],test_verb_actor_stance_components_09_smile:[573,3,1,""],test_verb_actor_stance_components_10_vex:[573,3,1,""],test_verb_actor_stance_components_11_thrust:[573,3,1,""],test_verb_conjugate:[573,4,1,""],test_verb_conjugate_0_inf:[573,3,1,""],test_verb_conjugate_1_inf:[573,3,1,""],test_verb_conjugate_2_inf:[573,3,1,""],test_verb_conjugate_3_inf:[573,3,1,""],test_verb_conjugate_4_inf:[573,3,1,""],test_verb_conjugate_5_inf:[573,3,1,""],test_verb_conjugate_6_inf:[573,3,1,""],test_verb_conjugate_7_2sgpres:[573,3,1,""],test_verb_conjugate_8_3sgpres:[573,3,1,""],test_verb_get_all_tenses:[573,3,1,""],test_verb_infinitive:[573,4,1,""],test_verb_infinitive_0_have:[573,3,1,""],test_verb_infinitive_1_swim:[573,3,1,""],test_verb_infinitive_2_give:[573,3,1,""],test_verb_infinitive_3_given:[573,3,1,""],test_verb_infinitive_4_am:[573,3,1,""],test_verb_infinitive_5_doing:[573,3,1,""],test_verb_infinitive_6_are:[573,3,1,""],test_verb_is_past:[573,4,1,""],test_verb_is_past_0_1st:[573,3,1,""],test_verb_is_past_1_1st:[573,3,1,""],test_verb_is_past_2_1st:[573,3,1,""],test_verb_is_past_3_1st:[573,3,1,""],test_verb_is_past_4_1st:[573,3,1,""],test_verb_is_past_5_1st:[573,3,1,""],test_verb_is_past_6_1st:[573,3,1,""],test_verb_is_past_7_2nd:[573,3,1,""],test_verb_is_past_participle:[573,4,1,""],test_verb_is_past_participle_0_have:[573,3,1,""],test_verb_is_past_participle_1_swimming:[573,3,1,""],test_verb_is_past_participle_2_give:[573,3,1,""],test_verb_is_past_participle_3_given:[573,3,1,""],test_verb_is_past_participle_4_am:[573,3,1,""],test_verb_is_past_participle_5_doing:[573,3,1,""],test_verb_is_past_participle_6_are:[573,3,1,""],test_verb_is_past_participle_7_had:[573,3,1,""],test_verb_is_present:[573,4,1,""],test_verb_is_present_0_1st:[573,3,1,""],test_verb_is_present_1_1st:[573,3,1,""],test_verb_is_present_2_1st:[573,3,1,""],test_verb_is_present_3_1st:[573,3,1,""],test_verb_is_present_4_1st:[573,3,1,""],test_verb_is_present_5_1st:[573,3,1,""],test_verb_is_present_6_1st:[573,3,1,""],test_verb_is_present_7_1st:[573,3,1,""],test_verb_is_present_participle:[573,4,1,""],test_verb_is_present_participle_0_have:[573,3,1,""],test_verb_is_present_participle_1_swim:[573,3,1,""],test_verb_is_present_participle_2_give:[573,3,1,""],test_verb_is_present_participle_3_given:[573,3,1,""],test_verb_is_present_participle_4_am:[573,3,1,""],test_verb_is_present_participle_5_doing:[573,3,1,""],test_verb_is_present_participle_6_are:[573,3,1,""],test_verb_is_tense:[573,4,1,""],test_verb_is_tense_0_inf:[573,3,1,""],test_verb_is_tense_1_inf:[573,3,1,""],test_verb_is_tense_2_inf:[573,3,1,""],test_verb_is_tense_3_inf:[573,3,1,""],test_verb_is_tense_4_inf:[573,3,1,""],test_verb_is_tense_5_inf:[573,3,1,""],test_verb_is_tense_6_inf:[573,3,1,""],test_verb_past:[573,4,1,""],test_verb_past_0_1st:[573,3,1,""],test_verb_past_1_1st:[573,3,1,""],test_verb_past_2_1st:[573,3,1,""],test_verb_past_3_1st:[573,3,1,""],test_verb_past_4_1st:[573,3,1,""],test_verb_past_5_1st:[573,3,1,""],test_verb_past_6_1st:[573,3,1,""],test_verb_past_7_2nd:[573,3,1,""],test_verb_past_participle:[573,4,1,""],test_verb_past_participle_0_have:[573,3,1,""],test_verb_past_participle_1_swim:[573,3,1,""],test_verb_past_participle_2_give:[573,3,1,""],test_verb_past_participle_3_given:[573,3,1,""],test_verb_past_participle_4_am:[573,3,1,""],test_verb_past_participle_5_doing:[573,3,1,""],test_verb_past_participle_6_are:[573,3,1,""],test_verb_present:[573,4,1,""],test_verb_present_0_1st:[573,3,1,""],test_verb_present_1_1st:[573,3,1,""],test_verb_present_2_1st:[573,3,1,""],test_verb_present_3_1st:[573,3,1,""],test_verb_present_4_1st:[573,3,1,""],test_verb_present_5_1st:[573,3,1,""],test_verb_present_6_1st:[573,3,1,""],test_verb_present_7_2nd:[573,3,1,""],test_verb_present_8_3rd:[573,3,1,""],test_verb_present_participle:[573,4,1,""],test_verb_present_participle_0_have:[573,3,1,""],test_verb_present_participle_1_swim:[573,3,1,""],test_verb_present_participle_2_give:[573,3,1,""],test_verb_present_participle_3_given:[573,3,1,""],test_verb_present_participle_4_am:[573,3,1,""],test_verb_present_participle_5_doing:[573,3,1,""],test_verb_present_participle_6_are:[573,3,1,""],test_verb_tense:[573,4,1,""],test_verb_tense_0_have:[573,3,1,""],test_verb_tense_1_swim:[573,3,1,""],test_verb_tense_2_give:[573,3,1,""],test_verb_tense_3_given:[573,3,1,""],test_verb_tense_4_am:[573,3,1,""],test_verb_tense_5_doing:[573,3,1,""],test_verb_tense_6_are:[573,3,1,""]},"evennia.web":{admin:[575,0,0,"-"],api:[587,0,0,"-"],templatetags:[595,0,0,"-"],urls:[597,0,0,"-"],utils:[598,0,0,"-"],webclient:[604,0,0,"-"],website:[607,0,0,"-"]},"evennia.web.admin":{accounts:[576,0,0,"-"],attributes:[577,0,0,"-"],comms:[578,0,0,"-"],frontpage:[579,0,0,"-"],help:[580,0,0,"-"],objects:[581,0,0,"-"],scripts:[582,0,0,"-"],server:[583,0,0,"-"],tags:[584,0,0,"-"],urls:[585,0,0,"-"],utils:[586,0,0,"-"]},"evennia.web.admin.accounts":{AccountAdmin:[576,1,1,""],AccountAttributeInline:[576,1,1,""],AccountChangeForm:[576,1,1,""],AccountCreationForm:[576,1,1,""],AccountTagInline:[576,1,1,""],ObjectPuppetInline:[576,1,1,""]},"evennia.web.admin.accounts.AccountAdmin":{add_fieldsets:[576,4,1,""],add_form:[576,4,1,""],fieldsets:[576,4,1,""],form:[576,4,1,""],get_form:[576,3,1,""],inlines:[576,4,1,""],list_display:[576,4,1,""],list_display_links:[576,4,1,""],list_filter:[576,4,1,""],media:[576,3,1,""],ordering:[576,4,1,""],puppeted_objects:[576,3,1,""],readonly_fields:[576,4,1,""],response_add:[576,3,1,""],save_model:[576,3,1,""],search_fields:[576,4,1,""],serialized_string:[576,3,1,""],user_change_password:[576,3,1,""],view_on_site:[576,4,1,""]},"evennia.web.admin.accounts.AccountAttributeInline":{media:[576,3,1,""],model:[576,4,1,""],related_field:[576,4,1,""]},"evennia.web.admin.accounts.AccountChangeForm":{Meta:[576,1,1,""],__init__:[576,3,1,""],base_fields:[576,4,1,""],clean_username:[576,3,1,""],declared_fields:[576,4,1,""],media:[576,3,1,""]},"evennia.web.admin.accounts.AccountChangeForm.Meta":{fields:[576,4,1,""],model:[576,4,1,""]},"evennia.web.admin.accounts.AccountCreationForm":{Meta:[576,1,1,""],base_fields:[576,4,1,""],clean_username:[576,3,1,""],declared_fields:[576,4,1,""],media:[576,3,1,""]},"evennia.web.admin.accounts.AccountCreationForm.Meta":{fields:[576,4,1,""],model:[576,4,1,""]},"evennia.web.admin.accounts.AccountTagInline":{media:[576,3,1,""],model:[576,4,1,""],related_field:[576,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline":{ObjectCreateForm:[576,1,1,""],extra:[576,4,1,""],fieldsets:[576,4,1,""],form:[576,4,1,""],has_add_permission:[576,3,1,""],has_delete_permission:[576,3,1,""],media:[576,3,1,""],model:[576,4,1,""],readonly_fields:[576,4,1,""],show_change_link:[576,4,1,""],verbose_name:[576,4,1,""],view_on_site:[576,4,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm":{Meta:[576,1,1,""],__init__:[576,3,1,""],base_fields:[576,4,1,""],declared_fields:[576,4,1,""],media:[576,3,1,""]},"evennia.web.admin.accounts.ObjectPuppetInline.ObjectCreateForm.Meta":{fields:[576,4,1,""],model:[576,4,1,""]},"evennia.web.admin.attributes":{AttributeForm:[577,1,1,""],AttributeFormSet:[577,1,1,""],AttributeInline:[577,1,1,""]},"evennia.web.admin.attributes.AttributeForm":{Meta:[577,1,1,""],__init__:[577,3,1,""],base_fields:[577,4,1,""],clean_attr_value:[577,3,1,""],declared_fields:[577,4,1,""],media:[577,3,1,""],save:[577,3,1,""]},"evennia.web.admin.attributes.AttributeForm.Meta":{fields:[577,4,1,""]},"evennia.web.admin.attributes.AttributeFormSet":{save:[577,3,1,""]},"evennia.web.admin.attributes.AttributeInline":{extra:[577,4,1,""],form:[577,4,1,""],formset:[577,4,1,""],get_formset:[577,3,1,""],media:[577,3,1,""],model:[577,4,1,""],related_field:[577,4,1,""],verbose_name:[577,4,1,""],verbose_name_plural:[577,4,1,""]},"evennia.web.admin.comms":{ChannelAdmin:[578,1,1,""],ChannelAttributeInline:[578,1,1,""],ChannelForm:[578,1,1,""],ChannelTagInline:[578,1,1,""],MsgAdmin:[578,1,1,""],MsgForm:[578,1,1,""],MsgTagInline:[578,1,1,""]},"evennia.web.admin.comms.ChannelAdmin":{fieldsets:[578,4,1,""],form:[578,4,1,""],get_form:[578,3,1,""],inlines:[578,4,1,""],list_display:[578,4,1,""],list_display_links:[578,4,1,""],list_select_related:[578,4,1,""],media:[578,3,1,""],no_of_subscribers:[578,3,1,""],ordering:[578,4,1,""],raw_id_fields:[578,4,1,""],readonly_fields:[578,4,1,""],response_add:[578,3,1,""],save_as:[578,4,1,""],save_model:[578,3,1,""],save_on_top:[578,4,1,""],search_fields:[578,4,1,""],serialized_string:[578,3,1,""],subscriptions:[578,3,1,""]},"evennia.web.admin.comms.ChannelAttributeInline":{media:[578,3,1,""],model:[578,4,1,""],related_field:[578,4,1,""]},"evennia.web.admin.comms.ChannelForm":{Meta:[578,1,1,""],base_fields:[578,4,1,""],declared_fields:[578,4,1,""],media:[578,3,1,""]},"evennia.web.admin.comms.ChannelForm.Meta":{fields:[578,4,1,""],model:[578,4,1,""]},"evennia.web.admin.comms.ChannelTagInline":{media:[578,3,1,""],model:[578,4,1,""],related_field:[578,4,1,""]},"evennia.web.admin.comms.MsgAdmin":{fieldsets:[578,4,1,""],form:[578,4,1,""],get_form:[578,3,1,""],inlines:[578,4,1,""],list_display:[578,4,1,""],list_display_links:[578,4,1,""],list_select_related:[578,4,1,""],media:[578,3,1,""],ordering:[578,4,1,""],raw_id_fields:[578,4,1,""],readonly_fields:[578,4,1,""],receiver:[578,3,1,""],save_as:[578,4,1,""],save_on_top:[578,4,1,""],search_fields:[578,4,1,""],sender:[578,3,1,""],serialized_string:[578,3,1,""],start_of_message:[578,3,1,""],view_on_site:[578,4,1,""]},"evennia.web.admin.comms.MsgForm":{Meta:[578,1,1,""],base_fields:[578,4,1,""],declared_fields:[578,4,1,""],media:[578,3,1,""]},"evennia.web.admin.comms.MsgForm.Meta":{fields:[578,4,1,""],models:[578,4,1,""]},"evennia.web.admin.comms.MsgTagInline":{media:[578,3,1,""],model:[578,4,1,""],related_field:[578,4,1,""]},"evennia.web.admin.frontpage":{admin_wrapper:[579,5,1,""],evennia_admin:[579,5,1,""]},"evennia.web.admin.help":{HelpEntryAdmin:[580,1,1,""],HelpEntryForm:[580,1,1,""],HelpTagInline:[580,1,1,""]},"evennia.web.admin.help.HelpEntryAdmin":{fieldsets:[580,4,1,""],form:[580,4,1,""],inlines:[580,4,1,""],list_display:[580,4,1,""],list_display_links:[580,4,1,""],list_filter:[580,4,1,""],list_select_related:[580,4,1,""],media:[580,3,1,""],ordering:[580,4,1,""],save_as:[580,4,1,""],save_on_top:[580,4,1,""],search_fields:[580,4,1,""],view_on_site:[580,4,1,""]},"evennia.web.admin.help.HelpEntryForm":{Meta:[580,1,1,""],base_fields:[580,4,1,""],declared_fields:[580,4,1,""],media:[580,3,1,""]},"evennia.web.admin.help.HelpEntryForm.Meta":{fields:[580,4,1,""],model:[580,4,1,""]},"evennia.web.admin.help.HelpTagInline":{media:[580,3,1,""],model:[580,4,1,""],related_field:[580,4,1,""]},"evennia.web.admin.objects":{ObjectAdmin:[581,1,1,""],ObjectAttributeInline:[581,1,1,""],ObjectCreateForm:[581,1,1,""],ObjectEditForm:[581,1,1,""],ObjectTagInline:[581,1,1,""]},"evennia.web.admin.objects.ObjectAdmin":{add_fieldsets:[581,4,1,""],add_form:[581,4,1,""],fieldsets:[581,4,1,""],form:[581,4,1,""],get_fieldsets:[581,3,1,""],get_form:[581,3,1,""],get_urls:[581,3,1,""],inlines:[581,4,1,""],link_button:[581,3,1,""],link_object_to_account:[581,3,1,""],list_display:[581,4,1,""],list_display_links:[581,4,1,""],list_filter:[581,4,1,""],list_select_related:[581,4,1,""],media:[581,3,1,""],ordering:[581,4,1,""],raw_id_fields:[581,4,1,""],readonly_fields:[581,4,1,""],response_add:[581,3,1,""],save_as:[581,4,1,""],save_model:[581,3,1,""],save_on_top:[581,4,1,""],search_fields:[581,4,1,""],serialized_string:[581,3,1,""],view_on_site:[581,4,1,""]},"evennia.web.admin.objects.ObjectAttributeInline":{media:[581,3,1,""],model:[581,4,1,""],related_field:[581,4,1,""]},"evennia.web.admin.objects.ObjectCreateForm":{Meta:[581,1,1,""],__init__:[581,3,1,""],base_fields:[581,4,1,""],declared_fields:[581,4,1,""],media:[581,3,1,""]},"evennia.web.admin.objects.ObjectCreateForm.Meta":{fields:[581,4,1,""],model:[581,4,1,""]},"evennia.web.admin.objects.ObjectEditForm":{Meta:[581,1,1,""],base_fields:[581,4,1,""],declared_fields:[581,4,1,""],media:[581,3,1,""]},"evennia.web.admin.objects.ObjectEditForm.Meta":{fields:[581,4,1,""],model:[581,4,1,""]},"evennia.web.admin.objects.ObjectTagInline":{media:[581,3,1,""],model:[581,4,1,""],related_field:[581,4,1,""]},"evennia.web.admin.scripts":{ScriptAdmin:[582,1,1,""],ScriptAttributeInline:[582,1,1,""],ScriptForm:[582,1,1,""],ScriptTagInline:[582,1,1,""]},"evennia.web.admin.scripts.ScriptAdmin":{fieldsets:[582,4,1,""],form:[582,4,1,""],get_form:[582,3,1,""],inlines:[582,4,1,""],list_display:[582,4,1,""],list_display_links:[582,4,1,""],list_select_related:[582,4,1,""],media:[582,3,1,""],ordering:[582,4,1,""],raw_id_fields:[582,4,1,""],readonly_fields:[582,4,1,""],save_as:[582,4,1,""],save_model:[582,3,1,""],save_on_top:[582,4,1,""],search_fields:[582,4,1,""],serialized_string:[582,3,1,""],view_on_site:[582,4,1,""]},"evennia.web.admin.scripts.ScriptAttributeInline":{media:[582,3,1,""],model:[582,4,1,""],related_field:[582,4,1,""]},"evennia.web.admin.scripts.ScriptForm":{base_fields:[582,4,1,""],declared_fields:[582,4,1,""],media:[582,3,1,""]},"evennia.web.admin.scripts.ScriptTagInline":{media:[582,3,1,""],model:[582,4,1,""],related_field:[582,4,1,""]},"evennia.web.admin.server":{ServerConfigAdmin:[583,1,1,""]},"evennia.web.admin.server.ServerConfigAdmin":{list_display:[583,4,1,""],list_display_links:[583,4,1,""],list_select_related:[583,4,1,""],media:[583,3,1,""],ordering:[583,4,1,""],save_as:[583,4,1,""],save_on_top:[583,4,1,""],search_fields:[583,4,1,""]},"evennia.web.admin.tags":{InlineTagForm:[584,1,1,""],TagAdmin:[584,1,1,""],TagForm:[584,1,1,""],TagFormSet:[584,1,1,""],TagInline:[584,1,1,""]},"evennia.web.admin.tags.InlineTagForm":{Meta:[584,1,1,""],__init__:[584,3,1,""],base_fields:[584,4,1,""],declared_fields:[584,4,1,""],media:[584,3,1,""],save:[584,3,1,""]},"evennia.web.admin.tags.InlineTagForm.Meta":{fields:[584,4,1,""]},"evennia.web.admin.tags.TagAdmin":{fieldsets:[584,4,1,""],form:[584,4,1,""],list_display:[584,4,1,""],list_filter:[584,4,1,""],media:[584,3,1,""],search_fields:[584,4,1,""],view_on_site:[584,4,1,""]},"evennia.web.admin.tags.TagForm":{Meta:[584,1,1,""],base_fields:[584,4,1,""],declared_fields:[584,4,1,""],media:[584,3,1,""]},"evennia.web.admin.tags.TagForm.Meta":{fields:[584,4,1,""]},"evennia.web.admin.tags.TagFormSet":{save:[584,3,1,""],verbose_name:[584,4,1,""],verbose_name_plural:[584,4,1,""]},"evennia.web.admin.tags.TagInline":{extra:[584,4,1,""],form:[584,4,1,""],formset:[584,4,1,""],get_formset:[584,3,1,""],media:[584,3,1,""],model:[584,4,1,""],related_field:[584,4,1,""],verbose_name:[584,4,1,""],verbose_name_plural:[584,4,1,""]},"evennia.web.admin.utils":{get_and_load_cmdsets:[586,5,1,""],get_and_load_typeclasses:[586,5,1,""]},"evennia.web.api":{filters:[588,0,0,"-"],permissions:[589,0,0,"-"],root:[590,0,0,"-"],serializers:[591,0,0,"-"],tests:[592,0,0,"-"],urls:[593,0,0,"-"],views:[594,0,0,"-"]},"evennia.web.api.filters":{AccountDBFilterSet:[588,1,1,""],AliasFilter:[588,1,1,""],BaseTypeclassFilterSet:[588,1,1,""],HelpFilterSet:[588,1,1,""],ObjectDBFilterSet:[588,1,1,""],PermissionFilter:[588,1,1,""],ScriptDBFilterSet:[588,1,1,""],TagTypeFilter:[588,1,1,""],get_tag_query:[588,5,1,""]},"evennia.web.api.filters.AccountDBFilterSet":{Meta:[588,1,1,""],base_filters:[588,4,1,""],declared_filters:[588,4,1,""]},"evennia.web.api.filters.AccountDBFilterSet.Meta":{fields:[588,4,1,""],model:[588,4,1,""]},"evennia.web.api.filters.AliasFilter":{tag_type:[588,4,1,""]},"evennia.web.api.filters.BaseTypeclassFilterSet":{base_filters:[588,4,1,""],declared_filters:[588,4,1,""],filter_name:[588,3,1,""]},"evennia.web.api.filters.HelpFilterSet":{base_filters:[588,4,1,""],declared_filters:[588,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet":{Meta:[588,1,1,""],base_filters:[588,4,1,""],declared_filters:[588,4,1,""]},"evennia.web.api.filters.ObjectDBFilterSet.Meta":{fields:[588,4,1,""],model:[588,4,1,""]},"evennia.web.api.filters.PermissionFilter":{tag_type:[588,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet":{Meta:[588,1,1,""],base_filters:[588,4,1,""],declared_filters:[588,4,1,""]},"evennia.web.api.filters.ScriptDBFilterSet.Meta":{fields:[588,4,1,""],model:[588,4,1,""]},"evennia.web.api.filters.TagTypeFilter":{filter:[588,3,1,""],tag_type:[588,4,1,""]},"evennia.web.api.permissions":{EvenniaPermission:[589,1,1,""]},"evennia.web.api.permissions.EvenniaPermission":{MINIMUM_CREATE_PERMISSION:[589,4,1,""],MINIMUM_LIST_PERMISSION:[589,4,1,""],check_locks:[589,3,1,""],destroy_locks:[589,4,1,""],has_object_permission:[589,3,1,""],has_permission:[589,3,1,""],update_locks:[589,4,1,""],view_locks:[589,4,1,""]},"evennia.web.api.root":{APIRootRouter:[590,1,1,""],EvenniaAPIRoot:[590,1,1,""]},"evennia.web.api.root.APIRootRouter":{APIRootView:[590,4,1,""]},"evennia.web.api.serializers":{AccountListSerializer:[591,1,1,""],AccountSerializer:[591,1,1,""],AttributeSerializer:[591,1,1,""],HelpListSerializer:[591,1,1,""],HelpSerializer:[591,1,1,""],ObjectDBSerializer:[591,1,1,""],ObjectListSerializer:[591,1,1,""],ScriptDBSerializer:[591,1,1,""],ScriptListSerializer:[591,1,1,""],SimpleObjectDBSerializer:[591,1,1,""],TagSerializer:[591,1,1,""],TypeclassListSerializerMixin:[591,1,1,""],TypeclassSerializerMixin:[591,1,1,""]},"evennia.web.api.serializers.AccountListSerializer":{Meta:[591,1,1,""]},"evennia.web.api.serializers.AccountListSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""],read_only_fields:[591,4,1,""]},"evennia.web.api.serializers.AccountSerializer":{Meta:[591,1,1,""],get_session_ids:[591,3,1,""]},"evennia.web.api.serializers.AccountSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""],read_only_fields:[591,4,1,""]},"evennia.web.api.serializers.AttributeSerializer":{Meta:[591,1,1,""],get_value_display:[591,3,1,""]},"evennia.web.api.serializers.AttributeSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""]},"evennia.web.api.serializers.HelpListSerializer":{Meta:[591,1,1,""]},"evennia.web.api.serializers.HelpListSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""],read_only_fields:[591,4,1,""]},"evennia.web.api.serializers.HelpSerializer":{Meta:[591,1,1,""]},"evennia.web.api.serializers.HelpSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""],read_only_fields:[591,4,1,""]},"evennia.web.api.serializers.ObjectDBSerializer":{Meta:[591,1,1,""],get_contents:[591,3,1,""],get_exits:[591,3,1,""]},"evennia.web.api.serializers.ObjectDBSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""],read_only_fields:[591,4,1,""]},"evennia.web.api.serializers.ObjectListSerializer":{Meta:[591,1,1,""]},"evennia.web.api.serializers.ObjectListSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""],read_only_fields:[591,4,1,""]},"evennia.web.api.serializers.ScriptDBSerializer":{Meta:[591,1,1,""]},"evennia.web.api.serializers.ScriptDBSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""],read_only_fields:[591,4,1,""]},"evennia.web.api.serializers.ScriptListSerializer":{Meta:[591,1,1,""]},"evennia.web.api.serializers.ScriptListSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""],read_only_fields:[591,4,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer":{Meta:[591,1,1,""]},"evennia.web.api.serializers.SimpleObjectDBSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""]},"evennia.web.api.serializers.TagSerializer":{Meta:[591,1,1,""]},"evennia.web.api.serializers.TagSerializer.Meta":{fields:[591,4,1,""],model:[591,4,1,""]},"evennia.web.api.serializers.TypeclassListSerializerMixin":{shared_fields:[591,4,1,""]},"evennia.web.api.serializers.TypeclassSerializerMixin":{get_aliases:[591,3,1,""],get_attributes:[591,3,1,""],get_nicks:[591,3,1,""],get_permissions:[591,3,1,""],get_tags:[591,3,1,""],shared_fields:[591,4,1,""]},"evennia.web.api.tests":{TestEvenniaRESTApi:[592,1,1,""]},"evennia.web.api.tests.TestEvenniaRESTApi":{client_class:[592,4,1,""],get_view_details:[592,3,1,""],maxDiff:[592,4,1,""],setUp:[592,3,1,""],tearDown:[592,3,1,""],test_create:[592,3,1,""],test_delete:[592,3,1,""],test_list:[592,3,1,""],test_retrieve:[592,3,1,""],test_set_attribute:[592,3,1,""],test_update:[592,3,1,""]},"evennia.web.api.views":{AccountDBViewSet:[594,1,1,""],CharacterViewSet:[594,1,1,""],ExitViewSet:[594,1,1,""],GeneralViewSetMixin:[594,1,1,""],HelpViewSet:[594,1,1,""],ObjectDBViewSet:[594,1,1,""],RoomViewSet:[594,1,1,""],ScriptDBViewSet:[594,1,1,""],TypeclassViewSetMixin:[594,1,1,""]},"evennia.web.api.views.AccountDBViewSet":{basename:[594,4,1,""],description:[594,4,1,""],detail:[594,4,1,""],filterset_class:[594,4,1,""],list_serializer_class:[594,4,1,""],name:[594,4,1,""],queryset:[594,4,1,""],serializer_class:[594,4,1,""],suffix:[594,4,1,""]},"evennia.web.api.views.CharacterViewSet":{basename:[594,4,1,""],description:[594,4,1,""],detail:[594,4,1,""],name:[594,4,1,""],queryset:[594,4,1,""],suffix:[594,4,1,""]},"evennia.web.api.views.ExitViewSet":{basename:[594,4,1,""],description:[594,4,1,""],detail:[594,4,1,""],name:[594,4,1,""],queryset:[594,4,1,""],suffix:[594,4,1,""]},"evennia.web.api.views.GeneralViewSetMixin":{get_serializer_class:[594,3,1,""]},"evennia.web.api.views.HelpViewSet":{basename:[594,4,1,""],description:[594,4,1,""],detail:[594,4,1,""],filterset_class:[594,4,1,""],list_serializer_class:[594,4,1,""],name:[594,4,1,""],queryset:[594,4,1,""],serializer_class:[594,4,1,""],suffix:[594,4,1,""]},"evennia.web.api.views.ObjectDBViewSet":{basename:[594,4,1,""],description:[594,4,1,""],detail:[594,4,1,""],filterset_class:[594,4,1,""],list_serializer_class:[594,4,1,""],name:[594,4,1,""],queryset:[594,4,1,""],serializer_class:[594,4,1,""],suffix:[594,4,1,""]},"evennia.web.api.views.RoomViewSet":{basename:[594,4,1,""],description:[594,4,1,""],detail:[594,4,1,""],name:[594,4,1,""],queryset:[594,4,1,""],suffix:[594,4,1,""]},"evennia.web.api.views.ScriptDBViewSet":{basename:[594,4,1,""],description:[594,4,1,""],detail:[594,4,1,""],filterset_class:[594,4,1,""],list_serializer_class:[594,4,1,""],name:[594,4,1,""],queryset:[594,4,1,""],serializer_class:[594,4,1,""],suffix:[594,4,1,""]},"evennia.web.api.views.TypeclassViewSetMixin":{filter_backends:[594,4,1,""],permission_classes:[594,4,1,""],set_attribute:[594,3,1,""]},"evennia.web.templatetags":{addclass:[596,0,0,"-"]},"evennia.web.templatetags.addclass":{addclass:[596,5,1,""]},"evennia.web.utils":{adminsite:[599,0,0,"-"],backends:[600,0,0,"-"],general_context:[601,0,0,"-"],middleware:[602,0,0,"-"],tests:[603,0,0,"-"]},"evennia.web.utils.adminsite":{EvenniaAdminApp:[599,1,1,""],EvenniaAdminSite:[599,1,1,""]},"evennia.web.utils.adminsite.EvenniaAdminApp":{default_site:[599,4,1,""]},"evennia.web.utils.adminsite.EvenniaAdminSite":{app_order:[599,4,1,""],get_app_list:[599,3,1,""],site_header:[599,4,1,""]},"evennia.web.utils.backends":{CaseInsensitiveModelBackend:[600,1,1,""]},"evennia.web.utils.backends.CaseInsensitiveModelBackend":{authenticate:[600,3,1,""]},"evennia.web.utils.general_context":{general_context:[601,5,1,""],load_game_settings:[601,5,1,""]},"evennia.web.utils.middleware":{SharedLoginMiddleware:[602,1,1,""]},"evennia.web.utils.middleware.SharedLoginMiddleware":{__init__:[602,3,1,""],make_shared_login:[602,3,1,""]},"evennia.web.utils.tests":{TestGeneralContext:[603,1,1,""]},"evennia.web.utils.tests.TestGeneralContext":{maxDiff:[603,4,1,""],test_general_context:[603,3,1,""]},"evennia.web.webclient":{urls:[605,0,0,"-"],views:[606,0,0,"-"]},"evennia.web.webclient.views":{webclient:[606,5,1,""]},"evennia.web.website":{forms:[608,0,0,"-"],tests:[609,0,0,"-"],urls:[610,0,0,"-"],views:[611,0,0,"-"]},"evennia.web.website.forms":{AccountForm:[608,1,1,""],CharacterForm:[608,1,1,""],CharacterUpdateForm:[608,1,1,""],EvenniaForm:[608,1,1,""],ObjectForm:[608,1,1,""]},"evennia.web.website.forms.AccountForm":{Meta:[608,1,1,""],base_fields:[608,4,1,""],declared_fields:[608,4,1,""],media:[608,3,1,""]},"evennia.web.website.forms.AccountForm.Meta":{field_classes:[608,4,1,""],fields:[608,4,1,""],model:[608,4,1,""]},"evennia.web.website.forms.CharacterForm":{Meta:[608,1,1,""],base_fields:[608,4,1,""],declared_fields:[608,4,1,""],media:[608,3,1,""]},"evennia.web.website.forms.CharacterForm.Meta":{fields:[608,4,1,""],labels:[608,4,1,""],model:[608,4,1,""]},"evennia.web.website.forms.CharacterUpdateForm":{base_fields:[608,4,1,""],declared_fields:[608,4,1,""],media:[608,3,1,""]},"evennia.web.website.forms.EvenniaForm":{base_fields:[608,4,1,""],clean:[608,3,1,""],declared_fields:[608,4,1,""],media:[608,3,1,""]},"evennia.web.website.forms.ObjectForm":{Meta:[608,1,1,""],base_fields:[608,4,1,""],declared_fields:[608,4,1,""],media:[608,3,1,""]},"evennia.web.website.forms.ObjectForm.Meta":{fields:[608,4,1,""],labels:[608,4,1,""],model:[608,4,1,""]},"evennia.web.website.tests":{AdminTest:[609,1,1,""],ChannelDetailTest:[609,1,1,""],ChannelListTest:[609,1,1,""],CharacterCreateView:[609,1,1,""],CharacterDeleteView:[609,1,1,""],CharacterListView:[609,1,1,""],CharacterManageView:[609,1,1,""],CharacterPuppetView:[609,1,1,""],CharacterUpdateView:[609,1,1,""],EvenniaWebTest:[609,1,1,""],HelpDetailTest:[609,1,1,""],HelpListTest:[609,1,1,""],HelpLockedDetailTest:[609,1,1,""],IndexTest:[609,1,1,""],LoginTest:[609,1,1,""],LogoutTest:[609,1,1,""],PasswordResetTest:[609,1,1,""],RegisterTest:[609,1,1,""],WebclientTest:[609,1,1,""]},"evennia.web.website.tests.AdminTest":{unauthenticated_response:[609,4,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.ChannelDetailTest":{get_kwargs:[609,3,1,""],setUp:[609,3,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.ChannelListTest":{url_name:[609,4,1,""]},"evennia.web.website.tests.CharacterCreateView":{test_valid_access_multisession_0:[609,3,1,""],test_valid_access_multisession_2:[609,3,1,""],unauthenticated_response:[609,4,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.CharacterDeleteView":{get_kwargs:[609,3,1,""],test_invalid_access:[609,3,1,""],test_valid_access:[609,3,1,""],unauthenticated_response:[609,4,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.CharacterListView":{unauthenticated_response:[609,4,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.CharacterManageView":{unauthenticated_response:[609,4,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.CharacterPuppetView":{get_kwargs:[609,3,1,""],test_invalid_access:[609,3,1,""],unauthenticated_response:[609,4,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.CharacterUpdateView":{get_kwargs:[609,3,1,""],test_invalid_access:[609,3,1,""],test_valid_access:[609,3,1,""],unauthenticated_response:[609,4,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.EvenniaWebTest":{account_typeclass:[609,4,1,""],authenticated_response:[609,4,1,""],channel_typeclass:[609,4,1,""],character_typeclass:[609,4,1,""],exit_typeclass:[609,4,1,""],get_kwargs:[609,3,1,""],login:[609,3,1,""],object_typeclass:[609,4,1,""],room_typeclass:[609,4,1,""],script_typeclass:[609,4,1,""],setUp:[609,3,1,""],test_get:[609,3,1,""],test_get_authenticated:[609,3,1,""],test_valid_chars:[609,3,1,""],unauthenticated_response:[609,4,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.HelpDetailTest":{get_kwargs:[609,3,1,""],setUp:[609,3,1,""],test_object_cache:[609,3,1,""],test_view:[609,3,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.HelpListTest":{url_name:[609,4,1,""]},"evennia.web.website.tests.HelpLockedDetailTest":{get_kwargs:[609,3,1,""],setUp:[609,3,1,""],test_lock_with_perm:[609,3,1,""],test_locked_entry:[609,3,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.IndexTest":{url_name:[609,4,1,""]},"evennia.web.website.tests.LoginTest":{url_name:[609,4,1,""]},"evennia.web.website.tests.LogoutTest":{url_name:[609,4,1,""]},"evennia.web.website.tests.PasswordResetTest":{unauthenticated_response:[609,4,1,""],url_name:[609,4,1,""]},"evennia.web.website.tests.RegisterTest":{url_name:[609,4,1,""]},"evennia.web.website.tests.WebclientTest":{test_get:[609,3,1,""],test_get_disabled:[609,3,1,""],url_name:[609,4,1,""]},"evennia.web.website.views":{accounts:[612,0,0,"-"],channels:[613,0,0,"-"],characters:[614,0,0,"-"],errors:[615,0,0,"-"],help:[616,0,0,"-"],index:[617,0,0,"-"],mixins:[618,0,0,"-"],objects:[619,0,0,"-"]},"evennia.web.website.views.accounts":{AccountCreateView:[612,1,1,""],AccountMixin:[612,1,1,""]},"evennia.web.website.views.accounts.AccountCreateView":{form_valid:[612,3,1,""],success_url:[612,4,1,""],template_name:[612,4,1,""]},"evennia.web.website.views.accounts.AccountMixin":{form_class:[612,4,1,""],model:[612,4,1,""]},"evennia.web.website.views.channels":{ChannelDetailView:[613,1,1,""],ChannelListView:[613,1,1,""],ChannelMixin:[613,1,1,""]},"evennia.web.website.views.channels.ChannelDetailView":{attributes:[613,4,1,""],get_context_data:[613,3,1,""],get_object:[613,3,1,""],max_num_lines:[613,4,1,""],template_name:[613,4,1,""]},"evennia.web.website.views.channels.ChannelListView":{get_context_data:[613,3,1,""],max_popular:[613,4,1,""],page_title:[613,4,1,""],paginate_by:[613,4,1,""],template_name:[613,4,1,""]},"evennia.web.website.views.channels.ChannelMixin":{access_type:[613,4,1,""],get_queryset:[613,3,1,""],model:[613,4,1,""],page_title:[613,4,1,""]},"evennia.web.website.views.characters":{CharacterCreateView:[614,1,1,""],CharacterDeleteView:[614,1,1,""],CharacterDetailView:[614,1,1,""],CharacterListView:[614,1,1,""],CharacterManageView:[614,1,1,""],CharacterMixin:[614,1,1,""],CharacterPuppetView:[614,1,1,""],CharacterUpdateView:[614,1,1,""]},"evennia.web.website.views.characters.CharacterCreateView":{form_valid:[614,3,1,""],template_name:[614,4,1,""]},"evennia.web.website.views.characters.CharacterDeleteView":{form_class:[614,4,1,""]},"evennia.web.website.views.characters.CharacterDetailView":{access_type:[614,4,1,""],attributes:[614,4,1,""],get_queryset:[614,3,1,""],template_name:[614,4,1,""]},"evennia.web.website.views.characters.CharacterListView":{access_type:[614,4,1,""],get_queryset:[614,3,1,""],page_title:[614,4,1,""],paginate_by:[614,4,1,""],template_name:[614,4,1,""]},"evennia.web.website.views.characters.CharacterManageView":{page_title:[614,4,1,""],paginate_by:[614,4,1,""],template_name:[614,4,1,""]},"evennia.web.website.views.characters.CharacterMixin":{form_class:[614,4,1,""],get_queryset:[614,3,1,""],model:[614,4,1,""],success_url:[614,4,1,""]},"evennia.web.website.views.characters.CharacterPuppetView":{get_redirect_url:[614,3,1,""]},"evennia.web.website.views.characters.CharacterUpdateView":{form_class:[614,4,1,""],template_name:[614,4,1,""]},"evennia.web.website.views.errors":{to_be_implemented:[615,5,1,""]},"evennia.web.website.views.help":{HelpDetailView:[616,1,1,""],HelpListView:[616,1,1,""],HelpMixin:[616,1,1,""],can_read_topic:[616,5,1,""],collect_topics:[616,5,1,""],get_help_category:[616,5,1,""],get_help_topic:[616,5,1,""]},"evennia.web.website.views.help.HelpDetailView":{get_context_data:[616,3,1,""],get_object:[616,3,1,""],page_title:[616,3,1,""],template_name:[616,4,1,""]},"evennia.web.website.views.help.HelpListView":{page_title:[616,4,1,""],paginate_by:[616,4,1,""],template_name:[616,4,1,""]},"evennia.web.website.views.help.HelpMixin":{get_queryset:[616,3,1,""],page_title:[616,4,1,""]},"evennia.web.website.views.index":{EvenniaIndexView:[617,1,1,""]},"evennia.web.website.views.index.EvenniaIndexView":{get_context_data:[617,3,1,""],template_name:[617,4,1,""]},"evennia.web.website.views.mixins":{EvenniaCreateView:[618,1,1,""],EvenniaDeleteView:[618,1,1,""],EvenniaDetailView:[618,1,1,""],EvenniaUpdateView:[618,1,1,""],TypeclassMixin:[618,1,1,""]},"evennia.web.website.views.mixins.EvenniaCreateView":{page_title:[618,3,1,""]},"evennia.web.website.views.mixins.EvenniaDeleteView":{page_title:[618,3,1,""]},"evennia.web.website.views.mixins.EvenniaDetailView":{page_title:[618,3,1,""]},"evennia.web.website.views.mixins.EvenniaUpdateView":{page_title:[618,3,1,""]},"evennia.web.website.views.mixins.TypeclassMixin":{typeclass:[618,3,1,""]},"evennia.web.website.views.objects":{ObjectCreateView:[619,1,1,""],ObjectDeleteView:[619,1,1,""],ObjectDetailView:[619,1,1,""],ObjectUpdateView:[619,1,1,""]},"evennia.web.website.views.objects.ObjectCreateView":{model:[619,4,1,""]},"evennia.web.website.views.objects.ObjectDeleteView":{access_type:[619,4,1,""],model:[619,4,1,""],template_name:[619,4,1,""]},"evennia.web.website.views.objects.ObjectDetailView":{access_type:[619,4,1,""],attributes:[619,4,1,""],get_context_data:[619,3,1,""],get_object:[619,3,1,""],model:[619,4,1,""],template_name:[619,4,1,""]},"evennia.web.website.views.objects.ObjectUpdateView":{access_type:[619,4,1,""],form_valid:[619,3,1,""],get_initial:[619,3,1,""],get_success_url:[619,3,1,""],model:[619,4,1,""]},evennia:{accounts:[227,0,0,"-"],commands:[232,0,0,"-"],comms:[255,0,0,"-"],contrib:[259,0,0,"-"],help:[463,0,0,"-"],locks:[468,0,0,"-"],objects:[471,0,0,"-"],prototypes:[475,0,0,"-"],scripts:[480,0,0,"-"],server:[488,0,0,"-"],set_trace:[225,5,1,""],settings_default:[538,0,0,"-"],typeclasses:[539,0,0,"-"],utils:[544,0,0,"-"],web:[574,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":[49,101,102,124,221],"0000":[101,102],"0004":82,"0005":76,"001":[82,368],"003":143,"005":[61,545],"0157":221,"0247":82,"033":545,"034":82,"043thi":143,"050":[61,545],"054":61,"055":545,"0b16":206,"0d0":167,"0jyyngi":0,"0th":14,"0x045a0990":6,"100":[7,8,14,21,49,81,86,88,95,98,105,118,149,151,157,167,177,184,189,221,252,306,338,341,342,368,376,384,387,394,395,450,568,613,614],"1000":[0,8,44,149,167,178,212,221,338,405,417,478],"10000":613,"100000":[157,413],"1000000":[8,221,561],"100m":567,"100mb":217,"100x":0,"101":[21,474],"101m":567,"102":[118,395],"102m":567,"103m":567,"104m":567,"105m":567,"106m":567,"107m":567,"108m":567,"1098":49,"109m":567,"10m":208,"110":[118,395,545,553],"1100":395,"110m":567,"111":[56,240],"111m":567,"112m":567,"113":217,"113m":567,"114m":567,"115600":167,"115m":567,"116m":567,"117m":567,"118":48,"1184":205,"118m":567,"119m":567,"120":[21,377],"1200":[221,551],"1209600":221,"120m":567,"121m":567,"122m":567,"123":[85,126,195,474,555],"1234":[14,43,111,209,221,335],"123m":567,"124m":567,"125":[50,81,221],"125m":567,"126m":567,"127":[54,189,205,206,207,208,213,215,217,221,512],"127m":567,"128":61,"128m":567,"129m":567,"12s":20,"130m":567,"131m":567,"132m":567,"133m":567,"134":[56,240],"134m":567,"13541":501,"135m":567,"1369":0,"136m":567,"137m":567,"138m":567,"139m":567,"140":[0,6,49,225],"1400":551,"140313967648552":23,"140m":567,"141m":567,"142":[82,265],"142m":567,"143m":567,"144m":567,"145m":567,"146m":567,"147m":567,"148m":567,"149m":567,"150":550,"150m":567,"151m":567,"152m":567,"153m":567,"154m":567,"155m":567,"156m":567,"1577865600":175,"157m":567,"158m":567,"159m":567,"15th":100,"160":137,"1600":221,"160m":567,"161m":567,"162m":567,"163m":567,"164m":567,"165m":567,"166m":567,"167m":567,"168m":567,"169m":567,"16m":567,"170m":567,"171m":567,"172m":567,"1730":200,"173m":567,"174m":567,"175m":567,"1763":136,"1764":136,"176m":567,"177m":567,"178m":567,"179m":567,"17m":567,"180":377,"180m":567,"181m":567,"182m":567,"183m":567,"184m":567,"185m":567,"186m":567,"187m":567,"188m":567,"189m":567,"18m":567,"1903":136,"190m":567,"1912":0,"191m":567,"192m":567,"193m":567,"194m":567,"195m":567,"196m":567,"1970":[175,221],"197m":567,"198m":567,"199m":567,"19m":567,"1_7":11,"1d10":151,"1d100":[90,177,384],"1d2":167,"1d20":[90,152,161,384,417],"1d282":152,"1d4":[157,161,413],"1d6":[152,157,161,163,177,407,417],"1d8":[149,151,152,157,161,417],"1em":0,"1gb":217,"1kb":221,"1st":[32,59,100,175,555,568,571,572,573],"200":[118,221,395,609],"2000":[221,405],"2003":200,"2006":0,"2008":568,"200m":567,"2010":[2,567],"2011":[2,114,117,121,126,433,434,435,436,438,441],"2012":[2,76,78,79,80,90,91,94,126,279,281,312,313,345,346,383,384,397,399,400],"2013":2,"2014":[2,116,118,126,357,358,393,395],"2015":[2,96,112,121,126,206,325,326,389,390,391,431,438],"2016":[2,103,104,106,108,115,117,126,328,329,331,332,354,355,435,436],"2017":[2,77,84,85,89,98,100,107,113,119,120,122,123,126,175,217,267,268,276,277,298,300,315,316,337,338,339,340,341,342,360,362,386,387,446,447,457,458,460,462],"2018":[0,82,95,111,126,144,189,264,265,290,334,335,449,450],"2019":[0,66,93,94,106,126,200,302,345,346],"201m":567,"2020":[0,56,66,76,88,118,126,175,261,321,322,393,395,439],"2020_01_29":561,"2020_01_29__1":561,"2020_01_29__2":561,"2021":[51,66,86,87,109,124,126,295,296,318,319,363,571,572,616],"2022":[0,66,81,83,92,97,99,110,126,143,189,270,271,272,273,274,338,339,341,348,349,376,379,451,455,572],"2025":100,"202m":567,"203":217,"203m":567,"2048":208,"204m":567,"205":551,"2053":501,"205m":567,"206m":567,"2076":136,"207m":567,"208":186,"208m":567,"2099":76,"209m":567,"20m":567,"210m":567,"211m":567,"212":56,"2128":167,"212m":567,"213":50,"213m":567,"214":50,"214m":567,"215m":567,"216m":567,"217m":567,"218m":567,"219":189,"219m":567,"21m":567,"2207":[113,458],"220m":567,"221":546,"221m":567,"222":545,"222m":567,"223":56,"223m":567,"224m":567,"225":56,"225m":567,"226m":567,"227m":567,"228m":567,"229m":567,"22m":[545,567],"22nd":568,"230":61,"230m":567,"231m":567,"232m":567,"233":[56,240,555],"233m":567,"234":[85,126,268],"234m":567,"235m":567,"236m":567,"237":56,"237m":567,"238m":567,"239m":567,"23fwsf23sdfw23wef23":8,"23m":567,"2401":0,"240m":567,"241m":567,"2429":616,"242m":567,"243m":567,"244":44,"244m":567,"245m":567,"246m":567,"247m":567,"248m":567,"249m":567,"24m":567,"250m":567,"251m":567,"252m":567,"253m":567,"254m":567,"255":[206,545],"255m":567,"256":[56,61,239,545,567],"25m":567,"26m":567,"27m":567,"280":204,"28gmcp":516,"28m":567,"29m":567,"2d10":[90,126,417],"2d20":[149,161,417],"2d6":[90,161,169,384,417],"2gb":217,"2nd":[32,59,310,555,568,571,572,573],"2nd_person_pronoun":572,"2sgpre":573,"2xcoal":323,"300":[61,188,277,409,556],"302":609,"30m":[545,567],"30s":368,"31m":[545,567],"31st":175,"32bit":[206,215],"32m":[545,567],"32nd":169,"333":56,"33m":[545,567],"340":167,"343":32,"34m":[545,567],"358":51,"358283996582031":8,"35m":[545,567],"360":175,"3600":[175,221,409],"36m":[545,567],"37m":[545,567],"3872":136,"38m":567,"39m":567,"3c3ccec30f037be174d3":568,"3d10":[90,384],"3d6":[384,417],"3rd":[32,59,175,310,555,571,572,573],"3rd_person_pronoun":572,"3sgpast":571,"3sgpre":[571,573],"4000":[4,130,189,208,210,211,212,213,215,217,219,221],"4001":[4,50,51,52,53,54,74,165,189,192,194,195,197,207,208,210,211,212,213,215,217,219,221,521],"4002":[4,207,208,212,217,221],"4003":[217,221],"4004":[217,221],"4005":[217,221],"4006":[217,221],"404":[54,197],"40m":[545,567],"41917":512,"41m":[545,567],"4201":217,"425":545,"42m":[545,567],"430000":175,"431":545,"43m":[545,567],"443":[207,208,219,221],"44m":[545,567],"45m":[20,545,567],"46m":[545,567],"474a3b9f":42,"47m":[545,567],"48m":567,"49m":567,"4er43233fwefwfw":189,"4th":[124,128,200],"500":[54,61,124,188,221,370,545,616],"500red":545,"502916":11,"503435":11,"505":545,"50m":567,"50mb":217,"516106":167,"51m":567,"520":61,"52m":567,"530":143,"53m":567,"543":[32,555],"5432":205,"54343":32,"5434343":555,"54m":567,"550":[545,551],"555":[61,113,458,545],"55m":567,"565000":175,"566":44,"56m":567,"577349":567,"57m":567,"58m":567,"593":568,"59m":567,"5d5":167,"5mb":76,"5x5":105,"600":568,"6000":221,"604800":409,"60m":567,"61m":567,"624660":51,"62cb3a1a":42,"62m":567,"63m":567,"64m":567,"64x64":54,"65m":567,"6666":63,"6667":[202,229,247,533],"66m":567,"67m":567,"686":59,"68m":567,"69m":567,"6d6":167,"6em":0,"70982813835144":8,"70m":567,"71m":567,"72m":567,"73m":567,"74m":567,"75m":567,"760000":175,"76m":567,"775":4,"77m":567,"78m":567,"79m":567,"7a3d54":54,"800":221,"8080":217,"80m":567,"8111":4,"81m":567,"82m":567,"83m":567,"84m":567,"85m":567,"8601":221,"86400":198,"86m":567,"87m":567,"8859":[17,72,221,254],"88m":567,"89m":567,"8f64fec2670c":217,"900":[95,450,551],"9000":608,"90m":567,"90s":569,"91m":567,"92m":567,"93m":567,"94608000":76,"94m":567,"95m":567,"96m":567,"97m":567,"981":[113,458],"98m":567,"990":551,"999":341,"99999":147,"999999999999":371,"99m":567,"\u6d4b\u8bd5":1,"abstract":[0,69,120,124,131,137,305,342,412,540,541,542,559,562,568],"ansl\u00f6t":66,"boolean":[0,14,15,19,23,32,52,81,95,133,161,194,237,384,450,470,474,485,512,540,543,545,546,562,569],"break":[0,6,7,11,12,16,32,33,49,52,55,56,61,66,71,105,109,126,141,143,144,147,149,157,161,163,168,169,173,186,209,219,221,225,242,249,250,296,332,364,373,406,434,501,545,551,552,553,568],"byte":[0,14,17,20,32,72,187,221,492,494,501,503,512,520,568],"case":[0,1,6,7,11,14,15,16,17,19,20,21,23,29,33,34,35,39,41,43,45,46,49,50,51,52,53,54,55,56,61,63,66,67,69,70,71,72,76,81,82,87,93,100,101,105,112,124,125,128,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,150,151,152,155,157,163,169,172,174,175,178,179,180,182,186,191,194,196,197,205,207,212,215,216,218,219,221,228,229,230,234,236,237,239,242,248,249,250,256,257,263,265,288,313,316,319,322,323,346,364,371,373,384,391,392,394,410,434,442,448,450,458,464,465,466,469,470,472,474,478,482,484,497,501,505,509,523,530,533,540,541,542,543,545,547,551,555,559,565,566,568,572,576,600],"catch":[0,9,17,20,29,38,44,48,140,152,169,173,183,186,229,248,256,303,442,483,492,497,504,530,531,540,550,552,553,559,564,617],"char":[0,11,14,45,70,83,96,100,105,124,136,139,167,169,177,178,194,198,204,221,228,242,248,305,306,326,370,373,405,417,442,474,489,502,515,516,537,545,554],"class":[0,1,2,6,9,13,14,18,19,21,24,27,29,30,32,33,39,41,43,44,45,47,50,51,53,54,55,56,57,63,66,69,74,78,81,83,84,86,87,88,90,93,94,96,97,99,103,108,109,112,113,115,116,118,122,123,124,126,128,129,130,131,132,133,134,135,136,137,140,141,142,145,147,152,155,157,158,161,163,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,190,191,194,195,196,198,204,221,228,229,230,231,232,235,236,237,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,256,257,258,263,265,266,269,271,272,273,274,275,277,278,281,282,284,285,287,288,290,296,297,299,300,303,304,305,306,307,308,309,310,313,314,316,317,319,320,322,323,324,326,327,329,330,332,333,335,336,338,339,340,341,342,343,346,347,349,355,356,358,359,361,362,364,365,368,370,371,372,373,376,377,378,380,382,384,385,388,390,391,392,394,395,400,401,405,406,407,408,409,410,411,412,413,414,416,417,418,420,421,422,423,424,425,426,427,428,429,432,434,436,437,439,440,441,442,443,447,448,450,452,453,456,458,459,461,462,464,465,466,470,471,472,473,474,476,478,479,481,482,483,484,485,486,487,489,490,492,494,495,498,499,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,523,525,528,530,531,532,533,535,536,537,539,540,541,542,543,545,546,547,548,549,550,551,552,553,554,555,556,558,559,560,561,562,563,564,565,566,567,568,573,576,577,578,580,581,582,583,584,586,588,589,590,591,592,594,597,599,600,602,603,608,609,612,613,614,616,617,618,619,620],"const":[300,417],"default":[0,2,4,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,29,33,37,38,39,41,43,44,45,46,47,49,50,51,53,55,56,57,58,61,63,64,65,66,67,69,70,72,73,74,75,76,77,78,81,82,83,84,85,86,87,88,89,91,93,94,95,96,97,98,99,100,101,102,104,105,106,108,109,110,112,116,118,119,120,122,123,126,128,129,130,131,132,133,134,135,136,137,138,140,142,143,144,145,149,150,151,152,155,157,161,163,165,167,168,169,172,174,175,178,179,180,181,182,183,185,186,187,188,189,191,192,193,194,195,196,197,201,202,204,207,208,210,211,212,213,215,217,219,220,222,225,226,228,229,231,232,233,234,235,236,237,256,257,258,265,268,271,272,273,274,275,277,281,285,287,288,296,300,303,305,306,307,308,310,313,316,319,322,326,329,332,335,338,339,340,341,342,346,349,355,358,361,362,364,367,370,371,372,373,376,380,384,387,390,391,394,395,405,407,408,409,411,412,413,417,432,434,436,440,442,446,447,448,450,452,462,463,464,465,466,467,468,470,472,474,478,479,482,483,485,486,487,490,492,494,496,497,498,502,514,515,516,521,523,524,530,531,532,533,537,538,540,541,542,543,545,547,548,550,551,552,553,554,555,558,559,561,562,563,564,565,566,568,569,573,576,588,594,599,600,608,614,616,617,618,619,620],"dezhv\u00f6zh":110,"elsd\u00f6rfer":76,"enum":[132,155,158,161,225,226,259,396,402,413,417],"export":[76,211],"final":[4,20,23,43,45,49,54,55,61,66,67,69,92,100,128,133,135,136,137,139,140,141,146,152,169,172,177,178,181,187,188,191,193,194,195,196,197,205,208,213,219,233,234,235,242,247,251,322,349,370,384,414,462,470,474,479,529,533,545,547,552,553],"float":[0,32,81,118,128,141,182,229,277,286,287,290,319,376,395,486,492,504,541,555,556,564,568],"function":[0,1,3,6,8,10,11,12,14,15,16,20,23,24,27,29,30,33,34,41,43,44,46,48,49,50,52,53,55,58,59,61,63,65,67,69,70,71,74,75,76,77,78,81,88,89,90,95,97,98,100,101,104,105,109,110,112,114,118,119,120,123,124,126,128,130,131,132,133,134,135,136,138,139,140,141,142,144,146,147,150,151,152,155,157,161,163,165,168,169,172,174,175,177,179,180,183,184,186,187,189,191,192,194,195,196,197,205,211,218,220,221,225,228,231,234,236,237,239,240,241,242,243,247,248,249,250,252,253,254,256,257,265,274,277,280,286,287,290,292,296,300,303,305,310,313,316,319,322,324,329,335,338,339,340,341,342,346,349,355,362,370,371,372,376,377,384,387,390,391,395,408,417,427,434,439,441,442,448,450,452,462,466,468,469,470,474,477,478,479,483,485,486,487,492,496,497,501,512,513,518,521,524,531,533,535,542,543,544,545,546,548,549,550,552,553,555,556,561,562,563,566,567,568,569,572,592,594,597,617,618,619,620],"g\u00e9n\u00e9ral":200,"god\u00f6g\u00e4k":110,"goto":[0,124,152,184,364,407,439,552],"import":[0,1,5,6,7,8,10,11,13,14,15,16,17,19,20,21,23,27,29,30,32,33,34,35,36,37,39,41,44,45,46,47,48,49,50,51,52,54,55,57,58,59,63,67,69,72,74,75,78,81,82,83,84,85,86,87,88,89,90,93,94,95,96,97,98,99,100,101,102,103,104,105,108,109,110,112,115,116,118,119,122,123,125,126,129,130,131,132,133,135,136,138,139,140,141,142,145,147,149,150,151,152,155,157,161,163,165,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,202,204,209,216,217,218,219,220,221,225,236,242,252,265,268,269,277,290,296,300,310,313,316,319,322,329,332,338,339,340,341,342,346,349,355,358,362,384,387,390,391,394,395,408,410,417,434,441,442,450,458,462,465,470,478,479,487,492,496,501,504,505,526,530,533,534,540,542,546,547,550,551,552,553,554,555,565,566,568,599,619],"int":[0,7,14,21,29,32,34,44,49,81,95,118,122,124,139,143,152,157,161,163,167,169,181,182,186,191,194,195,228,229,230,234,235,237,257,277,284,286,287,290,300,310,313,316,319,338,339,340,341,342,349,370,371,373,384,387,391,395,405,409,410,411,417,450,455,462,467,472,474,479,481,484,486,487,489,490,492,497,501,502,503,504,506,510,511,512,520,521,523,533,535,537,540,541,545,548,550,551,552,553,554,555,556,559,561,565,568,571],"k\u00e4kudhu":110,"k\u00f6dh\u00f6ddoson":110,"k\u00f6n":110,"kh\u00e4k":110,"long":[0,7,11,12,14,17,19,20,23,24,29,30,32,33,35,38,45,48,49,55,63,69,71,72,73,74,81,82,92,100,101,105,110,112,121,123,124,126,128,131,133,134,139,141,143,144,149,150,155,157,169,172,174,175,177,180,182,183,184,188,189,192,194,199,200,202,204,205,217,221,223,239,249,281,287,300,313,323,335,341,358,371,376,408,409,413,501,506,521,545,546,551,553,554,555,568,571],"n\u00fa\u00f1ez":76,"new":[1,2,4,8,10,12,13,14,15,16,19,20,21,23,24,25,26,27,29,33,35,36,37,39,41,42,43,45,46,47,50,51,52,56,57,58,62,63,66,67,70,71,73,74,79,82,83,86,87,93,94,95,102,105,110,111,112,115,116,119,121,123,124,125,126,127,128,130,131,132,133,134,135,136,137,140,141,142,143,144,145,146,147,148,150,151,152,155,158,161,163,164,166,168,172,174,175,176,177,178,179,180,181,182,186,187,189,190,191,193,195,199,200,201,202,203,204,205,206,208,209,211,212,213,215,216,217,220,221,222,223,228,229,230,235,236,237,239,240,242,247,249,250,253,254,256,257,265,271,273,281,284,287,296,303,304,305,308,310,316,319,322,329,332,335,338,340,342,346,349,355,358,362,364,370,371,372,373,380,390,391,392,395,405,406,407,408,409,412,414,418,440,441,442,450,452,455,458,462,464,466,470,472,473,474,476,478,479,481,482,485,486,487,489,492,501,502,503,504,510,511,512,517,524,532,533,537,540,541,542,543,545,546,548,551,552,553,554,559,561,562,568,576,578,581,582,609,614,616,618,620],"null":[50,69,77,133,207,376,577,584],"public":[0,12,19,54,76,77,93,133,138,149,169,195,201,202,208,212,217,219,221,222,228,247,256,474,537,554],"return":[0,1,4,6,7,8,9,11,14,17,19,20,23,24,27,30,32,33,34,35,39,41,43,44,46,47,49,50,52,53,54,55,59,61,63,66,71,81,82,86,87,88,95,100,104,105,110,113,118,119,123,124,128,131,132,133,134,135,139,140,141,142,145,146,151,152,155,157,161,163,165,169,170,171,172,173,175,176,177,178,179,180,181,182,183,184,186,187,191,192,194,195,196,197,200,204,212,215,218,221,224,228,229,230,231,233,234,235,236,237,239,242,247,249,252,253,256,257,258,263,265,271,273,274,277,280,284,285,286,287,290,292,300,303,304,305,306,308,310,313,316,319,322,329,335,338,339,340,342,346,349,355,362,364,370,371,372,373,376,377,380,384,387,390,391,394,395,400,405,406,407,409,410,411,412,413,414,417,418,430,434,439,440,441,442,447,448,450,455,458,462,464,465,466,467,469,470,472,473,474,476,477,478,479,481,483,484,485,486,487,489,490,492,497,498,501,502,504,505,506,507,509,510,511,512,513,515,516,517,519,520,521,523,524,530,531,533,535,536,537,540,541,542,543,545,546,547,548,549,550,552,553,554,555,556,559,561,562,563,564,565,566,567,568,569,571,572,576,577,578,580,581,582,584,586,588,589,591,597,599,601,608,613,614,616,617,619,620],"short":[6,7,12,14,29,38,39,47,52,59,61,67,75,82,100,101,112,122,124,126,134,139,143,149,152,161,168,169,171,172,175,181,191,204,209,218,219,221,247,265,287,300,305,316,332,371,390,391,452,479,546,568,571],"static":[33,50,52,53,54,74,76,79,105,112,117,126,128,138,139,149,169,193,196,221,225,226,252,259,265,284,374,391,393,394,418,436,465,478,479,537,548,588,589,591,597,606,617],"super":[1,11,21,39,49,62,63,82,83,84,88,100,139,144,151,161,168,169,170,175,180,182,183,191,196,210,265,316,391],"switch":[0,1,7,12,13,15,16,19,21,23,27,33,41,49,55,57,58,70,79,100,101,102,103,104,108,126,134,152,169,171,178,180,188,189,191,201,202,203,205,217,221,239,240,241,242,247,248,249,250,252,254,257,296,305,308,329,332,335,339,346,364,384,434,482,542,548,553,569,620],"t\u00f6zhkheko":110,"throw":[12,14,43,64,82,132,194,211,236,417,486,568],"true":[0,1,7,11,13,14,15,19,20,21,23,27,29,32,33,34,35,36,38,39,41,44,45,48,49,50,51,52,53,54,55,61,63,64,65,66,69,74,76,81,82,85,86,89,95,100,110,123,124,133,134,138,139,140,141,145,146,149,151,161,167,169,172,175,178,179,180,182,184,185,186,187,188,191,192,194,196,197,198,201,202,203,209,212,217,221,228,230,231,233,235,236,237,239,242,247,249,250,253,256,257,258,265,268,272,277,284,287,296,303,304,305,308,310,313,316,319,322,323,335,338,340,341,355,362,370,371,372,373,376,377,384,387,390,391,395,405,407,409,414,416,417,434,439,440,450,455,456,458,462,464,466,469,470,472,473,474,476,478,479,481,482,483,484,485,486,487,490,492,497,498,501,503,510,515,520,521,531,533,535,537,540,541,542,543,545,548,550,551,552,553,554,555,556,559,563,564,565,566,568,569,573,576,577,578,580,581,582,583,584,589,616],"try":[0,1,6,8,9,14,15,17,19,20,27,29,32,33,34,35,41,44,51,52,55,56,57,59,64,66,69,71,72,74,75,81,82,88,93,100,101,102,105,114,115,116,118,123,124,125,128,130,131,132,133,134,135,136,137,139,140,141,142,143,144,146,147,148,150,155,157,158,161,163,164,166,167,168,169,170,172,173,174,177,179,180,181,182,183,184,186,188,189,191,192,193,194,195,196,197,198,201,205,207,208,209,211,215,217,218,219,221,228,231,235,237,242,256,258,265,266,269,277,281,288,313,322,338,339,340,341,342,355,358,362,370,373,390,391,394,395,417,434,440,441,442,458,464,466,472,474,478,489,492,501,516,517,521,535,540,542,545,547,548,550,551,555,564,568,577,584],"var":[0,52,70,104,205,208,446,516,546],"void":167,"while":[0,1,8,12,14,15,16,19,21,23,25,27,29,32,37,41,44,50,52,55,59,61,66,67,69,71,73,76,81,82,95,100,102,105,110,111,112,121,123,124,125,127,128,130,132,134,135,137,138,139,142,143,144,145,146,147,149,151,152,161,167,168,169,171,172,174,175,178,180,182,183,186,189,193,194,195,196,205,208,211,213,216,217,218,221,228,239,242,249,250,253,288,313,322,335,339,342,362,370,373,391,405,407,409,410,412,413,417,434,440,442,450,458,474,478,479,485,516,539,540,542,543,551,552,554,555,566,568,569,577,584,617],AIs:200,AND:[35,41,95,136,177,196,242,450,470,540,543],ARE:29,AWS:[126,212,217,261],Added:0,Adding:[1,22,23,24,41,43,62,71,86,94,99,132,138,142,143,149,161,168,174,176,178,204,249,346,349,370,552,620],Age:[95,450,608],And:[1,4,6,12,19,23,24,29,45,55,69,81,82,84,100,101,102,105,119,139,143,144,150,168,172,175,177,179,186,188,194,197,236,316,338,339,340,341,342,373,462,620],Are:[23,132,134,147,200,552],Aye:101,BGs:188,Being:[100,143,146,169,191],But:[1,11,12,14,15,17,19,20,21,23,29,33,41,43,44,46,49,52,55,59,61,67,69,78,81,82,92,93,100,102,105,118,124,128,130,131,133,134,135,136,138,139,140,141,143,144,145,147,149,150,151,155,161,163,164,168,170,172,174,175,177,181,186,187,188,194,195,197,202,207,208,209,212,220,221,235,236,313,373,395,416,478,543,618],DNS:[208,217],DOING:[95,450],DoS:[8,221,510],Doing:[12,23,44,81,130,133,136,141,167,172,177,195,236,239],For:[0,1,3,4,5,7,8,9,12,13,14,15,16,18,19,20,21,23,29,32,33,35,37,39,40,43,44,45,49,50,51,52,53,54,56,57,58,59,60,61,66,67,69,70,72,73,74,75,76,77,81,82,84,88,90,93,95,96,100,101,102,104,105,110,117,119,124,125,128,130,131,133,134,135,136,138,139,141,143,144,145,149,151,152,155,157,161,167,168,169,171,172,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,202,203,205,207,208,212,213,214,217,218,219,221,228,235,236,237,242,247,249,252,256,257,258,265,290,305,316,324,326,339,346,355,371,373,376,384,391,395,405,407,411,413,418,436,440,450,452,462,464,466,469,470,474,479,486,512,516,521,540,542,545,549,551,552,555,562,564,566,568,593,601,608,618],GMs:[149,169],Going:[122,149,150,300,620],HPs:161,Has:[206,338,339,340,341,342],His:[96,168,326],IDE:[7,10,128,176],IDEs:168,IDs:[102,194,195,212,286,540,568,591],INTO:[95,242,364,450],IOS:206,IPs:[56,205,219,221,446,535],IRE:[70,516],Its:[9,23,35,39,44,45,59,67,69,96,175,197,247,326,434,479,550,552,568],NOT:[1,23,35,52,92,121,126,132,142,217,221,242,371,470,479,535,555],Near:137,Not:[0,19,34,47,48,52,59,61,71,100,133,136,143,144,147,150,152,163,168,173,190,194,206,207,209,217,229,236,250,474,489,502,503,504,506,507,508,514,516,519,540,541,562],OBS:[58,221],ONE:219,Obs:221,One:[0,3,5,29,32,35,38,44,45,48,56,59,78,82,90,93,100,101,102,110,118,119,126,128,131,133,134,136,139,140,143,144,145,149,152,161,168,169,172,180,182,186,188,190,191,196,197,205,207,215,218,223,225,231,233,249,305,313,319,322,370,371,373,376,384,390,395,406,407,409,418,440,441,462,472,478,479,502,530,540,541,545,546,552,553,555,568,577,584,616],PCs:[151,407,412],Such:[11,15,23,29,51,100,131,141,147,149,168,171,177,242,479,545,552],THAT:186,THE:[95,450],THEN:[95,236,450],THERE:[95,450],TLS:[219,221],That:[1,6,7,8,9,12,14,17,21,23,32,34,41,43,44,45,47,48,49,55,75,78,81,82,87,91,100,101,102,105,118,119,124,128,130,131,133,134,136,137,139,140,141,143,146,149,151,152,155,157,161,163,165,168,171,175,177,179,181,182,185,186,189,193,195,196,197,203,223,265,281,296,313,319,371,395,462,470,479,533,552,593],The:[0,1,2,4,5,6,7,9,10,11,12,13,14,17,18,19,20,21,23,24,26,30,34,35,36,37,38,39,42,45,46,47,48,49,50,52,53,54,56,59,61,62,63,64,65,66,69,70,71,72,73,75,76,77,78,79,81,82,84,87,88,89,90,91,93,94,95,96,97,98,99,102,103,104,105,111,112,113,114,115,116,118,119,120,121,122,123,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,148,149,151,152,155,158,161,163,166,167,168,171,172,173,174,175,176,177,179,180,183,186,187,188,189,190,192,193,194,195,196,198,199,200,202,203,205,206,207,208,209,211,212,213,214,215,216,217,218,219,220,221,222,228,229,230,231,233,234,235,236,237,239,242,246,247,248,249,250,251,252,253,254,256,257,258,265,271,272,273,274,275,277,280,281,284,285,286,287,290,292,300,303,304,305,306,308,310,313,316,319,322,323,326,329,335,338,339,340,341,342,346,349,355,358,362,364,367,370,371,372,373,376,377,380,384,387,390,391,395,400,405,407,408,409,410,411,412,413,414,416,417,418,430,432,434,439,440,441,442,450,452,455,458,462,463,464,465,466,467,469,470,472,473,474,476,477,478,479,481,482,483,484,485,486,487,489,490,491,492,494,496,497,499,501,502,503,504,505,506,507,508,509,510,511,512,514,515,516,517,519,520,521,523,524,529,530,531,532,533,537,540,541,542,543,545,546,547,548,549,550,551,552,553,554,555,556,557,559,561,562,563,564,565,566,567,568,569,571,572,573,577,578,584,588,589,591,593,594,597,599,608,616,617,620],Their:[29,43,54,96,177,219,326],Theirs:[96,326],Then:[6,8,11,12,17,46,52,54,66,82,86,94,97,99,100,101,102,107,110,124,128,139,161,167,181,186,189,192,196,197,212,213,215,223,346,349,365],There:[0,1,3,8,11,12,14,15,16,17,19,20,21,23,29,32,33,39,41,44,45,46,47,49,50,51,54,55,58,59,61,69,70,71,72,76,79,81,82,93,94,95,97,100,101,102,105,118,119,123,124,128,131,133,134,135,136,137,138,139,140,141,143,145,147,149,150,151,152,155,161,168,169,172,175,177,178,179,180,182,183,184,186,191,193,194,196,197,202,203,205,207,208,217,219,220,250,322,338,339,340,341,342,346,362,370,395,414,450,462,479,487,497,516,533,545,546,552,555],These:[0,1,7,8,11,12,14,15,18,23,24,25,29,32,33,34,37,43,44,45,46,47,49,51,52,53,54,59,63,65,67,69,70,82,84,86,88,93,100,102,105,110,111,112,114,124,126,128,133,134,135,136,138,143,144,145,149,151,161,172,176,177,180,181,182,186,194,197,201,208,212,214,216,217,218,219,221,227,228,233,235,237,239,241,243,247,251,257,265,277,290,322,329,335,368,370,371,373,390,391,395,408,412,413,417,434,442,447,464,465,470,474,478,479,487,491,498,517,520,521,523,532,533,534,540,542,545,549,551,552,553,554,555,561,562,563,568,572,576,585,618],Tying:[132,158],USING:322,Use:[0,5,8,11,12,13,15,16,21,29,32,33,37,39,43,45,49,52,56,59,61,78,80,81,82,91,103,104,106,113,114,117,124,128,132,134,136,141,143,144,146,158,169,178,189,191,192,197,201,205,206,207,208,209,210,212,213,215,217,221,222,228,234,239,240,242,247,248,249,252,254,256,265,266,277,281,300,303,313,322,329,332,335,339,340,341,342,366,376,391,407,423,436,458,464,472,473,474,492,494,498,503,520,521,523,527,540,542,545,552,554,555,559,565,568,581,620],Used:[0,23,152,163,180,221,233,236,242,254,332,362,369,370,373,376,417,450,462,472,473,485,494,512,540,542,553,554,566,568,576],Useful:[29,81,124,217,442,474],Uses:[24,92,163,242,254,281,440,446,492,540,554,555,559],Using:[0,2,9,12,20,24,29,35,37,41,48,59,62,65,82,88,101,114,126,130,132,136,139,140,141,142,143,144,148,149,155,158,166,169,170,172,175,176,180,186,191,210,217,225,226,259,300,339,374,375,391,393,434,474,512,539,551,552,620],VCS:4,VHS:[95,450],VPS:217,WILL:[186,206],WIS:[152,161,163,169,410],WITH:[29,95,205,450],Was:247,Will:[21,24,34,113,124,132,134,147,218,228,247,277,308,310,322,373,391,408,414,458,474,477,479,490,492,501,502,542,551,552,554,555,556,563,568],With:[0,14,17,19,29,38,54,58,76,100,105,124,130,133,136,140,145,146,147,149,151,155,157,161,163,168,184,191,196,205,207,212,221,225,228,265,322,371,391,479,540,545,555],Yes:[23,95,100,139,170,450,550,552],__1:561,__2:561,_________________:49,_________________________:29,___________________________:119,______________________________:29,_______________________________:119,________________________________:29,_________________________________:49,______________________________________:552,_________________________________________:29,______________________________________________:29,_______________________________________________:29,____________________________________________________:29,_________________________________________________________:184,__________________________________________________________:184,_______________________________________________________________:119,________________________________________________________________:119,__all__:[576,578,580,581],__defaultclasspath__:542,__deserialize_dbobjs__:[0,14,187,407],__dict__:492,__doc__:[23,33,237,250,252,253,465,466,548,552],__example__:9,__file__:221,__ge:136,__ge__:9,__getitem__:545,__gt:136,__iendswith:136,__in:136,__init_:554,__init__:[9,14,46,49,63,82,125,129,137,138,139,144,152,155,163,165,182,187,221,235,236,237,258,265,271,272,273,274,284,300,308,313,319,322,349,369,370,371,376,377,391,395,406,407,411,414,418,458,464,470,473,474,478,483,484,486,487,489,490,492,494,495,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,519,520,521,523,530,531,533,535,536,537,540,542,543,545,547,550,551,552,553,554,555,561,562,563,564,568,576,577,581,584,599,602],__istartswith:136,__iter__:14,__le:136,__lt:136,__multimatch_command:251,__noinput_command:[235,251,265,550,552,553],__nomatch_command:[251,265,303,442,550,552,553],__packed_dbobj__:51,__pycache__:138,__repr__:157,__serialize__dbobjs__:187,__serialize_dbobjs__:[0,14,187,407],__settingsclasspath__:542,__str__:616,__unloggedin_look_command:[26,254,281],_abil:152,_action_thre:29,_action_two:29,_actual_myfunc_cal:29,_all_:235,_always_:[322,555],_and_:[555,568],_answer:501,_ask_again:29,_asynctest:[443,518],_attrs_to_sync:532,_attrtyp:540,_buy_item:184,_by_tag:20,_cach:542,_cached_cmdset:236,_calculate_mod:81,_call_or_get:265,_callable_no:552,_callable_y:552,_callback:[20,487],_can_:543,_char_index:545,_check_password:29,_check_usernam:29,_clean_nam:263,_clean_str:545,_cleanup_charact:178,_code_index:545,_compress_cont:263,_copi:[242,474],_create_charact:194,_creation:49,_current_step:187,_damag:[81,376],_dashlin:32,_data:553,_default:[29,152,552],_defend:29,_destroy_:418,_differ:545,_dmg:[81,376],_errorcmdset:236,_event:[100,290],_every_:322,_evmenu:[0,1,29,184,552],_evmnenu:29,_file:561,_flag:478,_footer:23,_format_diff_text_and_opt:479,_funcnam:568,_gambl:29,_get_a_random_goblin_nam:43,_get_db_hold:[531,542],_get_top:197,_getinput:552,_gettabl:497,_guaranteed_:555,_handle_answ:29,_helmet_and_shield:152,_helper:555,_http11clientfactori:494,_init_charact:178,_is_fight:172,_is_in_mage_guild:29,_ital:128,_italic_:209,_knave_:[407,411,412,413,415,417],_last_puppet:[51,581],_linklen:371,_load:[155,187],_loadfunc:550,_magicrecip:323,_maptest:368,_menutre:[0,552],_mockobj:394,_monitor:497,_monitor_callback:36,_nicklist_cal:229,_noprefix:237,_npage:553,_obj_stat:163,_oob_at_:559,_option:29,_overrid:74,_page_formatt:553,_pagin:553,_parsedfunc:555,_pending_request:537,_perman:35,_permission_hierarchi:469,_ping_cal:229,_playabel_charact:51,_playable_charact:[0,152,194,197,581],_postsav:559,_power_cal:32,_prefix:391,_process_cal:32,_quell:469,_quest:414,_quest_a_flag:414,_quitfunc:550,_random_:152,_raw_str:545,_reactor_stop:[509,530],_read:395,_recog_obj2recog:391,_recog_ref2recog:391,_regex:391,_repeat:497,_safe_contents_upd:473,_save:[155,187],_savefunc:550,_saver:[0,14,549],_saverdict:[14,395,549],_saverlist:[14,549],_saverset:549,_sdesc:391,_select:29,_select_ware_to_bui:418,_select_ware_to_sel:418,_sensitive_:600,_session:552,_set_attribut:29,_set_nam:29,_shared_login:0,_should:132,_skill_check:29,_some_other_monitor_callback:36,_start_delai:487,_static:128,_step:371,_stop_:568,_stop_serv:509,_swap_abl:152,_swordsmithingbaserecip:323,_temp_sheet:152,_templat:128,_test:[32,233],_test_environ:221,_to_evt:553,_traithandlerbas:394,_transit_:373,_try_again:29,_typeclass:54,_update_nam:152,_uptim:32,_validate_fieldnam:169,_weight:371,_yes_no_quest:552,a2enmod:207,a77d568709ea6c7905c2d58d3cafa74bd7466278:[253,452],a8oc3d5b:212,a_off:313,aaaaaargh:143,aardwolf:70,aaron:0,abandon:[149,303,414],abandoned_text:414,abat:150,abbrevi:[66,242,323,332,555],abcd:248,abi1:152,abi2:152,abi:410,abid:[12,125,188,551],abil:[0,14,21,23,30,35,43,52,55,71,100,112,116,124,126,132,134,138,143,146,149,151,155,157,158,161,163,167,168,169,171,177,191,195,212,217,221,338,339,340,342,358,390,391,405,406,410,412,417,474,485,492,540,612],abilit:152,ability_chang:152,ability_nam:[151,161],abival1:152,abival2:152,abl:[0,4,5,6,8,10,12,14,15,16,19,20,21,23,29,30,32,35,38,39,43,44,51,53,54,58,69,75,82,88,93,98,100,102,105,109,115,118,124,128,130,131,132,134,135,136,141,142,143,146,147,150,151,152,155,157,161,165,168,169,170,171,172,177,178,179,180,182,184,186,187,191,194,195,196,197,204,205,207,208,211,212,215,217,219,221,236,239,240,242,243,247,249,256,258,265,277,305,329,338,339,340,341,342,349,355,366,370,371,387,395,407,416,417,418,540,542,549,564,568,609],abort:[0,1,20,23,29,30,39,116,124,126,140,145,152,155,157,221,228,237,242,256,303,316,322,358,364,371,405,442,452,474,477,485,552,553,555,568],abound:149,about:[0,1,2,4,6,7,8,12,14,15,16,17,18,21,23,24,26,29,32,33,37,40,43,47,50,51,54,55,56,57,67,69,71,72,74,77,81,82,87,100,101,102,125,126,127,128,130,131,132,133,134,136,137,138,139,140,141,142,143,145,146,147,148,150,155,157,158,161,163,164,165,166,168,172,173,174,177,178,179,181,183,186,187,188,189,191,192,193,195,196,197,198,199,200,204,205,206,207,209,211,212,213,215,217,218,219,220,221,223,228,242,249,252,265,274,303,305,306,313,316,319,322,340,341,342,368,370,376,378,384,391,407,411,418,430,436,441,442,466,474,492,494,497,506,508,510,519,521,523,524,531,533,540,541,543,545,553,559,568,577,584,591,620],abov:[0,4,8,10,11,13,14,15,16,20,21,23,27,29,32,33,34,35,36,43,44,45,47,49,50,52,53,54,55,56,59,61,63,66,69,74,75,76,81,82,86,88,93,98,100,101,103,104,105,110,112,113,118,124,125,131,134,136,138,139,141,143,144,145,149,151,155,161,163,167,168,169,171,172,173,174,175,178,179,180,182,183,184,186,189,190,191,194,197,205,206,207,208,212,213,217,218,221,235,236,242,265,310,322,329,338,340,341,342,358,364,370,384,387,391,395,405,417,436,450,458,462,470,472,474,497,552,555,563,577],above_str:32,abruptli:[118,395],abs:161,absolut:[0,20,54,96,128,163,167,175,176,186,221,277,316,326,384,551,554,556,568],absorb:34,abspath:[221,568],abstractus:231,abus:[62,77,219],academi:200,acccept:140,acccount:185,accept:[0,14,16,19,20,21,29,32,34,35,48,49,70,78,81,82,86,95,100,110,112,116,124,141,143,149,152,169,194,195,205,209,217,221,228,233,234,252,285,288,313,358,370,371,373,384,390,408,440,442,450,458,474,492,497,510,536,537,541,546,552,555,564,568],accept_callback:[285,287],access:[0,1,11,14,15,16,19,20,21,23,24,26,29,30,32,33,34,35,36,37,38,41,43,44,45,46,47,49,50,52,53,54,56,58,63,64,67,69,71,74,76,81,82,86,88,98,100,102,105,118,124,126,129,131,133,135,136,137,138,139,140,141,143,146,149,151,155,163,167,168,169,172,177,178,179,180,181,182,184,186,187,188,191,192,194,195,196,197,204,205,207,208,212,217,219,220,221,228,230,231,235,236,237,239,240,242,247,248,249,250,252,254,256,257,258,265,284,286,296,300,303,316,322,324,335,338,339,340,341,342,346,349,362,373,376,387,390,391,394,395,405,407,409,412,413,442,464,465,466,467,468,469,470,473,474,477,478,479,482,484,486,487,489,492,501,502,531,533,539,540,542,543,546,547,548,555,561,567,568,572,577,578,584,589,591,594,608,614,616,619,620],access_obj:[469,540],access_object:35,access_opt:569,access_token_kei:[198,204],access_token_secret:[198,204],access_typ:[39,228,237,242,256,258,464,466,469,470,474,540,542,613,614,619],accessed_obj:[1,35,140,180,469,470],accessing_obj:[1,14,35,140,180,228,256,258,464,466,469,470,474,540,542],accessing_object:[14,35,469],accessor:[231,258,466,473,482,540,542,543,560],accessori:[84,213],accident:[12,17,21,59,124,149,191,240,242,323,531],accomod:554,accompani:191,accomplish:[1,56,121,130,147,149,182,187,555],accord:[21,23,105,112,136,149,161,178,188,265,310,316,339,370,390,458,486,545,546,555],accordingli:[0,10,169,182,217,300],account1:[11,609],account2:[11,609],account:[0,2,7,8,11,12,14,16,18,19,21,23,24,25,26,27,29,30,32,34,35,37,38,39,41,42,43,44,45,46,47,49,50,54,56,58,61,64,67,71,74,82,89,98,102,103,104,105,106,115,126,128,129,132,133,134,137,138,139,141,142,145,147,152,167,168,175,179,182,185,186,188,189,191,192,194,195,196,197,198,201,204,206,210,212,217,218,220,221,225,226,232,233,234,235,236,237,238,240,242,243,244,247,248,249,250,252,253,254,256,257,258,265,277,281,284,285,287,296,303,304,316,319,329,338,340,342,346,355,362,373,380,387,391,406,412,434,440,441,442,446,450,464,466,469,470,472,473,474,476,478,479,480,481,482,492,496,497,512,523,524,531,532,533,540,542,543,545,548,552,553,555,562,563,565,566,568,569,574,575,581,588,589,591,594,599,600,607,608,609,611,614,616,618,620],account_cal:[239,247,250,296,329],account_count:533,account_id:[194,474],account_nam:167,account_search:[230,391,474],account_subscription_set:231,account_typeclass:[566,609],accountadmin:[51,576],accountattributeinlin:576,accountchangeform:576,accountcmdset:[13,21,26,82,83,103,141,168,169,175,221,239,243,329],accountcreateview:612,accountcreationform:576,accountdb:[0,49,129,194,221,225,228,231,237,256,464,466,539,542,562,569,576,577,584,588],accountdb_db_attribut:576,accountdb_db_tag:576,accountdb_set:[540,543],accountdbfilterset:[588,594],accountdbmanag:[230,231],accountdbpasswordcheck:512,accountdbviewset:[196,594],accountform:[608,612],accountid:194,accountlist:169,accountlistseri:[591,594],accountmanag:[228,230],accountmixin:612,accountnam:[135,169,242,254,257,281],accountseri:[591,594],accounttaginlin:576,accross:124,accru:228,acct:145,accur:[82,237,271,272,273,274,284,308,319,339,342,369,395,406,407,411,414,418,464,478,479,486,490,492,494,495,503,512,513,515,517,520,521,540,543,545,563,564,602],accuraci:[0,101,120,186,339,340,341],accus:177,accustom:38,aceamro:0,acept:[95,450],achiev:[20,23,82,102,110,128,136,146,150,168,188,306,341,492],ack:30,acl:[76,263],acquaint:[150,168],acquir:547,across:[0,12,29,32,43,44,45,49,57,63,69,71,84,86,112,124,143,147,149,167,186,208,221,228,235,236,316,371,373,378,390,442,450,465,474,485,487,489,501,502,516,533,553,554,555,568],act:[0,8,13,15,19,21,29,44,45,53,62,95,100,105,118,119,124,133,135,136,139,143,147,149,152,157,167,169,172,182,191,205,207,218,225,228,242,247,258,280,292,305,306,365,370,371,372,373,395,396,409,412,413,450,462,474,489,501,502,521,540,543,547],action1:178,action2:178,action:[6,8,12,29,44,50,51,59,61,70,76,79,81,82,87,93,95,100,101,102,120,122,124,126,130,131,132,138,139,140,143,147,152,168,172,175,177,178,181,186,187,191,194,196,217,221,228,229,237,247,248,252,256,300,303,305,308,310,313,319,338,339,340,341,342,371,376,377,391,405,407,408,412,417,418,423,434,439,450,464,465,466,478,482,483,504,523,524,525,535,542,552,553,559,576,589,592,593,594],action_count:178,action_kei:[407,412],action_nam:338,action_preposit:305,action_queu:407,actiondict:178,actions_per_turn:[338,339,341,342],activ:[4,15,20,21,23,39,41,44,45,50,56,61,64,66,67,74,76,81,97,100,127,128,131,132,133,147,157,171,172,175,185,189,192,193,200,201,202,203,210,211,213,215,216,217,218,221,223,228,233,236,240,242,252,254,256,285,362,376,378,407,411,412,417,434,440,447,452,473,474,477,486,497,504,505,506,507,508,512,514,515,516,523,533,535,540,541,552,553,554,555,568],activest:567,actor:[0,32,62,81,342,376,474,555,571],actual:[0,4,6,8,9,10,11,12,13,14,15,16,19,20,24,29,32,33,35,37,38,39,41,43,45,47,48,51,52,53,54,55,58,59,61,63,67,69,70,72,76,81,82,83,93,101,105,109,123,124,126,128,131,133,134,135,136,137,138,140,141,143,144,145,146,147,149,150,151,152,155,158,161,163,164,169,170,172,174,177,178,179,180,182,183,184,185,186,187,188,191,193,194,195,196,197,200,204,207,212,213,215,217,221,228,233,237,239,242,247,248,250,252,253,254,256,258,265,290,303,308,313,316,322,323,332,335,338,339,340,341,342,346,349,358,362,367,368,370,371,372,376,390,391,394,405,408,409,411,418,434,436,441,442,450,462,464,466,469,470,473,474,479,512,515,521,523,529,531,532,533,537,538,540,542,545,547,550,559,562,563,564,566,568,586,619],actual_return:11,ada:33,adam:76,adapt:[63,102,161,177,194,197,322],add:[0,2,4,5,6,8,10,11,13,14,15,16,17,18,19,21,23,25,26,27,29,32,33,34,35,36,37,38,39,41,43,44,45,47,48,49,50,51,52,55,57,58,61,63,64,66,69,70,72,74,75,78,80,81,82,83,84,85,86,87,88,90,91,93,94,96,97,99,100,101,102,103,104,105,106,108,109,110,111,112,115,116,118,119,120,122,123,124,126,128,130,131,132,133,134,136,138,139,140,141,143,144,145,147,149,150,151,152,157,158,163,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,186,187,189,190,191,194,195,196,197,198,199,201,203,204,206,207,208,209,210,212,213,215,217,220,221,225,228,231,235,236,242,247,248,249,251,253,256,258,265,266,268,273,277,281,284,285,287,288,290,296,300,303,305,310,313,316,319,322,329,332,335,338,339,340,341,342,346,349,355,358,364,365,366,367,370,371,372,376,377,384,390,391,394,395,400,405,407,408,411,414,418,434,439,440,441,442,446,452,455,462,469,470,473,474,478,479,482,483,484,485,486,487,492,497,498,501,502,505,506,508,510,514,521,523,524,526,534,540,543,546,550,551,552,553,554,555,559,561,563,564,566,568,576,581,588,594,616,619,620],add_:554,add_act:178,add_alia:247,add_argu:[122,300],add_callback:[285,287],add_charact:178,add_choic:[265,266],add_choice_:265,add_choice_edit:[82,265],add_choice_quit:[82,265],add_collumn:237,add_column:[169,554],add_combat:407,add_condit:340,add_default:[21,140,179,180,184,236,273],add_dist:342,add_ev:287,add_fieldset:[576,581],add_form:[576,581],add_head:554,add_languag:[112,390],add_listen:274,add_map:372,add_msg_bord:310,add_object_listeners_and_respond:274,add_respond:274,add_row:[169,237,554],add_to_kei:187,add_user_channel_alia:[19,256],add_view:[576,578,581],add_xp:[177,405],addcallback:[23,474],addclass:[52,225,226,574,595],addcom:[0,109,133,169,296],added:[0,4,6,10,18,20,21,23,32,33,35,43,44,47,50,63,69,70,71,76,81,82,84,85,86,96,100,102,105,112,114,118,120,123,124,128,133,136,138,139,140,141,143,144,151,152,155,157,168,169,177,178,179,180,184,186,190,191,192,194,196,197,199,201,206,211,212,218,221,223,228,233,235,236,237,247,251,252,254,265,268,272,273,275,284,287,290,313,316,319,322,323,326,338,339,340,341,342,362,366,370,371,376,377,384,390,391,395,405,408,418,434,464,470,474,477,479,484,486,497,531,535,540,543,546,552,553,554,561,568,594,601,612,616],added_tag:275,adding:[0,4,8,9,10,11,12,14,16,18,20,21,25,26,29,35,43,47,48,49,52,54,61,63,66,69,71,81,82,88,89,93,95,100,101,102,103,118,119,120,124,136,140,141,143,144,149,151,152,155,161,165,168,169,174,175,178,179,180,186,188,189,191,194,196,197,210,220,221,223,235,236,240,242,249,265,277,284,287,300,322,329,338,341,364,378,387,390,391,395,407,442,450,462,472,474,478,479,484,492,523,540,548,554,568,577,584],addingservermxp:507,addit:[0,1,3,4,12,21,27,32,44,51,54,61,70,81,82,83,86,100,101,104,110,119,124,125,126,128,161,169,175,182,186,195,197,207,210,217,219,221,222,228,229,236,237,249,256,265,268,284,285,287,300,339,342,349,371,373,390,391,394,407,408,417,446,455,462,470,474,477,478,486,503,531,540,542,552,608,620],addition:[105,110,192,342],additionalcmdset:21,addl:[161,417],addpart:335,addquot:568,addr:[230,489,502,503,504,548],address:[0,12,23,38,45,56,59,63,74,91,96,126,152,161,165,182,186,189,205,208,217,219,221,228,230,240,256,281,326,412,474,489,502,504,512,532,535,568,569],address_and_port:512,addresult:335,addscript:44,addservic:63,adjac:[104,124,342,440],adject:[9,59,140,555,568,572],adjoin:391,adjud:406,adjust:[0,23,102,127,188,194,213,221,387,418,486,552,554,555],admin:[0,2,13,14,17,19,23,24,35,41,53,54,56,58,62,69,77,138,139,147,149,169,180,182,189,191,192,194,195,196,197,202,203,218,221,225,226,230,231,232,237,238,242,247,252,254,256,281,296,303,310,440,464,466,470,473,474,501,502,542,548,564,574,599,620],admin_sit:[576,577,578,580,581,582,583,584],admin_wrapp:579,adminconfig:599,admindoc:221,administr:[4,23,35,41,55,73,100,128,130,131,132,148,169,205,210,213,215,219,221,489,501,502],adminportal2serv:501,adminserver2port:501,adminsit:[51,221,225,226,574,598],adminstr:489,admintest:609,admittedli:[0,124,146],adopt:[0,12,82,125,126,131,168,258,415,516,571],advanc:[8,14,15,21,23,24,29,32,43,45,49,54,55,56,63,69,71,76,82,104,105,112,114,118,121,126,130,131,132,139,142,143,145,169,171,172,176,181,191,220,222,242,250,338,340,346,391,395,412,434,458,507,546,550,551,552,554,620],advantag:[3,14,16,17,29,33,43,59,101,112,124,130,132,133,140,149,165,167,169,175,177,178,181,183,191,194,196,197,217,219,265,313,338,407,410,417,446,462,543,546],advantage_matrix:407,advantav:161,adventur:[88,105,111,121,126,146,149],advic:200,advis:[1,82,102],aesthet:27,aewalisash:[110,455],affair:547,affect:[1,7,8,15,16,21,23,41,44,45,47,51,58,61,81,85,114,120,124,136,140,143,147,149,155,175,177,178,188,221,228,235,252,268,290,308,322,340,355,370,376,377,390,413,434,474,478,542,546,551,554,562],affili:486,affliat:486,afford:[45,184],affort:184,aforement:81,afraid:217,after:[0,1,3,4,5,11,12,14,16,17,20,21,23,27,29,35,44,46,53,54,55,61,66,67,69,76,78,81,82,84,88,95,97,100,101,102,114,118,120,121,124,126,128,130,133,134,138,139,140,141,143,144,146,147,149,150,152,155,157,161,169,171,172,173,178,179,180,181,182,184,186,188,189,191,193,194,196,207,208,212,213,214,215,217,219,221,223,228,235,236,237,238,239,242,249,250,252,253,254,256,265,277,278,281,287,300,303,308,309,313,316,322,323,324,335,338,339,340,343,346,349,362,368,371,376,377,378,387,390,391,392,394,395,401,405,407,408,409,411,413,414,423,434,440,441,442,450,452,462,464,473,474,478,479,481,483,485,486,492,514,515,518,523,530,531,532,533,535,537,540,545,546,547,550,551,552,553,559,563,568,589,592,612,614,619],after_:0,afterlif:149,afternoon:[94,346],afterward:[69,79,124,139,145,146,172,186,197,265],again:[0,6,10,14,15,16,19,23,29,37,44,45,53,56,61,69,82,87,93,100,102,105,113,114,121,123,124,126,131,133,134,135,137,139,140,141,143,144,147,149,152,157,161,167,168,169,170,171,172,174,175,177,178,179,180,181,182,184,186,187,188,191,192,194,196,197,203,205,208,209,210,212,215,217,218,221,223,229,236,247,253,277,287,319,338,362,376,418,434,458,485,492,509,512,515,535,545,546,549,564,566],againnneven:253,against:[0,14,21,23,49,66,67,100,120,136,146,149,161,163,168,169,178,179,217,219,221,228,234,235,237,323,338,339,340,342,391,407,417,470,472,474,478,479,510,535,540,542,543,565,568],age:[76,95,122,221,300,409,450,608],agenc:219,agent:4,agenta:545,ages:[95,450],aggrav:185,aggreg:[0,274],aggregate_func:274,aggress:[14,16,121,146,185,211,221,440,542],aggressive_pac:440,agi:[14,118,126,395],agil:14,agnost:[125,131],ago:[100,139,212,568],agre:[72,78,126,150,177,308,313],agree:313,ahead:[4,16,71,82,141,180,182,192,196,206,217,514],ai_combat_next_act:412,aid:[72,78,124,126,249,250,313,537],aim:[2,7,35,69,71,130,143,147,150,169,177,188,217,478],ain:101,ainnev:[0,118,126,136,177,395],air:[105,134,144,179],airport:145,ajax:[0,52,63,217,221,521,532],ajaxwebcli:521,ajaxwebclientsess:521,aka:[8,14,111,149,189,335,568],akin:81,alarm:134,alchin:76,ale:104,alert:[19,256,474],alex:76,alexandrian:200,algebra:182,algorith:390,algorithm:[0,33,124,149,370,371,472,568],alia:[0,2,7,12,13,19,21,23,26,32,38,39,44,45,47,49,51,82,105,109,112,124,133,134,143,145,168,169,174,179,189,215,217,231,234,237,239,242,247,248,249,250,253,256,275,284,296,319,338,339,340,341,342,346,347,355,362,364,371,391,394,395,401,440,442,469,473,474,479,482,487,497,523,541,542,543,548,555,564,565,566,572,576,577,578,580,581,582,584,588,590,591,592,594,608,612,613,614,619,620],alias1:[152,242,346],alias2:[152,242,346],alias3:346,alias:[0,1,7,13,15,19,20,21,23,24,29,32,33,34,38,39,43,51,59,75,82,86,88,100,104,105,132,133,134,140,169,172,174,178,179,184,191,221,228,235,237,239,240,241,242,247,248,249,250,251,252,253,254,256,257,265,281,285,296,299,300,303,305,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,362,364,371,376,380,384,391,407,408,434,436,440,441,442,450,452,462,464,465,466,467,472,473,474,479,523,541,542,543,548,550,552,553,561,565,566,572,588,591],aliaschan:296,aliasdb:228,aliasfilt:588,aliashandl:[543,584,591],aliasnam:479,aliasproperti:[0,543],aliasstr:[472,548],alien:110,align:[0,32,43,152,169,387,545,551,554,555,568],alist:9,aliv:[130,151,440],alkarouri:567,all:[0,2,4,7,8,9,10,11,13,14,15,16,17,18,19,20,21,23,25,27,29,32,33,34,35,37,38,39,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,63,65,66,67,69,70,71,72,73,74,75,76,77,79,81,82,84,86,88,90,92,93,94,95,97,99,101,102,105,109,110,111,112,113,115,118,119,121,123,124,126,128,129,130,131,132,133,134,135,136,137,138,140,141,143,144,145,146,147,150,151,152,155,157,158,161,163,164,165,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195,196,199,200,202,203,205,207,209,210,211,212,213,215,216,217,218,219,220,221,222,228,229,230,232,233,234,235,236,237,238,239,240,241,242,243,244,247,248,249,250,251,252,253,254,256,257,258,265,271,273,274,281,284,287,296,299,300,303,305,306,308,309,313,316,319,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,362,364,370,371,372,373,376,378,384,390,391,394,395,405,406,407,408,409,411,412,413,414,416,417,418,432,434,436,439,440,441,442,447,450,452,455,458,462,464,465,466,467,468,469,470,471,472,473,474,477,478,479,481,483,484,485,486,487,488,491,492,496,497,498,501,503,504,506,508,509,510,511,512,515,516,519,520,521,523,524,530,531,532,533,535,537,538,539,540,541,542,543,545,546,547,548,549,550,551,552,553,554,555,559,561,563,565,566,567,568,569,571,573,576,577,578,580,581,582,584,585,586,594,597,599,601,608,614,616,617,619],all_above_5:155,all_alias:47,all_attr:542,all_below_5:155,all_book:145,all_cannon:136,all_cloth:14,all_cmd:249,all_combat:407,all_connected_account:533,all_data:478,all_displai:487,all_famili:[136,196],all_fantasy_book:145,all_flow:145,all_from_modul:568,all_kei:249,all_map:[124,372],all_opt:563,all_receiv:474,all_room:[15,136],all_ros:145,all_script:44,all_scripts_on_obj:44,all_sessions_portal_sync:533,all_shield:157,all_to_categori:465,all_weapon:136,allcom:[109,133,296],allegi:412,allegiance_friendli:[163,410],allegiance_hostil:[163,410],allegiance_neutr:[163,410],allerror:[492,501],allevi:[11,14,71,537],allheadersreceiv:537,alli:[342,407],alloc:217,allow:[0,3,4,6,9,10,11,12,13,14,15,16,17,20,21,23,24,29,32,33,34,35,37,38,39,41,42,43,47,49,50,51,52,53,54,55,56,57,58,59,65,66,69,71,72,73,74,76,77,78,81,82,83,86,88,89,92,93,94,95,96,97,100,101,102,104,105,108,112,118,119,120,123,124,126,127,128,129,130,131,132,134,136,138,139,140,141,143,144,145,147,151,152,155,157,163,165,168,169,171,172,173,174,177,178,179,180,181,182,186,187,188,189,191,192,194,195,199,201,202,203,204,205,207,208,209,211,212,213,215,217,219,220,221,228,229,231,233,235,236,237,239,240,241,242,247,249,250,252,253,256,257,258,265,270,272,273,274,275,277,287,296,300,303,305,308,310,313,316,322,324,326,332,338,341,342,346,362,370,371,373,376,380,384,390,391,394,395,405,406,407,408,409,412,413,417,430,434,440,441,442,450,458,462,464,466,467,469,470,472,474,478,479,483,486,487,492,496,497,499,503,505,506,507,508,515,516,517,519,524,530,531,533,535,536,540,542,543,545,546,548,550,551,552,553,554,555,556,559,562,563,564,566,568,579,581,588,589,594,608,613,616],allow_abort:552,allow_combat:[409,416],allow_craft:322,allow_death:[151,409,416],allow_dupl:235,allow_extra_properti:395,allow_nan:521,allow_pvp:[407,416],allow_quit:552,allow_reus:322,allowed_attr:169,allowed_fieldnam:169,allowed_host:[217,219,221],allowed_propnam:191,allowedmethod:521,allowext:537,almost:[0,14,23,33,48,49,51,58,82,84,139,143,144,149,196,265,316,494,501,539,543],alon:[0,11,15,29,35,38,69,93,110,121,126,143,150,167,169,177,178,182,221,235,249,373,390,408,417,487,497,523,546,548,554,555,584],alone_suffix:528,along:[0,8,12,23,29,34,44,46,56,61,70,77,78,79,100,104,112,118,119,121,124,131,136,137,143,146,147,150,152,157,158,161,180,184,186,199,220,228,239,313,341,371,384,390,395,409,418,446,462,470,474,521,539,543,594],alongsid:[95,208,372,450],alonw:482,alpha:[0,132,148,209,210,217,221,545],alphabet:[17,72,105,545],alreadi:[0,1,10,11,13,14,15,17,20,21,23,27,29,32,33,35,44,45,47,49,52,54,63,70,74,77,82,84,93,100,101,102,110,121,124,127,128,131,132,133,134,135,136,138,139,140,141,143,144,145,147,150,152,155,161,167,168,169,170,172,174,176,177,178,179,180,182,186,189,191,192,193,194,195,196,197,198,202,209,210,212,213,216,218,219,221,228,230,235,236,239,242,250,252,256,257,296,305,310,313,316,319,322,323,338,339,341,342,349,362,370,371,373,390,391,395,407,408,409,411,418,440,441,458,470,474,478,479,492,501,509,510,512,517,520,525,530,531,533,540,543,545,548,553,561,566,568,589,600],alredi:63,alright:[78,313],also:[0,1,2,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,29,32,33,34,35,36,38,39,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,63,64,66,67,69,70,71,72,73,74,75,76,78,81,82,84,86,87,88,90,91,92,93,94,95,97,98,100,101,102,104,105,106,108,110,112,113,116,118,119,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,200,201,202,203,205,206,207,208,209,210,211,212,213,215,217,218,219,220,221,223,228,230,231,234,235,236,237,239,240,241,242,244,247,248,249,250,252,253,256,257,258,265,271,273,274,287,305,306,310,313,316,319,322,323,329,332,340,341,342,346,358,362,364,370,371,373,376,378,384,387,390,391,395,406,407,408,411,412,413,414,416,417,430,434,440,441,442,450,455,458,462,464,468,469,470,472,473,474,478,479,480,482,485,487,488,492,496,497,501,503,510,512,515,516,519,520,523,524,533,537,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,559,565,566,568,588,614,616,617,619],alt:545,alter:[52,81,97,99,100,102,105,126,131,192,205,221,349,442,474,540,551],alter_cach:81,altern:[14,19,23,29,33,38,44,47,51,66,75,83,86,88,92,105,111,118,122,126,128,132,133,140,144,149,163,168,174,182,183,194,205,215,217,247,250,256,257,280,292,335,342,380,391,395,434,465,469,470,472,510,545,548,568],although:[6,81,82,100,144,181,213,239,265,384,537,564,568],althougn:101,altogeth:[27,61,124,219],alwai:[0,1,7,9,11,12,13,14,15,16,19,20,21,23,29,32,33,34,35,37,39,41,43,44,45,46,48,49,52,56,59,61,69,70,74,81,86,88,100,102,103,110,112,115,118,124,125,128,131,133,134,139,140,141,143,144,145,147,151,152,157,161,168,169,170,173,175,177,179,180,181,182,186,188,191,192,195,197,202,205,207,217,221,228,235,236,237,239,241,242,247,249,250,253,256,257,258,303,308,322,324,329,355,370,371,373,376,378,390,391,395,409,410,417,434,467,469,470,472,473,474,478,479,487,492,494,497,501,509,512,515,516,520,521,524,531,533,538,540,541,542,543,545,548,555,559,564,565,568,569,589,601,617],always_fail:501,always_pag:553,always_return:492,amaz:[7,211],amazon:[76,126,200,217],amazonaw:76,amazons3:76,ambianc:71,ambigu:[96,124,237,326,371,474,542],ambiti:[71,73],amfl:16,ammo:179,among:[13,25,39,105,131,145,149,150,175,191,200,213,220,248,316,406,407,441,470,472,554,565],amongst:104,amor:288,amount:[19,44,57,61,132,147,151,155,161,177,191,219,252,319,323,338,340,341,376,378,405,411,474,533,550],amp:[0,42,45,63,67,221,225,226,488,489,492,500,502,510,518,530,533],amp_client:[221,225,226,488,501],amp_client_protocol_class:221,amp_host:221,amp_interfac:221,amp_maxlen:518,amp_port:[217,221],amp_serv:[221,225,226,488,500],amp_server_protocol_class:221,ampbox:501,ampclientfactori:489,ampersand:71,amphack:501,ampl:143,amplauncherprotocol:492,amplifybuff:81,ampmulticonnectionprotocol:[489,501,502],ampprotocol:489,ampserverclientprotocol:[221,489,501],ampserverfactori:502,ampserverprotocol:[221,502],amsterdam:217,amulet:340,amulet_of_weak:340,amus:133,anaconda:189,analog:[67,182],analys:29,analysi:447,analyz:[17,23,29,35,88,121,149,152,155,233,249,322,391,418,474,478,479,483,492,553,568,571],anchor:[0,237,256,342,464,466,542],anchor_obj:342,ancient:[61,104],andr:206,andrei:76,andrew:76,androgyn:455,android:[210,222,620],anew:[99,105,141,143,215,256,349,492],angl:[7,124,305,316],angri:33,angular:252,ani:[0,1,6,7,9,11,13,14,16,17,19,20,21,23,27,29,32,33,34,35,36,37,38,39,41,43,44,45,46,47,48,49,50,52,55,56,57,58,61,63,66,67,69,70,73,74,75,76,77,81,82,83,84,87,88,90,91,93,95,97,98,100,102,108,110,112,118,120,121,122,123,124,125,126,127,128,131,133,134,135,136,138,139,140,141,143,144,145,146,148,149,150,151,152,155,157,161,163,167,168,169,172,173,174,177,178,179,180,181,182,183,184,186,188,191,192,193,194,195,196,200,201,202,203,205,206,207,209,210,212,213,215,216,217,219,220,221,223,228,231,233,234,235,236,237,239,240,242,248,249,252,253,256,257,258,265,271,273,274,275,281,286,300,303,305,308,310,313,316,319,322,326,329,332,338,339,340,341,342,346,349,358,362,370,371,373,376,380,387,390,391,395,400,407,411,412,413,414,417,427,428,432,434,440,442,446,447,450,452,458,464,467,469,470,472,474,477,478,479,482,483,485,486,487,489,490,492,494,496,497,501,502,504,510,511,512,515,516,520,521,523,530,531,532,533,537,540,541,542,543,545,546,547,549,550,551,552,553,554,555,561,562,563,564,565,568,576,586,593,594,599,612,613,614,616,617,618,619,620],anim:[20,30,53,323],anna:[59,169,183,185,191,202,213,242],anna_object:59,annoi:[56,93,133,144,149,186],annot:[132,142,200],announc:[1,178,191,223,240,247,252,256,338,474],announce_al:[510,533],announce_move_from:[1,39,155,474],announce_move_to:[1,39,155,474],annoy:228,annoyinguser123:19,anonym:[64,197,221,391],anonymous_add:391,anoth:[0,4,6,7,8,9,10,11,12,14,15,16,21,23,24,29,33,35,39,43,45,47,50,52,55,57,59,61,71,72,75,81,82,88,93,95,100,101,102,105,110,113,119,123,124,125,131,133,134,135,136,138,139,140,143,144,145,149,151,152,155,161,163,167,168,169,170,171,172,175,178,179,180,181,182,186,190,191,193,197,199,203,207,208,217,228,235,236,239,242,247,248,256,265,286,305,308,313,316,322,329,338,339,340,341,342,362,364,369,371,391,405,407,408,409,412,414,423,441,450,458,462,464,466,467,474,477,533,540,542,546,550,552,553,555,566,568,594],another_batch_fil:546,another_list:136,another_nod:552,another_script:44,anotherusernam:50,ansi:[0,34,52,62,65,85,129,143,206,221,225,226,239,268,269,332,387,497,504,512,515,520,521,544,554,555,567,568],ansi_bg_cod:567,ansi_color_cod:567,ansi_escap:545,ansi_map:545,ansi_map_dict:545,ansi_pars:545,ansi_r:[221,545],ansi_regex:545,ansi_sub:545,ansi_xterm256_bright_bg_map:545,ansi_xterm256_bright_bg_map_dict:545,ansimatch:545,ansimeta:545,ansipars:545,ansistr:[0,225,545,554],ansitextwrapp:554,answer:[1,11,14,23,29,49,101,102,143,147,149,150,177,179,183,197,208,215,219,490,552,566],ant:100,antechamb:121,anthoni:76,anti:215,anticip:124,anul:207,anvil:[322,323],any_options_her:128,anybodi:219,anychar:341,anyhow:155,anymor:[113,140,155,157,189,221,287,335,362,413,458,552,564],anyobj:341,anyon:[1,6,35,56,66,93,125,149,157,169,178,179,183,191,209,217,221,407],anyth:[6,10,14,15,19,21,23,29,35,38,39,44,49,51,52,54,57,58,63,67,74,76,82,93,101,102,104,105,119,124,125,131,133,134,138,139,140,143,144,145,147,149,150,152,155,163,167,178,180,182,183,186,191,192,193,194,197,205,210,212,213,216,217,221,223,235,237,251,265,274,322,338,340,341,342,370,376,391,395,462,470,504,538,540,546,552,555],anywai:[16,19,29,66,71,75,91,102,124,130,134,186,192,211,281,313,370],anywher:[23,29,44,49,81,124,131,132,139,140,143,163,184,195,370,550],aogier:0,apach:[0,76,217,219,222,537,620],apache2:207,apache_wsgi:207,apart:[13,14,20,35,49,92,121,126,130,188,195,210,212,220,342,364],api2md:7,api:[0,2,7,11,14,15,17,19,20,24,30,33,37,39,43,44,45,49,53,59,79,88,105,144,145,176,177,187,194,198,204,221,225,226,228,241,252,254,258,281,322,464,531,540,542,546,547,553,574,620],api_kei:204,api_secret:204,apicli:592,apirootrout:[196,590],apirootview:590,apocalyps:149,apostroph:[17,32,110],app:[0,35,54,63,66,69,74,76,192,193,195,204,217,221,599],app_dir:221,app_id:194,app_modul:599,app_nam:[196,599],app_ord:599,appar:[100,169,188],apparit:442,appeal:[29,61],appear:[0,1,10,12,19,20,29,32,33,35,43,44,51,52,54,55,60,61,64,82,84,86,104,105,115,124,128,132,133,136,143,146,147,152,155,173,179,188,189,191,201,202,212,213,215,217,220,225,239,249,269,287,316,323,355,362,371,391,412,416,474,516,517,542,554,561,584],appearance_templ:474,append:[8,9,20,21,27,35,39,63,70,77,82,83,84,126,152,155,161,178,181,182,184,186,191,194,197,208,217,221,237,242,249,273,316,329,391,412,470,472,525,546,551,561,568],appendto:52,appform:194,appi:152,appl:[78,149,305,313,408,474],appli:[0,4,10,12,15,21,23,32,33,35,43,48,49,54,57,67,79,82,85,97,100,102,105,118,124,125,126,132,141,149,150,180,183,188,189,192,194,205,207,221,223,225,228,233,235,250,259,268,303,305,338,340,362,370,371,374,375,377,394,395,406,407,417,418,470,474,478,479,482,487,533,540,541,542,545,546,554,556,565,568],applic:[35,47,50,63,69,74,81,94,137,193,194,195,200,207,212,213,219,221,228,305,322,342,346,450,492,495,505,509,530,531,537,605],applicationdatareceiv:515,applied_d:194,applier:81,apply_damag:338,apply_turn_condit:340,appnam:[14,35,221],appreci:[11,44,82,127,199,559],approach:[10,29,48,82,126,149,167,172,181,186,194,265,342,371],appropri:[4,10,21,23,59,73,98,100,126,140,152,180,186,189,194,196,204,205,207,228,240,305,387,391,492,531,562,564,568,597],approrpri:63,approv:[100,194,195],approxim:[252,568],apr:66,april:[2,93,126,175],apt:[12,207,208,211,213,215,217,219],arbitrari:[0,9,14,15,20,32,35,49,52,58,75,81,83,100,101,105,118,119,124,131,135,139,212,228,256,303,307,316,319,342,346,376,380,391,395,405,413,432,442,462,474,479,485,490,501,521,535,540,549,561,564,568],arcan:73,arch:[7,62],archer:479,architectur:[35,150,479],archiv:[138,200,219],archwizard:479,area:[13,82,121,123,124,126,146,147,150,169,182,200,206,362,364,370,373,440,469,551,552,554,568],aren:[95,102,172,181,192,193,194,196,197,219,228,287,316,335,340,450,561,564,571],arg1:[32,35,237,250,253,256,303,376,408,540],arg2:[32,237,250,253,303,376,408,540],arg:[0,1,6,7,23,29,32,33,34,35,37,43,48,52,55,63,65,67,70,81,82,86,100,110,118,128,133,138,140,141,145,157,161,163,169,170,173,177,178,179,180,181,190,191,204,221,228,229,230,231,234,237,242,250,251,252,253,256,257,258,273,274,277,284,287,300,303,305,306,313,316,319,326,335,338,339,340,341,342,346,355,358,362,366,371,372,373,376,377,380,390,391,395,400,405,407,408,409,412,413,414,416,432,434,436,440,441,442,452,458,462,465,466,467,469,470,472,473,474,477,478,479,481,482,485,486,487,489,492,497,498,499,501,502,503,504,509,510,512,513,515,516,517,520,521,525,531,533,535,537,540,541,542,543,545,552,554,555,556,558,559,561,564,566,568,569,576,577,581,584,590,591,608,614,618,619],arg_regex:[174,221,237,242,248,249,252,253,254,303,316,322,391,550,552],arglist:250,argn:540,argnam:7,argpars:[122,300],argtyp:568,argu:14,arguabl:[124,143],argument:[0,1,6,7,8,11,16,19,20,21,23,27,30,32,34,35,38,39,43,44,48,49,55,56,59,63,67,70,77,81,82,83,93,95,100,101,104,105,110,113,122,126,132,133,134,135,136,140,142,144,145,152,161,165,168,169,172,175,176,179,184,187,191,195,197,205,221,228,229,230,233,234,236,237,239,240,242,247,248,249,250,252,253,256,257,265,277,280,284,286,287,292,296,300,303,305,307,308,310,316,322,326,338,340,341,342,346,349,355,364,372,373,376,377,380,387,390,391,405,407,408,411,412,413,432,442,447,450,452,455,458,470,472,474,478,479,481,483,485,486,487,490,492,497,501,503,504,510,511,512,515,516,520,521,523,524,531,532,533,535,536,540,541,542,543,545,546,548,550,551,552,553,554,555,559,562,564,565,568,594,617,620],argumentpars:[122,126,300],argumnet:554,argv:221,aribtrarili:568,ariel:76,aris:219,arithmet:[32,118,395],arm:[23,111,149,161,179,184,335],armchair:140,armi:184,armor:[0,14,84,120,132,149,152,158,161,163,172,196,316,339,405,408,410,411,412,413,417],armour:172,armpuzzl:[111,335],armscii:[17,72],arn:76,arnold:38,around:[0,6,7,15,16,17,21,32,35,39,43,53,54,55,61,72,84,93,100,102,105,124,128,130,131,132,133,136,138,139,140,141,142,143,144,145,147,149,158,163,169,172,177,178,179,180,181,182,186,191,193,197,204,205,215,217,242,250,277,286,316,323,335,342,349,362,368,371,391,406,408,434,440,441,442,474,545,546,554],arrai:[50,70,186,371,516,568],arrang:82,arrayclos:[70,516],arrayopen:[70,516],arrest:124,arriv:[1,45,67,100,102,155,172,177,185,242,306,364,504],arriving_obj:185,arriving_object:474,arrow:[6,52,124,143],art:[61,551],articl:[11,17,72,168,179,181,192,200,560,620],article_set:560,artifact:[340,554],artifici:177,artist:0,artsi:150,arx:200,arxcod:[176,620],as_listen:274,as_respond:274,as_view:[54,196,237,256,464,466,542],ascii:[17,52,72,104,124,126,189,228,254,349,370,551,554,568],asciiusernamevalid:[221,228],asdf:242,ash:323,ashlei:[0,84,95,98,119,120,126,315,316,337,338,339,340,341,342,386,387,449,450,460,462],asian:[0,568],asid:189,ask:[0,6,8,9,12,24,27,33,36,55,59,91,100,101,106,124,125,126,130,134,139,141,147,149,150,151,161,169,177,186,194,197,205,207,209,213,214,217,235,237,242,277,285,300,313,405,412,458,490,492,519,552,556,568],ask_again:29,ask_choic:490,ask_continu:490,ask_input:490,ask_nod:490,ask_yes_no:[0,552],ask_yesno:490,asn:446,aspect:[29,43,54,69,131,138,143,149,152,163,168,177,322,387],aspeect:161,assert:[11,178,555],assertequ:[11,151,155,161,163],assertionerror:[555,566],asset:[76,132,193,219,496,597],assetown:189,assign:[0,4,9,13,14,15,19,29,35,38,39,41,43,44,47,48,52,56,62,81,85,95,112,121,124,126,134,136,138,139,140,141,143,145,149,167,169,178,180,191,228,233,234,236,242,247,249,250,256,268,303,338,339,340,341,342,346,376,391,395,406,409,442,450,470,473,474,478,479,497,504,510,512,515,531,540,543,549,561,566],assist:217,associ:[0,14,29,45,67,74,81,110,133,139,145,172,192,200,217,221,228,232,242,256,284,287,391,474,531,533,541,614],assort:[24,62,97],assum:[0,1,9,10,11,14,15,16,17,19,20,21,23,29,33,34,35,36,39,43,44,45,48,56,58,59,63,71,72,82,83,87,88,93,100,101,102,105,112,116,118,124,125,127,128,130,134,136,138,140,145,150,152,155,157,161,165,167,169,171,172,175,176,177,178,179,180,181,182,183,185,187,189,191,194,195,196,198,208,211,212,216,217,218,219,221,233,235,236,237,239,242,247,249,253,256,258,265,303,305,319,323,358,372,373,391,395,407,411,417,418,441,442,464,469,474,479,483,516,533,545,546,552,555,568,572,589,600,616,619],assumpt:[151,161,234],assur:[49,77,126,182],ast:[32,407,555],asterisk:[13,56,128,141,240],astronom:175,async:[62,194,568,620],asynccommand:55,asynchron:[0,8,20,23,42,62,87,126,131,171,172,229,319,474,501,502,516,561,568],at_:[49,559],at_access:[228,474],at_account_cr:[13,228],at_ad:[271,273],at_after_mov:474,at_after_travers:474,at_again_posit:305,at_already_clos:305,at_already_consum:305,at_already_mov:305,at_already_open:305,at_appli:[305,376],at_befor:0,at_before_drop:474,at_before_g:474,at_before_get:474,at_before_mov:474,at_before_sai:474,at_cannot_appli:305,at_cannot_mov:305,at_cannot_posit:305,at_cannot_read:305,at_cannot_rot:305,at_channel_cr:256,at_channel_msg:256,at_char_ent:185,at_clos:305,at_cmdset_cr:[1,21,23,82,83,84,94,96,97,99,100,103,108,109,112,115,116,133,140,141,168,169,173,174,175,178,179,180,184,191,235,243,244,245,246,265,296,303,313,316,322,329,332,335,338,339,340,341,342,346,349,355,358,364,384,391,408,434,436,439,440,441,442,452,523,550,552,553],at_cmdset_createion:296,at_cmdset_get:[228,474,531],at_code_correct:305,at_code_incorrect:305,at_consum:305,at_damag:[151,405,412],at_db_location_postsav:473,at_death:[151,405],at_defeat:[151,338,405,412],at_desc:474,at_disconnect:[228,531],at_dispel:[81,376],at_do_loot:[151,405,412],at_drink:305,at_drop:[339,342,474],at_empty_target:371,at_end:482,at_err:[55,568],at_err_funct:55,at_err_kwarg:[55,568],at_expir:376,at_failed_login:228,at_failed_travers:[39,355,409,441,474],at_first_login:228,at_first_sav:[228,256,474],at_first_start:542,at_focu:305,at_focus_:[303,305],at_focus_climb:305,at_focus_clos:305,at_focus_cod:305,at_focus_combin:305,at_focus_drink:305,at_focus_eat:305,at_focus_feel:305,at_focus_insert:305,at_focus_kneel:305,at_focus_li:305,at_focus_listen:305,at_focus_mov:305,at_focus_open:305,at_focus_press:305,at_focus_push:305,at_focus_read:305,at_focus_rot:305,at_focus_shov:305,at_focus_sip:305,at_focus_sit:305,at_focus_smel:305,at_focus_turn:305,at_focus_us:305,at_get:[100,316,342,376,474,540],at_giv:[339,342,474],at_green_button:305,at_heard_sai:183,at_hit:440,at_idmapper_flush:[542,559],at_init:[46,49,81,228,256,273,376,378,440,441,442,474,542],at_initial_setup:[138,220,221,496],at_initial_setup_hook_modul:[221,496],at_left:305,at_lock:305,at_login:[49,63,503,504,512,515,520,521,531],at_look:[228,380,474],at_loot:[151,405],at_message_rec:228,at_message_send:228,at_mix:305,at_mix_failur:305,at_mix_success:305,at_msg_rec:[228,326,474],at_msg_send:[228,229,326,432,474],at_new_arriv:440,at_no_cod:305,at_nomatch:305,at_now_add:69,at_object_cr:[1,14,21,35,39,49,90,118,132,140,169,177,179,180,181,182,184,190,191,242,305,306,326,338,339,340,341,346,355,368,384,391,395,409,412,413,434,436,440,441,442,474,542],at_object_delet:474,at_object_leav:[155,306,362,405,442,474],at_object_post_copi:474,at_object_rec:[39,155,185,306,362,405,409,442,474],at_open:305,at_pai:[151,405],at_password_chang:228,at_paus:[44,81,376,377,485],at_posit:305,at_post_all_msg:256,at_post_channel_msg:[19,228,256],at_post_check:[81,376,377],at_post_cmd:[0,23,173,233,237,250,566],at_post_command:23,at_post_disconnect:228,at_post_login:228,at_post_mov:[39,155,474],at_post_msg:256,at_post_object_leav:362,at_post_portal_sync:530,at_post_puppet:[273,474],at_post_travers:[39,441,474],at_post_unpuppet:[273,474],at_post_us:[157,413],at_pr:[0,81,474],at_pre_channel_msg:[19,228,256],at_pre_check:[81,376],at_pre_cmd:[23,86,233,237,250,566],at_pre_command:23,at_pre_drop:[339,342,474],at_pre_g:[339,342,474],at_pre_get:[39,342,474],at_pre_leav:39,at_pre_login:228,at_pre_loot:405,at_pre_mov:[0,1,39,140,155,316,338,474],at_pre_msg:[19,256],at_pre_object_leav:[0,155,405,474],at_pre_object_rec:[0,155,405,474],at_pre_puppet:474,at_pre_sai:[391,474],at_pre_unpuppet:474,at_pre_us:157,at_prepare_room:[123,362],at_read:305,at_red_button:305,at_reload:[252,530],at_remov:[81,271,273,376,377],at_renam:542,at_repeat:[44,49,178,180,198,229,277,287,307,313,338,400,407,409,485,525,556],at_return:[55,568],at_return_funct:55,at_return_kwarg:[55,568],at_right:305,at_rot:305,at_sai:[183,305,474],at_script_cr:[44,178,180,198,229,277,287,307,313,338,362,372,390,400,407,409,458,478,485,525,556],at_script_delet:485,at_search:[138,220],at_search_result:[221,251,568],at_server_cold_start:530,at_server_cold_stop:530,at_server_connect:510,at_server_init:[0,221,530],at_server_reload:[44,218,221,228,229,474,485],at_server_reload_start:530,at_server_reload_stop:[1,530],at_server_shutdown:[44,218,228,229,474,485],at_server_start:[44,221,287,362,485,530],at_server_startstop:[1,138,220,221],at_server_startstop_modul:221,at_server_stop:[221,530],at_set:540,at_shutdown:530,at_smel:305,at_speech:305,at_start:[44,178,229,482,485],at_startstop_modul:487,at_stop:[44,178,180,338,485],at_sunris:175,at_sync:[531,532],at_talk:412,at_tick:[48,81,376,377,487],at_travers:[0,39,358,362,409,474],at_traverse_coordin:362,at_trigg:[81,376,377],at_turn_start:340,at_unfocu:305,at_unpaus:[81,376,377],at_upd:[340,483],at_us:[157,413],at_weather_upd:190,athlet:152,ating:253,atlanti:206,atleast:[112,390],atom:[132,203,394],atop:[123,362],atribut:549,att:[29,66],attach:[14,24,39,45,66,75,81,87,119,126,131,133,135,136,140,141,143,145,167,169,179,185,192,218,237,242,250,263,319,326,329,362,376,377,462,470,474,484,529,540,543,577,584],attachd:140,attachmentsconfig:192,attack:[0,16,29,81,86,87,101,119,120,132,141,146,147,151,157,161,163,171,172,173,177,178,195,217,219,221,236,319,338,339,340,341,342,377,391,405,407,408,412,417,440,441,462,474,479,510],attack_count:341,attack_nam:341,attack_skil:479,attack_typ:[157,161,163,342,407,413,417,418],attack_type_nam:163,attack_valu:[338,339,340,342],attempt:[10,13,21,29,38,74,82,86,102,124,186,198,206,219,221,239,242,303,338,339,340,341,342,346,355,407,417,447,452,489,492,497,530,535,542,555,568,614],attemt:32,attent:[39,105,128,167,169,219,303],attibuteproperti:157,attitud:168,attr1:[242,335],attr2:[242,335],attr3:242,attr:[0,14,29,35,43,52,82,136,152,169,182,242,249,258,265,306,442,469,478,479,531,540,542,559,564],attr_categori:577,attr_eq:469,attr_g:[35,469],attr_gt:[35,469],attr_kei:577,attr_l:[35,469],attr_lockstr:577,attr_lt:[35,469],attr_n:[35,469],attr_nam:242,attr_obj:[540,542],attr_object:542,attr_typ:577,attr_valu:577,attrcreat:[35,540],attread:14,attredit:[14,35,540],attrhandler_nam:540,attrib:470,attribiut:540,attribut:[0,1,2,6,13,19,20,24,27,29,34,35,36,37,38,39,43,44,45,47,48,49,56,69,71,81,82,83,86,87,92,101,102,108,112,118,120,126,132,134,135,140,143,149,151,152,155,161,163,167,168,169,170,171,173,177,178,181,182,185,186,187,191,194,195,196,197,221,225,226,228,230,231,236,242,251,252,256,265,271,272,273,275,286,287,305,319,322,323,332,335,338,339,340,341,342,346,358,362,371,376,378,380,391,395,405,406,407,409,410,411,412,413,434,440,441,442,469,472,473,474,477,478,479,481,482,483,486,497,531,539,541,542,543,548,549,550,556,561,562,565,568,574,575,576,578,581,582,584,591,593,594,608,613,614,616,619,620],attribute1:191,attribute2:191,attribute_list:540,attribute_nam:[228,391,472,474,565],attribute_stored_model_renam:221,attribute_valu:472,attributeerror:[6,14,69,139,140,531,540,543],attributeform:577,attributeformset:577,attributehandl:[0,14,49,86,187,271,362,405,407,409,412,413,540,563,568,591],attributeinlin:[576,577,578,581,582],attributemanag:14,attributeproperti:[0,86,151,157,161,170,225,272,275,362,376,378,405,407,409,412,413,540],attributeseri:591,attributproperti:14,attrkei:479,attrlist:540,attrnam:[14,29,35,43,49,118,161,242,395,469,472,542],attrread:[14,35,540],attrtyp:[14,540,541],attrvalu:29,attryp:541,atttribut:182,atyp:470,auction:196,audibl:[112,390],audienc:151,audio:[0,52],audit:[0,125,225,226,256,259,412,444,474,620],audit_allow_spars:77,audit_callback:[77,446],audit_in:77,audit_mask:77,audit_out:77,auditedserversess:[77,446,447],auditingtest:448,aug2010:0,aug:[2,66,189],august:[189,568],aura:323,aut:30,auth:[50,77,221,228,230,231,247,512,576,599,600,608,614,619],auth_password:512,auth_password_valid:221,auth_profile_modul:231,auth_user_model:221,auth_username_valid:[0,221],authent:[0,12,45,46,54,63,77,135,194,219,221,228,503,510,512,515,521,531,533,600,613,614,616,619],authenticated_respons:609,authentication_backend:221,authenticationmiddlewar:221,author:[0,76,100,149,188,217,228,284,287,571],auto:[0,2,6,9,14,16,19,21,22,23,26,29,37,39,43,44,45,47,53,56,61,84,102,118,124,126,128,135,137,146,149,152,179,194,196,204,208,215,221,225,228,231,237,241,242,249,252,253,364,370,371,376,390,391,395,409,418,434,463,466,470,474,479,482,487,489,492,503,513,520,521,530,533,542,547,552,553,554,555,594,600,620],auto_close_msg:434,auto_create_character_with_account:[0,83,152,221],auto_help:[23,29,33,174,197,237,249,253,304,439,450,476,552,553],auto_help_display_kei:[237,253,552],auto_id:[578,580,582,584,608],auto_look:[29,304,439,450,476,552],auto_now_add:69,auto_puppet:221,auto_puppet_on_login:[0,83,221],auto_quit:[29,304,439,450,476,552],auto_step_delai:364,auto_transl:[112,390],autobahn:[0,503,509,520],autoconnect:221,autocr:[14,157,170,272,376,540],autodoc:[0,50,620],autofield:[194,221],autologin:600,autom:[3,16,32,50,51,69,163,168,169,200,208,210,212,218,219,614],automat:[0,2,5,7,9,12,14,16,19,20,21,27,29,32,33,35,36,43,44,45,49,51,54,55,58,64,69,74,75,78,81,82,84,86,100,101,102,104,105,111,117,121,124,125,126,130,131,133,136,137,138,139,140,141,143,144,145,146,151,152,169,170,172,173,175,176,178,180,183,188,191,193,201,202,204,205,208,210,212,213,214,217,221,223,228,235,236,237,242,247,248,250,252,265,273,275,286,287,288,300,305,313,316,322,324,335,342,364,372,376,378,390,391,408,436,452,458,470,473,474,484,486,487,497,506,509,512,517,530,533,535,546,550,552,553,554,555,566,568,593,594,601,620],automatical:487,autopaus:[81,376],autostart:[44,481,484,548],autumn:[94,346],avaiabl:136,avail:[0,1,6,8,10,11,12,14,15,19,21,23,24,29,32,33,34,35,37,39,43,44,45,49,50,52,54,55,57,59,61,63,65,66,70,71,72,76,78,82,88,93,94,96,97,99,100,101,102,103,105,108,112,113,118,124,129,131,133,134,135,138,139,140,141,143,144,145,146,147,149,150,151,152,155,157,161,163,168,169,174,175,178,179,180,181,182,184,186,191,194,195,196,199,200,201,202,203,205,207,210,211,212,213,215,216,217,218,220,221,225,228,233,234,235,236,237,239,242,244,247,248,249,250,252,253,254,265,280,287,292,303,305,310,313,322,323,326,329,332,338,340,342,346,349,366,376,390,391,395,407,408,412,418,434,436,441,442,452,455,458,462,470,474,477,478,479,482,497,521,523,524,535,546,547,552,553,554,555,566,568,586,601,613,616],available_chan:247,available_choic:[29,552],available_funct:478,available_languag:390,available_weapon:441,avatar:[70,131,135,138,139,143,474,512,594],avatarid:512,avenu:[84,316],averag:[8,15,81,112,122,124,126,217,252,287,300,390],average_long_link_weight:[124,371],avers:413,avoid:[0,7,9,11,12,14,20,21,23,29,41,43,49,54,61,63,93,105,123,124,139,140,143,144,147,149,155,187,188,205,212,221,235,242,300,362,371,390,407,434,458,469,473,501,511,521,531,540,542,543,545,546,547,550,553,555,559,568,591],awai:[6,12,14,16,17,29,33,35,43,44,45,55,64,69,88,100,101,102,105,119,123,124,126,139,140,144,146,163,171,172,177,179,180,182,189,191,192,197,217,221,248,258,308,339,342,362,370,373,407,412,425,434,440,442,462,474,482,532,545,568,576],await:55,awak:149,awar:[0,14,16,21,23,29,49,70,81,96,124,126,127,132,149,172,188,190,194,218,300,305,326,362,364,371,373,391,440,458,474,542,545],award:149,awesom:[54,74,143],awesome_func:144,awesomegam:208,awhil:100,aws:[76,217],aws_access_key_id:76,aws_auto_create_bucket:76,aws_bucket_nam:76,aws_default_acl:76,aws_s3_cdn:[225,226,259,260,261],aws_s3_custom_domain:76,aws_s3_object_paramet:76,aws_s3_region_nam:76,aws_secret_access_kei:76,aws_storage_bucket_nam:76,awsstorag:[225,226,259,260,620],axe:149,axel:76,axes:[124,370],axi:[104,370],axio:50,ayi:[110,455],azur:[76,212,217],b2342bc21c124:12,b64decod:564,b64encod:564,b_offer:313,ba214f12ab12e123:12,baaad:11,back:[0,3,9,10,12,14,15,16,19,20,21,23,27,29,32,34,38,44,45,49,50,52,53,54,55,56,66,67,69,72,74,81,82,100,101,102,105,107,118,119,121,123,124,126,128,131,132,134,135,136,138,139,141,143,144,146,147,148,149,150,151,152,155,157,161,163,165,167,169,172,174,177,178,179,180,182,183,184,186,187,188,191,194,196,197,205,208,212,216,217,218,221,223,224,225,228,236,239,242,247,251,265,305,308,313,319,322,341,355,364,391,395,407,409,412,418,432,434,462,476,492,497,501,504,510,512,515,530,542,549,552,553,561,568,572],back_exit:[100,102,409],backbon:[194,221,546],backend:[0,4,11,43,44,50,51,54,74,76,205,221,225,226,540,568,574,588,594,598],backend_class:540,background:[18,29,54,55,61,85,143,152,188,194,208,217,218,219,221,268,387,545,555,617],backpack:[21,152,155,157,163,408,410,411,418],backpack_item_s:155,backpack_usag:155,backport:0,backtick:[128,555],backtrack:132,backup:[12,39,45,55,138,139,216,217,251,546],backward:[0,19,27,29,169,180,230,561],bad:[11,44,66,82,102,124,127,131,143,145,149,150,161,169,184,206,447,494],bad_back:470,baddi:146,badli:395,bag:[33,81,133,322,568],baier:110,bak:110,bake:[88,126,370],baker:149,balanc:[81,147,149,167,171,172,178,200,554],balk:157,ball:[21,220,234,235,323,479],ballon:[170,335],balloon:335,ban:[0,19,35,62,109,133,149,228,240,247,253,256,296,470,620],ban_us:247,band:[0,52,70,221,512,515,516],bandit:[101,185],bandwidth:[76,505],banid:240,bank:[132,147],banlist:[19,256],bar:[0,14,19,29,32,36,44,47,52,67,70,74,112,119,124,126,133,138,145,221,242,362,386,387,388,391,405,407,409,412,413,462,467,492,516,540,552,555,568,620],bardisk:104,bare:[23,98,130,132,141,155,158,169,177,220,339,387],barehandattack:167,bargain:69,bark:323,barkeep:[6,104,391],barrel:[104,146],barriento:76,barstool:140,barter:[44,132,147,151,225,226,259,311,620],bartl:200,base:[2,4,6,7,11,12,15,18,19,23,24,29,32,33,35,37,39,44,45,48,49,52,53,54,57,67,69,71,72,76,81,82,83,87,88,89,92,93,96,100,105,110,115,118,126,128,129,130,131,132,134,135,136,138,139,144,145,146,147,150,151,152,155,158,163,165,167,168,169,170,171,173,174,176,177,179,181,182,188,189,191,192,193,194,195,196,197,200,202,205,208,210,211,212,216,217,219,221,225,228,229,230,231,233,235,236,237,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,256,257,258,263,265,266,269,271,272,273,274,275,277,278,281,282,284,285,287,288,290,296,297,299,300,303,304,305,306,307,308,309,313,314,316,317,319,320,322,323,324,326,327,329,330,332,333,335,336,338,339,340,341,342,343,346,347,349,355,356,358,359,361,362,364,365,368,369,370,371,372,373,376,377,378,380,382,384,385,388,390,391,392,394,395,400,401,405,406,407,408,409,410,411,412,413,414,416,417,418,420,421,422,423,424,425,426,427,428,429,432,434,436,437,439,440,441,442,443,447,448,450,452,453,455,456,458,459,461,462,464,465,466,470,472,473,474,476,478,479,481,482,483,484,485,486,487,489,490,492,494,495,498,499,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,523,524,525,528,530,531,532,533,535,536,537,540,541,542,543,545,546,547,550,551,552,553,554,555,556,558,559,560,561,562,563,564,565,566,567,568,573,576,577,578,579,580,581,582,583,584,586,588,589,590,591,592,593,594,599,600,602,603,608,609,612,613,614,616,617,618,619,620],base_account_typeclass:[13,135,221],base_batchprocess_path:221,base_channel_typeclass:[19,221],base_char_typeclass:198,base_character_class:151,base_character_typeclass:[151,194,195,198,221,228,242],base_exit_typeclass:[124,221],base_field:[576,577,578,580,581,582,584,608],base_filt:588,base_guest_typeclass:[64,221],base_object_typeclass:[43,135,139,221,479,542],base_room_typeclass:[124,221],base_script_path:469,base_script_typeclass:[44,221],base_session_class:221,base_set:189,base_system:[76,82,85,86,89,91,100,106,109,122,125,175,221,225,226,259,620],base_systesm:100,base_word:568,baseapplic:305,basebuff:[81,376,377],baseclass:441,basecommand:133,baseconsum:305,basecontain:547,baseevenniacommandtest:[11,253,266,282,288,297,299,309,314,317,324,327,330,333,336,343,347,356,359,382,385,392,424,437,443,566],baseevenniatest:[11,151,155,161,163,221,269,275,278,288,309,317,320,343,361,368,388,392,401,421,422,423,425,426,427,428,429,443,448,456,459,461,518,566,592,609],baseevenniatestcas:[11,221,324,394,566],baseinlineformset:[577,584],baselin:[152,189],baseline_index:[0,568],basenam:[196,594],baseobject:49,baseopt:562,basepath:568,basepermiss:589,baseposition:305,basequest:414,basest:308,basetyp:[474,546],basetype_posthook_setup:[273,474],basetype_setup:[35,181,228,229,256,273,474],basetypeclassfilterset:588,bash:[4,128,213,441],basi:[23,100,124,125,138,175,193,217,221,250,258,371,391,521,542,551],basic:[0,4,13,17,18,21,23,35,38,52,54,57,58,59,63,67,69,72,74,83,93,95,101,102,104,105,110,120,124,126,133,134,138,141,142,143,144,146,147,151,152,155,163,165,167,168,169,175,176,177,178,180,181,188,189,194,195,196,197,213,218,223,228,229,242,247,249,256,258,270,286,322,335,339,341,349,376,441,450,452,455,469,471,474,523,608,617,620],basic_map_s:[99,349],basicauthent:221,basiccombatrul:[338,339,340,341,342],basicmapnod:[124,371],bat:[189,215],batch:[24,26,105,126,138,149,221,225,226,241,253,397,479,501,540,543,544,620],batch_add:[479,540,543],batch_cmd:[16,138],batch_cod:[15,546],batch_code_insert:15,batch_create_object:479,batch_exampl:546,batch_import_path:[15,16],batch_insert_fil:16,batch_update_objects_with_prototyp:479,batchcmd:[26,147,149,241],batchcmdfil:[16,546],batchcod:[0,16,26,79,105,133,149,164,200,241],batchcode_map:105,batchcode_world:105,batchcodefil:15,batchcodeprocessor:546,batchcommand:[0,16,26,79,82,121,133,146,164,241,546],batchcommandprocessor:546,batchfil:[16,17,105,546],batchprocess:[225,226,232,238],batchprocessor:[15,79,221,225,226,241,259,396,544,620],batchscript:[15,546],batteri:228,battl:[126,146,149,151,157,178,219,338,339,340,341,342,377,407,409,620],battlecmdset:[338,339,340,341,342],bayonet:88,baz:[119,462],bazaar:71,beach:[105,555],bear:[440,458],beat:[141,147,149,161,178,417],beaten:[151,178,442],beauti:[82,100,182,194],beazlei:200,becam:188,becasu:9,becaus:[0,1,4,6,13,14,15,17,21,29,32,33,35,39,43,46,48,49,50,51,54,55,56,57,59,63,66,71,82,86,93,101,102,105,123,124,128,131,133,136,139,140,141,143,144,150,151,152,155,157,167,170,171,172,177,178,179,183,186,187,188,189,193,194,195,207,208,209,221,236,249,254,256,281,286,308,341,362,368,370,390,418,474,485,504,510,523,533,545,555,562,564,568,576,577,584,594,599],becom:[0,6,29,35,38,43,47,52,55,65,69,70,82,96,102,105,111,112,118,119,127,128,131,133,137,138,139,141,143,146,147,149,152,155,157,161,163,167,177,182,184,187,199,220,221,223,239,256,319,323,326,335,339,390,391,395,409,418,462,474,479,531,546,552,555,566],beeblebrox:[110,455],been:[4,6,8,15,16,29,32,33,44,45,58,66,74,77,81,82,97,100,101,102,104,111,112,118,124,126,128,136,141,143,145,151,152,169,178,179,182,184,186,188,191,192,194,195,197,205,207,219,223,224,228,235,236,237,241,242,247,250,256,258,265,287,322,335,338,342,349,362,371,391,395,407,409,417,442,458,464,466,470,473,474,478,479,486,487,494,506,510,512,520,530,531,532,533,535,540,542,546,550,551,568,571,573,584,599,615,620],befit:49,befor:[0,1,2,5,6,8,9,10,11,12,14,15,16,17,19,20,21,23,29,33,35,36,41,43,44,46,47,48,49,51,52,54,55,56,66,68,69,71,72,74,76,77,81,82,83,88,91,96,100,101,104,105,114,119,123,124,125,126,128,133,134,136,139,140,141,142,143,144,147,149,151,152,155,157,161,167,168,169,171,172,178,179,180,182,186,187,188,190,191,192,194,195,196,197,204,205,208,211,212,216,217,219,220,221,223,228,233,234,237,242,247,249,250,254,256,258,263,274,277,280,281,286,290,292,308,316,319,322,324,326,338,342,346,362,370,371,376,387,390,391,394,395,405,407,408,409,411,434,439,441,442,446,447,450,462,469,470,473,474,477,478,479,481,485,486,487,492,501,510,512,518,524,526,528,530,531,535,537,540,545,546,547,548,551,552,553,554,556,560,561,564,568,599,613,619],beforehand:[14,185,210,547],beg:16,beggar:102,begin:[0,6,8,10,11,15,16,23,27,33,35,46,55,82,100,101,102,105,110,112,128,132,134,136,143,147,148,163,169,170,176,178,186,192,195,197,202,221,248,249,286,338,340,349,370,377,380,390,391,455,462,472,474,501,545,546,552,555,565,568],beginn:[0,2,23,128,130,138,140,147,153,154,156,159,160,162,186,189,371,402,552,620],begun:377,behav:[14,15,46,52,82,100,126,134,141,143,144,151,175,186,197,218,341,568],behavior:[0,8,21,23,24,27,33,39,43,52,61,74,84,86,95,100,102,112,124,138,155,188,197,228,237,253,300,316,322,340,342,371,391,442,450,474,492,540,552,553,577,584],behaviour:[21,23,35,104,188,221,481,538,548,554,568],behind:[9,12,14,23,34,43,47,56,61,100,110,113,124,126,127,130,144,146,155,179,182,188,221,241,395,442,455,458,482,487,559],behindthenam:455,being:[0,1,4,6,7,8,14,15,21,23,29,32,33,37,41,43,44,46,48,49,53,55,59,67,70,76,79,81,82,84,88,90,96,100,102,105,107,110,112,118,120,124,126,127,131,135,137,138,139,140,143,144,146,149,150,151,153,154,155,156,159,160,161,162,167,171,179,183,186,187,188,194,196,197,208,209,215,217,219,221,228,234,242,248,252,253,256,277,326,329,338,339,340,341,342,349,371,376,378,384,390,391,395,405,412,418,432,434,442,466,474,481,494,497,504,524,533,535,540,542,545,546,548,552,553,554,555,568,571,573,577,584,588,591,599],beipmu:206,belong:[16,67,75,124,131,136,143,152,155,157,194,219,236,362,391,409,462,466,477],belongs_to_fighter_guild:47,below:[1,4,6,7,8,10,11,12,14,15,16,17,19,20,21,23,27,29,32,33,34,35,38,41,43,44,45,49,55,56,58,61,66,70,75,76,77,78,81,82,85,88,89,90,98,100,102,104,105,109,112,118,119,121,124,125,128,131,140,141,143,144,147,149,152,155,161,168,169,172,175,177,181,182,183,187,189,191,193,194,195,197,205,207,208,212,213,216,217,218,221,231,242,250,258,265,300,310,316,322,323,338,339,340,341,342,370,371,376,378,384,387,390,391,395,401,462,466,473,474,482,504,524,540,542,543,552,554,555,560,593],ben:[92,149,417],beneath:20,benefici:[182,340],beneficiari:407,benefit:[66,71,150,199,208,212,217,219,221,236,540,546,552],bernat:110,berserk:[118,395],besid:[10,16,21,41,66,81,98,102,105,126,141,341,387],best:[27,44,54,66,71,74,81,82,92,100,119,122,125,126,135,138,147,149,150,163,168,169,172,176,189,194,202,206,208,216,219,220,221,249,265,300,390,418,462,479,492,512,554,562,620],bet:[12,21,35,45,51,542],beta:[0,25,132,148,209,217,221,620],betray:29,better:[0,1,6,8,17,29,32,33,35,43,44,47,52,59,61,69,71,81,88,102,116,120,124,125,127,128,130,131,133,136,137,138,139,140,141,147,150,151,169,174,177,186,189,194,195,205,323,339,358,371,407,442,474,479,509,512,515,523,540,546,568,599],bettween:177,between:[0,1,4,8,12,13,14,16,19,21,23,24,32,33,38,43,44,45,47,52,55,59,61,63,66,70,72,75,77,78,81,82,85,93,100,101,102,103,104,108,110,113,118,119,120,124,126,128,131,132,133,135,138,139,143,144,146,149,152,155,161,163,167,168,169,171,177,178,180,181,186,187,188,191,197,208,212,213,217,221,234,237,242,247,249,252,253,257,258,268,286,287,290,313,316,322,323,329,332,338,342,368,370,371,372,373,378,390,391,394,395,407,412,452,458,462,474,479,487,492,501,504,511,512,515,516,523,524,531,543,545,546,548,552,554,555,556,568,572,602],bew:346,bewar:181,beyond:[7,13,23,30,39,51,70,82,100,131,168,189,195,217,237,242,253,258,265,303,323,376,391,408,434,442,462,474,478,523,540,542,552,554],bglist:567,bias:242,bidirect:501,big:[0,15,16,19,23,35,49,51,54,75,88,121,127,133,134,137,141,144,146,149,150,158,161,168,171,172,177,189,221,234,249,251,394,395,411,418,434,472,546,553,565,568],bigautofield:[0,221],bigger:[63,112,118,136,152,179,191,197,368,370,390,395,417],biggest:[161,202,395,568],biggui:23,bigmech:179,bigsw:172,bikesh:136,bill:[217,219],bin:[4,131,137,189,192,211,212,213,216],binari:[8,124,205,215,503,505,520],bind:208,birth:608,birthdai:0,bit:[6,10,12,14,18,25,43,44,52,54,56,59,66,82,100,101,102,110,121,133,135,136,137,138,140,142,143,144,147,149,150,151,152,161,172,175,180,189,192,195,197,211,213,215,221,247,254,281,323,470,474,546],bitbucket:168,bite:[105,147],bitten:136,black:[0,61,144,177,188,221,545],blackbox:322,blackhaven:124,blacklist:[19,219,247],blacksmith:[41,543],blade:[149,172,323,441],blanchard:110,blank:[29,69,77,95,195,196,228,450,545],blankmsg:[95,450],blargh:43,blast:[322,323],blatant:56,blaufeuer:136,bleed:[12,138,395,554],blend:[111,335],blender:[111,126,335],blind:[61,114,183,434],blind_target:434,blindcmdset:434,blindli:470,blink:[134,434],blink_msg:434,blist:9,bloat:152,blob:101,block:[0,1,7,8,9,24,27,29,32,35,44,54,56,61,93,94,115,130,131,133,137,140,143,165,169,171,186,191,194,195,197,217,218,219,240,241,242,304,305,310,342,346,362,368,371,405,407,409,439,440,441,467,476,511,546,552,555,568,617,620],blockedmaplink:[124,371],blocker:124,blocking_cmdset:1,blockingcmdset:1,blockingroom:1,blocknam:54,blockquot:620,blocktitl:197,blog:[0,127,130,132,200,203,217,221,223],blowtorch:206,blue:[15,61,141,143,168,188,221,316,417,441,545],blueprint:[52,105,168],blunt:152,blurb:[93,149,209,221],board:[35,37,132,147,180,182,200],boat:[21,180,236],bob:[23,50,240,310,543],bodi:[7,18,20,23,29,43,54,81,82,101,143,155,157,165,169,194,285,329,376,377,408,410,411,413,465,467,494,548],bodyfunct:[44,80,134,225,226,259,396,620],bodymag:323,bog:[147,179],boi:47,boiler:[29,49,54],bold:[7,209,620],bolt:[341,479],bone:[29,130,177],boni:152,bonu:[121,155,157,161,177,217,339,340,406,410,411,412,417,482],bonus:[149,161,163,172,339,411],bonus_typ:[161,417],book:[43,54,74,145,149,157,165,175,177,182,186,200,305],bool:[0,7,13,21,23,29,34,36,44,81,95,124,161,228,229,230,231,233,234,235,236,237,247,249,256,257,258,265,277,284,287,305,308,310,313,316,319,322,338,340,341,342,349,362,370,371,372,373,376,384,387,390,391,395,405,407,411,414,417,450,455,458,462,464,465,466,470,472,473,474,478,479,481,482,483,484,485,486,487,492,497,498,503,504,509,510,511,515,520,521,529,531,533,535,540,541,542,543,545,546,548,550,552,553,554,555,556,559,561,563,565,567,568,571,576,578,581,582,589,616],booleanfield:[194,576,582],booleanfilt:588,boom:[139,179],boost:[407,467],boot:[19,35,62,109,133,139,192,212,218,240,247,256,296,487],boot_us:247,bootstrap:[0,24,54,62,215,221,620],border:[52,105,169,221,239,305,308,310,450,551,554,566],border_bottom:554,border_bottom_char:554,border_char:554,border_color:221,border_left:554,border_left_char:554,border_right:554,border_right_char:554,border_top:554,border_top_char:554,border_width:554,borderless:169,borderstyl:450,bore:[56,130,147,219],borrow:[21,235,501],bort:[29,30,552],boss:[149,169],bot:[8,137,194,201,202,219,221,225,226,227,231,247,497,503,504,511,533,614],bot_data_in:[229,497],both:[0,1,4,9,10,11,17,19,20,21,23,29,32,33,34,36,38,41,45,47,49,50,54,58,59,63,69,70,78,79,81,82,85,86,97,100,102,103,104,105,106,110,115,118,119,124,126,127,128,136,138,140,141,143,144,146,149,150,155,157,163,167,168,169,172,175,178,180,182,186,187,192,193,194,195,197,201,204,205,208,217,218,219,220,221,233,235,242,247,252,256,257,258,268,305,310,313,322,329,335,341,342,355,364,370,371,373,376,387,395,407,408,412,414,418,442,455,462,470,472,474,478,479,480,482,485,487,501,510,520,521,523,530,532,535,540,541,545,548,552,554,555,563,568,591,594],bother:[151,219,223,417,540],botnam:[202,247,504,533],botnet:219,boto3:76,boto:76,botstart:229,bottl:104,bottom:[8,10,30,49,51,52,54,76,84,105,123,124,132,133,140,143,149,152,168,169,181,192,194,197,208,209,236,329,341,362,370,479,546,551,553,554,620],bottommost:124,bought:418,bouncer:[20,551],bound:[20,71,118,138,139,168,284,340,341,370,395,464,568],boundari:[118,124,161,394,395,568],bow:[149,407,479],bowl:[88,322],box1:170,box2:170,box:[0,6,10,32,35,37,38,43,50,64,74,88,101,102,105,130,134,135,136,139,142,143,144,158,165,169,170,177,185,189,191,197,204,217,220,221,242,303,364,370,391,469,501,546,608,620],brace:[1,82,100,102,186,474,545],bracket:[7,85,128,252,268,555],branch:[0,4,97,113,119,124,126,128,133,189,212,221,223,308,409,452,458,462,620],branch_check_tim:409,branch_max_lif:409,branchanam:12,branchnam:12,brandmudai:200,brandymail:[103,126,329],brawni:152,braymer:76,bread:[57,88,126,322],breadrecip:322,breadth:342,break_lamp:434,break_long_word:554,break_on_hyphen:554,breakag:149,breakdown:252,breaker:501,breakpoint:[10,57,225],breath:[139,144],breathi:152,breez:[44,190],breviti:[143,169],bribe:29,bridg:[45,67,82,121,129,146,183,205,442],bridgecmdset:442,bridgeroom:442,brief:[1,7,51,57,58,69,95,101,134,137,142,165,169,179,218,300,412,450,474,536],briefer:[39,218],briefli:[57,62,139,217,218,434],brigandin:152,bright:[61,85,114,124,143,188,221,268,434,545],brightbg_sub:545,brighten:61,bring:[0,119,124,127,150,166,180,182,191,193,194,205,212,342,371,440,462,534,620],broad:[161,181],broadcast:[77,221,228,256,407,501],broadcast_server_restart_messag:221,broader:[181,391,474],brodowski:76,broken:[0,33,61,71,128,132,147,221,390,411,434],brought:149,brown:545,brows:[0,10,52,126,137,165,169,175,181,184,186,189,191,193,197,217,219,221,376,614],browser:[0,24,50,52,53,54,57,60,74,128,131,132,137,138,165,189,193,194,195,197,207,208,210,211,213,215,217,219,221,307,520,521,616,617],brush:161,brutal:300,bsd:[0,76,199,572],bsubtopicnna:253,btn:18,bucket:[76,263,446],budur:[110,455],buf:550,buff:[0,225,226,259,374,620],buffabl:378,buffableobject:[81,378],buffableproperti:[81,376],buffcach:[81,376,377],buffclass:[81,376],buffer:[23,27,52,82,251,263,494,521,550,616],buffhandl:[81,376],buffkei:[81,376,377],bufflist:376,bufftyp:376,bug:[0,6,9,11,15,55,76,93,121,127,143,147,150,168,189,191,199,209,218,474,542],bugfix:[0,76],buggi:[14,552],bui:[78,149,157,161,184,196,313,418],build:[0,3,4,5,8,10,14,15,16,17,19,20,21,23,24,26,29,33,37,38,39,43,45,47,49,52,54,55,59,62,69,71,72,73,75,79,81,83,88,95,104,112,121,124,125,126,130,131,132,133,135,136,137,138,139,141,142,143,146,148,150,158,161,164,166,168,176,189,191,193,197,200,211,212,213,214,215,221,225,226,232,234,238,240,241,248,249,264,265,266,285,300,308,310,346,349,355,364,365,367,368,370,371,372,390,409,412,418,440,470,474,478,479,492,503,504,546,554,608,620],build_forest:104,build_link:371,build_match:234,build_mountain:104,build_techdemo:[225,226,259,396,402],build_templ:104,build_world:[225,226,259,396,402],buildchannel:19,builder:[0,1,13,14,16,19,32,33,35,41,43,47,50,51,58,71,82,84,95,100,111,122,124,126,132,135,139,140,147,150,167,169,184,191,192,221,240,242,247,248,252,265,300,316,335,346,355,362,364,376,391,434,442,450,470,474,523,542,543,546,589,620],buildier:479,building_menu:[82,225,226,259,260,620],buildingmenu:[82,265,266],buildingmenucmdset:265,buildprotocol:[489,502,503,504],built:[0,8,15,20,24,29,32,57,63,74,110,111,126,128,131,132,138,140,143,146,147,150,168,169,177,180,191,196,209,211,212,219,231,258,335,370,371,372,378,390,466,473,482,487,540,542,543,546,550,552,560],builtin:[7,505],bulk:[33,219,221],bullet:[128,147],bulletin:[35,37,132,147],bulletpoint:128,bump:174,bunch:[17,20,52,71,72,136,140,141,144,169,376],buri:[71,146],burn:[81,146,147,150,177,217,441],burnt:149,busi:[77,78,104,131,217,313],butter:[57,322],button:[0,10,12,15,16,21,23,35,38,50,51,52,53,54,67,70,74,79,100,126,132,138,141,142,143,189,194,195,242,305,323,433,434,441,524,553,581,620],button_expos:441,buyer:184,buyitem:418,byngyri:[112,390],bypass:[0,9,35,41,55,58,115,134,139,140,146,169,178,188,192,221,228,230,242,256,355,470,472,542,548,565,568,600],bypass_mut:[19,256],bypass_perm:568,bypass_superus:35,byt:474,bytecod:545,bytes_or_buff:616,bytestr:[501,568],bytestream:568,c123:[85,126],c20:247,c_creates_button:524,c_creates_obj:524,c_dig:524,c_examin:524,c_help:524,c_idl:524,c_login:[8,524],c_login_nodig:524,c_logout:[8,524],c_look:[8,524],c_measure_lag:524,c_move:524,c_moves_:524,c_moves_n:524,c_score:191,c_social:524,cabinet:42,cach:[0,11,14,23,44,49,52,53,54,56,69,124,139,181,187,221,228,237,252,256,258,273,346,349,370,376,377,378,394,440,441,470,473,474,478,496,535,540,542,543,544,557,559,568,577,584,601],cache_dir:221,cache_inst:559,cache_lock_bypass:470,cache_s:[535,559],cachecontrol:76,cached_properti:568,cachekei:81,cachevalu:376,cactu:[145,341],cake:21,calcul:[0,1,20,44,55,81,94,99,118,124,136,149,155,170,177,178,181,191,236,277,290,338,339,341,342,346,349,368,371,390,394,395,479,551,556,559,568,613,619],calculate_path_matrix:370,calculated_node_to_go_to:29,calculu:167,calendar:[0,89,100,126,176,277,290,556,620],call:[0,1,4,6,7,8,11,12,13,14,15,16,19,20,21,27,29,32,34,35,36,39,43,44,45,46,48,49,50,52,53,55,57,59,63,65,67,69,70,71,74,79,81,82,88,101,102,104,105,109,113,114,117,118,119,122,123,124,126,128,131,132,133,134,135,136,137,138,140,141,143,144,145,147,149,150,151,152,155,157,161,163,165,167,168,169,170,171,172,173,175,177,178,179,180,181,182,183,184,185,186,187,188,190,191,194,195,196,197,198,201,202,204,205,211,212,213,216,217,218,220,221,223,228,229,233,234,235,236,237,239,242,247,250,251,252,253,254,256,258,265,271,273,274,277,280,281,284,285,286,287,288,290,292,296,300,303,305,306,307,308,310,313,316,319,322,323,324,326,335,338,339,340,341,342,346,349,355,362,368,371,373,376,378,380,384,390,391,395,400,405,406,407,408,409,411,412,413,414,432,434,436,439,440,441,442,450,458,462,469,470,473,474,477,478,479,481,483,485,486,487,489,492,494,496,497,501,502,503,504,505,506,507,508,510,511,512,513,514,515,516,517,519,520,521,523,524,525,530,531,532,533,534,537,540,542,543,545,546,547,548,550,552,553,554,555,556,559,561,563,564,565,566,568,577,584,589,594,608,612,614,617,618,619],call_async:55,call_command:11,call_ev:[102,286],call_inputfunc:[67,531,533],call_task:486,callabl:[0,24,27,29,36,43,48,53,54,59,65,95,119,126,152,182,184,191,221,265,274,287,308,340,341,370,450,462,474,477,478,479,483,487,490,492,494,502,533,547,550,552,553,555,556,561,563,564,568],callables_from_modul:568,callbac:82,callback1:552,callback:[20,23,24,27,29,34,36,48,55,77,82,87,89,95,119,126,172,175,229,252,265,266,274,277,284,285,286,287,288,290,319,439,447,450,462,474,483,486,487,490,492,494,497,501,502,503,505,519,520,523,534,552,556,561,566,568],callback_nam:[284,287],callbackhandl:[225,226,259,260,283],called_bi:233,calledbi:568,caller:[0,1,6,7,14,15,19,20,23,27,32,33,35,38,39,48,49,55,59,67,69,70,79,82,86,87,88,95,98,100,104,105,119,123,124,128,133,139,140,141,145,152,167,169,170,171,172,173,174,177,178,179,180,182,184,186,191,204,229,233,234,235,237,239,242,243,247,248,249,250,252,253,265,266,285,300,303,304,305,306,319,322,329,335,349,362,376,387,391,406,407,408,412,418,434,436,439,441,442,450,462,470,474,476,478,479,540,546,550,552,553,555,562,566,568],callerdepth:568,callertyp:233,callinthread:537,calllback:286,callsign:[29,305,497],calm:105,came:[1,100,105,130,133,143,155,179,189,190,200,362,376,409,440,474],camelcas:7,camp:[105,149],campfir:105,campsit:105,can:[0,1,3,4,5,6,7,8,9,10,11,13,15,16,17,18,19,20,21,23,24,25,27,29,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,60,61,63,64,65,66,67,69,70,71,72,74,75,76,77,78,79,81,83,84,85,86,87,88,89,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,110,111,112,113,114,115,118,119,120,121,122,123,124,126,127,128,131,132,133,134,135,136,137,138,139,141,142,143,146,147,150,151,152,155,157,158,161,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,227,228,229,230,231,234,235,236,237,239,240,242,247,248,249,250,251,252,253,254,256,257,258,263,265,268,272,273,275,277,280,286,287,290,292,296,300,304,305,306,307,308,310,313,316,319,322,323,326,329,335,338,339,340,341,342,346,349,355,362,364,366,367,370,371,373,376,377,378,380,384,387,390,391,395,405,406,407,408,409,411,412,413,414,416,418,426,432,434,440,441,442,446,450,455,458,462,464,466,469,470,472,473,474,477,478,479,480,481,482,483,485,487,492,501,503,507,510,512,515,516,520,521,523,524,530,531,532,533,534,537,538,539,540,541,542,543,545,546,547,548,550,551,552,553,554,555,562,563,564,565,566,568,569,571,572,576,589,591,594,608,613,614,616,617,619,620],can_:[100,286],can_be_wield:47,can_delet:100,can_eat:100,can_ent:543,can_list_top:[249,616],can_mov:100,can_part:100,can_read_top:[249,616],can_sai:100,can_travers:100,can_us:407,cancel:[0,20,34,100,140,161,172,252,286,316,338,342,417,474,486],candid:[0,23,82,145,155,194,234,335,391,467,472,474,565],candidate_entri:467,candl:236,cannon:136,cannot:[0,1,9,11,14,15,16,20,21,23,27,29,32,37,41,43,47,51,55,58,66,81,82,93,94,95,101,115,121,124,127,132,138,139,141,145,146,147,150,151,161,167,171,174,177,179,181,184,189,191,194,197,215,217,220,221,223,228,229,236,239,242,249,265,284,287,308,322,342,346,355,364,413,440,441,450,462,465,470,472,474,478,487,540,547,549,551,554,559,568],cantanker:562,cantclear:[95,450],cantillon:200,cantmov:1,canva:182,cap:221,capabl:[35,45,67,70,81,117,126,131,132,147,169,182,221,239,436,497,519,608],capac:411,cape:168,capfirst:197,capit:[0,7,32,56,59,70,96,112,113,131,143,144,149,152,172,189,191,242,310,326,390,395,418,458,516,545,555,568,572],captcha:194,caption:128,captur:[1,77,186,221,561],car:[38,88,180],carac:379,carbon:[322,323],card:[124,219,372,373],cardin:[124,169,174,182,242,370,371,372],care:[12,14,23,29,55,56,69,77,81,100,102,118,124,128,131,139,143,149,150,161,167,168,175,178,180,182,186,188,190,199,205,218,222,228,235,256,303,322,335,346,349,355,358,364,370,391,395,408,439,440,442,452,469,474,523,542,546,550,552,553,554,568],career:150,carefulli:[8,45,51,81,100,105,126,152,194,221],carri:[21,35,47,132,134,138,140,147,155,161,163,178,196,258,316,323,339,340,411,413,440,469,531,541],carried_weight:170,carrying_capac:170,carv:88,cascad:[221,559],case_insensit:305,case_sensit:[112,391],caseinsensitivemodelbackend:[221,600],cast:[43,119,120,144,157,171,225,226,259,311,321,341,407,413,462],caster:[323,341,413],castl:[15,47,105,121,124,135,146,346,442],cat:[208,211],catchi:[192,221],categor:[47,131,216,474,573],categori:[0,4,14,23,26,29,33,43,47,69,75,86,88,119,124,125,126,128,133,136,145,155,157,171,181,187,197,221,230,237,238,239,240,241,242,247,248,249,250,251,252,253,254,257,265,272,275,281,285,296,299,300,303,306,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,364,376,380,384,391,395,408,413,414,434,436,440,441,442,450,452,462,464,465,466,467,469,472,474,478,479,481,483,523,540,541,543,548,550,552,553,555,560,562,565,568,588,616],categoris:167,category2:560,category2_id:560,category_id:560,category_index:462,cater:[150,172],caught:[6,9,29,140,257],cauldron:323,caus:[0,6,11,21,35,52,56,75,81,91,131,133,139,172,173,178,191,205,217,221,236,256,269,281,319,323,362,371,407,434,474,523,552,554,568],caution:[52,100,175,221,552],cave:[101,124,364,365],caveat:[24,55,76,140,170,222],caveman:167,cblue:12,cboot:[56,109,133,296],cc1:215,cccacccc:551,ccccc2ccccc:169,cccccccc:551,ccccccccccc:169,cccccccccccccccccbccccccccccccccccc:551,ccccccccccccccccccccccccccccccccccc:551,ccreat:[0,109,133,169,201,202,203,296],cdesc:[109,133,296],cdestroi:[109,133,296],cdfaiwmpbaaj:0,cdmset:21,cdn:[76,219],ceas:242,cel:551,celebr:147,cell:[0,105,121,146,169,197,450,551,554],cell_opt:551,celltext:551,cemit:133,censu:541,center:[32,43,54,57,105,124,181,182,200,308,310,349,364,370,387,545,554,568],center_justifi:43,centos7:208,centr:[33,105],central:[0,11,19,34,61,88,105,124,131,140,152,190,212,228,236,242,253,256,257,258,306,322,368,406,407,474,479,501,548,552,559,597],centre_east:105,centre_north:105,centre_south:105,centre_west:105,centric:[35,45,112,189,191,391],cert:[207,513,517],certain:[1,9,14,15,16,21,23,35,44,45,46,48,57,58,60,70,71,78,87,88,97,114,118,126,128,131,132,138,140,142,149,155,157,161,172,180,205,211,217,221,242,257,313,319,323,362,370,390,395,405,418,434,441,446,469,472,478,485,492,498,515,516,519,534,540,541,550,554,555,565,568,577,594,608],certainli:17,certbot:[208,217],certfil:[513,517],certif:[207,217,222,513,517],certonli:208,cfg:208,cflag:211,cgi:217,cha:[29,152,161,163,169,410],chain:[0,29,43,55,101,102,124,136,149,172,286,287,371,492,524,552],chain_1:[100,102],chain_2:[100,102],chain_3:100,chain_:[100,102],chain_flood_room:100,chain_open_door:102,chain_x:[100,102],chainedprotocol:512,chainsol:136,chair:[15,39,47,49,79,132,142,147,176,186],challeng:[93,121,126,144,146,149,177,196,200,306,407],chamber:121,chan:[19,26,247],chanalia:296,chanc:[8,12,21,32,48,64,82,88,146,147,149,152,161,171,177,178,179,209,235,323,338,339,340,341,342,409,434,441,442,524],chance_of_act:[8,524],chance_of_login:[8,524],chandler:178,chang:[2,4,5,6,7,8,11,12,13,14,15,16,17,19,21,23,24,25,27,29,32,33,34,35,36,37,38,39,43,44,45,46,47,48,49,52,56,57,58,59,61,62,64,67,69,74,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,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,131,132,133,134,136,138,140,141,143,144,147,151,155,157,158,161,163,165,168,170,171,172,173,174,176,177,178,179,180,181,182,183,186,187,188,189,190,191,192,194,195,196,199,204,205,207,208,209,210,211,212,213,215,216,217,218,221,222,223,228,236,237,239,240,242,248,253,256,265,280,281,284,287,292,296,300,305,308,313,316,322,326,332,338,339,340,341,342,346,349,355,358,362,371,372,373,376,380,387,390,391,394,395,406,407,408,409,411,440,441,442,452,462,464,466,472,473,474,478,479,482,483,485,486,487,492,497,508,523,530,531,538,540,542,546,549,550,551,553,554,555,561,562,563,564,576,577,578,581,582,584,617,619,620],change_name_color:462,changelock:[19,247],changelog:[137,216,223,620],changem:221,changepag:195,channel:[0,13,14,21,23,24,26,35,37,38,46,47,49,53,54,56,58,69,109,126,127,129,130,132,133,138,139,142,145,147,191,200,204,217,221,222,225,226,228,229,235,236,242,247,253,255,256,257,258,287,296,434,503,504,511,524,530,531,533,540,548,561,565,574,578,607,609,611,620],channel_:[19,256],channel_ban:[19,247,296],channel_connectinfo:[0,221,531],channel_detail:613,channel_handler_class:0,channel_list:613,channel_list_ban:247,channel_list_who:247,channel_log_num_tail_lin:221,channel_log_rotate_s:221,channel_msg:[19,228],channel_msg_nick_pattern:[19,256],channel_msg_nick_replac:[19,247,256],channel_msg_pattern:247,channel_mudinfo:[0,221],channel_prefix:[19,256],channel_prefix_str:[19,256],channel_search:257,channel_typeclass:609,channeladmin:578,channelalia:[19,247,256],channelattributeinlin:578,channelcl:247,channelcmdset:[0,21,133],channelconnect:258,channelcr:296,channelcreateview:256,channeldb:[49,129,225,256,258,539,578],channeldb_db_attribut:578,channeldb_db_tag:578,channeldb_set:[540,543],channeldbmanag:[257,258],channeldeleteview:256,channeldetailtest:609,channeldetailview:[256,613],channelform:578,channelhandl:[0,19],channelkei:257,channellisttest:609,channellistview:613,channelmanag:[256,257],channelmessag:256,channelmixin:613,channelnam:[19,135,202,228,229,247,256,503],channeltaginlin:578,channelupdateview:256,char1:[11,177,248,566,609],char2:[11,177,248,609],char_health:442,char_nam:194,charac:36,charact:[0,2,4,6,7,8,9,11,13,14,16,17,18,20,21,23,24,27,29,33,34,35,38,41,44,45,47,49,50,54,58,61,63,66,69,70,72,74,80,81,82,84,86,87,88,90,92,93,94,95,96,100,102,103,104,105,108,110,111,112,113,114,118,119,120,121,123,124,125,126,129,130,132,133,134,136,137,138,142,143,144,145,148,155,157,158,161,163,167,168,170,171,172,173,175,176,178,179,180,181,182,183,184,185,186,187,189,193,196,197,198,204,205,221,225,226,227,228,230,234,235,237,239,242,243,244,248,249,250,252,254,256,259,265,284,286,287,303,305,306,308,316,319,326,329,332,335,338,339,340,341,342,346,349,362,364,368,370,371,373,376,380,384,387,390,391,394,395,396,400,402,406,407,408,409,411,412,413,414,417,418,420,421,422,425,434,436,440,441,442,446,450,458,462,464,466,469,470,474,485,497,518,531,536,540,542,543,545,546,551,552,554,555,566,568,569,574,588,594,607,608,609,611,616,618,619,620],character1:177,character2:177,character_cleanup:[306,308],character_cmdset:[94,97,99,346,349],character_cr:[83,225,226,259,374,620],character_encod:221,character_ent:308,character_exit:306,character_form:614,character_gener:152,character_id:474,character_leav:308,character_list:614,character_manage_list:614,character_sai:100,character_sheet:417,character_typeclass:[228,275,394,566,609],charactercmdset:[0,1,19,21,26,51,78,82,84,90,93,94,96,97,99,100,103,108,109,112,115,116,124,133,139,140,141,168,169,173,174,175,179,183,191,221,244,265,296,316,323,329,332,338,339,340,341,342,346,349,355,358,384,391,408,442],charactercreateview:[609,614],characterdeleteview:[609,614],characterdetailview:614,characterform:[608,614],characterlistview:[609,614],charactermanageview:[609,614],charactermixin:614,characterpermiss:196,characterpuppetview:[609,614],charactersheet:29,characterupdateform:[608,614],characterupdateview:[609,614],characterviewset:[196,594],characterwithcompon:275,charapp:194,charat:[95,450],charclass:151,charcreat:[26,101,102,133,152,197,239,380],charcter:19,chardata:169,chardelet:[26,133,239],chardeleteview:[466,542],chardetailview:[237,464,466,542],charfield:[69,194,564,576,577,578,580,581,582,584,608],charfilt:588,charg:217,chargen:[83,151,152,194,221,225,226,256,259,379,380,396,402,417,422,428,466,542],chargen_menu:83,chargen_step:83,chargen_t:152,chargencmdset:191,chargenroom:191,chargenview:[466,542],charisma:[149,151,152,161,163,405,410,412,417],charnam:[169,239,555],charpuppetview:542,charrac:151,charset:568,charsheet:[169,417],charsheetform:169,charupdateview:[466,542],charwithsign:275,chase:[146,407],chat:[0,13,41,54,104,125,127,130,147,149,150,169,191,200,201,202,203,221,412,521,561],chatroom:168,chatzilla:202,chdir:221,cheap:150,cheaper:48,cheapest:[124,217],cheapli:442,cheat:[2,128,177,205,620],chec:566,check:[0,1,3,4,5,6,7,8,9,10,11,12,15,16,19,20,21,23,24,29,32,37,38,39,43,44,47,48,49,50,56,58,59,63,66,69,77,82,83,86,88,95,97,100,101,102,105,126,128,132,138,139,140,141,149,150,151,152,155,163,167,169,170,171,172,177,178,180,181,182,184,185,186,187,191,192,193,194,196,197,201,203,204,208,209,210,212,213,217,218,219,221,222,228,230,233,234,235,236,237,239,241,242,247,248,249,250,252,253,254,256,258,273,281,287,300,305,306,308,313,316,319,322,329,338,346,349,362,368,371,373,376,377,378,395,400,405,407,409,411,412,413,414,417,427,434,440,442,450,452,469,470,473,474,478,479,482,484,485,486,491,492,496,501,507,512,530,531,533,535,536,537,540,542,543,545,546,548,555,562,563,566,568,569,571,576,577,584,589,616,619],check_attr:242,check_character_flag:305,check_circular:521,check_cooldown:171,check_databas:492,check_db:492,check_defeat:177,check_end_turn:178,check_error:491,check_evennia_depend:568,check_flag:[305,306],check_from_attr:242,check_grid:182,check_has_attr:242,check_light_st:442,check_lock:[196,589],check_lockstr:[0,35,192,470],check_main_evennia_depend:492,check_mixtur:305,check_obj:242,check_perm:306,check_permiss:478,check_permstr:[228,542],check_progress:187,check_to_attr:242,check_warn:491,checkbox:194,checker:[17,182,469,512,569,573],checklockstr:133,checkout:[97,126,189,212,213,216,452],checkoutdir:4,cheer:104,chemic:323,cheng:76,chest:[41,93,144,145,186],chicken:[161,303],child:[0,19,23,29,35,43,83,124,131,133,135,139,140,141,144,157,178,183,196,229,231,237,242,253,303,305,308,322,442,473,479,482,537,540,560,591],childhood:29,children:[23,47,49,131,132,135,157,179,231,373,473,474,482,492,541,542,560,565,586,614],chillout:242,chime:20,chines:[0,1,66,72],chip:[163,169,620],chisel:152,chld:[135,139],chmod:4,choci:265,choic:[7,17,23,29,32,43,44,45,46,72,95,97,104,119,126,130,132,140,141,143,144,161,178,184,186,190,199,205,217,221,228,239,242,265,266,300,313,338,406,407,450,490,550,552,555],choice1:7,choice2:7,choice3:7,choicefield:[576,577,581,582,584,586],choos:[10,12,14,15,29,32,54,55,74,75,77,99,117,119,124,126,128,131,132,136,149,158,168,175,177,178,182,184,188,189,191,194,202,222,338,339,340,341,342,349,380,407,409,434,436,440,462,505,552,555,566,620],chop:[23,441],chore:147,chose:[29,69,143,151,152,169,184,194,209,210,219,462,552],chosen:[10,29,70,82,83,100,110,178,190,387,450,552,555],chown:212,chractercmdset:442,chraract:370,chri:76,chrislr:[0,86,126,270,271,272,273,274],christa:76,christian:76,chrome:[0,206],chronicl:[95,450],chroot:208,chug:23,chunk:[15,79,105,197,494,546],church:20,church_clock:20,churn:140,cid:524,cillum:30,cinemat:[308,310],circl:181,circuit:52,circul:418,circular:[81,494,547],circumst:[29,65,101,138,141,143,168,235,341,608],circumv:240,cis:571,citi:[33,124,149,370,418],citymap:124,cjust:[32,555],clang:211,clank:[100,102],clarifi:1,clariti:[69,144,186,191,211,323],clash:[12,21,33,205,217,242,542,552],class_from_modul:568,classic:[0,15,45,48,139,149,165,178,184,200],classifi:221,classless:92,classmethod:[181,228,256,271,322,324,347,373,412,466,474,485,542,559,602],classnam:[14,66,144],classobj:542,clatter:29,claus:[76,199],clean:[0,1,14,18,19,29,81,105,121,139,141,146,178,218,235,237,242,252,306,308,313,323,338,362,376,391,409,411,413,441,442,474,482,492,496,510,520,533,542,545,550,552,559,564,567,568,576,577,584,608],clean_attr_valu:577,clean_attribut:[49,228,542],clean_cmdset:[49,542],clean_senddata:533,clean_stale_task:486,clean_str:545,clean_usernam:576,cleaned_data:194,cleaner:[0,140,144,186,191],cleanli:[45,86,95,131,218,233,237,296,411,450,494,503,509,520,533,550],cleanup:[0,14,23,27,29,63,81,82,140,271,307,308,313,319,322,376,409,414,439,442,474,552,576],cleanup_buff:376,cleanupscript:307,clear:[0,7,12,14,17,19,23,27,47,48,49,52,56,59,63,72,81,82,86,95,105,124,125,128,131,147,149,150,155,177,190,197,218,223,236,239,240,242,248,254,258,319,364,372,376,391,394,395,409,416,417,442,450,458,470,472,473,474,478,483,486,487,494,531,535,540,542,543,552,559],clear_all_sessid:472,clear_attribut:540,clear_client_list:528,clear_cont:[39,474],clear_exit:[39,474],clear_room:409,clearal:[7,248],clearer:66,clearli:[56,100,125,139,559],cleartext:[77,230,447,548],clemesha:537,clever:[0,19,21,29,55,161,470],cleverli:45,click:[0,4,10,12,50,51,52,53,54,60,65,74,128,132,137,194,197,217,221,552,620],click_top:249,clickabl:[0,62,65,128,221,249,620],clickable_top:249,client:[0,1,4,8,23,24,27,30,32,34,36,45,46,50,53,56,60,61,62,63,71,72,77,82,105,124,126,128,130,131,134,138,139,141,143,149,152,165,173,176,178,186,188,189,193,200,201,202,205,207,208,209,210,211,212,213,215,219,220,221,222,223,225,226,228,229,237,239,242,247,249,252,254,349,371,373,447,488,489,493,495,497,501,502,503,504,505,506,507,508,510,512,514,515,516,517,519,520,521,523,524,530,531,532,533,549,550,552,568,588,591,617,620],client_address:63,client_class:592,client_default_height:[30,221],client_default_width:221,client_disconnect:521,client_encod:205,client_gui:[0,497],client_height:0,client_nam:0,client_opt:[70,497,516],client_secret:201,client_typ:305,client_width:[0,23,237],clientconnectionfail:[489,503,504],clientconnectionlost:[489,503,504],clienthelp:52,clientkei:523,clientraw:[0,252],clientsess:[520,521],clientwidth:133,cliff:[104,121,134,242],climat:47,climb:[8,23,130,221,242,305,441],climbabl:[305,441],clipboard:51,clock:[20,23,56,109,133,177,296],cloer:342,clone:[5,12,66,128,131,137,189,210,213,216,223],close:[0,1,10,16,27,29,32,45,49,52,53,63,82,93,100,101,102,114,115,120,126,128,131,139,143,144,181,194,197,208,210,212,215,218,219,221,223,252,254,263,265,281,305,307,313,342,355,387,434,439,494,502,503,510,512,520,521,533,540,546,552,555],close_menu:[439,552],closer:[14,342,390],closest:[61,118,128,135,181,395,417,568],cloth:[14,108,152,225,226,259,311,546,620],clothedcharact:[84,316],clothedcharactercmdset:[84,316],clothes_list:316,clothing_overall_limit:84,clothing_typ:[84,316],clothing_type_autocov:84,clothing_type_cant_cover_with:84,clothing_type_count:316,clothing_type_limit:84,clothing_type_ord:[84,316],clothing_wearstyle_maxlength:84,cloud:[44,76,126,190,212,217,219],cloud_keep:[104,126],cloudi:44,cloudkeep:0,clr:[32,310,478,555],cls:[181,228,395],club:322,clue:441,clump:144,clunki:342,cluster:205,clutter:[128,236],cma:12,cmd:[0,1,8,16,19,21,23,33,35,56,70,79,82,97,133,140,143,169,172,174,175,180,191,204,210,218,221,235,237,239,240,241,242,247,248,249,250,251,252,253,254,265,281,285,296,299,300,303,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,364,376,380,384,391,408,434,436,440,441,442,450,452,462,463,474,516,520,521,523,546,550,552,553,616],cmd_arg:186,cmd_channel:23,cmd_cooldown:171,cmd_help_dict:249,cmd_help_top:616,cmd_ignore_prefix:[23,221,234],cmd_kei:186,cmd_last:[45,221],cmd_last_vis:[45,221],cmd_loginstart:[23,221],cmd_multimatch:[23,233],cmd_na_m:70,cmd_name:[0,70,516],cmd_noinput:[23,233,552],cmd_nomatch:[23,233,442,552],cmd_noperm:23,cmd_on_exit:[29,304,439,450,462,476,552],cmd_or_top:[249,616],cmd_total:[45,221],cmdabout:252,cmdaccept:313,cmdaccess:248,cmdaccount:252,cmdaddcom:296,cmdallcom:296,cmdapproach:342,cmdarmpuzzl:335,cmdasync:55,cmdattack:[172,177,178,191,338,339,340,341,342,441],cmdattackturnbas:408,cmdban:240,cmdbare:133,cmdbatchcod:241,cmdbatchcommand:241,cmdbigsw:172,cmdblindhelp:434,cmdblindlook:434,cmdblock:1,cmdboot:240,cmdbridgehelp:442,cmdbuff:[81,376],cmdcallback:[100,285],cmdcast:[323,341],cmdcboot:296,cmdcdesc:296,cmdcdestroi:296,cmdchannel:[19,247,296],cmdchannelcr:296,cmdcharcreat:239,cmdchardelet:239,cmdclimb:441,cmdclock:296,cmdcloselid:434,cmdcolortest:239,cmdcombathelp:[338,339,340,341,342],cmdconfirm:23,cmdcopi:242,cmdcover:316,cmdcpattr:242,cmdcraft:[88,322],cmdcraftarmour:172,cmdcreat:242,cmdcreatenpc:191,cmdcreateobj:303,cmdcreatepuzzlerecip:335,cmdcwho:296,cmddarkhelp:442,cmddarknomatch:442,cmddeclin:313,cmddefend:178,cmddelcom:296,cmddesc:[242,346],cmddestroi:242,cmddiagnos:173,cmddice:[90,169,384],cmddig:242,cmddisengag:[178,338,339,340,341,342],cmddoff:339,cmddon:339,cmddrop:248,cmddummi:299,cmddummyrunnerechorespons:523,cmdeast:442,cmdecho:[23,128,133,141,172,566],cmdedit:[82,265],cmdeditnpc:191,cmdeditorbas:550,cmdeditorgroup:550,cmdeditpuzzl:335,cmdemit:240,cmdemot:[303,391],cmdentertrain:180,cmdevalu:313,cmdevenniaintro:442,cmdevmenunod:552,cmdevscaperoom:303,cmdevscaperoomstart:[93,303],cmdexamin:242,cmdexiterror:174,cmdexiterroreast:174,cmdexiterrornorth:174,cmdexiterrorsouth:174,cmdexiterrorwest:174,cmdextendedlook:0,cmdextendedroom:0,cmdextendedroomdesc:[94,346],cmdextendedroomdetail:[0,94,346],cmdextendedroomgametim:[94,346],cmdextendedroomlook:[0,94,346],cmdfeint:178,cmdfight:[338,339,340,341,342],cmdfind:242,cmdfinish:313,cmdfocu:303,cmdfocusinteract:303,cmdforc:240,cmdget:[0,1,141,170,248,303],cmdgetinput:552,cmdgetweapon:441,cmdgit:452,cmdgitevennia:452,cmdgive:[248,408],cmdgiveup:303,cmdgmsheet:169,cmdgoto:364,cmdgrapevine2chan:247,cmdhandler:[21,23,39,67,138,225,226,228,232,234,235,236,237,239,250,251,252,253,254,303,316,335,346,349,376,408,442,473,474,482,566,568],cmdhelp:[33,178,221,249,303,338],cmdhit:[133,141,178],cmdhome:248,cmdic:239,cmdid:497,cmdinsid:180,cmdinterrupt:253,cmdinventori:[248,316,408],cmdirc2chan:247,cmdircstatu:247,cmdjumpstat:303,cmdlaunch:179,cmdlearnspel:341,cmdleavetrain:180,cmdlen:[234,251],cmdlight:441,cmdline:492,cmdlineinput:550,cmdlink:242,cmdlistarmedpuzzl:335,cmdlistcmdset:242,cmdlistpuzzlerecip:335,cmdlock:242,cmdlook:[9,173,248,303,346,442],cmdlookbridg:442,cmdlookdark:442,cmdmail:[0,103,329],cmdmailcharact:[0,103,329],cmdmakegm:169,cmdmap:[99,349,364],cmdmapbuild:104,cmdmask:391,cmdmobonoff:440,cmdmore:553,cmdmoreexit:553,cmdmultidesc:[108,168,332],cmdmvattr:242,cmdmycmd:[33,167],cmdmylook:11,cmdname2:234,cmdname3:234,cmdname:[0,34,52,63,67,70,133,140,191,221,233,234,237,242,250,251,253,497,515,516,520,521,533,566],cmdnamecolor:[119,462],cmdnewpassword:240,cmdnick:248,cmdnoinput:265,cmdnomatch:265,cmdnositstand:140,cmdnpc:191,cmdnudg:434,cmdobj:[233,234,251,566],cmdobj_kei:233,cmdobject:[0,233,234,242],cmdobjectchannel:[19,247],cmdoffer:313,cmdooc:239,cmdooclook:239,cmdopen:[242,355,364],cmdopenclosedoor:355,cmdopenlid:434,cmdopenshop:184,cmdoption:[239,303],cmdpage:247,cmdparri:178,cmdparser:[220,221,225,226,232],cmdpass:[338,339,340,341,342],cmdpassword:239,cmdperm:240,cmdplant:[122,300],cmdpose:[178,248,391],cmdpressbutton:441,cmdpush:100,cmdpushlidclos:434,cmdpushlidopen:434,cmdpy:252,cmdquell:239,cmdquickfind:145,cmdquit:239,cmdread:441,cmdrecog:[0,391],cmdreload:252,cmdremov:[316,408],cmdrerout:303,cmdreset:252,cmdrest:[338,339,340,341,342],cmdroll:186,cmdrss2chan:247,cmdsai:[178,248,391],cmdsaveyesno:550,cmdscript:[0,242],cmdsdesc:391,cmdser:552,cmdserverload:252,cmdservic:252,cmdsession:239,cmdset:[0,1,6,9,13,16,19,21,23,26,29,33,39,44,45,63,66,78,82,88,90,93,94,96,99,100,103,109,111,114,116,124,129,132,137,138,139,140,142,152,168,174,175,178,179,180,184,191,197,221,225,226,228,232,233,234,236,237,242,243,244,245,246,250,251,252,253,265,285,296,300,303,313,316,322,326,329,335,338,339,340,341,342,346,349,355,358,364,384,391,408,434,436,439,440,441,442,452,473,474,482,523,530,531,542,550,552,553,566,568,586],cmdset_account:[13,221,225,226,232,238],cmdset_charact:[221,225,226,232,238,316,338,339,340,341,342],cmdset_creat:78,cmdset_fallback:221,cmdset_mergetyp:[29,304,439,450,476,552],cmdset_path:221,cmdset_prior:[29,304,439,450,476,552],cmdset_sess:[45,221,225,226,232,238],cmdset_stack:236,cmdset_storag:[231,473,531],cmdset_storage_str:221,cmdset_trad:313,cmdset_unloggedin:[23,91,106,221,225,226,232,238,281],cmdsetattribut:242,cmdsetclimb:441,cmdsetcrumblingwal:441,cmdsetdesc:248,cmdsetevenniaintro:442,cmdsetevscaperoom:303,cmdsetflag:303,cmdsethandl:[45,225,226,232],cmdsethelp:249,cmdsethom:242,cmdsetkei:21,cmdsetkeystr:235,cmdsetlegacycomm:[109,296],cmdsetlight:441,cmdsetmor:553,cmdsetobj:[235,236,243,244,245,246,265,296,303,313,316,322,335,338,339,340,341,342,346,349,355,358,364,384,391,408,434,436,439,440,441,442,452,523,550,552,553],cmdsetobjalia:242,cmdsetpow:191,cmdsetread:441,cmdsetsit:140,cmdsetspe:[116,358],cmdsettestattr:27,cmdsettrad:[78,313],cmdsettrain:180,cmdsetweapon:441,cmdsetweaponrack:441,cmdsheet:169,cmdshiftroot:441,cmdshoot:[179,342],cmdshutdown:252,cmdsit2:140,cmdsit:140,cmdsmashglass:434,cmdsmile:23,cmdspawn:242,cmdspeak:303,cmdspellfirestorm:171,cmdstand2:140,cmdstand:[140,303],cmdstatu:[313,341,342],cmdstop:[116,358],cmdstring:[23,133,169,233,237,250,253,566],cmdstyle:239,cmdtag:242,cmdtalk:[408,436],cmdtask:252,cmdteleport:[242,364],cmdtest:[6,172,186],cmdtestid:23,cmdtestinput:29,cmdtestmenu:[29,95,450,552],cmdticker:252,cmdtime:[175,252],cmdtrade:313,cmdtradebas:313,cmdtradehelp:313,cmdtunnel:242,cmdtutori:442,cmdtutorialgiveup:442,cmdtutoriallook:442,cmdtutorialsetdetail:442,cmdtweet:204,cmdtypeclass:242,cmdunban:240,cmdunconnectedconnect:[254,281],cmdunconnectedcr:[254,281],cmdunconnectedencod:254,cmdunconnectedhelp:[254,281],cmdunconnectedinfo:254,cmdunconnectedlook:[254,281],cmdunconnectedquit:[254,281],cmdunconnectedscreenread:254,cmduncov:316,cmdunlink:242,cmdunwield:339,cmduse:340,cmdusepuzzlepart:335,cmdwait:23,cmdwall:240,cmdwear:316,cmdwerewolf:1,cmdwest:442,cmdwhisper:248,cmdwho:[239,303],cmdwield:339,cmdwieldorwear:408,cmdwipe:242,cmdwithdraw:342,cmdxyzopen:364,cmdxyzteleport:364,cmdyesnoquest:552,cmp:[86,273],cmset:[236,586],cmud:206,cnf:[4,205],coal:[322,323],coast:[105,146],coastal:105,cobj:303,cockpit:179,code:[0,3,5,8,9,10,11,13,16,17,21,23,24,29,32,33,35,36,39,41,43,45,47,48,49,50,51,52,53,54,55,56,57,58,61,62,63,66,69,70,74,76,78,79,81,83,87,88,92,93,97,101,102,104,105,113,118,121,124,125,126,129,130,131,132,134,137,138,139,140,141,142,144,145,146,148,150,151,152,155,157,158,161,164,166,167,168,169,170,171,172,174,175,176,178,180,181,182,183,186,188,189,190,191,193,195,196,197,200,203,205,212,213,215,216,218,219,220,221,223,225,226,228,232,233,236,239,241,242,247,249,252,255,259,265,270,277,284,287,300,305,308,311,313,319,321,340,370,376,377,384,387,402,409,411,417,442,452,458,470,474,479,482,501,503,504,520,531,534,542,544,545,550,552,554,565,566,567,568,575,617,620],code_exec:546,code_hint:305,code_tri:305,codebas:[73,75,128,130,167,221,253],codeblock:128,codec:545,codefunc:550,codeinput:305,coder:[0,2,93,126,147,150,167,200,233,474],coding_styl:128,coerc:563,coexist:188,coher:164,coin:[78,126,127,132,144,145,147,151,155,157,163,313,405,408,412,413,418],col:[57,165,554],cola:0,colb:0,cold:[56,149,218,221,252,479,483,487,530],cole:568,coll_date_func:252,collabor:[7,12,93,131,147,149,150,192,217,249],collaps:[151,409],collat:[33,67,478],collect:[0,14,21,32,33,50,52,81,111,124,144,152,193,233,235,249,252,335,376,395,406,418,540,568,594,616],collect_top:[249,616],collector:[193,418],collectstat:[52,54,193,492,496],collid:[21,43,118,155,209,217,305,395,411,543,552,555],collis:[0,21,23,140,535],collist:144,colon:[20,35,100,134,143,470],color:[0,7,12,19,23,26,29,32,34,43,52,57,62,65,98,99,105,119,124,126,128,129,132,133,134,163,169,176,182,197,221,237,239,267,268,269,300,310,323,349,370,371,373,387,391,439,462,474,478,497,504,512,515,520,521,545,554,555,562,566,568,569,620],color_ansi_bright_bg_extra_map:[85,268],color_ansi_bright_bgs_extra_map:268,color_ansi_extra_map:[85,221,268],color_ansi_xterm256_bright_bg_extra_map:[85,221],color_markup:[85,225,226,259,260,620],color_no_default:[85,221,268],color_typ:545,color_xterm256_extra_bg:[85,221,268],color_xterm256_extra_fg:[85,221,268],color_xterm256_extra_gbg:[85,221,268],color_xterm256_extra_gfg:[85,221,268],colorlist:567,colour:[20,62,242,519,545,554],column:[0,52,57,59,69,100,101,105,123,124,128,131,169,182,197,221,237,239,362,373,554,568],column_names_color:221,com:[0,5,11,12,42,50,54,55,57,66,71,74,76,82,93,101,105,128,130,145,147,163,181,189,194,200,203,205,207,208,209,211,212,213,217,219,221,225,247,252,265,281,319,452,455,467,501,504,507,516,520,537,554,567,568,608],coman:76,combat:[0,1,16,21,29,43,47,49,71,92,101,105,120,121,125,126,130,131,133,135,138,146,149,161,171,176,177,200,236,338,339,340,341,342,407,408,412,416,423,440,482,620],combat_:[338,407],combat_can_us:407,combat_cleanup:338,combat_cmdset:178,combat_get_help:407,combat_handl:178,combat_handler_:178,combat_handler_class:[338,340,341,342],combat_help_text:[338,340,342],combat_movesleft:338,combat_post_us:407,combat_pr:407,combat_pre_us:407,combat_rul:[338,339,341,342],combat_scor:191,combat_spel:341,combat_status_messag:342,combat_turnbas:[225,226,259,396,402],combatact:[407,412],combatactionattack:407,combatactionblock:407,combatactiondonoth:407,combatactionfle:407,combatactionstunt:407,combatactionswapwieldedweaponorspel:407,combatactionuseitem:407,combatant_act:407,combatant_kei:407,combatcmdset:178,combatfailur:407,combathandl:[178,407,412],combatscor:191,combin:[11,14,20,21,23,36,37,43,47,48,56,61,81,88,110,111,118,124,126,130,134,136,137,141,143,149,157,168,169,171,173,183,207,208,217,221,233,234,235,242,305,322,323,332,335,371,373,390,395,407,414,434,470,478,481,487,492,541,543,548,555,562,566,568],combo:45,come:[1,7,8,13,17,20,23,29,30,33,35,44,45,52,53,54,55,57,61,63,67,70,74,93,94,100,101,105,110,121,124,126,130,131,134,135,138,139,140,143,144,147,149,150,152,163,165,168,169,172,175,177,178,179,180,182,183,186,188,191,194,195,196,197,205,208,210,212,228,235,338,342,346,391,455,458,478,479,501,510,515,520,521,523,529,545,553,591,617],comet:[52,63,521],comfi:140,comfort:[12,17,130,150,186,197,222],comg:50,comlist:296,comm:[19,23,26,37,126,129,131,135,137,139,204,221,225,226,232,238,295,296,297,548,574,575,599,613,620],comma:[0,19,32,51,59,69,100,101,134,143,144,195,205,242,250,290,322,329,470,474,555,568],comman:134,command:[2,4,8,10,11,13,14,15,17,19,20,27,29,30,34,35,37,38,39,41,42,43,45,47,49,51,52,53,55,56,58,59,60,61,63,64,65,66,67,69,70,71,72,73,75,77,78,79,81,84,86,87,88,90,93,95,96,97,101,102,103,104,105,108,111,112,114,115,116,117,119,120,121,123,124,125,126,128,130,131,135,137,142,145,146,147,149,150,151,152,158,163,167,168,176,177,179,182,183,184,188,189,192,193,196,197,198,201,202,203,205,206,207,208,210,211,212,213,215,216,217,218,219,220,221,223,225,226,228,229,256,257,259,260,265,280,281,283,286,288,292,295,296,298,299,300,301,302,304,305,310,313,316,319,322,323,324,326,329,332,335,338,339,340,341,342,344,346,349,355,358,362,363,365,366,376,380,384,391,396,402,406,412,424,432,434,436,439,440,441,442,447,450,452,462,463,464,465,466,467,469,470,474,478,479,482,489,492,497,501,502,510,512,515,516,520,521,523,524,530,531,542,544,545,548,550,552,553,562,565,566,568,594,616,617,620],command_default_arg_regex:[0,23,221],command_default_class:[1,221],command_default_help_categori:[33,221],command_default_lock:221,command_default_msg_all_sess:221,command_handler_class:339,command_pars:[221,234],command_rate_warn:221,commandhandl:[34,236,251],commandmeta:237,commandnam:[23,34,67,134,237,300,492,501,531,533],commandset:[35,39,133,236],commandss:174,commandtest:0,commandtestmixin:566,comment:[1,12,15,16,29,49,79,81,133,140,183,189,206,207,216,217,221,370,546,552],commerc:200,commerci:[10,92,149,150,161,217],commerror:257,commit:[0,1,4,5,7,17,64,71,83,97,128,131,203,205,212,216,223,446,452,577,584],commmand:[115,338,339,340,341,342,355],commom:24,common:[0,2,7,9,11,17,19,20,23,24,29,34,35,43,44,45,46,48,49,55,56,57,59,63,67,70,72,78,81,88,92,110,112,116,126,128,129,131,134,135,136,138,139,143,144,145,147,148,149,150,151,161,173,175,177,178,186,191,194,196,197,208,210,215,217,221,235,242,247,254,313,322,358,376,390,391,470,472,482,497,520,524,541,542,551,553,563,565,568,594,601,617,620],common_ware_prototyp:412,commonli:[12,32,33,38,44,45,46,48,54,59,67,69,100,118,124,131,136,141,149,170,205,220,371,395,474,566,594],commonmark:128,commonmiddlewar:221,commonpasswordvalid:221,commun:[0,10,12,19,23,37,42,52,53,63,67,70,72,76,77,82,125,126,127,129,130,131,133,137,138,149,150,168,186,202,205,207,217,221,228,244,247,254,255,256,257,258,303,329,372,412,439,473,481,489,501,502,512,513,515,516,517,518,531,533,548,549,564,620],compact:[7,136,152,155,184,195,434],compactli:161,compani:[70,131],compar:[0,9,11,12,15,17,20,21,67,100,104,112,118,124,136,150,169,172,174,177,178,186,189,191,237,335,338,339,340,342,390,395,469,470,479,523,545,566,568],comparison:[8,15,32,136,137,163,394,469,479,552,566],compartment:169,compass:[99,126,134,349],compat:[0,16,29,76,92,118,119,149,242,395,551,554,561,568],compatabil:0,compet:[17,70,149,412],compil:[8,23,66,71,128,138,167,189,211,213,215,237,242,248,249,252,254,303,316,322,391,474,545,550,552,567],compilemessag:66,complain:[6,69,186,218,223],complement:[0,46,150,395],complementari:[24,32,43,44,72],complet:[0,1,4,8,12,13,14,15,16,17,20,21,23,24,27,39,41,43,45,46,51,53,55,70,77,82,83,85,87,92,98,100,104,105,110,121,125,126,127,131,136,143,146,147,149,150,158,161,163,169,175,176,182,187,191,192,205,208,217,218,220,221,223,228,235,236,237,250,252,253,268,287,301,319,339,346,371,387,402,406,414,434,442,450,455,474,486,492,494,502,503,520,540,546,551,552,553,565,568,589,608],complete_task:287,completed_text:414,complex:[8,12,14,16,17,21,23,32,48,59,69,71,81,86,93,100,105,113,117,124,126,128,131,134,136,138,140,141,143,144,145,147,149,152,161,172,175,177,178,191,212,220,236,256,288,305,376,378,408,434,436,458,479,524,540],complianc:[206,346],compliant:[7,181,516],complic:[55,82,95,102,105,119,136,182,186,194,195,196,197,217,254,281,450,462,540],compon:[0,8,11,23,37,44,50,51,52,54,62,63,74,124,128,135,137,147,150,152,164,166,169,172,176,178,182,191,217,218,221,225,226,242,252,257,258,259,260,277,316,322,335,344,363,370,372,390,391,394,413,472,474,479,480,481,482,485,492,521,548,551,555,565,568,571,597,620],component_handl:273,component_nam:[86,270,273],component_prefix:561,componenta:9,componentdoesnotexist:273,componenthandl:273,componenthold:273,componentholdermixin:[86,273,275],componentid:52,componentisnotregist:273,componentnam:52,componentproperti:[86,273],componentregistererror:271,componentst:52,componenttesta:275,componenttestb:275,componentwithsign:275,compos:[95,212,450],composit:[86,518,541],comprehens:[8,11,35,37,49,130,155,219],compress:[34,406,497,501,505,564],compress_object:564,compris:228,compromis:[219,446],comput:[12,48,55,56,72,131,136,137,149,167,177,182,190,202,212,213,215,222,240,252,568,569],computation:48,comsystem:258,con:[26,126,152,155,161,163,169,200,254,281,410,620],con_bonu:161,con_defens:411,concaten:[138,545],concept:[0,42,48,63,66,81,87,101,108,125,126,128,132,140,142,143,144,147,148,151,168,172,176,181,196,197,319,332,395,620],conceptu:[29,182],concern:[49,66,70,81,100,124,126,143,144,213,235,458,466],conch:[512,515,523],concis:150,conclud:[140,161,313,552],conclus:[132,142,148,158],concret:100,concurr:205,conda:189,conder:546,condit:[0,2,8,32,59,90,100,101,120,126,130,133,136,140,141,147,149,155,177,182,184,186,191,207,233,249,340,376,377,378,384,391,470,474,485,491,492,537,543,568,620],condition_result:384,condition_tickdown:340,conditional_flush:559,conduct:193,conductor:180,conf:[0,1,4,8,11,12,25,34,35,43,44,51,54,63,66,69,74,77,83,85,88,93,100,104,106,110,124,128,132,139,140,151,152,175,180,189,192,194,195,197,198,201,205,207,208,209,210,215,216,217,219,221,222,228,268,322,365,367,492,498,499,538,546],confer:[200,568],confid:[6,127,181],config:[0,4,5,12,13,63,189,192,203,207,208,215,217,219,221,395,492,494,498,499,510,583],config_1:13,config_2:13,config_3:13,configdict:[512,533],configur:[0,1,4,11,13,51,99,100,102,128,131,132,138,141,175,193,197,198,209,212,217,221,228,231,234,239,300,349,395,446,447,494,499,510,533,535,537,538,541,608,620],configut:10,confirm:[0,23,52,76,91,124,134,207,215,219,242,281,335,380,407,418,516,519],conflict:[6,12,149,188,452],confus:[7,8,9,12,14,21,23,38,41,44,52,55,61,66,75,82,91,100,124,128,131,136,139,144,151,161,163,169,186,188,193,217,222,247,281,371,618],congratul:[132,148,192],conid:511,conj:[32,59,151,474,555],conjug:[0,32,59,151,225,226,474,544,555,570,573],conjunct:100,conjur:[120,341],conn:[26,254,281],conn_max_ag:221,conn_tim:[45,221],connect:[0,1,2,8,11,12,13,15,18,19,21,23,24,26,34,39,41,42,44,45,46,49,51,52,53,54,56,61,63,64,65,66,67,70,77,91,93,98,100,101,102,104,105,106,116,121,124,130,131,132,134,136,137,138,139,141,149,152,158,168,182,186,187,188,189,191,192,193,196,197,198,205,206,207,208,210,212,213,215,218,219,220,221,222,228,229,230,231,239,240,242,247,254,256,257,258,274,280,281,284,285,287,292,296,358,368,370,371,373,387,409,447,473,474,480,488,489,492,494,501,502,503,504,505,510,511,512,515,520,521,523,524,530,531,532,533,534,537,540,542,548,564,591,594,620],connection_cr:46,connection_screen:[0,25,91,106,138,220,221,225,226,259,260,279,281,291],connection_screen_modul:[91,106,221,281],connection_set:209,connection_tim:[228,474],connection_wizard:[225,226,488],connectiondon:494,connectionlost:[494,501,502,512,515,523],connectionmad:[489,501,512,515,523],connectionwizard:490,connector:[489,503,504,510,533],conquer:146,cons3:324,consecut:29,consequ:[217,236],consid:[8,9,14,15,16,19,20,21,23,29,32,34,35,41,43,44,45,47,48,49,51,53,55,56,59,61,63,69,72,74,81,88,95,101,102,111,112,118,124,125,127,130,131,136,138,139,143,145,147,149,150,151,168,170,174,180,181,194,195,199,205,213,217,219,221,228,235,236,271,300,319,335,342,368,370,371,390,391,395,407,450,474,478,479,482,497,512,515,541,543,546,547,551,552,553,555],consider:[0,69,77,105,139,149,220,479,554],consist:[0,7,13,14,18,23,29,33,35,42,43,52,59,69,74,81,101,104,112,124,128,143,146,149,174,175,178,191,218,221,228,234,249,250,256,257,277,313,323,335,372,390,463,470,479,516,521,531,540,542,548,554,555,566,568,577,584,619],consitut:[139,152,163],consol:[0,6,9,10,12,52,58,61,66,76,128,131,132,139,143,144,189,191,205,210,211,212,213,215,217,249,252,372,391,492],consolid:149,conson:[112,390,455,555],constant:[70,102,163,221,410,501,566],constantli:[418,442],constitu:[236,250],constitut:[14,149,151,152,155,161,163,405,410,411,412,417],constraint:[102,205],construct:[4,81,131,140,172,194,479,536,540,545,553,608],constructor:[23,81,82,88,118,265,322,395,503],consum:[55,88,126,132,158,161,184,221,305,322,323,324,410,413,494,568],consumable_kwarg:322,consumable_nam:322,consumable_tag:[88,322,323],consumable_tag_categori:[88,322],consume_flag:305,consume_on_fail:322,consumer_kei:[198,204],consumer_secret:[198,204],consumpt:[8,205,535],contact:[19,39,212,217,221],contain:[0,1,7,9,14,15,16,18,21,23,24,26,29,32,33,35,37,39,43,45,52,53,54,55,57,63,69,77,81,82,86,93,95,96,100,101,102,104,110,112,113,116,119,120,122,123,124,125,126,128,129,130,131,133,134,136,137,138,140,141,143,144,149,152,155,161,163,167,168,175,179,181,183,186,188,189,191,193,194,195,197,200,210,211,213,215,220,221,223,225,226,228,229,230,232,233,234,235,236,238,241,242,247,249,255,265,271,272,273,274,284,285,286,287,288,290,300,303,322,326,335,340,358,362,370,371,372,373,376,390,391,395,407,411,412,417,418,434,441,447,448,450,458,462,464,465,468,474,476,478,479,486,488,491,495,497,523,535,536,537,540,541,542,543,544,545,546,549,551,552,553,554,555,565,566,567,568,569,591,597,606,616,617,619],container:212,containin:221,contempl:167,content:[7,8,12,15,18,20,32,37,39,49,51,52,53,54,57,79,93,100,125,126,128,132,136,138,140,141,142,143,145,148,149,150,155,158,164,165,166,167,169,170,179,180,181,182,184,185,186,191,194,195,196,197,208,217,237,240,242,263,305,306,316,364,391,411,414,464,472,473,474,543,545,546,547,550,552,554,565,566,574,584,591,597,606],content_typ:[0,473,474],contentof:554,contents_cach:473,contents_get:[145,474],contents_set:474,contentshandl:[0,473],contenttyp:221,contest:[93,303],context:[0,54,61,100,101,130,142,186,188,194,197,217,265,287,376,378,407,513,517,601,613,614,616,617,619],context_processor:[221,601],contextu:47,contibut:[79,126],continu:[0,2,6,12,14,20,23,29,47,48,54,55,60,69,76,83,100,101,104,124,126,127,133,140,141,143,157,169,178,179,182,184,191,193,196,197,204,211,213,215,216,217,221,371,474,490,501,537,540,552,561,568,620],contrari:[50,100,102,118,138,149,175,252,395,406,543],contrast:[41,44,72,167,217,516],contrib:[2,7,15,16,51,59,76,77,78,79,80,81,82,83,84,85,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,116,117,118,119,120,121,122,123,124,127,128,129,130,134,137,138,143,146,149,151,152,155,157,158,161,163,168,169,171,175,177,178,181,182,187,192,199,200,210,216,221,225,226,228,230,231,252,253,534,545,546,576,577,578,580,581,582,583,584,599,600,608,614,619,620],contribchargenaccount:[83,380],contribcloth:316,contribcmdcharcr:[83,380],contribrpcharact:[112,391],contribrpobject:[112,391],contribrproom:[112,391],contribu:12,contribut:[2,11,66,76,77,78,80,81,82,83,84,87,88,90,93,94,95,96,97,98,99,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,131,137,189,193,199,205,213,259,268,300,313,316,329,335,346,355,358,384,391,436,446,447,455,458],contributor:[0,76,199,265,395],control:[0,2,3,4,6,9,13,15,16,19,21,23,27,29,30,32,33,34,35,39,42,43,44,45,50,51,56,58,59,61,67,69,71,74,76,78,79,81,88,97,114,124,126,128,129,131,132,134,137,138,139,140,141,147,149,150,155,168,169,177,179,180,183,189,191,192,196,208,215,216,217,218,219,221,228,229,239,241,242,247,286,296,305,313,362,373,391,407,413,434,440,442,469,474,482,492,531,533,542,552,555,566,589,608,620],convei:[391,474],convenei:46,conveni:[10,19,29,33,34,35,39,41,43,44,49,54,55,63,69,71,75,81,82,104,124,128,130,133,135,139,141,143,145,155,157,161,168,171,172,179,187,189,194,197,203,218,221,228,242,252,265,308,310,322,329,407,411,474,524,535,546,547,552,553,555,561,564,565],convent:[21,46,69,102,136,152,188,221],convention:[237,474,542],convers:[19,29,32,38,52,81,88,117,126,149,180,390,408,436,520,521,545,568],convert:[0,14,19,20,38,43,61,63,67,70,72,89,95,124,125,131,132,136,139,152,157,161,175,181,182,188,196,200,210,213,216,219,221,223,230,240,277,370,384,418,450,462,469,472,478,479,481,483,501,503,512,515,516,533,537,545,549,552,553,554,555,556,564,567,568,571,591],convert_linebreak:567,convert_url:567,convinc:29,cooki:221,cool:[82,100,147,165,179,189,200,242,247],cool_gui:41,cooldown:[0,172,176,178,225,226,259,311,620],cooldown_storage_categori:171,cooldown_storage_kei:171,cooldowncommandmixin:171,cooldownhandl:[87,319],coord:[181,368,370,371,373,409],coordi:181,coordin:[0,52,104,123,124,126,176,182,342,362,364,370,371,372,373,620],coordx:181,coordz:181,cope:341,copi:[0,1,4,8,12,15,16,23,26,27,29,43,45,50,51,52,54,74,76,83,93,102,105,110,126,128,131,133,134,137,138,152,170,175,191,193,194,196,208,210,212,216,217,220,221,223,241,242,287,316,338,339,340,341,342,442,472,474,481,492,501,538,540,545,616,617],copper:149,copy_object:[472,474],copy_script:481,copy_word_cas:568,copyright:[199,217],core:[0,10,12,39,49,58,66,70,83,89,97,103,125,126,127,137,139,144,161,176,182,196,199,220,221,228,231,252,258,259,323,329,362,380,428,452,466,473,474,482,488,499,509,516,530,540,542,543,546,553,560,566,608,619,620],corner:[18,121,123,124,168,181,200,362,370,551,554],corner_bottom_left_char:554,corner_bottom_right_char:554,corner_char:554,corner_top_left_char:554,corner_top_right_char:554,corpu:[112,390],corpul:152,correct:[0,16,20,21,23,27,32,54,55,61,72,121,127,128,139,140,144,150,151,170,179,180,186,188,191,205,233,239,242,257,305,335,346,370,378,391,401,456,470,507,510,512,518,532,545,566,568],correctli:[0,4,6,20,23,27,29,47,48,124,128,138,175,180,182,186,188,189,191,202,207,217,218,221,228,231,236,239,322,378,412,483,492,501,537,564,591],correl:479,correspond:[23,35,45,54,74,81,104,111,124,134,221,271,277,335,376,462,577,584,589,608],correspondingli:223,corrupt:167,cosi:105,cosin:568,cosmet:[0,362],cost:[123,124,149,171,217,341,362,391,418],cottag:[60,105],couchdb:76,could:[0,1,4,6,8,10,11,12,13,14,15,16,17,19,21,23,29,32,33,35,36,37,38,39,41,43,44,47,48,49,52,54,55,56,58,59,61,63,67,69,70,71,72,73,74,75,78,81,82,88,93,99,100,101,102,105,110,113,116,118,119,124,126,128,130,131,132,133,134,135,136,138,139,140,141,143,144,147,149,150,151,152,155,157,161,163,165,168,169,171,172,173,174,175,177,178,179,180,181,182,183,184,186,188,189,190,191,193,194,196,197,198,200,201,202,203,204,208,215,217,221,223,228,236,242,249,257,258,265,290,305,306,313,322,349,358,362,371,373,384,387,390,391,394,395,407,411,413,417,418,434,442,458,462,470,474,485,497,516,521,537,542,543,545,546,550,551,554,555,556,559,563,568,572],couldn:[58,75,131,133,143,174,186,188,195,458],count:[19,50,53,81,110,120,131,136,139,143,155,178,198,230,235,316,319,340,376,407,411,462,474,506,510,523,527,533,535,541,545,552,555,561,572],count_loggedin:510,count_queri:527,count_slot:[132,411],countdown:[44,134],counter:[44,45,82,152,172,178,197,225,229,259,374,393,394,407,442,510,523,524,531,552],countermeasur:221,counterpart:[0,7,15,61,497,533,549],countertrait:395,countri:240,coupl:[12,41,52,82,116,197,212,256,358],cours:[5,8,10,17,23,48,54,56,71,75,77,81,82,83,88,100,101,102,121,124,126,128,131,139,141,143,146,147,168,179,186,189,190,191,199,210,221,339,342,376,412,439],court:121,courtesi:[0,56],cousin:[73,100,126,186],cover:[12,15,16,33,54,62,63,68,69,84,100,114,124,125,136,137,138,141,143,145,149,150,155,161,163,168,172,189,198,200,205,207,215,217,305,316,323,346,371,434,442,474,568],coverag:[0,11],coveral:11,cpanel:217,cpattr:[26,133,242],cprofil:[2,620],cpu:[8,56,217,219,252],cpython:8,crack:69,craft:[0,35,59,81,95,105,111,125,132,147,172,225,226,259,311,450,620],craft_recipe_modul:[88,322],craft_recipes_modul:322,craft_result:322,crafted_result:322,crafter:[322,323,324],crafting_consumable_err_msg:322,crafting_materi:[88,322,323],crafting_recipe_modul:88,crafting_result:322,crafting_skil:88,crafting_tool:[88,322],crafting_tool_err_msg:322,craftingcmdset:322,craftingerror:322,craftingrecip:[88,322,323,324],craftingrecipebas:[88,322],craftingvalidationerror:[88,322],craftrecip:322,cram:146,crank:48,crash:[105,143,147,219,221,496,540],crate:[38,134],crawl:219,crawler:[221,254,506],crazi:161,cre:[26,254,281],creat:[0,1,2,5,6,7,8,10,11,12,14,15,16,17,19,21,24,25,26,27,29,32,33,35,37,38,41,43,44,45,46,47,50,51,52,54,57,58,62,63,64,71,74,75,76,78,79,82,83,84,86,88,93,94,95,101,104,107,108,109,110,111,112,113,114,117,118,119,121,123,124,125,126,128,130,131,132,136,138,140,141,142,144,145,146,147,148,150,151,155,158,161,163,166,167,168,169,170,172,174,175,176,177,178,179,181,182,183,184,185,186,187,189,190,192,193,195,198,199,201,202,204,205,209,210,211,213,214,217,219,220,221,222,223,225,226,228,229,230,231,234,235,236,237,239,242,247,248,249,250,251,252,253,254,256,257,258,263,265,266,269,271,273,277,281,286,287,288,290,296,300,303,304,305,306,307,308,310,313,316,322,323,324,326,329,332,335,338,339,340,341,346,349,355,362,368,370,371,372,373,376,378,380,384,390,391,395,400,402,406,407,409,412,413,418,425,434,436,439,440,441,442,447,450,458,462,464,465,466,470,472,473,474,476,477,478,479,481,482,484,485,486,487,489,492,496,497,502,504,505,510,512,513,517,524,530,532,533,535,537,540,541,542,543,544,545,546,547,550,551,552,554,555,556,561,566,568,576,581,588,593,594,609,612,614,616,617,618,619,620],creataion:368,create_:[0,49],create_account:[20,46,49,129,135,225,230,548,566],create_attribut:540,create_cal:228,create_channel:[19,20,129,135,225,247,256,257,548],create_char:566,create_charact:[135,228,474],create_default_channel:530,create_delai:486,create_evscaperoom_object:310,create_exit:[242,355],create_exit_cmdset:474,create_fantasy_word:310,create_forward_many_to_many_manag:[231,258,466,473,482,540,542,543,560],create_from_obj:418,create_from_prototyp:418,create_game_directori:492,create_grid:[182,349],create_help:465,create_help_entri:[20,33,129,225,548],create_kwarg:479,create_match:234,create_messag:[20,37,129,225,257,548],create_obj:566,create_object:[11,14,15,20,35,39,49,79,88,104,105,110,129,132,135,140,151,152,155,163,187,191,194,225,308,310,322,434,472,474,479,496,546,548],create_out_exit:409,create_prototyp:[478,479],create_room:566,create_script:[20,44,49,100,129,135,167,178,225,481,485,546,548,566],create_secret_kei:492,create_settings_fil:492,create_superus:492,create_tag:541,create_wild:[123,362],createbucket:76,created_on:284,createobj:303,creater:129,createview:618,creation:[0,7,9,14,16,24,29,35,39,45,49,69,75,77,83,92,104,105,124,126,128,132,134,135,137,139,147,149,157,158,161,169,191,192,194,200,210,221,225,228,231,242,247,249,256,307,322,335,338,339,340,341,342,355,364,370,373,380,391,395,409,412,441,442,447,466,472,473,474,479,482,487,525,542,548,550,551,552,554,576,577,581,584,608,612,614,619,620],creation_:548,creation_throttle_limit:221,creation_throttle_timeout:221,creativ:[71,92,149,161],creativecommon:455,creator:[0,29,35,75,105,126,129,150,191,192,200,249,256,338,380,412,474,554,620],creatur:[161,222],cred:[12,512],credenti:[12,53,54,76,217,219,228,512],credentialinterfac:512,credit:[12,125,132,142,143,158,217,219,567,568],creset:12,crew:136,criteria:[29,113,126,136,257,286,458,478,541,565],criterion:[136,139,141,146,228,313,391,465,472,474,481,484,565,568],critic:[7,9,21,44,45,58,61,93,149,157,161,208,223,417,470,491,492,561],critical_failur:[161,163,410],critical_success:[161,163,410],critici:542,cron:208,crontab:208,crop:[0,32,61,169,370,551,554,555,568],crop_str:554,cross:[105,121,124,323,368,371,442,554],crossbario:520,crossbow:172,crossmaplink:[124,371],crossov:0,crossroad:105,crowd:147,crt:[207,208],crucial:[48,186],crucibl:323,crucible_steel:323,cruciblesteelrecip:323,crud:[593,594],crude:[102,322,323],crumblingwal:441,crumblingwall_cmdset:441,crunchi:149,crush:179,crypt:146,cryptocurr:219,cscore:191,csessid:[221,510,520,521,533],csession:[520,521],csrf:[217,221],csrf_token:194,csrf_trusted_origin:217,csrfviewmiddlewar:221,css:[0,18,51,52,54,61,65,74,130,138,193,221,567,597],cssclass:52,ctestobj:163,ctrl:[0,8,54,143,208,210,212,217,218,523],cuddli:[139,144],culpa:30,cumbersom:[29,141,163,172,180,223,462],cumul:524,cup:127,cupidatat:30,cur_valu:387,cure:[120,340,341],cure_condit:340,curi:182,curiou:71,curl:215,curli:[85,268],curly_color_ansi_bright_bg_extra_map:268,curly_color_ansi_bright_bgs_extra_map:268,curly_color_ansi_extra_map:[85,268],curly_color_ansi_xterm256_bright_bg_extra_map:85,curly_color_xterm256_extra_bg:[85,268],curly_color_xterm256_extra_fg:[85,268],curly_color_xterm256_extra_gbg:[85,268],curly_color_xterm256_extra_gfg:[85,268],curr_sess:533,curr_tim:346,currenc:[149,184,198],current:[0,1,8,10,11,12,13,15,16,19,20,21,23,26,27,29,32,34,39,41,44,45,48,52,53,54,56,58,59,61,69,76,78,81,82,83,86,94,95,97,98,100,101,102,104,113,118,120,124,126,131,133,134,136,137,138,139,140,141,144,145,151,152,155,161,163,169,170,171,172,173,178,179,180,182,183,185,189,191,194,208,210,212,213,216,221,228,230,231,233,234,236,237,239,240,242,247,248,249,251,252,254,256,265,273,287,290,296,303,305,308,313,316,322,332,338,339,340,341,342,346,349,355,358,362,364,371,373,387,391,394,395,406,407,409,411,412,414,416,430,432,439,441,442,450,452,458,462,465,472,473,474,479,482,486,487,492,497,502,508,509,512,513,516,524,531,533,535,541,542,550,552,554,555,556,561,562,565,568,576,591,613,614,616,617],current_:[151,161],current_choic:265,current_cmdset:242,current_coordin:362,current_kei:[477,478],current_slot_usag:155,current_step:[187,414],current_tim:523,current_us:194,current_weath:44,current_weight:371,currentroom:180,curriculum:200,curs:[6,155],curtain:33,curv:[130,167],curx:182,cushion:140,custom:[0,1,2,9,13,14,16,17,18,20,21,23,24,25,26,34,38,39,43,47,49,53,56,57,59,62,64,67,69,75,76,77,83,84,87,95,96,100,102,104,112,118,120,121,123,124,126,128,129,130,131,132,134,135,136,138,140,141,142,146,147,149,152,155,157,167,169,173,176,177,178,179,180,182,183,185,188,190,191,192,193,194,197,199,200,201,204,212,217,218,220,221,225,226,228,229,230,231,233,235,236,237,242,247,248,249,254,256,259,276,277,278,287,290,303,304,305,306,308,313,316,319,322,326,335,346,362,366,370,371,374,376,377,389,391,395,407,411,412,434,439,441,442,446,447,450,464,465,472,474,476,477,478,479,481,487,492,496,498,501,523,532,540,542,547,550,552,553,554,559,562,563,566,568,575,576,578,583,593,594,599,600,617,620],custom_add:287,custom_cal:[287,290],custom_combat_act:407,custom_evennia_launcher_command:492,custom_gametim:[0,89,100,175,225,226,259,260,620],custom_helpstr:305,custom_kei:478,custom_map:551,custom_pattern:165,customis:[225,226,259,344,360],customiz:[18,81,82,98,112,126,265,387,391,434,450],customlog:207,customt:566,cut:[19,27,63,88,105,149,186,191,221,370,479],cute:193,cutoff:568,cutthroat:149,cvc:[110,455],cvcc:390,cvccv:390,cvccvcv:390,cvcvcc:390,cvcvccc:390,cvcvccvv:390,cvcvcvcvv:390,cvcvvcvvcc:[112,390],cvv:390,cvvc:[112,390],cwho:[109,133,296],cyan:[61,163,188],cyberpunk:[19,145],cyberspac:200,cycl:[0,1,15,16,147,167,175,190,338,376,409],cycle_logfil:0,cyril:17,d20:[149,161,417],daemon:[0,8,77,207,208,212,218,219,509,537],daffodil:145,dagger:47,dai:[0,20,49,71,89,94,100,126,132,147,161,167,175,188,190,198,208,212,219,230,277,323,346,413,556,561,568,569],daili:38,dailylogfil:561,dali:[112,390],dalnet:247,dalton:136,dam:167,damag:[0,16,81,86,120,146,149,151,155,163,171,177,178,179,219,323,338,339,340,341,342,376,377,405,407,412,440,441],damage_rang:341,damage_rol:[157,163,413,418],damage_taken:167,damage_valu:[338,339,340],damagebuff:81,damascu:323,danc:124,dandelion:32,dandi:75,danger:[9,15,21,45,100,128,149,221,235,409,412],dare:[23,133,571],dark:[15,16,18,21,33,61,105,118,124,143,146,149,150,177,188,200,236,346,395,434,442,482,545,546],darkcmdset:442,darker:188,darkgrai:188,darkroom:442,darkroom_cmdset:442,darkstat:442,dash:[100,113,128,458,462],dashcount:462,dashlin:32,data:[0,3,8,9,13,15,17,19,20,24,32,33,38,43,44,47,49,50,51,52,54,55,67,69,70,72,74,77,81,82,87,88,95,98,110,118,124,126,131,135,138,139,144,147,150,152,155,157,161,163,167,168,169,194,195,196,205,208,211,212,217,219,220,221,223,228,229,230,237,242,249,252,286,287,316,319,322,341,370,371,372,376,387,391,394,395,413,414,417,418,446,447,450,455,472,473,474,476,478,480,485,487,489,490,494,498,499,501,502,503,504,505,510,511,512,513,515,516,517,519,520,521,523,525,530,531,532,533,535,539,540,541,542,543,545,546,547,548,549,551,552,553,554,555,558,561,562,563,564,568,577,578,580,582,584,588,591,594,599,608,612,614,616,617,619],data_default_valu:395,data_in:[63,67,447,501,503,504,510,511,515,520,521,531,532,533],data_out:[63,447,510,512,515,516,521,531,532,533],data_to_port:[489,501],data_to_serv:502,databa:492,databas:[0,2,3,4,5,7,8,11,12,14,15,17,18,19,20,21,24,34,35,36,37,38,39,44,45,46,47,48,49,50,51,53,54,56,58,62,74,75,76,77,81,94,100,102,105,123,124,126,128,130,131,132,133,135,137,138,141,142,143,145,147,149,151,155,157,167,168,169,176,178,179,181,186,187,191,192,193,194,195,210,212,214,218,220,221,222,228,230,231,235,236,242,249,252,256,257,258,286,287,341,346,362,372,373,390,391,418,442,463,464,465,466,469,472,473,474,478,480,481,482,483,486,487,492,496,498,509,523,530,539,540,541,542,543,546,548,549,557,559,564,565,568,574,578,581,582,584,594,620],dataclass:555,datareceiv:[494,501,515,523],dataset:478,datastor:69,datbas:205,date:[12,14,33,56,66,69,76,175,182,188,194,205,208,211,220,221,223,236,240,252,446,556,561,569],date_appli:194,date_cr:[49,228,231,258,466,482,540,542],date_join:[231,576],date_s:37,datetim:[49,175,194,221,277,347,540,556,561,562,568,569],datetime_format:[221,568],datetimefield:[69,194,231,258,466,473,482,540,542,568,576],daunt:12,davewiththenicehat:[0,616],david:[76,200],dawn:134,day_rot:561,daylight:149,db3:[8,12,105,138,205,210,221,223],db3_backup:8,db_:[36,49,69,136,391,472,474,483,497,565],db_account:[275,307,316,368,378,394,472,473,482,576,581],db_account__db_kei:581,db_account__id:588,db_account__usernam:588,db_account_id:[473,482],db_account_subscript:[258,578],db_attribut:[46,87,231,258,319,473,482,542,576,578,581],db_attribute_categori:395,db_attribute_kei:395,db_attributes__db_kei:136,db_attributes__db_value__gt:136,db_attrtyp:[540,591],db_attryp:38,db_categori:[69,136,540,543,584,591],db_category__iequ:69,db_cmdset_storag:[231,275,316,368,378,394,473,576,581],db_data:[543,584,591],db_date_cr:[69,231,258,275,307,316,368,378,394,466,473,482,540,542,576,578,580,581,582,591],db_desc:[307,482,588],db_destin:[136,275,316,368,378,394,473,576,581],db_destination__isnul:198,db_destination_id:473,db_entrytext:[466,580,591],db_field_nam:271,db_header:[258,578],db_help_categori:[466,580,591],db_help_dict:249,db_help_top:616,db_hide_from_account:[258,578],db_hide_from_object:[258,578],db_hide_from_receiv:258,db_hide_from_send:258,db_home:[275,316,368,378,394,473,576,581,591],db_home__db_kei:588,db_home__id:588,db_home_id:473,db_index:69,db_interv:[307,482,582,588,591],db_is_act:[307,482,588,591],db_is_bot:[231,576,588],db_is_connect:[231,576,588],db_kei:[36,49,50,69,124,135,136,139,197,231,258,275,286,307,316,368,378,394,466,473,482,483,499,540,542,543,576,578,580,581,582,583,584,588,591,608],db_key__contain:49,db_key__exact:136,db_key__icontain:[69,136],db_key__iexact:136,db_key__in:136,db_key__startswith:49,db_locat:[36,50,136,139,275,316,368,378,394,473,576,581,591],db_location__db_kei:[581,588],db_location__db_tags__db_key__iexact:136,db_location__id:588,db_location__isnul:198,db_location_id:473,db_lock_storag:[231,258,275,307,316,368,378,394,466,473,482,540,542,576,578,580,581,582],db_messag:[258,578],db_model:[540,543,584],db_name:273,db_obj:[307,482,549,582],db_obj__db_kei:588,db_obj__id:588,db_obj_id:482,db_object_subscript:[258,578],db_permiss:69,db_persist:[307,482,582,588,591],db_properti:497,db_prot_id:478,db_protototyp:478,db_receiver_extern:[0,258,578],db_receivers_account:[258,578],db_receivers_accounts__db_kei:578,db_receivers_object:[258,578],db_receivers_objects__db_kei:578,db_receivers_script:[258,578],db_receivers_scripts__db_kei:578,db_repeat:[307,482,582,591],db_sender_account:[258,578],db_sender_accounts__db_kei:578,db_sender_extern:[258,578],db_sender_object:[258,578],db_sender_objects__db_kei:578,db_sender_script:[258,578],db_sender_scripts__db_kei:578,db_sessid:[275,316,368,378,394,472,473,576,581],db_start_delai:[307,482,582,591],db_strvalu:540,db_tag:[136,231,258,466,473,482,542,543,576,578,580,581],db_tags__db_categori:[136,181,588],db_tags__db_kei:[136,181,578,588],db_tags__db_key__iexact:136,db_tags__db_key__in:181,db_tagtyp:[543,584,588,591],db_text:69,db_typeclass_path:[69,198,231,258,275,307,316,368,378,394,473,482,542,568,576,578,581,582,588,591],db_valu:[36,38,136,499,540,583,591,594],dbef:[242,481,565],dbentri:249,dbfield:[86,225,226,259,260,270,271],dbhandler:608,dbholder:540,dbid:[49,229,247,542],dbid_to_obj:568,dbkei:[81,376],dbmodel:541,dbobj:[0,14,540],dbobject:[14,541,542],dbprototyp:[242,478],dbprototypecach:478,dbref:[0,15,24,32,35,37,43,56,64,81,95,100,104,105,124,132,134,139,146,169,178,180,196,221,228,230,231,240,242,247,257,258,335,355,362,364,373,391,442,450,469,472,473,474,479,481,482,484,541,542,548,555,565,568],dbref_search:[230,472,481,541],dbref_to_obj:568,dbrefmax:242,dbrefmin:242,dbsafe_decod:564,dbsafe_encod:564,dbserial:[0,9,14,187,225,226,483,544],dbshell:[69,205,218,223],dbstore:394,dbunseri:[14,187,549],ddesc:167,deactiv:[94,131,215,216,221,247,346,440,552],dead:[149,151,161,395,417,440,441,474,530,533,559],deadli:146,deal:[17,19,24,29,33,45,47,54,55,56,72,77,78,81,82,95,131,149,163,177,178,186,188,195,197,228,265,277,313,338,339,340,341,342,370,371,376,450,473,474,531,542,545,562,619],dealt:[12,250,340,341],dealth:340,deasmhumhnaigh:[110,455],death:[29,132,147,151,177,198,405,412],death_map:417,death_msg:440,death_pac:440,death_tabl:[151,161],debat:186,debian:[12,205,207,208,213],debuff:[118,395],debug:[0,2,10,16,20,24,29,34,44,54,74,77,79,100,126,141,143,186,202,221,222,233,237,241,252,303,304,349,439,450,476,492,497,503,504,515,537,546,552,561,568,620],debugg:[0,6,17,218,225],dec:[2,76],decemb:217,decend:233,decent:[8,128,390],decic:[112,390],decid:[0,16,17,23,29,32,45,47,69,70,88,100,101,120,126,132,136,147,161,169,174,177,178,188,192,197,217,219,233,313,338,407,408,409,411,470,553],decis:[12,48,83,93,149,177,591],declar:[0,61,86,564],declared_field:[576,577,578,580,581,582,584,608],declared_filt:588,declin:[29,78,313,408],decod:[17,516,545,568,616],decode_gmcp:516,decode_msdp:516,decoded_text:568,decompos:194,decompress:[501,564],deconstruct:[146,253,278,309,324,343,368,392,394,401,423,518,592],decor:[0,12,23,24,46,62,88,100,101,102,124,155,161,170,172,187,196,221,231,274,310,407,473,474,481,482,489,501,502,542,548,552,553,566,568],decoupl:[0,189,478],decreas:[61,341,342,442,550],decrease_ind:550,dedent:[0,27,33,568],dedic:[41,100,135,143,144,155,177,208,217],deduc:550,deduce_ind:550,deduct:[177,338,339,340,412],deem:[12,73,125,168,259,612,614,619],deep:[33,137,149,200,620],deeper:[24,76,119,144,146,149,163,462],deepest:242,deepli:[14,100,126],deepsiz:568,def:[1,6,7,8,11,14,20,21,23,27,29,32,34,35,36,39,41,43,44,46,49,55,63,78,81,82,83,86,87,88,90,94,96,97,99,100,104,105,109,112,115,116,118,122,123,128,133,139,140,141,143,144,145,151,152,155,157,161,163,165,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,187,190,191,192,194,195,196,197,198,200,204,265,296,300,305,319,346,349,355,358,362,376,384,391,395,408,414,477,521,534,550,552,553,555,566,568],def_down_mod:340,defafultobject:139,defalt_cmdset:204,defauklt:0,default_access:[14,472,481,540,548],default_action_class:407,default_authentication_class:221,default_auto_field:221,default_categori:465,default_channel:[0,135,221],default_charact:[96,326],default_client_width:32,default_cmd:[1,9,19,78,82,83,84,90,94,96,97,99,100,103,109,112,115,116,124,129,133,141,168,169,170,171,172,173,174,175,178,179,225,265,280,292,296,316,329,346,349,355,358,384,391,408],default_cmdset:[1,25,45,78,82,83,84,90,93,94,95,96,97,99,100,104,108,109,112,115,116,119,138,139,140,141,168,169,173,174,175,191,221,236,265,296,316,323,332,338,339,340,341,342,346,349,355,358,384,391,450,462],default_command:[1,138],default_confirm:[242,335],default_cr:[271,273],default_create_permiss:[50,221],default_destroy_lock:221,default_error_messag:564,default_filter_backend:221,default_help_categori:[33,221,249,464,616],default_hom:[43,221],default_in:52,default_kei:[118,395],default_kwarg:[32,555],default_list_permiss:[50,221],default_out:52,default_pagination_class:221,default_pass:[230,548],default_permission_class:221,default_screen_width:23,default_set:[11,138,165],default_single_tag:275,default_sit:599,default_tag:275,default_transaction_isol:205,default_unload:52,default_update_lock:221,default_view_lock:221,default_weight:[124,371],default_xyz_path_interrupt_msg:364,defaultaccount:[0,13,49,129,131,135,139,141,221,225,228,229,243,380,474,566,591,608,612],defaultchannel:[0,19,49,129,135,139,221,225,247,256,613],defaultcharact:[1,14,39,49,69,82,86,96,100,118,129,133,135,139,140,141,151,155,168,169,170,175,177,183,187,191,196,221,225,228,244,265,275,316,326,338,339,340,341,342,362,391,394,395,405,407,408,409,412,413,474,540,543,566,608,614],defaultd:0,defaultdict:483,defaultexit:[39,49,100,124,129,135,139,221,225,355,358,362,373,409,441,442,474,566],defaultguest:[129,225,228],defaultmod:561,defaultobject:[0,2,14,32,35,39,47,49,69,100,105,118,128,129,131,135,136,137,139,140,144,145,155,157,170,180,187,196,221,225,228,305,316,339,342,378,391,395,413,432,434,436,441,474,542,566,591,608,619,620],defaultpath:568,defaultplay:221,defaultroom:[39,49,100,124,129,135,139,167,181,182,185,190,221,225,306,346,362,373,391,416,442,474,566],defaultrout:[590,593],defaultscript:[0,44,49,129,135,139,167,178,180,198,221,225,229,277,287,307,313,335,338,362,372,390,400,407,409,458,478,484,485,525,556,566],defaultsess:[141,245],defaulttyp:537,defaultunloggedin:[141,246],defeat:[93,132,146,147,151,177,178,338,405,412,440],defeat_msg:440,defeat_msg_room:440,defeated_combat:407,defeated_enemi:405,defend:[29,146,157,161,178,338,339,340,342,407,417,441,474],defend_typ:157,defender_defens:161,defens:[0,120,149,155,157,161,178,338,339,340,342,377,410,411,417],defense_typ:[157,161,407,413,417,418],defense_type_nam:163,defense_valu:[338,339,340,342],defer:[0,20,23,55,172,194,231,233,252,258,346,358,466,473,474,482,486,489,499,501,502,533,537,540,542,543,560,561,576],deferredlist:537,defin:[0,4,6,7,8,9,10,11,13,14,15,16,20,24,25,27,33,34,39,41,43,48,49,50,52,54,55,56,60,62,63,67,70,72,74,76,77,81,82,84,85,86,88,95,100,101,102,104,105,110,112,118,119,123,129,130,131,133,134,135,136,138,139,140,141,143,144,147,149,152,155,157,161,167,168,169,173,174,175,177,179,180,182,186,188,191,193,194,196,197,199,220,221,225,227,231,233,235,236,237,239,242,248,249,250,252,253,254,256,257,258,263,265,268,277,280,286,287,290,292,303,309,316,322,335,340,341,346,349,370,376,380,384,390,391,395,400,408,417,436,441,442,450,455,458,462,463,464,465,466,468,469,470,471,472,473,474,478,479,481,482,485,487,488,489,492,499,502,523,524,531,532,533,536,539,540,541,542,543,545,546,547,550,552,555,556,560,563,565,568,572,578,580,581,591,594,601,608,616,617],define_charact:29,definin:143,definit:[0,13,16,23,24,33,38,39,41,43,48,55,56,60,70,81,87,100,102,124,130,138,140,181,197,221,235,237,242,250,257,284,296,319,335,390,441,468,470,473,478,479,484,546,548,552,555,564],deflist:537,degre:[33,132],deindent:568,del:[14,26,41,56,100,114,118,140,146,169,172,178,240,242,332,335,346,394,395,542],del_callback:[285,287],del_detail:346,del_pid:492,delaccount:0,delai:[0,23,26,62,81,87,95,102,114,116,126,171,198,221,252,277,287,319,358,376,434,441,450,486,487,504,510,533,547,568],delaliaschan:296,delay_cmd_loginstart:221,delayed_import:533,delchanalia:296,delcom:[109,133,169,296],deleg:[231,258,466,473,482,540,542,543,560],delet:[0,11,12,13,14,15,19,21,26,27,29,32,35,38,39,44,45,46,47,49,51,56,64,79,82,88,100,105,118,124,138,139,140,141,146,155,157,178,192,203,205,210,212,215,216,221,223,228,236,239,240,241,242,247,248,249,252,256,258,271,284,285,287,288,296,306,310,319,322,329,332,335,346,355,372,376,394,395,409,413,441,442,466,470,474,478,481,483,484,485,486,487,498,510,531,540,542,545,546,552,559,576,577,584,589,593,609,614,618,619],delete_attribut:540,delete_default:[21,236],delete_dupl:310,delete_prototyp:478,delete_script:481,deleteobject:76,deletet:346,deleteview:618,deliber:[6,73,568],delic:[84,152,316],delimit:[2,66,186,250,546,620],deliv:[217,329,391],delpart:335,delresult:335,deltatim:568,delux:217,demand:[44,48,94,147,149,169,171,172,173,177,217,221,228,256,346,378,395,474,534,547],demo:[54,82,93,125,126,130,132,142,146,148,158,164,166,439,552],democommandsetcomm:439,democommandsethelp:439,democommandsetroom:439,demon:43,demonstr:[82,95,102,140,188,192,194,196,265,340,446,450],demowiki:192,deni:[19,207,219,286,290],denomin:568,denot:[11,167,195,370,546],denounc:551,dep:561,depart:[100,182],depend:[0,7,8,9,10,12,16,17,19,20,21,23,29,32,34,37,44,45,48,49,52,55,56,57,61,62,63,66,67,70,81,82,88,93,94,100,101,102,105,110,112,114,118,123,124,125,127,130,131,135,138,139,140,141,146,147,149,152,168,169,177,178,182,183,191,192,194,195,197,202,205,210,211,212,217,219,220,221,223,227,233,235,237,239,252,265,285,346,362,370,371,373,384,390,395,407,413,434,442,464,470,474,478,487,492,512,515,521,523,533,542,543,550,552,553,555,568,572,620],depict:[306,349],deplet:[118,340,395],deploi:[3,5,101,128,214,217,219],deploy:[4,10,77,212,217],deprec:[0,20,29,216,225,226,479,488,545,561,568],deprecationwarn:491,depth:[4,18,33,57,124,146,196,249,409,462,467,479,568],dequ:[14,535],deriv:[11,49,71,149,167,205,208,212,213,300,545,569],desc1:29,desc2:29,desc3:29,desc:[0,16,19,26,34,35,36,39,43,44,51,82,88,94,100,104,105,108,109,123,124,126,133,134,135,136,139,152,163,168,169,178,179,184,195,196,197,198,221,236,239,242,247,249,253,257,259,265,296,305,316,322,323,332,335,340,341,346,355,362,374,393,407,413,414,418,434,462,474,481,482,490,546,548,550,551,552,608,614,619],desc_add_lamp_broken:434,desc_al:440,desc_closed_lid:434,desc_dead:440,desc_open_lid:434,descend:[136,608],describ:[5,7,12,14,15,16,19,21,23,29,32,35,41,42,43,49,51,52,54,61,66,69,70,72,74,82,93,100,101,105,118,124,128,130,131,133,138,139,144,152,157,169,173,175,178,179,187,189,194,197,200,204,205,211,213,217,218,221,235,242,246,248,258,277,296,304,316,322,323,341,346,370,371,391,395,405,407,434,458,474,479,485,489,510,512,515,525,552,567,568,581],descripion:440,descript:[7,11,12,16,17,19,29,34,35,43,47,51,54,59,74,78,82,84,100,101,102,104,105,107,108,112,118,119,123,124,126,128,130,132,134,135,136,137,139,147,152,163,168,169,179,181,182,184,188,194,195,196,209,212,217,221,228,239,242,247,248,256,257,265,296,300,304,313,316,332,346,347,355,362,370,373,391,394,395,409,412,413,414,416,432,434,439,440,441,442,458,462,474,481,482,546,548,552,562,563,576,581,590,594],description_str:105,descriptor:[272,273,275,362,405,407,409,412,413,540,543],descvalidateerror:332,deselect:83,deseri:[0,9,14,187,478,562,591],deserunt:30,design:[12,16,23,39,43,54,57,71,73,81,82,83,88,105,121,126,130,136,138,140,146,147,149,150,168,181,183,186,194,200,205,236,242,265,286,376,377,391,441,446,474,546,562,568],desir:[0,7,20,47,48,52,61,71,85,87,124,168,169,180,182,186,191,194,221,242,256,257,268,310,319,390,470,492,537,540,548,554,569],desired_effect:323,desired_perm:470,desktop:[17,57],despit:[14,15,45,131,168,192,215,442],desrib:221,dest:[300,474],destin:[0,1,23,34,39,43,51,82,100,102,104,105,116,124,135,136,140,145,155,180,182,186,242,316,338,355,358,364,365,370,371,373,405,409,441,442,446,472,473,474,479,548,594,614],destinations_set:473,destroi:[19,26,39,88,102,109,111,114,133,134,161,178,219,228,229,242,247,296,335,340,474],destroy:[110,115,126,355],destroy_channel:247,destroy_compon:305,destroy_lock:589,destruct:[21,235],detach:10,detail:[0,7,8,13,14,17,19,23,29,33,35,39,43,44,45,49,51,56,58,61,70,74,81,82,88,100,101,105,110,112,125,126,128,131,134,135,137,138,139,141,143,145,146,147,149,150,151,155,169,173,178,186,189,193,195,205,210,213,217,221,223,225,226,236,237,242,256,259,265,305,322,335,339,344,346,347,360,370,378,391,395,411,417,442,458,464,466,467,479,486,494,495,531,533,542,545,550,555,568,571,576,581,593,594,609,616,618,619],detail_color:242,detail_desc:347,detailkei:[346,442],detailview:[616,618],detect:[3,19,21,23,39,45,70,128,132,140,147,183,221,234,237,504,555,593],determ:541,determin:[0,8,13,15,17,19,20,21,23,27,29,30,33,35,38,43,44,52,67,81,88,100,104,112,124,134,140,141,161,177,178,181,182,191,193,205,215,218,221,228,235,236,237,239,247,249,250,256,313,338,339,340,341,342,358,371,390,391,407,409,414,441,462,464,466,470,474,516,540,541,542,545,550,553,555,561,566,568,572,576,578,581,588,589,597],determinist:371,deton:[81,376],detour:[67,144,179,533],detract:[151,157],dev:[0,33,83,130,131,143,150,163,168,187,203,204,205,208,213,215,217,221,223,620],devel:[0,138],develop:[0,1,3,4,7,8,9,10,11,12,14,17,19,20,23,32,33,41,43,50,52,54,57,58,59,66,69,70,71,74,79,81,97,100,105,120,125,126,127,128,130,131,134,135,137,138,139,141,143,144,147,149,150,153,154,156,158,159,160,162,165,167,169,176,186,188,189,193,194,200,202,204,205,209,213,215,216,217,221,222,223,237,240,241,247,248,249,252,256,284,285,290,303,417,446,452,464,466,474,479,538,542,543,546,552],deviat:150,devoid:545,dex:[14,29,139,143,152,157,161,163,169,407,410,551],dexbuff:[81,376],dext:143,dexter:[139,149,151,152,161,163,338,405,407,410,412,417],dhudozkok:110,diagnos:[9,173],diagon:[124,368],diagram:49,dialog:52,dialogu:[100,102],dice:[29,88,125,132,144,149,151,152,158,176,177,178,186,225,226,259,374,412,417,620],dice_rol:161,dicecmdset:384,dicenum:384,dicetyp:384,dict1:81,dict2:81,dict:[0,1,11,14,15,21,29,32,33,43,44,46,50,54,70,77,81,88,89,101,102,104,112,118,124,129,133,152,155,172,187,221,228,229,235,237,242,249,256,277,284,287,290,307,316,322,340,342,346,370,371,372,376,380,390,391,395,405,412,418,432,442,446,447,450,462,464,467,473,474,476,477,478,479,485,487,489,490,492,497,501,502,503,505,510,512,515,520,521,532,533,535,541,546,547,549,551,552,553,555,563,566,568,608,613,616,617,619],dict_of_kwarg_convert:32,dictat:[21,175,221],dictionari:[1,9,14,15,21,35,43,55,77,81,89,94,95,100,102,104,110,112,126,130,152,167,175,177,178,182,195,197,240,242,277,284,287,290,316,340,341,346,376,377,390,391,442,446,447,448,450,455,462,470,479,486,497,510,519,531,532,533,535,541,545,547,551,552,559,562,563,564,568,608,617,619],did:[12,13,66,82,105,131,133,134,139,140,141,143,144,152,161,168,172,179,186,191,221,228,313,474,486,543,564,568,573],did_declin:313,didn:[6,29,35,75,82,124,128,133,134,135,139,140,141,143,144,146,149,151,152,157,163,169,174,180,182,186,188,193,194,202,212,216,372,408],die:[10,146,149,151,161,177,185,186,384,390,412,417,533],dierol:[161,417],dies:[149,151,405,440],diesiz:[161,417],dif:12,diff:[211,384,479],differ:[0,1,6,7,8,10,11,12,13,14,15,16,17,20,21,23,24,27,29,32,33,35,36,38,43,44,45,46,47,48,52,57,58,61,62,63,64,65,67,70,72,73,75,79,81,82,83,87,88,93,100,101,102,103,105,110,112,118,120,123,124,125,126,128,130,131,132,133,134,135,136,138,139,140,141,143,144,147,150,151,152,157,161,168,169,171,175,177,178,179,180,181,182,183,186,187,188,189,193,194,196,197,200,206,207,209,212,216,218,219,221,225,228,233,235,236,239,242,249,251,252,253,254,256,265,277,281,287,288,300,304,305,308,319,322,329,338,340,341,342,358,362,368,370,371,373,376,384,391,395,406,407,410,412,417,418,452,458,462,472,474,476,479,481,482,487,490,494,516,521,523,540,542,546,548,552,555,561,564,568,572,573,576,577,584,588,593,594,617,619,620],differenti:[112,119,120,126,138,139,149,167,168,169,221,316,391,462,474,555,568,572],differnt:305,difficuli:14,difficult:[8,149,181,192,194,219,341,342],difficulti:[88,161,194],dig:[8,21,23,26,39,43,63,75,79,102,115,124,133,134,135,138,146,168,169,180,191,242,303,355,524],digit:[32,56,113,217,458,536,545,555,561,568],digitalocean:[208,217],dijkstra:[124,370,371],diku:[100,126,130,131,176,620],dikumud:73,dime:71,dimens:[130,182],dimension:[124,169],dimenst:144,diminish:61,dimli:105,dinner:[101,149],dip:143,dir:[0,2,4,5,39,44,54,66,77,93,128,131,139,142,143,144,169,176,179,195,200,205,208,209,211,212,213,217,221,223,561,568,597,620],direcetli:555,direct:[12,21,29,34,43,52,55,56,59,70,82,99,100,102,104,124,126,127,130,134,163,165,169,174,178,180,182,183,189,197,200,207,212,217,242,286,305,349,362,364,368,370,371,372,373,409,410,447,470,472,485,492,554,555,561,565,566,568,620],direction_alias:[124,371],direction_nam:371,direction_spawn_default:371,directli:[0,6,9,13,14,15,16,20,23,27,29,33,35,37,39,43,44,49,51,52,53,54,61,63,70,76,78,83,86,88,100,101,105,112,118,123,124,125,126,127,128,131,133,134,135,136,137,138,139,143,144,145,147,151,152,155,163,167,169,173,174,175,178,179,183,191,196,202,205,207,212,217,218,220,230,237,253,257,265,290,300,303,308,310,313,323,341,342,371,372,373,376,384,391,394,395,408,434,442,462,465,470,472,473,474,478,481,482,498,503,512,515,520,523,525,531,540,542,546,548,552,553,555,566,568],director:[62,112,391,474],directori:[1,3,4,5,8,10,11,12,15,20,49,52,54,74,76,97,100,125,126,131,137,138,169,175,189,191,193,194,195,197,205,207,211,212,213,215,216,221,222,242,446,452,492,512,513,537,546,561,568],directorylist:537,dirlang:221,dirnam:[221,492],dis:[221,417],disabl:[0,1,8,10,11,27,35,52,61,65,77,95,102,118,119,140,149,192,206,215,221,222,237,253,300,391,394,395,434,450,462,470,478,515,535,553,555,559,569],disableloc:515,disableremot:515,disadvantag:[112,149,161,169,178,217,342,407,417],disadvantage_matrix:407,disallow:192,disambigu:[237,474,542],discard:545,disconcert:150,disconnect:[0,9,13,14,19,42,45,46,47,52,56,63,149,168,178,191,210,218,221,228,239,242,247,250,252,256,274,474,502,503,504,510,511,512,515,520,521,524,530,531,532,533],disconnect_al:510,disconnect_all_sess:533,disconnect_duplicate_sess:533,disconnect_session_from_account:228,discontinu:206,discord:[127,130,135,150,200],discordia:71,discourag:[131,149,211],discours:149,discov:[146,149,186,540,620],discoveri:447,discret:[37,138,594],discrimin:219,discssion:127,discuss:[1,19,23,49,54,124,125,127,130,140,145,178,197,200,205,213,221,223],discworld:70,disembark:[0,180],disengag:[178,228,338,339,340,341,342,407],disfigur:[161,417],disguis:[59,112,126],dishearten:125,disk:[14,20,69,71,77,212,218,370,390,446,464,476,551],dislik:168,dismember:161,dispel:[81,188,376],dispens:412,displai:[0,1,6,8,18,21,23,24,27,29,33,35,39,44,50,52,53,54,60,61,67,70,74,82,83,94,98,100,101,102,105,124,126,128,139,140,147,155,163,169,173,178,184,186,191,193,194,195,196,197,220,221,228,237,239,242,247,249,252,254,265,280,281,285,287,292,300,304,308,310,313,316,329,346,362,368,370,371,373,380,387,391,395,411,413,416,417,434,439,441,442,450,452,462,464,474,478,479,490,492,509,527,530,535,542,543,550,551,552,553,554,561,562,563,564,566,568,569,578,580,582,583,584,591,608,613,617,618,619],display:487,display_all_channel:247,display_backpack:411,display_buff:550,display_choic:265,display_formdata:450,display_help:550,display_helptext:[476,552],display_len:568,display_loadout:411,display_map:368,display_met:[98,387],display_nam:555,display_nodetext:552,display_slot_usag:411,display_subbed_channel:247,display_symbol:[124,370,371,373],display_symbol_alias:371,display_titl:265,dispos:[105,111,335],disput:178,disregard:23,dissect:133,dist:[124,215,368,370],distanc:[11,20,49,101,112,120,124,126,131,135,136,139,181,182,341,342,368,370,390,409,474,568,586],distance_dec:342,distance_inc:342,distance_to_room:181,distant:[182,346,442],distinct:[45,75,130,131,136,342,588],distinguish:[82,237,342,462],distribut:[6,11,17,19,21,76,126,127,131,137,189,199,205,207,215,221,223,256,257,258,391,545,548,568,571],distribute_messag:256,distro:[202,205,208,221],disturb:[20,75],distutil:215,distutilserror:215,ditto:213,div:[18,32,43,52,57,81,128,165,376],dive:[82,142,144,145,163,620],diverg:67,divid:[0,15,32,79,81,83,131,196,197,277,417,442,568],dividend:277,divis:394,divisiblebi:197,divisor:277,django:[4,7,11,13,14,17,24,44,46,47,49,50,51,52,53,54,62,66,69,72,76,104,118,130,132,138,139,142,145,165,176,177,181,189,192,193,195,197,198,200,205,215,216,217,219,220,221,222,228,230,231,237,254,256,258,263,281,362,368,373,395,405,407,409,412,413,464,466,472,473,478,481,482,491,492,498,499,512,518,520,521,528,534,535,536,537,540,542,543,546,549,553,558,559,560,564,566,568,573,574,575,576,577,578,579,580,581,582,583,584,588,589,591,593,594,599,600,603,608,612,613,614,616,617,618,619,620],django_admin:609,django_extens:221,django_filt:[221,588,594],django_nyt:192,djangofilterbackend:[221,594],djangonytconfig:192,djangoproject:[205,221,608],djangotempl:221,djangowebroot:537,dkefault:105,dmg:[81,177,376,377,406],dnf:[207,208,215],do_attack:440,do_batch_delet:540,do_batch_finish:540,do_batch_update_attribut:540,do_craft:[88,322],do_create_attribut:540,do_delete_attribut:540,do_flush:[542,559],do_gmcp:516,do_hunt:440,do_mccp:505,do_msdp:516,do_mssp:506,do_mxp:507,do_naw:508,do_nested_lookup:242,do_noth:439,do_patrol:440,do_pickl:549,do_power_attack:[87,319],do_sav:187,do_search:249,do_sit:140,do_stand:140,do_task:[252,486,568],do_task_act:252,do_unpickl:549,do_update_attribut:540,do_xterm256:545,doabl:16,doc:[0,1,5,7,11,12,18,19,23,24,29,33,39,43,49,51,54,57,69,76,77,91,101,102,104,106,124,127,129,131,136,137,140,141,144,150,155,193,196,198,205,216,218,221,225,242,252,270,300,364,412,458,474,503,568,608,620],docker:[0,210,217,221,222,620],dockerfil:212,dockerhub:212,docstr:[1,2,28,31,33,34,133,137,139,140,141,155,237,242,253,265,285,300,303,323,370,376,390,391,395,408,434,442,462,467,523,552,620],document:[0,1,2,7,8,9,10,11,12,18,24,26,30,33,44,49,50,51,53,54,57,61,62,66,69,74,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,130,131,132,135,137,138,139,143,144,146,161,163,165,168,169,170,176,180,189,191,192,193,194,196,200,205,206,210,217,219,220,221,236,250,265,300,319,396,402,407,458,467,540,543,551,559,588,613,616],dodg:[171,339],dodoo:76,doe:[0,1,7,11,13,14,19,21,23,29,32,33,35,37,39,41,43,44,47,49,52,53,54,59,60,61,63,70,72,73,75,76,81,85,86,88,90,91,93,104,105,108,119,123,124,125,126,128,131,132,133,134,137,138,139,140,141,143,144,146,147,151,152,157,161,163,167,168,169,170,172,177,178,179,180,181,182,186,188,189,190,191,193,194,196,197,199,205,206,208,209,213,215,218,220,221,228,229,239,250,252,254,268,274,281,300,303,310,316,319,322,332,335,338,341,342,346,349,362,370,371,376,395,407,413,441,442,462,474,478,479,483,485,486,491,492,496,497,498,501,504,512,513,519,540,542,543,547,551,552,555,561,564,566,568,600,608,616,619],doesn:[4,14,15,17,23,29,32,37,39,49,52,53,54,69,70,81,82,88,100,101,102,105,124,127,133,136,139,140,143,144,147,149,151,152,163,168,177,180,181,182,186,187,188,189,191,193,194,197,199,202,204,210,211,213,215,217,218,219,221,223,236,247,256,258,286,287,319,322,323,340,346,370,371,376,417,470,474,492,505,512,516,540,543,545,552,563,568,576],doesnotexist:[228,229,231,256,258,275,277,287,305,306,307,313,316,326,335,338,339,340,341,342,346,355,358,362,368,372,373,378,380,390,391,394,400,405,407,409,412,413,416,432,434,436,440,441,442,458,466,472,473,474,478,482,485,499,525,540,543,548,556,560],doff:339,dog:20,doing:[4,8,9,11,13,14,20,21,23,26,29,39,45,48,49,52,54,55,59,61,81,83,88,100,101,119,124,128,131,132,133,136,139,143,144,148,149,151,152,155,158,161,163,168,169,172,181,182,188,192,194,195,197,200,215,217,218,221,228,239,256,286,305,310,313,316,322,338,339,340,341,342,362,380,391,405,407,413,432,440,441,462,469,474,487,523,552,559,564,573,599],doll:[88,322],dolor:30,dolphin:133,dom:52,domain:[54,130,207,208,217,219,221,230,548],domexcept:217,domin:149,dominion:189,dominyka:[110,455],dompc:189,don:[0,1,6,7,8,9,10,11,12,14,19,20,21,23,27,29,32,33,35,41,44,45,49,54,55,61,66,67,69,70,74,75,76,79,81,82,83,88,92,99,100,101,102,105,112,118,120,121,123,124,125,126,127,128,131,132,133,134,136,138,139,140,141,143,144,146,147,149,150,151,152,155,157,158,161,165,169,171,172,173,174,175,177,178,179,181,184,185,186,188,189,190,191,192,193,194,195,196,197,202,205,208,209,210,211,213,214,216,217,219,220,221,223,228,229,235,236,242,247,248,249,250,251,254,256,265,286,290,296,300,305,306,319,323,339,340,341,349,362,364,370,371,384,390,391,394,395,405,407,408,411,412,416,421,434,442,470,473,474,478,479,487,497,504,509,510,515,517,524,531,538,542,545,546,552,559,561,564,568,577,589,608,617,620],donald:8,donat:[217,620],done:[0,1,4,7,8,11,12,14,21,23,29,32,33,35,38,46,48,51,52,53,54,55,66,71,81,82,100,110,112,114,123,124,128,130,131,132,134,138,139,140,142,143,144,149,152,155,163,167,168,169,172,173,174,175,177,178,179,180,181,182,183,186,187,188,189,191,192,193,194,196,197,198,205,208,212,217,218,221,223,228,237,239,247,258,280,292,313,342,362,370,372,376,378,384,390,405,411,414,417,470,473,474,485,486,487,492,496,505,509,511,513,517,521,527,530,531,533,538,540,545,546,553,555,559,566,568,573,617],donoth:485,dont:514,doom:[124,479],door:[20,23,33,35,39,82,100,102,115,124,126,134,145,147,182,242,310,354,355,371],doorwai:[115,355],dot:[9,54,82,236,242,546,568],dotal:[545,567],dotpath:568,doubl:[9,32,82,128,143,155,168,194,235,254,411,568],doublet:[235,236],doubt:[82,124,300],down:[3,8,9,10,14,21,23,27,29,52,56,69,71,80,81,82,88,97,99,100,102,105,119,120,123,126,127,128,130,132,135,137,140,142,143,146,147,148,149,157,158,164,166,168,169,177,179,181,182,184,186,191,192,193,212,215,217,218,220,228,242,247,252,287,305,319,339,340,349,362,368,370,371,376,441,446,462,467,469,474,479,485,487,492,494,501,502,509,510,530,531,533,545,553,554,568],download:[5,12,131,137,189,200,202,205,211,212,213,217,223],downmaplink:[124,371],downtim:[407,556],downward:239,dozen:[71,130],drag:[0,52],dragon:[133,135,139,141,144,149,161,167,221],drain:[118,395],drama:33,dramat:[0,136,140,147,221,478,479],dramati:33,drape:[84,316],draw:[16,76,104,124,126,128,177,181,182,183,349,407,408,423,554],draw_exit:349,draw_room_on_map:[182,349],drawback:[14,16,29,69,118,135,149,157,169,171,177,205,221,395,546],drawn:[105,169,182,349],drawtext:177,dread:104,dream:[73,130,147,150],dress:[84,316],drf:[588,591],drift:149,drink:[149,305,413,540,542],drinkabl:305,drive:[12,32,58,76,131,144,147,149,150,179,180,189,194,212,213,215],driven:[117,126,149,150,191,418,436,476],driver:205,drizzl:[44,190],drop:[0,1,16,23,26,35,37,38,39,52,63,69,70,76,79,100,107,111,114,117,125,127,130,133,134,138,139,140,141,143,149,155,168,169,170,179,180,183,184,185,189,197,205,217,221,223,242,248,254,316,335,339,342,405,434,436,474,501,542,546,568],drop_whitespac:554,dropbox:76,dropdown:[0,10,12],droplet:208,dropper:[339,342,474],drum:217,dry:208,dtobj:568,duck:[20,143],duckclient:206,due:[8,21,23,46,49,56,63,75,82,131,143,149,169,172,175,186,188,213,215,217,220,221,236,252,413,473,474,478,494,530,533,545,561,577],duel:149,dufresn:76,duh:71,dull:[47,100,105,134],dum:467,dumb:[134,533,545],dummi:[0,8,23,35,88,143,149,155,157,161,163,189,209,299,322,391,413,470,492,497,510,523,524,531],dummycharact:394,dummycli:523,dummyfactori:523,dummyrunn:[0,2,221,225,226,488,492,510,522,524,526,620],dummyrunner_act:523,dummyrunner_actions_modul:523,dummyrunner_echo_respons:523,dummyrunner_set:[8,221,225,226,488,492,522],dummyrunner_settings_modul:[8,221],dummyrunnercmdset:523,dummysess:533,dump:[29,446,501],dungeon:[47,124,130,132,138,145,149,152,158,161,176,200,225,226,259,396,402,416,425],dungeon_orchestr:409,dungeonmap:124,dungon:409,dupic:21,duplic:[0,21,235,242,249,487,542,561],durat:[55,161,171,190,252,319,340,376,377,378,562,569],dure:[9,12,14,21,35,45,46,52,63,64,74,75,81,83,94,100,104,121,124,128,144,147,149,152,157,161,172,178,189,190,191,193,200,212,215,221,223,228,235,247,253,256,300,303,322,335,346,370,371,376,406,407,414,417,423,440,442,470,472,486,501,511,546,548,552,561,581,608,620],duti:131,dwarf:105,dwarv:151,dying:[149,161,338],dynam:[0,11,13,24,32,44,48,52,53,54,59,69,81,99,100,118,119,124,126,128,132,136,138,158,165,176,194,217,221,228,231,237,249,252,253,258,280,292,338,349,368,371,373,391,395,407,412,450,462,465,466,473,474,478,482,487,540,542,543,548,550,551,552,560,562,568,576,581,597,619,620],dyndns_system:217,dyson:[110,455],each:[3,4,6,8,9,11,12,13,14,15,19,20,21,23,24,29,32,33,35,39,43,45,47,48,49,51,52,54,55,58,61,63,67,69,71,75,78,81,82,84,85,86,88,93,94,95,99,100,102,104,105,110,111,112,118,120,123,124,125,126,128,130,131,132,133,135,136,137,139,141,142,143,144,147,152,155,157,161,163,167,168,169,172,174,175,177,178,180,181,182,184,185,188,190,191,193,194,197,212,220,221,228,234,235,236,240,242,247,249,251,256,268,271,273,305,310,313,316,319,322,335,338,340,341,342,346,349,362,368,370,371,372,373,378,390,391,395,401,407,409,413,414,417,418,434,450,462,464,466,467,470,473,474,477,478,479,484,487,494,497,510,512,515,519,524,531,532,533,540,542,543,545,546,548,550,551,552,553,554,555,559,566,568,591,594,597],eagl:140,eaoiui:[112,390],eaoui:390,earler:[134,418],earli:[0,3,92,140,150,161,338,339,340,341,342,494],earlier:[0,4,10,12,15,19,21,29,33,34,118,131,133,141,143,144,147,155,157,163,165,169,175,180,189,191,195,209,221,371,395,405,464,497],earn:[149,150],earnest:145,earth:170,eas:[21,23,69,139,181,188,212,217],easi:[0,10,15,18,23,29,33,39,44,49,54,55,59,70,71,72,75,81,83,84,93,101,102,105,118,124,125,126,128,130,133,140,141,143,144,147,149,150,151,152,161,167,172,175,177,178,181,183,187,188,191,194,195,197,200,202,205,208,212,217,236,240,308,316,322,395,412,450,462,552,559,620],easier:[0,7,12,14,29,33,43,44,50,51,54,55,56,69,82,93,100,112,119,124,125,130,132,133,136,139,140,141,143,144,146,147,149,150,151,152,155,167,168,169,174,175,177,181,186,188,193,197,213,216,217,220,242,323,338,339,340,342,364,373,390,405,409,417,441,462,534,540,543,568],easiest:[1,12,17,20,50,54,56,66,74,76,88,97,101,102,124,127,155,169,173,191,194,208,215,223,446,542],easili:[0,1,10,12,15,16,18,19,20,23,29,33,35,37,39,43,45,46,52,54,56,59,66,67,70,71,75,81,82,84,88,98,99,100,101,102,105,115,118,119,125,126,128,134,136,138,139,141,145,146,147,149,151,152,155,165,169,175,177,181,182,184,185,186,187,191,192,193,194,196,203,212,215,217,219,247,256,258,265,286,300,313,316,338,341,342,349,355,364,387,390,395,450,462,464,465,466,487,546,552,563],east:[1,76,104,105,124,135,174,182,242,349,370,371,442],east_exit:442,east_room:104,east_west:105,eastern:[105,175,370,372],eastward:442,eat:[100,161,303,305,413],eaten:377,echo1:172,echo2:172,echo3:172,echo:[0,4,20,23,27,29,32,43,55,56,59,75,80,90,107,128,133,134,141,143,149,171,172,174,178,182,183,190,191,201,203,204,212,217,218,220,221,228,229,240,242,247,252,316,364,384,391,411,418,432,440,441,442,474,490,497,512,515,550,552,566,568],echocmdset:133,echowoo:133,econom:[69,130,135,138,144,200],economi:[44,71,132,147,177,184,198,313],ecosystem:212,edg:[12,20,47,57,124,323,370,371,417,554,566,568],edgi:182,edibl:305,edit:[0,9,10,12,14,15,16,19,23,24,25,26,33,35,41,43,50,52,53,63,66,69,74,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,126,132,139,149,151,152,167,169,173,175,187,189,192,193,194,195,197,205,208,209,210,211,212,213,220,221,240,242,249,252,265,266,281,284,285,287,288,332,335,406,450,470,474,476,478,479,540,550,580,581,589,608,614,618,619,620],edit_callback:[285,287],edit_handl:242,editcmd:82,editi:[118,395],editor:[9,12,17,23,24,32,33,43,50,66,71,82,101,102,105,127,128,129,143,144,168,176,179,189,196,208,215,242,249,251,252,265,332,482,546,550],editor_command_group:550,editorcmdset:550,editsheet:169,edu:571,effect:[0,7,11,12,14,16,19,20,21,25,38,44,46,48,54,55,61,75,76,81,88,92,100,104,105,110,114,118,120,121,124,126,128,140,143,144,147,149,151,157,163,167,168,169,171,172,177,178,181,188,220,221,228,235,236,242,251,256,287,305,319,323,339,340,341,371,376,377,384,395,407,411,413,417,440,442,472,474,480,482,505,568],effic:172,effici:[8,14,38,44,47,48,49,69,78,116,124,131,136,140,144,145,155,157,167,170,181,183,190,200,313,358,370,371,373,391,470,474,487,540,541,543,550,553],effort:[138,167,192,195,614],egg:[161,211,322],egg_info:215,egi:494,egiven:472,eight:[110,305],eightbal:145,eirik:76,either:[0,8,9,12,15,18,20,21,23,29,32,35,39,41,43,44,45,47,49,52,54,56,59,60,67,79,82,100,101,102,103,105,110,112,115,124,126,127,128,130,133,135,136,138,139,140,143,144,146,149,151,152,157,161,167,168,169,171,172,177,178,180,181,182,184,186,188,189,191,192,197,205,215,217,218,219,221,223,228,229,235,236,237,242,247,257,265,284,290,322,329,338,342,355,370,371,372,373,390,391,395,409,412,414,418,434,455,462,470,474,477,479,482,484,485,487,490,501,513,517,524,541,542,543,552,554,555,561,563,565,568,571],elabor:[82,100,128,186,191],electr:217,element:[8,14,18,29,32,54,57,60,82,88,124,130,139,141,143,145,161,186,234,239,249,265,277,370,372,373,390,407,417,458,474,479,540,541,543,546,551,552,553,555,566,568],elev:[100,101],elif:[29,44,102,133,145,155,161,169,177,178,182,191],elig:[76,555],elimin:[212,545],elimit:568,ellipsi:0,ellow:545,els:[6,7,12,13,19,20,23,29,33,35,36,41,44,48,52,54,55,56,58,59,76,78,81,82,87,88,100,101,102,105,123,128,132,133,134,140,141,143,145,147,150,151,152,155,161,163,169,173,177,178,179,180,181,182,184,185,186,189,191,194,195,197,205,217,219,221,247,253,313,316,319,338,340,341,342,362,376,450,458,473,521,542,552,568],elsennsometh:253,elsewer:161,elsewher:[0,13,21,47,54,137,139,152,169,172,194,236,371,442,492,533,540],elv:151,elvish:[112,390],emac:16,email:[0,12,37,126,131,135,138,145,208,210,214,221,228,230,231,279,281,282,548,562,568,569,576,608,620],email_login:[91,225,226,259,260,620],emailaddress:568,emailfield:[576,608],emb:[43,59,94,112,124,128,155,169,346,479],embark:180,embed:[0,32,43,49,54,65,124,138,221,249,256,370,477,551,555,568],embrac:151,emerg:[41,66,219],emi:[112,390],emit:[52,71,133,228,236,240,256,326,474,531],emit_to_obj:[236,474],emo:179,emoji:206,emot:[0,19,23,26,32,33,59,78,125,126,130,139,149,150,178,228,248,303,313,389,390,391,407,540,555],emoteerror:391,emoteexcept:391,empathi:323,emphas:128,emphasi:[128,411],empir:221,emploi:569,empow:81,empti:[0,6,7,11,12,13,16,19,21,23,29,36,39,44,48,49,51,52,54,55,69,70,81,88,93,98,102,118,124,126,128,131,133,136,138,139,140,141,143,144,145,151,152,155,157,161,163,165,169,177,182,186,189,191,195,197,208,209,210,212,214,221,230,233,234,240,242,247,253,265,284,307,322,349,370,371,387,391,395,409,411,412,413,423,474,478,479,490,497,501,523,524,540,546,548,551,552,554,565,568,577,584],emptor:76,empty_color:387,empty_permit:[578,580,582,584,608],empty_symbol:370,empty_threadpool:537,emptyset:21,emul:[8,45,73,118,120,131,191,211,252,395],enabl:[0,10,52,76,77,81,86,87,95,188,195,204,205,206,207,212,219,221,228,263,319,391,394,450,515,569],enable_recog:391,enableloc:515,enableremot:515,enact:303,encamp:101,encapsul:562,encarnia:200,encas:550,enclos:[25,27,143,254,281,555],encod:[0,20,24,26,62,105,124,169,221,254,371,501,503,516,520,521,545,564,568,616,620],encode_gmcp:516,encode_msdp:516,encoded_text:568,encompass:[0,20,417],encount:[149,236,371,452,472,555,569],encourag:[0,81,82,165,181,186,206],encrypt:[67,76,135,207,208,219,247,512,513,517],end:[0,1,7,8,15,16,20,21,23,27,29,32,33,35,38,43,45,46,52,55,58,60,61,63,66,67,69,70,71,74,75,76,79,81,82,100,108,112,119,120,123,124,125,126,128,131,132,134,136,138,140,141,143,144,145,146,149,152,155,161,163,169,170,171,172,175,177,178,179,180,181,183,184,186,188,189,191,194,195,197,201,205,207,208,209,210,212,217,221,223,228,229,235,236,242,248,249,256,257,305,308,313,316,323,332,338,339,340,341,342,349,370,371,387,391,406,407,408,409,414,417,418,436,442,455,462,465,496,503,504,512,515,516,523,526,531,535,537,541,545,546,548,552,553,554,555,561,568,617],end_convers:29,end_direct:371,end_turn:178,end_xi:[124,370],endblock:[54,165,194,195,197],endclr:555,endcolor:32,endcoord:368,endfor:[194,195,197],endhour:1,endif:[194,195,197],endind:7,endless:54,endlessli:219,endpoint:[50,194,196,219,593,594],endsep:568,endswith:545,enemi:[14,29,43,81,132,146,147,161,172,178,183,340,341,342,405,407,412,417,440,441,442],enemynam:29,enforc:[0,11,23,41,55,132,147,177,188,272,275,512,515,553,554,566,614],enforce_s:[551,554],enforce_singl:[86,272],engag:[130,342,440],engin:[0,4,11,23,29,33,39,75,93,125,126,131,132,141,146,167,177,193,200,205,220,221,233,236,249,251,252,301,322,412,417,422,428,442,447,465,492,503,509,512,515,520,530,532,546,548,572],english:[0,9,17,32,59,66,72,140,151,200,254,568,571,572],enhanc:[0,61,143,446,545,618],enigmat:134,enjoi:[10,147,149,150,186],enough:[6,11,19,35,36,38,47,48,71,88,123,124,128,130,131,132,133,136,137,139,140,141,142,144,147,168,169,170,171,179,181,186,188,191,193,197,208,213,217,221,236,242,322,341,362,371,390,411,417,434,458,552,553,554,566],enpoint:591,ensdep:568,ensur:[10,81,86,182,188,197,205,212,221,376,378,462,535,566,614],ensure_ascii:521,ensurepip:215,enter:[0,1,4,6,7,8,12,15,16,17,19,20,21,23,25,29,32,33,38,39,41,43,52,53,54,59,64,67,74,78,82,84,93,95,97,100,101,102,105,106,123,124,126,131,141,143,146,152,155,165,169,172,174,175,178,179,183,184,185,186,189,191,194,197,205,211,212,214,221,223,225,228,234,236,241,249,250,252,265,290,305,308,313,316,338,346,362,407,409,440,442,450,462,469,474,479,482,490,531,552,597,608],enter_guild:29,enter_nam:29,enter_wild:[123,362],enterpris:3,entertain:149,enthusiasm:150,enthusiast:[0,149],entir:[0,11,14,15,16,20,23,27,29,32,33,35,43,48,49,54,55,58,69,71,81,82,86,100,101,105,110,111,112,119,124,126,137,138,140,143,147,149,155,172,182,186,191,193,196,197,216,217,256,265,300,370,371,372,373,376,390,391,409,462,470,474,478,542,543,546,552,554,559,568,617],entireti:[29,170,177,304,450,552],entit:[257,548,620],entiti:[0,11,14,19,20,29,32,33,35,36,37,38,39,41,43,44,45,46,47,49,51,54,59,81,124,126,129,131,132,135,136,137,138,139,140,145,147,151,152,155,161,178,187,188,196,221,227,228,237,242,247,252,256,257,258,305,322,355,372,373,376,391,405,412,413,417,432,464,466,467,469,472,474,476,477,478,479,480,481,482,483,485,487,533,540,541,543,548,552,553,555,558,565,568,584,594],entitiess:131,entitii:46,entitl:217,entranc:[105,124,149,409],entri:[0,7,12,17,20,21,23,24,29,35,46,54,104,132,133,137,139,142,145,149,161,169,180,186,197,202,206,209,221,228,237,249,250,253,305,322,338,340,341,387,458,462,463,464,465,466,467,470,474,487,511,524,535,540,546,548,550,552,554,561,562,565,568,569,580,588,591,594,609,613,616],entriest:239,entrypoint:212,entrytext:[33,197,464,465,466,548],enul:207,enumber:157,enumer:[163,195,568],env:[492,502],environ:[0,1,2,3,4,11,15,53,76,128,131,143,147,150,161,189,192,201,210,212,213,214,215,217,219,221,252,253,266,275,297,309,314,317,320,324,336,343,347,361,368,378,382,392,401,414,421,422,423,424,427,428,439,453,492,502,518,527,546,552,566,592,609],environment:492,envvar:214,eof:512,epilog:300,epoch:[20,175,221,556],epollreactor:537,equal:[1,9,21,23,32,57,58,61,81,90,100,101,102,110,124,126,134,136,139,140,141,149,161,163,180,181,186,235,247,338,339,340,342,346,391,394,395,406,411,474,568],equip:[16,61,84,120,132,138,149,152,157,158,161,168,176,225,226,259,316,338,339,342,396,402,405,406,407,412,413,426],equipmentcombatrul:339,equipmenterror:[155,411],equipmenthandl:[132,152,158,411],equival:[0,12,14,15,32,38,51,54,55,59,61,63,70,124,137,141,143,145,215,218,219,220,227,230,242,319,364,370,371,376,465,472,481,510,516,540,568,589,617],equval:139,eras:[189,342],erik:76,err:[135,169,221,501,523,546,561],err_travers:[39,474],errback:[55,489,492,501,502,568],errmessag:235,errmsg:191,erron:[0,72,191,501,554],error:[0,6,7,9,11,14,16,17,19,20,21,23,24,29,32,34,35,38,39,41,43,45,49,54,55,66,67,69,72,74,81,82,88,100,104,105,119,124,128,131,132,134,135,139,140,141,142,144,145,146,150,151,155,161,163,167,168,169,176,186,187,189,191,194,196,198,204,205,206,207,208,211,215,217,220,221,223,225,226,228,230,233,235,236,242,247,254,256,287,300,322,324,349,369,371,372,373,391,395,405,410,411,412,441,456,458,462,470,472,474,477,478,479,481,485,486,489,491,492,494,496,497,501,515,523,542,545,546,548,551,552,555,561,564,568,569,574,589,591,607,611,616,620],error_check_python_modul:492,error_class:[578,580,582,584,608],error_cmd:174,error_consumable_excess_messag:322,error_consumable_missing_messag:322,error_consumable_order_messag:322,error_msg:535,error_tool_excess_messag:322,error_tool_missing_messag:322,error_tool_order_messag:322,errorlist:[578,580,582,584,608],errorlog:207,escal:[13,41,58,239,469,543],escap:[0,61,93,124,126,197,221,248,252,300,303,306,407,545,555,567,608],escape_char:555,escaperoom:[93,200,306],escript:[82,265],esit:407,especi:[0,8,17,35,41,45,47,82,105,110,112,138,139,143,145,147,149,172,205,207,213,215,387,390,546],esqu:139,ess:30,essai:200,essenti:[10,59,72,138,149,167,182,200,208,211,257,492,548],est:[30,253],establish:[23,45,120,126,147,149,152,157,161,163,177,208,221,228,338,474,489,501,503,510,512,515,520,523,530,532],estim:[173,221,370,479,559],esult:474,etc:[0,1,7,11,12,13,14,19,20,23,25,29,32,33,35,36,37,38,39,41,43,44,45,46,49,51,52,53,54,56,59,63,65,67,69,70,71,76,79,81,82,88,89,93,95,97,98,99,100,112,115,118,124,125,126,128,129,130,131,133,134,135,136,137,138,140,147,149,151,152,157,161,167,168,169,172,175,177,178,182,188,190,192,196,198,200,205,207,208,212,213,218,219,221,228,231,233,234,235,236,239,241,242,247,250,252,254,257,268,277,300,305,306,313,323,335,339,341,349,355,370,371,372,373,387,390,391,395,405,407,413,417,434,442,450,452,474,478,479,510,512,515,519,520,521,531,532,540,542,545,546,548,549,550,551,552,555,561,568,572,577,584,588,594,597,619],etern:29,ethic:77,euclidian:124,eunpyo:76,ev_channel:229,evadventur:[125,149,151,152,155,157,158,161,163,187,225,226,259,396,620],evadventureamor:157,evadventurearmor:[157,413],evadventurecharact:[151,152,155,405,412,430],evadventurecharactergenerationtest:422,evadventurecharactersheet:417,evadventurecmdset:408,evadventurecombathandl:[407,412],evadventurecommand:408,evadventureconsum:[157,413],evadventuredungeonbranchdelet:409,evadventuredungeonexit:409,evadventuredungeonorchestr:409,evadventuredungeonroom:409,evadventuredungeonstartroom:409,evadventuredungeonstartroomexit:409,evadventurehelmet:[155,157,413],evadventureimprov:417,evadventuremixin:[420,423,424,425,426,427],evadventuremob:[151,412],evadventurenpc:[151,412],evadventureobject:[155,157,411,413,418,430],evadventureobjectfil:413,evadventurepvproom:416,evadventurequest:414,evadventurequestgiv:412,evadventurequesthandl:414,evadventurequestobject:[157,413],evadventurequesttest:427,evadventurerollengin:[151,161,417],evadventurerollenginetest:428,evadventureroom:[155,409,416],evadventureruneston:[157,413],evadventureshield:[157,413],evadventureshopkeep:[412,418],evadventurestartroomresett:409,evadventuretalkativenpc:412,evadventuretreasur:[157,413],evadventureturnbasedcombatactiontest:423,evadventureturnbasedcombathandlertest:423,evadventureweapon:[155,157,413],eval:[32,43,313,568],evalstr:470,evalu:[23,29,32,78,128,136,150,234,313,376,377,470,552,555],evbot:[247,533],evcel:[0,551,554],evcolumn:[0,554],evdemo:93,eve:568,evedit:0,eveditor:[24,26,33,82,100,129,225,226,265,544,620],eveditorcmdset:550,even:[0,1,6,8,10,12,14,16,19,20,21,27,29,33,35,41,44,45,48,49,50,51,52,56,58,61,66,69,71,73,74,80,81,82,84,89,94,95,100,101,112,118,121,124,126,127,130,131,137,139,140,143,144,146,147,149,150,155,158,161,163,167,168,169,172,175,177,178,179,181,182,183,186,188,189,191,196,197,209,213,215,217,218,221,228,235,237,240,247,249,256,277,300,316,322,338,339,340,341,342,346,370,371,373,390,391,395,411,442,450,474,478,479,515,552,554,555,559,568,616],evenli:[20,124,277,371,568],evenn:212,evenna:189,evennia:[1,4,5,8,13,14,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,41,42,44,45,46,47,48,49,51,53,54,55,58,59,60,61,62,63,64,67,69,70,71,72,73,74,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,101,102,103,104,105,106,107,109,110,111,113,114,115,116,117,118,119,120,122,123,124,126,127,129,131,132,133,134,135,136,138,139,140,141,142,144,145,146,147,148,150,152,155,157,158,161,163,164,165,166,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,187,190,191,192,193,194,195,196,197,198,199,206,208,213,214,215,219,220,222],evennia_access:207,evennia_admin:[221,579],evennia_channel:[201,202,203,247],evennia_default_urlpattern:196,evennia_dir:[97,221,568],evennia_error:207,evennia_gener:193,evennia_launch:[0,10,225,226,488,490],evennia_logo:[54,193],evennia_runn:[0,10],evennia_server_port:42,evennia_superuser_email:214,evennia_superuser_password:214,evennia_superuser_usernam:214,evennia_vers:492,evennia_websocket_webcli:520,evennia_wsgi_apach:207,evenniaadminapp:[221,599],evenniaadminsit:599,evenniaapiroot:590,evenniacommandmixin:[11,566],evenniacommandtest:[11,566],evenniacommandtestmixin:566,evenniacreateview:[612,618,619],evenniadeleteview:[618,619],evenniadetailview:[618,619],evenniaform:[608,614],evenniagameindexcli:494,evenniagameindexservic:495,evenniaindexview:[54,617],evennialogfil:561,evenniapasswordvalid:[221,536],evenniapermiss:[196,221,589,594],evenniareverseproxyresourc:537,evenniaserv:42,evenniatest:[11,275,378,394,448,453,566],evenniatestcas:[11,566],evenniatestmixin:[11,566],evenniatestsuiterunn:221,evenniaupdateview:[618,619],evenniausernameavailabilityvalid:[221,228,536],evenniawebtest:609,event:[0,12,29,33,46,52,77,81,89,126,131,150,177,219,221,225,229,277,286,287,288,290,305,313,376,391,434,446,482,485,534,561],event_level:561,event_nam:[286,290],event_push:100,eventcharact:100,eventexit:100,eventfunc:[102,225,226,259,260,283,287],eventfuncs_loc:100,eventhandl:[100,287],eventi:[237,265,300],eventobject:100,eventroom:100,events_calendar:100,events_dis:100,events_valid:100,events_with_valid:100,events_without_valid:100,eventu:[14,23,41,49,56,58,66,67,70,90,146,147,149,150,161,169,172,178,191,193,194,217,218,221,228,233,234,242,251,257,305,306,384,390,434,442,470,474,479,489,497,523,531,532,543,547,548,552,554,606],evenv:[4,10,131,192,211,213,215,216],evenwidth:554,ever:[12,14,15,16,17,23,32,44,45,47,49,56,69,72,82,105,112,124,131,135,136,139,149,161,168,177,183,186,205,210,218,221,223,303,306,371,390,487,503,504,510,540,552],everi:[0,4,5,8,11,12,15,19,20,21,23,29,32,33,34,37,43,44,48,49,59,69,71,72,74,76,77,80,81,87,89,95,100,101,102,105,110,124,127,128,131,133,134,136,138,139,143,144,146,149,151,152,155,157,161,163,168,171,175,177,178,179,180,181,182,184,185,186,190,191,193,194,195,197,198,208,211,212,213,217,220,221,223,228,242,247,256,287,304,319,324,338,340,362,370,371,378,390,400,407,409,413,439,450,462,474,479,485,487,497,514,524,530,539,540,542,543,552,553,554,555,566,568,577,584],everror:287,everyon:[19,23,29,33,35,38,44,58,59,66,93,131,139,144,145,147,149,150,151,161,169,172,177,178,179,180,190,191,199,203,204,206,218,242,247,248,249,305,306,308,338,339,340,341,342,384,407,409,510],everyong:59,everyth:[0,4,6,9,11,14,21,24,29,32,38,41,43,48,50,51,52,54,58,67,72,74,93,105,118,124,126,128,130,131,132,133,135,138,139,140,141,143,144,145,146,147,149,150,151,152,158,164,169,170,174,177,178,179,182,186,189,192,193,196,197,200,202,208,211,212,217,218,219,220,221,232,237,247,248,250,252,253,254,281,322,323,395,442,469,473,482,496,523,531,540,542,546,552],everywher:[132,138,167,170,189,208,213],evesdrop:149,evform:[0,20,24,129,225,226,544,620],evgam:247,evgamedir:128,evict:535,evid:202,evil:[8,16,208,434,479],evilus:247,evmenu:[2,20,23,24,82,95,106,117,119,121,126,129,132,146,149,158,169,184,225,226,252,265,304,380,408,412,436,439,450,462,476,544,553,566,620],evmenucmdset:552,evmenuerror:552,evmenugotoabortmessag:552,evmenugotomessag:552,evmor:[0,24,26,33,129,221,225,226,478,544,620],evok:187,evscaperoom:[0,200,225,226,259,301,620],evscaperoom_start_st:93,evscaperoom_state_packag:93,evscaperoommenu:304,evscaperoomobject:[305,306],evtabl:[0,2,20,23,24,95,105,129,182,225,226,237,247,450,478,544,551,553,568,620],ewmaplink:[124,371],ewonewaymaplink:[124,371],exact:[0,7,8,23,29,41,118,136,139,145,196,221,228,230,234,242,247,251,257,322,342,391,395,465,472,474,478,479,541,542,564,565,568],exact_consum:322,exact_consumable_ord:[322,323],exact_tool:322,exact_tool_ord:322,exactli:[6,8,12,13,29,32,33,41,44,48,51,55,58,60,61,63,67,69,88,101,105,110,118,124,128,131,133,136,137,139,143,145,149,157,169,175,177,186,187,191,193,196,197,212,218,221,223,247,322,370,371,391,395,472,474,492,542,565],exam:[26,242],examin:[0,10,13,14,23,26,35,48,52,56,67,75,82,93,132,133,134,136,151,169,177,186,191,221,228,242,303,313,434,441,442,524,540,555,566,576,589],exampl:[0,1,2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,24,26,33,34,36,37,38,39,43,45,47,48,49,50,51,55,58,59,60,61,62,63,66,67,69,70,73,74,75,76,77,78,81,84,89,90,92,93,95,96,100,102,105,110,112,116,118,119,120,121,122,125,126,128,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,149,150,151,152,155,157,161,163,167,168,169,170,171,172,173,174,175,176,179,180,182,183,184,185,186,188,190,191,192,193,194,196,203,204,205,207,208,212,214,218,219,220,221,225,226,228,231,234,235,236,237,240,241,242,247,248,249,250,251,252,253,256,258,259,265,277,296,300,303,305,310,313,316,319,322,323,324,326,329,335,338,339,340,341,342,344,346,349,355,358,360,363,364,368,370,371,372,373,374,376,378,380,384,387,389,391,394,395,396,397,399,400,405,407,408,409,412,413,414,417,434,436,440,442,446,450,455,458,462,464,466,467,470,473,474,479,482,485,487,492,497,512,515,516,521,524,533,537,540,542,543,544,545,547,551,552,553,554,555,556,560,561,562,565,566,568,569,571,572,577,584,593,594,608,617,620],example1_build_forest:104,example1_build_mountain:104,example1_build_templ:104,example1_legend:104,example1_map:104,example2_build_forest:104,example2_build_horizontal_exit:104,example2_build_verticle_exit:104,example2_legend:104,example2_map:104,example_batch_cmd:79,example_batch_cod:[15,79,225,226,259,396,397],example_menu:[83,225,226,259,374,379,380],example_recip:[225,226,259,311,321,322],example_recipi:322,example_styl:[110,455],excalibur:184,exce:[151,221,263,338,339,340,341,342,535,559],exceed:535,excel:[35,71,167,200,208],excempt:235,except:[0,7,9,14,16,20,21,23,27,29,32,33,35,39,43,44,50,51,54,55,58,61,67,81,82,88,100,101,105,123,124,128,131,134,136,138,141,143,144,145,149,155,169,178,179,180,181,183,186,188,189,191,192,194,195,196,198,211,215,217,221,228,229,231,233,236,237,250,251,256,257,258,271,273,275,277,286,287,290,300,305,306,307,313,316,322,326,332,335,338,339,340,341,342,346,355,358,362,368,369,370,371,372,373,378,380,390,391,394,395,400,405,407,409,411,412,413,416,417,432,434,436,440,441,442,458,466,469,470,472,473,474,478,479,481,482,485,486,492,497,499,501,513,515,517,521,525,537,540,543,545,548,551,552,554,555,556,560,561,563,568,576],excepteur:30,exceptiontyp:7,excerpt:27,excess:[35,43,82,140,250,322,473,546,568],exchang:[12,15,53,78,149,217,313,549],excit:[25,133,134,149,209],exclam:179,exclud:[0,59,100,131,136,145,191,198,221,256,316,335,341,376,407,442,472,473,474,550,552,586,588],exclude_cov:316,excluded_par:586,excluded_typeclass_path:242,excludeobj:472,exclus:[29,33,35,37,147,155,434,474,482,541,552,565,568],exclusiv:[481,548],excplicitli:35,exe:[10,215],exec:[29,32,479,568],exec_str:527,execcgi:207,execut:[0,1,4,10,15,16,21,23,27,29,32,38,39,43,44,52,53,54,55,56,58,60,65,67,79,81,82,93,100,101,102,104,105,122,131,138,140,143,146,149,151,163,172,175,186,189,197,211,215,221,228,229,231,232,233,237,240,241,250,252,253,258,265,287,299,300,303,323,341,376,391,407,408,432,434,442,462,466,469,470,473,474,479,480,482,486,489,497,499,502,503,509,512,515,520,523,524,527,530,531,540,542,543,546,552,553,555,560,566,568,597],execute_cmd:[13,23,39,183,185,191,228,229,237,474,497,531],execute_command:23,executor:4,exemplifi:[33,63,121,124,125,126,144,146,171],exercis:[6,105,143,161,169,178,179,190,191,263,324,394,518,528,560],exhaust:[19,82,459],exhaustedgener:458,exidbobj:474,exis:216,exist:[0,1,4,6,8,9,12,13,14,15,19,20,21,23,24,25,26,29,35,43,44,45,47,48,54,56,63,66,69,76,81,82,86,88,93,94,97,100,101,102,105,108,111,112,116,118,124,131,132,134,135,136,138,140,141,143,146,147,150,155,157,158,165,167,168,169,171,174,178,179,181,182,191,193,195,196,197,201,202,205,210,212,213,221,222,223,227,228,229,230,235,236,237,242,247,249,250,252,263,265,284,286,287,290,304,310,319,322,323,329,332,335,341,346,358,362,370,371,372,373,376,380,390,391,395,407,408,409,412,418,441,452,467,469,470,473,474,476,478,479,481,486,492,496,498,512,513,515,517,525,530,531,533,540,541,542,543,546,548,550,551,552,554,555,561,563,568,576,594,620],existen:531,exit:[0,2,10,11,21,24,27,29,35,43,49,50,51,69,78,82,83,100,104,105,115,121,123,124,125,126,129,132,133,134,138,139,142,143,144,145,146,152,169,170,176,179,180,181,182,184,186,191,196,205,212,215,221,223,225,233,235,236,242,252,259,265,266,288,300,306,313,319,342,344,349,355,357,359,362,364,365,370,371,372,373,409,425,434,440,441,442,462,469,472,473,474,479,496,512,524,540,548,550,552,553,566,588,591,594,609,620],exit_alias:[242,355],exit_back:169,exit_cmd:[0,29,553],exit_command:474,exit_dest_x_coordin:124,exit_dest_y_coordin:124,exit_dest_z_coordin:124,exit_direct:409,exit_nam:[182,242,349,355],exit_name_as_ordin:349,exit_obj:[0,474],exit_on_lastpag:553,exit_ther:169,exit_to_her:242,exit_to_ther:242,exit_typeclass:[362,566,609],exitbuildingmenu:82,exitcmdset:[21,474],exitcommand:474,exitnam:355,exitobject:174,exitviewset:[196,594],exixt:510,exot:23,exp:551,expand:[0,12,24,34,39,50,59,61,74,75,91,93,102,105,115,120,126,131,132,133,134,136,138,139,141,143,144,147,149,150,151,157,158,163,164,168,169,174,179,182,185,190,191,198,217,220,225,226,242,259,281,338,339,340,341,342,355,364,374,393,474,545,554,620],expand_tab:554,expandtab:[545,554],expans:[147,149,174],expect:[0,8,9,11,12,23,32,37,38,39,46,48,54,55,59,66,67,70,72,92,99,100,102,113,124,126,127,128,136,138,139,140,143,145,146,147,149,150,151,158,161,163,167,169,185,186,187,188,189,191,195,208,211,217,221,223,242,250,253,265,284,286,319,322,349,362,368,370,371,414,458,469,474,478,479,490,492,540,542,552,553,555,559,566,568,573,577,584,594,600,619],expected1:566,expected2:566,expected_1st_or_2nd_person:573,expected_3rd_person:573,expected_direct:368,expected_input:566,expected_path:368,expected_return:11,expectlst:368,expectstr:368,expedit:149,expemplifi:187,expens:[48,217,472,565],experi:[6,29,32,74,88,105,107,120,121,126,132,133,136,143,144,146,147,155,158,161,168,175,177,210,217,247,305,417,432],experienc:[2,12,14,29,131,142,143,200],experienced_betray:29,experienced_viol:29,experiment:[34,54,211,221,223,252,578,581],expert:[118,395],expir:[76,221,319,376],explain:[12,23,26,29,50,54,69,73,82,100,124,130,131,134,138,169,176,180,181,183,188,193,195,196,204],explan:[1,14,21,23,51,61,100,131,137,151,181,197,212,221,306,536],explanatori:51,explicit:[7,21,63,70,82,102,128,133,186,193,197,204,205,220,458,478,479,492,514,540,552,572],explicitli:[0,9,12,14,21,32,33,35,36,38,41,43,44,47,48,49,67,69,118,124,139,141,144,149,169,179,189,192,208,236,237,242,249,257,371,395,412,458,464,474,479,481,487,540,542,545,548,564,566,591],exploit:[0,149,221,377,543,545,555,568],explor:[6,13,49,54,55,67,102,105,121,124,132,134,139,142,143,145,146,149,178,197,213,220,252],explos:81,exponenti:409,expos:[87,195,219,319,434,616],express:[23,29,32,35,43,53,74,75,77,89,113,128,136,139,145,165,167,195,221,242,277,342,458,540,568,597],ext:29,extend:[0,7,19,20,32,44,49,51,54,69,71,77,81,85,104,105,110,126,128,130,132,133,137,138,141,142,143,148,149,155,158,164,165,166,167,176,177,181,183,185,194,195,197,221,231,237,249,253,256,268,287,290,319,322,323,345,346,362,370,376,378,455,473,474,542,562,581,608,617,618,620],extended_room:[0,94,225,226,259,344,620],extendedloopingcal:487,extendedroom:[94,149,346,347],extendedroomcmdset:[0,94,346],extendng:323,extens:[0,9,11,29,33,70,105,124,128,130,131,134,138,139,147,163,165,167,189,205,216,220,221,231,338,349,365,447,465,507,515,548,558,567],extent:[82,100,167,177],extern:[0,3,10,17,37,43,60,63,71,100,105,124,126,138,140,144,147,149,150,168,201,202,203,205,207,208,209,217,221,222,225,236,247,255,257,258,407,446,478,490,492,494,548,566,620],external_discord_hello:497,external_receiv:258,extes:221,extra1:32,extra2:32,extra:[0,1,14,16,19,21,23,29,32,33,35,39,46,49,52,54,57,65,76,78,93,97,110,118,124,125,126,128,132,133,142,143,144,149,151,152,158,161,168,169,170,179,184,187,188,191,193,195,205,207,210,213,216,217,221,228,231,237,249,253,256,313,322,326,332,346,376,391,394,395,407,412,413,434,442,474,477,478,487,489,541,545,546,550,552,553,554,555,561,562,563,567,568,576,577,584,620],extra_context:196,extra_environ:546,extra_launcher_command:[0,124,221,365,366],extra_opt:552,extra_spac:568,extract:[0,9,14,32,46,109,126,167,186,237,296,297,305,322,370,391,447,470,506,520,568],extrainfoauthserv:512,extral:258,extran:450,extrem:[144,167,186,218,338,339,342,505,562],eye:[9,33,61,104,105,147,479,553],eyed:[54,140,193],eyes:[23,127,168],eyesight:[35,61,169],f6d4ca9b2b22:212,face:[96,100,124,133,146,149,152,208,217,221,254,326,536,552],facil:561,fact:[10,16,23,39,44,49,55,67,75,130,136,137,138,139,147,161,168,169,179,188,191,195,219,533,535,555],factor:[102,175,221,339,341,489,503,504],factori:[63,395,489,494,502,503,504,510,511,512,513,515,523],factory_path:229,fade:[71,112,390],fail:[0,14,15,16,19,20,21,29,32,33,39,43,46,55,56,72,88,114,121,124,132,140,141,146,147,161,163,178,180,186,189,192,206,218,219,221,222,228,236,247,251,256,299,322,324,355,384,391,394,395,407,409,417,434,441,459,469,470,474,478,489,490,492,496,503,504,514,535,540,542,553,555,561,562,564,568,571,577,614],failmsg:535,failtext_templ:177,failur:[16,55,88,149,157,161,163,177,213,228,322,407,442,494,501,503,504,523,535,545,568],failure_effect:323,failure_messag:322,failure_teleport_msg:442,failure_teleport_to:442,faint:44,fair:[90,149,177,384],fairli:[84,95,197,211,316,339,450,462],fake:[11,85,124,155,221,268,371,523,533,540,545],fall:[0,9,21,44,72,96,100,105,121,124,128,131,139,155,170,174,175,177,225,228,251,322,326,391,434,442,568,608],fall_exit:442,fallback:[0,94,182,221,233,237,258,346,391,470,485,492,521,540,552,555,563,568],fallback_account_typeclass:221,fallback_channel_typeclass:221,fallback_character_typeclass:221,fallback_exit_typeclass:221,fallback_object_typeclass:221,fallback_room_typeclass:221,fallback_script_typeclass:221,fallen:151,fals:[0,1,7,11,13,14,19,20,21,23,27,29,32,33,34,35,36,39,41,44,48,49,52,69,77,81,82,83,85,95,112,123,124,133,134,139,140,145,151,152,155,157,161,169,170,172,174,175,178,179,180,182,183,187,191,192,194,198,219,221,228,230,231,233,234,235,236,237,242,247,249,256,258,265,266,268,272,277,284,287,300,303,304,305,308,313,316,319,322,329,338,341,342,349,355,362,370,371,373,376,377,384,390,391,405,407,411,412,416,417,439,450,455,462,464,465,466,469,470,472,473,474,476,478,479,481,482,483,485,486,487,489,492,494,498,501,502,509,510,511,512,515,521,523,529,530,531,533,535,537,540,541,542,543,545,546,548,550,552,553,554,555,556,559,563,564,565,566,567,568,569,571,573,576,577,578,580,581,582,584,588,589,608,616],falsestr:[95,450],falsi:[133,140,141,256,322,370],fame:[146,150],famili:[29,110,126,140,168,189,455],familiar:[2,21,23,49,100,105,109,126,128,135,136,139,141,143,144,150,151,152,165,169,176,181,186,194,217,296],famou:[30,550],fan:[149,161],fanci:[4,12,17,18,19,50,76,84,124,170,177,316,371],fantasi:[0,92,126,145,149,390,455],fantasy_nam:[110,455,456],faq:[2,128,514,620],far:[10,12,15,19,21,23,54,61,70,82,100,101,102,104,105,123,124,130,134,136,137,138,139,143,144,157,163,168,172,179,181,182,186,187,209,211,212,217,235,342,362,370,373,494,519,540,550,559],fare:[139,161],fart:140,fascilit:372,fashion:[43,105],fast:[8,14,17,20,39,48,71,124,126,131,143,149,150,167,175,184,205,221,240,467,478,524],faster:[2,8,14,124,145,149,171,175,205,221,258,313,540,620],fastest:[128,210,223,371],fatal:492,fate:149,fault:150,faulti:143,favor:[20,124,371],favorit:[127,179],fear:20,fearsom:135,feasibl:205,feat:149,featgmcp:516,featur:[0,1,4,6,11,17,18,20,21,23,27,43,46,49,52,54,60,61,73,81,82,86,93,100,101,102,105,112,119,121,124,126,127,128,130,131,133,134,146,147,149,167,168,175,182,186,191,192,199,202,219,221,225,226,228,236,237,259,287,300,346,374,376,378,379,391,417,462,487,509,530,534,542,550,568,615,620],feb:[2,66],februari:175,fed:[23,35,55,510,540,549,551],fedora:[12,207,208,215],fee:149,feed:[17,29,81,152,155,157,177,182,203,221,229,247,370,377,408,494,511,512,542,553],feedback:[6,12,39,127,147,150,183,221,257,550],feedpars:[203,221,511],feedread:229,feel:[12,18,49,55,66,71,82,100,101,102,112,119,127,128,130,131,136,139,140,142,146,147,149,150,163,166,168,177,181,186,191,194,197,204,217,305,339,390,434,442,462],feelabl:305,feend78:329,feint:[178,407],fel:66,felin:20,fellow:551,felt:[44,190],femal:[59,96,326,555,572],feminin:[110,455],fermuch:0,festiv:149,fetch:[12,14,50,53,54,136,155,187,194,212,213,217,372,411,540,542,553],few:[3,4,6,7,8,12,14,17,18,21,23,27,32,33,34,35,39,51,54,55,61,64,69,70,77,81,93,102,112,127,128,130,131,134,136,137,139,143,147,149,150,151,155,157,177,178,180,182,184,186,188,189,191,192,205,208,218,219,252,277,390,413,417,434,473,507,516,535,545,554,568,617],fewer:[71,143,370,413,533,541],fiction:[29,130,149,175,552],fictional_word:390,fictiv:390,fictou:310,fiddl:442,fiddli:149,field:[0,10,14,32,33,34,36,37,38,39,43,44,46,47,49,51,54,66,69,74,86,110,118,126,132,135,139,142,151,165,167,169,194,196,205,209,221,223,231,258,272,284,342,362,364,391,395,405,407,409,412,413,440,450,466,467,469,472,473,474,478,479,482,483,487,499,540,541,542,543,551,560,564,565,576,577,578,580,581,582,584,588,591,596,608,619],field_class:608,field_nam:[86,467,588],field_or_argnam:34,field_ord:608,fieldevmenu:450,fieldfil:[95,225,226,259,444,620],fieldnam:[36,95,169,450,483,542,559,608],fieldset:[576,578,580,581,582,584],fieldtyp:[95,450],fifo:568,fifth:182,fight:[21,44,120,126,132,141,146,147,172,178,183,338,339,340,341,342,416,441],fighter:[120,151,338,340,342],figur:[6,8,9,23,33,56,59,67,93,112,132,137,139,147,150,151,152,155,157,161,163,165,180,182,183,186,187,194,197,217,221,277,313,322,371,391,414,478,492,571],file:[0,1,3,4,5,6,7,8,10,11,12,13,19,20,21,24,26,29,41,42,50,51,52,53,54,58,63,64,66,69,74,76,77,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,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,131,132,133,134,137,138,141,143,144,149,163,165,167,168,169,174,175,179,180,189,191,192,193,194,195,196,197,198,200,201,202,203,205,207,208,209,210,211,212,215,216,217,218,219,222,223,225,226,228,241,249,256,263,265,268,271,272,273,274,277,281,300,306,316,322,362,390,395,418,446,452,464,479,491,492,512,513,516,517,524,525,526,530,537,538,544,551,552,561,564,565,568,572,577,578,580,582,584,594,597,601,608,616,620],file_end:[546,568],file_help_entry_modul:[33,221,249,464],file_help_top:616,fileentri:249,filehelp:[33,225,226,463],filehelpentri:[249,464,616],filehelpstorag:0,filehelpstoragehandl:464,filenam:[20,79,112,137,256,390,546,551,561],filename1:492,filename2:492,filepath:551,filesystem:[212,215,219],filip:76,fill:[0,4,10,12,27,54,66,74,81,95,104,105,118,124,126,143,169,182,194,201,221,299,370,373,377,395,413,450,540,545,551,552,553,554,555,568,584],fill_char:554,fill_color:387,fillabl:[126,450,620],fillchar:[32,545,555,568],filo:568,filter:[0,10,21,37,49,50,69,77,81,100,110,124,136,181,194,196,197,198,221,225,226,235,240,265,346,373,376,391,407,473,474,568,574,587,594,614],filter_backend:594,filter_famili:[49,136],filter_nam:588,filter_xyz:[124,373],filter_xyz_exit:[124,373],filterset:588,filterset_class:594,filthi:[152,199],final_valu:55,find:[0,1,6,8,9,11,12,14,15,16,18,20,21,23,26,27,32,33,34,35,36,37,38,39,43,44,47,49,51,54,55,56,60,63,66,69,71,74,75,81,82,88,94,101,102,104,115,119,121,124,125,127,128,130,132,133,134,135,136,137,138,139,140,141,142,144,146,147,149,150,155,157,158,161,165,167,168,169,172,175,177,179,182,183,184,186,187,191,193,194,195,196,197,199,205,206,208,211,212,213,215,216,217,218,219,221,228,234,242,249,277,300,305,308,322,346,355,364,365,370,371,373,376,391,395,409,442,462,474,478,479,481,484,492,506,540,541,543,545,547,555,565,568,599,620],find_apropo:465,find_the_red_kei:187,find_topicmatch:465,find_topics_with_categori:465,find_topicsuggest:465,findtheredkei:187,fine:[14,17,23,39,44,45,47,48,56,69,78,101,110,124,126,128,131,134,138,139,140,141,143,144,146,151,172,174,191,229,230,371,442,540,548,568],finer:[56,370,371],finish:[16,23,46,53,55,88,121,146,147,152,155,157,169,176,187,191,192,193,194,212,225,228,237,239,250,252,254,303,308,313,316,322,323,335,346,349,371,414,441,442,474,492,504,515,530,537,547,552,568,597,620],finish_chargen:29,finit:186,fire:[0,10,13,20,23,29,44,46,48,81,86,87,89,100,101,105,134,139,140,144,147,161,169,171,172,179,183,185,190,198,228,229,233,287,319,340,341,376,378,474,479,492,501,503,520,553,559,568],fire_spell_last_us:171,firebal:[88,149,322,323],fireball_recip:88,fireballrecip:323,firebreath:[139,144,169],firebuff:81,firefox:[0,54,202],firemag:323,firesick:81,firestorm:171,firestorm_last_cast:171,firewal:[205,208,217,222],first:[0,6,7,8,9,10,12,13,14,15,16,17,20,21,23,25,27,29,32,33,35,39,41,43,44,45,46,49,51,52,54,55,56,57,58,59,63,66,67,69,71,72,74,81,85,93,100,104,110,118,120,123,125,126,127,128,132,133,134,135,136,137,138,140,141,142,144,145,146,147,149,150,151,152,155,157,161,163,165,166,167,169,170,172,175,177,178,179,180,181,182,183,186,188,189,190,191,192,193,194,195,196,197,198,201,203,204,205,206,211,212,213,214,215,216,217,218,219,220,221,222,223,228,229,231,234,235,242,249,250,253,254,256,258,265,268,277,280,281,292,300,305,306,307,308,313,316,319,338,339,340,341,342,346,349,355,362,365,368,370,371,376,377,378,390,391,394,395,400,405,407,408,409,413,414,417,418,423,434,436,440,441,442,455,458,466,469,473,474,478,479,481,482,485,492,496,497,499,510,512,515,520,521,523,524,530,533,540,542,543,545,546,548,550,551,552,554,555,556,559,560,566,568,589],first_lin:191,first_nam:[110,231,455,456,576],firsthand:35,firstli:[9,39,54,135,136,189,217],fish:[152,177,236,335],fist:[141,157,413,423,479],fit:[0,5,32,33,41,70,73,87,125,138,140,149,150,155,166,169,180,181,194,205,319,323,339,342,411,551,553,554,568],five:[23,105,136,150,166,171,217,236,462,568,569],fix:[0,6,9,14,15,16,20,23,29,43,49,57,67,76,93,112,124,127,131,140,143,144,147,149,163,168,180,191,199,211,215,217,218,373,390,412,492,551,553,554,564],fix_sentence_end:554,fixer:136,fixtur:[253,263,278,309,324,343,368,392,394,401,423,518,528,560,592],fizz:149,flabbi:152,flag:[0,15,16,21,23,29,34,47,48,51,63,67,69,71,110,134,139,143,147,169,172,173,187,189,191,221,228,233,235,237,242,303,305,306,308,322,324,407,434,440,469,470,474,492,499,503,512,515,520,531,550,552,568],flagnam:[303,305,306],flair:140,flakei:0,flame:[171,323,341],flash:[16,114,221,434],flat:[0,2,20,49,82,129,137,167,225,411,479,571,620],flatfil:167,flatpag:[221,599],flatpagefallbackmiddlewar:221,flatten:479,flatten_diff:479,flatten_prototyp:479,flattened_diff:479,flavor:[0,59,81,110,134,217,341,376,377,378],flavour:[38,188],flaw:[180,377],fled:[178,440],fledg:[17,65,71,121,126,149,164,187,191,194,217,241],flee:[161,178,342,407,423,440],fleeing_combat:407,fleeing_target:407,fleevalu:178,flesh:[134,169],flexibl:[0,15,29,43,44,70,71,82,95,105,119,124,139,144,149,168,172,177,178,179,181,195,217,231,242,265,313,322,341,450,462,516,540,552,568,617],fli:144,flick:569,flicker:434,flip:[26,29,254],flood:[20,27],floor:[100,102,303,305,391,394],flour:[88,126,322],flourish:540,flourrecip:322,flow:[4,18,24,48,52,63,67,69,93,124,132,140,147,257,548,552],flower:[38,39,56,128,132,134,135,136,145,147,242,555],flowerpot:[56,168],fluent:200,fluffi:[139,141,144],fluid:[18,57,110,455,456],flurri:391,flush:[23,105,205,221,252,409,540,542,559],flush_cach:559,flush_cached_inst:559,flush_from_cach:559,flush_instance_cach:559,flusher:559,flushmem:252,fluttersprit:0,fly:[0,14,20,21,23,29,32,33,43,44,56,81,88,131,136,138,139,140,145,157,165,170,179,228,248,250,258,378,407,418,466,474,478,487,499,510,513,517,540,546,556,568],fnmatch:540,focu:[92,93,126,139,142,147,178,192,196,303,305],focus:[10,93,149,167,168,172,191,200,303,305,342,591],focused_object:303,foe:[151,339],foilag:124,fold:[119,462],folder:[0,10,11,12,15,16,20,51,52,54,66,69,74,83,86,93,104,105,120,124,125,126,128,131,132,134,137,138,139,143,151,158,165,168,169,173,177,178,179,182,183,191,193,194,195,196,197,207,210,211,212,213,215,216,218,219,223,338,339,340,341,342,492,566,599],follow:[1,4,6,7,8,10,12,13,14,15,16,18,19,21,23,27,29,32,33,34,35,39,41,44,47,49,51,52,54,55,57,58,61,63,66,69,70,74,76,79,81,82,83,84,85,87,92,93,96,97,100,101,102,103,104,110,112,118,119,124,125,126,127,128,130,132,133,134,135,136,137,138,139,140,141,143,144,147,149,150,151,152,155,158,161,163,169,175,177,178,180,181,182,185,186,189,191,192,194,195,197,198,200,201,204,205,207,208,209,210,211,212,213,215,216,217,218,219,221,223,228,229,231,233,234,237,242,249,250,253,256,257,258,265,268,280,281,287,292,316,319,322,326,329,340,341,370,371,377,391,395,406,414,442,462,464,466,467,469,470,473,474,477,478,479,482,483,496,497,501,507,516,520,521,524,534,540,542,545,546,548,551,552,553,554,561,568,593],follwo:470,fond:175,font:[1,52,105,128,138,371],foo1:14,foo2:14,foo:[0,14,19,23,29,32,33,36,44,46,47,63,67,70,119,124,133,136,137,138,139,143,145,221,242,362,370,372,376,377,405,407,409,412,413,462,467,474,492,540,552,555,566],foo_bar:70,foobar:29,foobarfoo:56,food:[88,100,149,161,322,413],fooerror:552,fool:149,foolish:434,footer:[0,54,124,194,197,221,228,237,474,553],footer_fil:221,footer_star_color:221,footer_text_color:221,footnot:[17,128],footprint:252,footwear:168,for_cont:474,forc:[0,11,12,21,23,44,49,55,66,81,102,111,112,124,133,144,149,150,169,177,178,180,186,191,207,212,213,218,219,229,236,240,242,247,313,323,326,335,346,347,370,390,391,395,409,470,474,478,484,503,504,510,515,533,535,553,554,559,561,568],force_init:474,force_repeat:[44,178],force_str:[0,564],forceutcdatetim:347,forcibl:484,fore:530,forebod:346,foreground:[0,6,61,85,188,212,221,222,268,492,545,555,620],foreign:[49,136,152],foreignkei:[231,473,482,542,560,577,584],forens:447,forest:[15,32,47,75,104,105,124,135,138,182,346],forest_meadow:47,forest_room:47,forestobj:75,forev:[81,149,161],forget:[1,2,15,20,23,55,69,133,139,143,144,165,175,189,191,202,209,212,221,391,546,620],forgo:441,forgot:[0,14],forgotten:[127,139,155,182,184],fork:[12,76,189],forloop:197,form:[0,7,9,11,12,14,15,19,20,21,23,24,29,32,33,34,35,39,41,43,47,48,49,51,53,59,65,67,70,72,74,86,88,93,96,108,110,112,118,124,125,126,127,128,129,130,131,132,133,135,138,140,141,144,145,147,150,152,161,169,178,183,191,196,221,225,226,228,229,230,234,236,237,240,242,247,250,253,256,257,258,303,310,313,322,326,373,376,390,391,395,408,447,450,464,466,469,470,472,474,478,479,483,485,487,490,510,512,516,520,531,533,540,541,542,545,546,548,549,550,551,552,554,555,556,561,564,565,568,569,571,572,574,576,577,578,580,581,582,584,586,591,607,612,614,619,620],form_char:551,form_class:[54,612,614],form_dict:551,form_template_to_dict:450,form_url:576,form_valid:[612,614,619],formal:[0,12,35,132,147,474,516],format:[0,6,7,12,16,18,19,20,21,23,24,32,33,52,58,61,66,67,70,71,72,81,82,85,100,101,105,118,122,123,124,127,128,130,132,136,139,141,152,163,169,177,183,191,194,196,197,203,205,219,235,237,239,242,249,253,256,257,265,268,277,290,300,304,310,322,340,362,370,376,391,395,417,432,439,446,450,462,464,466,474,476,478,479,483,492,497,507,512,532,534,540,542,545,546,548,550,552,553,554,556,561,563,568,569,591,594],format_:242,format_account_kei:242,format_account_permiss:242,format_account_typeclass:242,format_alias:242,format_appear:[416,474],format_attribut:242,format_available_protfunc:478,format_callback:284,format_channel_account_sub:242,format_channel_object_sub:242,format_channel_sub_tot:242,format_char:242,format_current_cmd:242,format_destin:242,format_diff:479,format_email:242,format_exit:242,format_extern:256,format_grid:[0,568],format_help:300,format_help_entri:249,format_help_index:249,format_hom:242,format_kei:242,format_loc:242,format_lock:242,format_log_ev:561,format_merged_cmdset:242,format_messag:256,format_nattribut:242,format_output:242,format_permiss:242,format_script:242,format_script_desc:242,format_script_is_persist:242,format_script_timer_data:242,format_send:256,format_sess:242,format_single_attribut:242,format_single_attribute_detail:242,format_single_cmdset:242,format_single_cmdset_opt:242,format_single_tag:242,format_stored_cmdset:242,format_styl:567,format_t:568,format_tag:242,format_text:265,format_th:242,format_typeclass:242,format_usag:300,formatt:[0,7,324,450,478,552,553],formcallback:[95,450],formchar:[169,551],formdata:[95,450],former:[18,131,155,188,205,322],formfield:564,formhelptext:450,formset:[577,584],formstr:169,formtempl:[95,450],formul:195,formula:81,fort:0,forth:[20,242,341],fortress:105,fortun:[23,100,139,146,181,192,197],forum:[0,66,125,126,127,130,149,150,168,200,203,217,221,223],forward:[6,15,16,27,29,132,134,149,155,175,180,188,197,217,221,228,231,258,329,409,446,466,473,482,537,540,542,543,551,553,560],forwardfor:208,forwardmanytoonedescriptor:[473,482,560],forwardonetoonedescriptor:[473,482,560],foster:19,foul:43,found:[0,1,6,9,11,13,14,15,16,17,19,20,21,23,29,33,34,35,39,40,41,43,47,49,50,51,52,54,55,59,63,66,67,74,76,78,82,93,104,121,124,125,126,128,130,136,137,138,139,140,141,143,145,146,152,155,157,158,161,163,168,169,174,177,178,181,182,186,189,191,192,195,199,200,205,217,220,221,222,225,228,230,232,233,234,235,237,242,247,250,251,254,256,265,273,284,286,287,313,370,371,372,373,377,391,395,442,464,466,470,472,474,477,478,479,481,484,487,491,492,498,507,510,521,531,533,540,541,542,543,545,546,547,548,552,554,555,559,563,565,568,597],foundat:[130,182,200,338],four:[16,20,38,63,69,81,94,105,128,135,145,164,177,181,236,258,346,470],fourth:181,fqdn:217,fractal:167,fragil:145,frai:407,frame:52,framework:[0,50,52,53,54,57,126,131,150,151,165,193,194,221,253,338,341,564,588,589,591,593,594,620],frankli:73,free:[5,10,12,29,33,47,66,76,82,102,108,112,119,126,127,130,131,136,147,149,161,168,178,188,191,194,200,217,303,313,339,391,462,478],freed:221,freedn:217,freedom:[16,174,213],freeform:[7,84,149,177,178,316],freeli:[61,124,200,212,219,546],freenod:[202,217,229,247,533],freetext:[37,257,565],freez:[6,23,100,172,286],french:66,frequenc:[8,110,390],frequent:[99,100,186,265,349],fresh:[21,93,124,139,152,161,169,176,210,216,492],freshli:105,fri:56,friend:[127,133,147,150,169,219,412],friendli:[82,118,128,143,151,163,194,199,231,395,407,410],friendlier:[256,474],frighten:340,from:[0,2,3,4,5,6,8,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,27,30,32,34,35,36,37,38,39,41,42,43,44,45,46,47,48,49,50,51,53,54,55,56,57,58,59,61,63,64,66,67,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,132,133,135,136,137,138,139,140,141,142,144,145,146,147,149,150,151,152,155,157,158,161,163,165,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,195,196,197,198,200,202,203,204,205,207,208,209,210,211,213,215,216,218,219,220,221,222,223,225,226,228,229,230,231,232,233,234,235,236,237,239,240,241,242,247,248,249,250,251,252,253,254,256,257,258,265,268,271,273,274,277,281,286,287,290,296,297,300,303,304,305,306,308,310,313,316,319,322,323,324,326,329,332,335,338,339,340,341,342,346,349,355,358,362,364,365,370,371,372,373,376,377,378,380,384,387,390,391,394,395,405,406,407,408,409,410,411,412,413,415,416,418,423,425,434,440,441,442,446,447,448,450,452,455,458,462,464,465,466,469,470,471,472,473,474,478,479,481,482,483,484,486,487,489,492,496,497,498,499,501,502,503,504,505,509,510,511,512,515,520,521,523,524,526,530,531,532,533,535,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,553,554,555,556,559,560,561,562,564,565,566,567,568,569,571,572,577,578,584,586,588,589,591,594,597,599,608,614,616,619,620],from_channel:229,from_db_valu:564,from_exit:409,from_nod:552,from_obj:[59,67,151,183,228,229,237,326,432,474],from_pickl:549,from_prototyp:0,from_tz:569,frombox:501,fromstr:501,fromtimestamp:[347,556],front:[15,35,43,52,133,136,143,177,219,221,222,224,256],frontend:[50,119,462,540],frontpag:[51,54,137,145,225,226,574,575,585],frozen:[23,172,287],fruit:[111,126,335],ftabl:568,ftp:[76,567],fuel:[118,179,341,395],fugiat:30,fulfil:[88,139,146,150,427,492],full:[0,1,5,9,11,12,15,16,17,18,20,23,26,29,32,35,36,39,41,43,44,45,48,49,57,59,65,70,71,74,78,79,88,93,94,98,100,105,110,112,118,119,120,121,122,124,126,128,130,131,133,134,136,137,143,144,149,152,155,157,161,163,164,168,169,170,176,177,178,179,180,187,189,191,192,193,194,195,196,200,205,206,210,211,212,217,218,221,229,234,236,237,241,242,247,249,251,252,253,256,265,280,292,296,300,304,308,310,313,322,332,341,346,362,370,372,373,387,390,391,395,405,407,409,412,413,417,418,439,455,462,470,472,479,483,504,510,523,533,534,540,542,546,550,552,554,555,566,568,620],full_desc:305,full_justifi:43,full_nam:[38,110,455,456],full_result:384,full_system:[93,125,221,225,226,259,620],fullbodi:84,fullchain:208,fuller:169,fullest:150,fullfil:472,fulli:[0,8,14,23,29,58,66,69,93,124,130,140,142,149,157,158,169,217,218,219,228,257,390,417,470,474,485,520,532,548,568],fun:[8,81,105,134,147,149,193,200],func1:[242,470,524],func2:[242,470,524],func:[0,1,6,23,27,29,32,35,55,59,67,82,87,100,122,128,133,138,140,141,145,167,169,170,171,173,174,175,177,178,179,180,184,186,191,204,221,233,237,239,240,241,242,247,248,249,250,251,252,253,254,265,274,277,281,285,296,299,300,303,313,316,319,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,364,376,380,384,391,408,434,436,440,441,442,450,452,462,469,470,474,503,523,524,528,537,550,552,553,555,556,566,568,617],func_test_cmd_task:253,funcdef:555,funciton:341,funcnam:[7,29,32,34,65,138,221,470,477,478,487,552,555,568],funcpars:[0,24,43,59,65,67,105,129,132,220,221,225,226,474,477,533,544,568,573],funcparser_cal:[477,555],funcparser_callable_add:555,funcparser_callable_an:555,funcparser_callable_center_justifi:555,funcparser_callable_choic:555,funcparser_callable_clr:555,funcparser_callable_conjug:555,funcparser_callable_crop:555,funcparser_callable_div:555,funcparser_callable_ev:555,funcparser_callable_int2str:555,funcparser_callable_justifi:555,funcparser_callable_left_justifi:555,funcparser_callable_mult:555,funcparser_callable_pad:555,funcparser_callable_plur:555,funcparser_callable_pronoun:555,funcparser_callable_pronoun_capit:555,funcparser_callable_randint:555,funcparser_callable_random:555,funcparser_callable_right_justifi:555,funcparser_callable_round:555,funcparser_callable_search:555,funcparser_callable_search_list:555,funcparser_callable_spac:555,funcparser_callable_sub:555,funcparser_callable_toint:555,funcparser_callable_y:555,funcparser_callable_you_capit:555,funcparser_escape_char:221,funcparser_max_nest:221,funcparser_outgoing_messages_modul:[221,533],funcparser_parse_outgoing_messages_en:[65,221],funcparser_prototype_parsing_modul:221,funcparser_start_char:221,function_nam:252,function_or_method:568,functioncal:501,functionnam:[32,501],functionpars:[32,478],functool:215,fundament:[23,39,138,139,143,144,149,168,221,474],fur:323,furnac:[322,323],furnitur:[15,47,49],furst:395,further:[5,6,10,19,20,21,32,33,43,45,49,50,62,67,69,76,88,102,105,124,125,126,128,136,139,145,152,161,168,172,174,182,186,189,196,212,217,218,220,221,236,242,338,340,342,371,373,390,479,492,516,568],furthermor:[128,145,188],fuss:212,futur:[14,27,38,55,123,128,132,134,140,141,142,143,145,147,148,150,158,164,166,169,174,175,189,191,205,239,287,323,362,376,407,441,497,541,562,569],futurist:175,fuzzi:[0,33,230,247,322,465,472,565,568],fuzzy_import_from_modul:568,gadea:76,gag:[206,221],gagprompt:221,gain:[8,112,132,136,140,147,172,221,237,252,258,340,391,405,407,418,470,474],gain_advantag:407,gain_disadvantag:407,galosch:390,gambl:[29,384],game:[1,2,3,4,5,6,7,8,9,10,13,15,16,17,18,21,23,24,25,26,27,29,30,32,35,37,38,39,41,42,43,45,46,47,48,49,50,51,52,53,55,58,59,61,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,88,89,90,92,94,95,96,98,101,102,104,110,111,112,113,116,119,120,121,122,124,125,126,128,129,131,133,134,135,137,139,140,141,142,143,144,145,146,148,151,152,161,163,164,165,166,167,170,171,172,173,174,176,178,179,180,182,183,184,186,190,192,194,195,196,197,199,201,202,203,204,205,206,207,208,211,213,215,218,219,221,222,223,225,226,227,228,229,230,231,233,235,236,237,239,240,241,242,246,247,248,249,252,253,254,255,256,257,258,259,265,277,278,280,281,285,286,287,288,292,300,301,303,304,305,308,311,313,316,321,323,329,338,339,340,341,342,344,346,358,365,367,370,371,372,373,376,384,387,390,391,402,413,417,418,434,439,442,450,452,455,458,462,464,465,466,471,472,473,474,481,482,484,485,488,492,494,495,496,497,503,504,509,511,512,515,516,523,524,525,530,531,533,541,542,543,546,547,548,550,551,556,559,561,566,568,576,577,584,589,594,601,617,620],game_dir:[4,97,221,561,568],game_epoch:[20,556],game_index_cli:[225,226,488],game_index_en:[0,209,221],game_index_list:[209,221],game_nam:[209,221],game_slogan:[54,189,221],game_statu:[209,221],game_system:[78,84,87,88,96,103,108,111,120,125,221,225,226,259,620],game_templ:[54,128,137,216,221,452],game_websit:[209,221],gamedir:[0,29,43,54,124,221,492,538,566],gamedirnam:169,gamedoor:223,gameim:[126,620],gameindexcli:495,gamemap:104,gameplai:[76,125,126,132,142,149,161,217,303],gamer:[201,202],gamesrc:[0,20],gametim:[20,32,89,94,126,129,221,225,226,276,277,287,346,544],gametime_to_realtim:277,gametimescript:277,gameworld:141,gammon:[200,507],gandalf:29,gap:377,garbag:[376,540],garbl:[112,126],garden:200,garment:[84,316],gate:[33,121,124,147,371],gatekeep:33,gatewai:[218,521],gather:[11,23,33,53,67,81,190,193,206,221,233,234,442,490,494,548,565],gaug:[225,259,374,393,394],gaugetrait:395,gaunt:152,gave:[0,131,135,139,155,179,186,188,571,573],gbg:545,gcc:[143,144,213,215],gcreat:242,gear:[10,152,157,193,196,217,229,236,254,281,410,413,418],gees:555,gemb:76,gemer:[113,458],gen:18,gender:[59,96,110,126,326,455,456,555,572],gendercharact:[96,326],gendersub:[225,226,259,311,620],gener:[4,7,8,10,11,14,19,21,23,24,26,29,33,35,38,41,43,44,45,47,51,52,54,55,56,61,66,67,69,70,76,77,78,79,80,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,106,107,108,109,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,137,138,141,145,146,147,151,155,158,163,168,169,172,175,176,177,178,182,188,189,192,195,196,205,208,215,217,220,221,225,226,228,229,230,232,237,238,239,242,249,250,251,253,254,256,263,265,281,287,299,300,303,305,306,313,316,322,323,326,329,332,338,339,340,341,342,346,349,355,358,364,371,378,380,384,390,391,405,406,407,408,409,412,416,417,418,422,425,434,436,439,440,442,446,447,450,452,455,456,457,458,459,462,465,466,470,472,474,476,478,479,481,503,510,512,515,516,520,523,531,532,533,537,540,543,544,545,547,548,550,553,554,555,561,563,564,568,592,593,594,600,608,612,613,614,616,617,618,620],general_context:[221,225,226,574,598],generalviewsetmixin:594,generate_prototype_kei:371,generate_sessid:510,generatedstatbuff:81,generic_mud_communication_protocol:516,genericbuildingcmd:[82,265],genericbuildingmenu:265,genesi:[110,217,455],geniu:[111,335],genr:[125,131,506],genuin:149,geoff:[122,126,300],geograph:75,geographi:181,geoip:446,geometr:105,geometri:105,get:[0,1,5,6,8,9,10,11,13,14,15,17,18,19,21,23,26,27,32,33,34,35,36,37,38,42,44,45,46,47,49,50,52,54,55,56,57,59,61,63,66,67,69,70,74,78,82,84,86,88,90,92,93,97,101,102,103,105,110,112,113,114,116,117,118,119,120,121,123,124,125,126,128,130,131,132,133,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,157,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,191,193,194,195,196,197,200,201,202,204,205,207,209,211,212,213,215,217,218,219,220,221,222,228,229,230,231,235,236,237,239,240,242,243,247,248,249,254,256,257,258,265,273,284,286,287,290,303,305,306,308,316,329,335,338,339,342,349,358,362,364,368,370,371,372,373,376,377,384,391,394,395,400,405,406,407,410,411,412,413,414,416,417,418,427,430,434,436,441,442,452,458,462,464,465,466,470,472,473,474,476,478,479,481,482,484,487,490,492,497,501,502,506,510,512,515,516,518,520,521,529,531,532,533,535,540,541,542,543,545,546,547,550,552,554,555,556,558,559,561,562,563,565,568,571,573,576,578,581,582,586,588,591,593,608,616,617,620],get_absolute_url:[195,256,466,542],get_account:[470,531],get_account_from_email:230,get_account_from_nam:230,get_account_from_uid:230,get_al:[81,376,540],get_alia:541,get_alias:591,get_all_attribut:540,get_all_cached_inst:559,get_all_categori:465,get_all_channel:257,get_all_charact:306,get_all_cmd_keys_and_alias:235,get_all_cmdset:568,get_all_lockfunc:0,get_all_mail:329,get_all_puppet:228,get_all_script:481,get_all_scripts_on_obj:481,get_all_sync_data:533,get_all_top:465,get_all_typeclass:[0,568],get_and_load_cmdset:586,get_and_load_typeclass:586,get_and_merge_cmdset:236,get_app_list:599,get_attack:[338,339,340,342],get_attr:242,get_attribut:[541,591],get_available_act:407,get_branch:452,get_browserstr:521,get_buff:550,get_by_alia:541,get_by_attribut:541,get_by_cachevalu:[81,376],get_by_nick:541,get_by_permiss:541,get_by_sourc:[81,376],get_by_stat:[81,376],get_by_tag:541,get_by_trigg:[81,376],get_by_typ:[81,376],get_cach:540,get_cache_kei:535,get_cached_inst:559,get_callback:287,get_carri:196,get_channel:257,get_channel_alias:247,get_channel_histori:247,get_charact:531,get_character_sheet:405,get_client_opt:497,get_client_s:531,get_client_sess:[520,521],get_client_sessid:521,get_cmd_signatur:305,get_combat_summari:407,get_command_info:[0,237,250],get_component_class:270,get_components_with_symbol:370,get_connected_account:230,get_cont:[472,591],get_content_nam:474,get_context_data:[54,613,616,617,619],get_current_slot:411,get_damag:[338,339,340],get_db_prep_lookup:564,get_db_prep_valu:564,get_dbref_rang:[230,472,481,541],get_def:486,get_default:564,get_defens:[338,339,340,342],get_detail:418,get_direct:[124,371],get_display_:474,get_display_charact:[391,474],get_display_desc:[316,362,413,474],get_display_exit:474,get_display_foot:[409,416,474],get_display_head:[413,416,474],get_display_nam:[6,32,59,82,100,101,112,124,169,228,362,373,391,474,531,542],get_display_symbol:[124,371],get_display_th:[316,391,474],get_enemy_target:407,get_err_msg:[35,134],get_ev:287,get_evennia_pid:568,get_evennia_vers:568,get_event_handl:290,get_exit:[124,372,591],get_exit_spawn_nam:[124,371],get_extra_info:[237,474,542],get_famili:[49,136],get_fieldset:581,get_form:[576,578,581,582],get_formatted_obj_data:242,get_formset:[577,584],get_friendly_target:407,get_game_dir_path:568,get_height:554,get_help:[23,33,157,197,237,253,285,300,305,407,413,414,552],get_help_categori:616,get_help_text:536,get_help_top:616,get_hint:308,get_id:[194,486,541],get_info_dict:[509,530],get_initi:619,get_input:[0,552,566],get_inputfunc:[70,497,516,533],get_internal_typ:564,get_kwarg:609,get_linked_neighbor:371,get_location_nam:[123,362],get_log_filenam:256,get_map:[124,372],get_message_by_id:257,get_messages_by_receiv:257,get_messages_by_send:257,get_min_height:554,get_min_width:554,get_msg_by_receiv:37,get_msg_by_send:37,get_new:511,get_new_coordin:362,get_next_by_date_join:231,get_next_by_db_date_cr:[231,258,466,473,482,540,542],get_next_wait:290,get_nick:[541,591],get_nicklist:[229,504],get_node_from_coord:370,get_numbered_nam:474,get_obj_coordin:362,get_obj_stat:[157,163,430],get_object:[196,308,594,613,616,619],get_object_with_account:[472,565],get_objs_at_coordin:362,get_objs_with_attr:472,get_objs_with_attr_match:472,get_objs_with_attr_valu:472,get_objs_with_db_properti:472,get_objs_with_db_property_match:472,get_objs_with_db_property_valu:472,get_objs_with_key_and_typeclass:472,get_objs_with_key_or_alia:472,get_oth:313,get_permiss:[541,591],get_pid:492,get_player_count:506,get_posed_sdesc:391,get_posit:305,get_previous_by_date_join:231,get_previous_by_db_date_cr:[231,258,466,473,482,540,542],get_puppet:[13,228,531],get_puppet_or_account:531,get_queryset:[613,614,616],get_rang:342,get_recently_connected_account:230,get_recently_created_account:230,get_redirect_url:614,get_respons:602,get_return_exit:474,get_room:[124,372],get_room_at:181,get_rooms_around:181,get_schema_view:196,get_sdesc:[0,391],get_serializer_class:594,get_sess:533,get_session_id:591,get_short_desc:305,get_shortest_path:[124,370],get_spawn_xyz:371,get_stat:139,get_statu:[452,502],get_subscript:257,get_success_url:619,get_sync_data:532,get_system_cmd:235,get_tag:[541,591],get_tag_queri:588,get_time_and_season:346,get_typeclass_tot:541,get_uptim:506,get_url:581,get_usable_objects_from_backpack:411,get_username_valid:[0,228],get_valu:[70,497,516],get_value_displai:591,get_vari:[284,287],get_view_detail:592,get_visible_cont:474,get_visual_rang:[124,370],get_wearable_objects_from_backpack:411,get_weight:371,get_width:554,get_wieldable_objects_from_backpack:411,get_wilderness_script:361,get_worn:196,get_worn_cloth:316,get_x:196,get_xyz:[124,373],get_xyz_exit:[124,373],get_xyzgrid:[124,372],getattr:[36,152,155,161,187],getbootstrap:57,getchild:537,getclientaddress:[63,512],getcwd:221,getdefaultencod:616,getel:52,getenv:[221,492,502],getgl:52,getinput:552,getkeypair:512,getloadavg:211,getlogobserv:561,getobject:76,getobjectacl:76,getpeer:512,getpid:568,getportallogobserv:561,getserverlogobserv:561,getsizof:559,getsslcontext:[513,517],getstartedwiths3:76,getston:23,getter:[39,81,231,258,273,316,339,342,378,391,473,474,499,540,573],gettext:66,gfg:545,ghost:33,ghostli:442,giant:[176,620],giantess:139,gid:[8,212,524],gidcount:523,gift:197,gig:149,girl:474,gist:[54,390,568],git:[1,2,5,66,69,71,126,128,189,200,205,211,212,216,217,222,451,452,453,620],git_integr:[97,225,226,259,444,620],gitcmdset:[97,452],gitcommand:452,github:[0,1,5,12,66,93,101,128,137,147,168,189,200,203,210,211,213,223,265,319,452,501,520,537,568,620],gitignor:12,gitpython:97,give:[0,1,5,8,9,11,12,13,14,15,17,19,20,23,26,29,30,35,39,41,43,44,45,46,47,48,49,51,54,55,56,58,59,70,72,75,78,81,82,83,100,101,102,104,105,110,112,113,119,120,121,123,124,126,128,130,131,132,133,134,136,137,138,139,141,142,143,144,145,146,147,150,152,158,161,163,165,168,169,171,173,174,175,176,177,178,179,181,183,184,185,186,189,191,193,194,195,197,200,203,205,211,212,213,215,217,218,219,221,228,233,235,236,239,242,247,248,250,256,257,265,303,305,306,308,316,323,338,339,340,341,342,346,362,370,371,376,380,390,391,405,406,407,408,410,434,436,442,458,462,472,474,481,482,496,518,524,531,537,540,543,545,552,554,565,566,568,571,573,591,620],give_advantag:407,given:[0,1,6,8,9,11,12,13,14,15,16,20,21,23,24,27,29,32,33,34,35,36,37,39,41,43,44,45,48,49,54,55,56,59,60,66,67,69,70,72,74,75,80,82,87,89,92,93,95,99,100,101,102,107,110,111,118,119,124,126,128,131,133,134,135,138,139,143,144,146,149,152,155,157,161,169,175,177,178,179,181,182,188,191,192,194,195,196,212,214,217,218,221,223,228,230,233,234,235,236,237,239,240,242,247,249,251,252,253,256,257,258,265,274,277,280,281,284,286,290,292,296,300,303,305,306,308,310,316,319,322,323,326,335,338,339,340,341,342,346,349,355,364,370,371,372,373,376,384,387,390,391,395,407,409,411,412,414,417,430,432,434,441,442,450,458,462,467,469,470,472,474,476,478,479,481,483,484,485,487,490,492,497,498,501,510,515,516,521,524,527,531,532,533,534,535,536,537,540,541,542,543,545,546,548,549,550,551,552,553,554,555,556,559,561,563,564,565,566,568,571,572,573,576,589,597,600,613,614,616],given_class:596,giver:[117,126,149,187,339,342,408,474],glad:186,glade:[124,138],glanc:[20,21,23,82,112,169,181,186,265,391],glance_exit:82,glass:[114,145,335,434],glitter:149,glob:[29,248,552],global:[0,7,8,12,15,23,25,29,32,34,39,43,44,45,48,49,52,71,75,76,82,88,94,100,124,131,132,135,145,147,151,167,190,198,208,220,221,242,256,287,307,322,346,355,364,372,391,414,458,472,474,478,479,480,481,482,486,489,492,497,499,502,523,524,546,547,548,552,555,556,565,566,568,601],global_script:[0,24,123,135,221,225,547],global_search:[15,20,82,169,186,228,391,474,541],globalscriptcontain:547,globalth:566,globe:[193,217],glori:146,glorifi:[118,395],gloriou:136,gloss:139,glove:84,glow:105,glu:42,glue:407,glyph:501,gmcp:[0,34,67,516],gmsheet:169,gmt:[76,138,561],gmud:206,gno:82,gnome:[66,206],gnu:16,go_back:[462,552],go_up_one_categori:462,goal:[44,121,128,140,147,149,150,186,219,390],goals_of_input_valid:608,goblin:[29,43,138,171,242,479],goblin_arch:479,goblin_archwizard:479,goblin_wizard:479,goblinwieldingclub:43,god:[33,41,134,210,464],godhood:[132,142],godlik:[112,391],goe:[6,12,23,24,44,63,69,82,84,102,105,123,124,131,144,149,152,155,163,172,177,180,182,183,189,191,197,211,217,221,235,236,305,308,342,362,370,371,411,474,512,515,530,531,567,568,619],goff:[100,113,126,458],going:[1,29,32,51,54,63,70,82,100,101,102,105,112,124,125,133,134,136,137,139,143,145,147,149,158,161,165,169,175,178,180,182,184,186,194,196,197,201,208,212,217,218,221,265,338,339,340,341,342,362,391,405,407,434,439,442,474,489,494,545,552,591],goings:494,gold:[29,43,144,173,184,546],gold_necklac:14,gold_val:184,gold_valu:184,golden:413,goldenlayout_config:52,goldenlayout_default_config:52,gone:[35,56,81,100,134,139,143,145,146,149,174,196,212,221,306,370,376],good:[1,7,8,9,10,11,12,13,14,16,19,20,21,23,29,32,35,37,38,43,44,49,51,54,56,61,63,78,82,86,87,88,100,101,102,105,121,125,126,127,128,130,132,133,134,136,137,140,143,147,149,150,155,158,163,167,168,177,179,180,181,182,186,188,189,191,194,195,196,197,200,202,209,210,217,218,219,221,228,235,236,237,253,286,313,319,368,391,515,524,552,555],goodby:[29,512],goodgui:470,googl:[0,7,76,128,211,217,221,247,554],googlegroup:42,googli:[54,193],goos:555,gorgeou:124,gossip:[201,221,247],got:[0,15,50,55,119,133,139,141,143,144,178,196,441,462],goto_cal:[29,552],goto_cleanup_cmdset:439,goto_command_demo_comm:439,goto_command_demo_help:439,goto_command_demo_room:439,goto_funct:152,goto_next_room:180,gotostr_or_func:552,gotten:[130,150,342,391,441,474,519],gpath:221,gpl2:571,graaah:185,graah:185,grab:[14,23,26,47,81,133,134,140,149,155,161,177,184,194,248,441,591,619],gracefulli:[140,239,252,391,474,492,568],gradual:[0,15,16,112,118,147,163,172,390,395],grai:[188,221,407],grain:[48,230,548],grammar:[59,112,305,390],grammat:[59,112,140,150,151,390,391],grand:[14,33,104],grant:[24,35,41,58,81,149,205,258,338,342,407,469,470,478,540,589,612,618],granular:342,grapevin:[0,200,221,222,225,226,229,247,488,500,620],grapevine2chan:[26,33,133,201,221,247],grapevine_:247,grapevine_channel:[201,221,229,247],grapevine_client_id:[201,221],grapevine_client_secret:[201,221],grapevine_en:[201,221,247],grapevinebot:229,grapevinecli:503,graph:[182,370],graphic:[0,6,35,36,50,51,53,67,74,105,132,142,150,169,225,281,387,516],grasp:[188,194],grave:121,graviti:170,grayscal:[85,221,268],great:[16,29,32,33,44,46,51,57,71,76,82,88,95,100,102,121,124,126,127,143,147,150,163,168,177,179,181,186,191,195,197,200,265,340,377,450,537],greater:[9,21,35,45,81,82,136,149,469,552,555],greatli:[100,199],greek:17,green:[12,21,35,43,61,110,124,143,185,188,221,242,252,305,341,441,455,545],greenforest:124,greenskin:479,greet:[25,45,100,101,185,189,220],greetjack:38,greg:[0,200],grei:[43,61,124,188,545],grenad:39,grep:[12,211],greyscal:[61,545],greyskinnedgoblin:43,griatch:[0,69,78,79,80,85,88,89,90,91,92,93,94,96,106,107,108,109,112,114,115,116,117,118,121,124,126,133,136,146,267,268,276,277,279,281,295,296,302,312,313,321,322,325,326,329,331,332,338,339,341,345,346,354,355,357,358,363,383,384,389,390,391,393,395,397,399,400,431,433,434,435,436,438,439,441,551,559,564,567,571,572],grid:[0,57,94,99,104,115,116,123,125,132,191,222,225,226,249,259,342,568,620],gridmap:124,gridpoint:[368,370],gridsiz:368,grief:56,griefer:195,grin:[23,540,555,573],grip:[128,323],gritti:23,ground:[100,105,121,130,132,134,136,141,149,155,179],group:[0,14,19,23,26,33,43,47,49,51,55,56,58,75,77,81,100,101,112,131,132,133,138,141,142,145,149,152,155,161,179,186,187,189,196,212,221,230,231,238,242,248,249,256,257,335,346,390,405,408,417,441,442,474,478,479,501,524,540,543,545,548,576,584],groupd:540,grow:[15,19,130,136,141,147,200,218,370,395,409,503,504,554,568],grown:[29,73,189],grudg:177,grungi:328,grungies1138:[103,117,126,329,435,436],grunt:[242,479],gsg:76,gstart:242,gtranslat:66,guarante:[12,14,41,44,69,90,125,208,217,221,287,384,406,478,510,531,542,555],guard:[29,124,149,323,371,377],guardian:121,guess:[17,27,72,82,101,163,186,197,219,265,479],guest1:[64,221],guest9:[64,221],guest:[0,41,62,129,221,228,620],guest_en:[41,64,221],guest_hom:[64,194,221],guest_list:[64,221],guest_start_loc:[64,221],guestaccount:47,gui:[0,12,52,53,67,149,168,221,329],guid:[4,7,91,106,125,127,193,194,196,588],guidelin:[7,126,128,151,200],guild:[0,19,69,93,126,149,183,200,247],guild_memb:29,gun:[59,135,179],gun_object:59,gunk:411,guru:130,gush:100,gzip:263,habit:167,habitu:48,hack:[130,177,178,501],hacker:[200,219],hackish:0,had:[16,17,21,44,58,74,88,125,130,132,134,136,139,141,142,143,144,147,149,151,157,161,163,179,189,191,207,212,217,223,237,241,253,303,316,371,441,479,482,492,542,546,553,571,573,608],hadn:[147,175],hair:[152,323],half:[71,406,466],hall:[33,182],hallwai:182,halt:[105,132],hammer:[88,322,323],hand:[17,29,38,39,45,59,63,71,78,100,104,126,132,136,141,144,148,149,155,158,161,163,167,168,169,177,187,195,237,242,248,250,252,313,323,407,408,411,418,426,591],hand_in_quest:187,hander:136,handi:[143,194,196,211,340],handl:[0,7,8,9,13,14,15,17,19,20,23,24,27,29,32,34,35,38,39,45,48,49,52,53,54,59,62,63,67,69,70,71,73,76,77,78,82,88,100,102,114,117,124,125,129,130,131,132,133,136,137,138,140,141,143,144,145,147,150,151,152,158,161,167,174,175,176,178,182,183,184,186,187,188,189,190,192,196,206,207,208,211,212,220,221,222,223,228,229,230,232,233,235,236,242,243,247,248,251,256,274,281,287,290,299,300,305,310,313,322,323,338,339,340,341,342,346,355,364,371,391,407,411,417,434,436,441,442,447,462,463,464,473,474,477,478,479,482,483,486,489,492,496,497,501,502,504,505,512,515,516,519,521,523,532,533,540,542,545,546,548,549,550,552,553,554,555,556,559,567,568,577,584,602,620],handle_answ:29,handle_appli:305,handle_consum:305,handle_egd_respons:494,handle_eof:512,handle_error:[247,287,486],handle_ff:512,handle_foo_messag:552,handle_int:512,handle_messag:552,handle_mix:305,handle_numb:552,handle_posit:305,handle_quit:512,handle_setup:[221,496],handler:[0,12,13,14,21,23,24,35,36,37,38,39,41,44,45,47,48,49,52,67,69,86,87,100,118,126,131,135,137,138,139,155,171,176,177,220,221,225,226,228,233,236,251,255,258,259,273,274,284,287,288,290,308,313,319,362,374,375,377,391,394,395,405,407,412,414,423,426,440,469,470,473,474,479,483,484,486,487,497,509,510,530,533,539,540,542,543,547,548,551,562,563,568,577,584,616,620],handlertyp:543,handshak:[30,67,206,502,508,510,515],handshake_don:515,hang:[47,128,144,147,150,165,407],happen:[0,7,8,9,19,20,21,23,29,32,35,41,44,45,46,48,53,54,56,58,67,69,70,71,87,89,90,100,102,105,124,126,130,131,133,134,135,139,140,141,143,149,150,152,155,161,163,168,169,171,174,175,177,178,181,186,187,188,191,194,202,209,217,221,223,228,235,236,247,256,277,305,307,308,319,338,342,358,362,370,376,377,378,405,407,411,416,417,440,442,474,486,494,501,504,524,529,531,532,533,542,551,552,553,559,561,568,589],happend:479,happi:[15,152,408,552],happier:186,happili:[19,133],haproxi:[217,219,222,620],hard:[7,8,9,15,17,20,21,23,32,33,43,44,47,48,55,58,63,66,70,76,95,119,128,131,136,139,144,145,147,149,150,161,169,180,189,194,212,213,215,217,251,412,450,462,482,492,540,542],hardcod:[75,105,139,168,169,196,212,407,540],hardcor:124,harden:215,harder:[8,56,124,136,139,140,147,149,167,441],hardwar:[217,505],hare:200,harm:[14,121,172,340],harsh:[110,149,455],harvest:614,has:[0,1,4,6,8,9,11,12,13,14,15,16,17,19,20,21,23,27,29,32,33,34,35,37,38,39,41,43,44,45,46,47,48,49,50,51,52,54,55,56,57,58,59,61,63,66,67,69,70,72,73,74,76,77,78,80,81,82,83,84,87,93,95,100,101,102,103,104,111,112,118,119,120,123,124,125,126,127,128,129,130,131,133,134,135,136,138,139,140,141,143,144,145,146,149,150,152,155,157,161,164,167,168,169,170,172,174,175,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,199,200,201,204,205,207,208,209,211,212,215,216,217,218,219,220,221,223,224,227,228,229,234,235,236,237,239,241,242,247,249,250,252,253,254,256,257,258,263,265,273,277,281,287,300,303,305,313,316,319,322,329,335,338,339,340,341,342,346,349,362,368,370,371,372,373,376,384,391,395,400,407,408,409,411,413,414,416,417,434,440,441,442,450,458,462,464,466,469,470,472,473,474,478,479,481,482,485,486,487,492,494,497,501,504,506,510,514,519,520,524,530,531,532,533,535,540,542,543,548,550,551,552,554,555,559,561,562,565,566,568,573,576,577,584,588,589,594,608,609,616,618,619],has_account:[39,440,469,473,474],has_add_permiss:576,has_attribut:540,has_cmdset:236,has_connect:[19,256],has_consum:305,has_delete_permiss:576,has_drawn:[182,349],has_nick:540,has_obj_typ:413,has_object_permiss:[196,589],has_par:568,has_perm:[250,470],has_permiss:[196,589],has_sharp_edg:47,has_sub:256,has_tag:543,has_thorn:[14,145],hasattr:23,hasbutton:305,hash:[12,16,43,76,124,217,479,487,520,524,533,541],hashabl:410,hasher:8,hasn:[82,182,441,458,540,584,615],hassl:175,hast:340,hat:[84,316],hau:[201,221,229,247,503],have:[0,1,3,4,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,29,32,33,34,35,36,37,38,39,41,42,43,44,45,47,48,49,51,52,53,54,55,56,57,58,59,61,63,64,66,67,69,70,71,72,74,75,76,77,78,81,82,83,84,86,88,91,93,94,95,96,97,100,101,102,105,108,110,112,114,118,119,121,122,124,126,128,130,131,132,133,134,135,136,137,138,139,140,141,143,145,146,147,148,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,184,185,186,187,188,189,190,192,193,194,195,196,197,199,201,202,203,204,205,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,228,229,233,235,236,237,239,242,244,247,250,251,252,253,254,256,257,258,265,277,281,286,287,290,296,300,305,306,313,316,319,322,323,326,332,338,339,340,341,346,362,370,371,376,377,390,391,395,405,407,408,409,411,412,413,414,417,418,427,434,442,446,447,450,458,462,464,465,466,467,469,472,473,474,477,478,479,480,481,482,485,486,487,497,502,505,506,510,512,515,516,530,531,532,533,538,539,540,541,542,543,545,546,547,548,549,551,552,553,554,555,561,564,565,566,568,569,571,573,577,584,589,591,594,599,601,608,616,617,619,620],haven:[6,11,43,76,82,104,105,124,133,136,140,151,152,155,175,184,194,195,196,198,208,223,535],havint:51,hay:76,head:[10,12,21,33,66,100,101,134,136,150,155,157,179,180,191,196,197,210,408,410,413,620],header:[0,7,15,16,20,32,33,37,39,51,66,128,133,143,189,213,219,221,228,237,249,257,258,329,391,413,416,474,546,548,553,554],header_color:242,header_fil:221,header_line_char:554,header_star_color:221,header_text_color:221,headi:554,heading1:[128,554],heading2:[128,554],heading3:128,headless:474,heal:[81,86,92,118,120,126,132,145,149,151,323,340,341,405,407,418,421,442],heal_from_rest:[161,417],healer:405,healing_rang:341,healingrecip:323,health:[0,36,43,70,81,86,118,126,138,149,151,157,161,173,174,177,178,217,323,376,386,387,388,394,395,407,412,479,516,620],health_bar:[98,225,226,259,374,620],healthi:395,heap:151,hear:[19,101,147,172,183,566],heard:[105,146],heart:[33,139,188],heartbeat:[48,503],heat:323,heavi:[0,14,20,23,35,76,78,100,131,134,149,161,170,177,178,191,196,205,313,339,391,505,568],heavier:[44,339],heavili:[0,20,63,69,76,121,124,146,168,189,211,220,265,338,339,340,341,342,542],heck:133,heed:[45,470],hei:[78,134,313,329,390],height:[0,30,34,52,99,221,225,349,370,497,512,531,551,554],hel:0,held:[21,93,178,370,469],hello:[7,19,29,32,34,38,45,67,70,71,101,102,112,128,132,135,142,144,149,172,183,186,191,202,247,248,256,391,497,545,566],hello_valu:71,hello_world:[71,143,144],helmet:[14,152,155,157,172,408,410,411,413],help:[0,6,7,8,11,12,14,15,16,17,19,20,22,23,24,25,26,27,29,32,35,41,43,44,45,46,47,50,52,54,56,58,59,66,69,71,72,78,82,88,93,95,100,101,102,103,105,112,114,121,122,124,128,129,130,131,132,133,135,137,139,141,142,143,144,145,146,147,149,150,152,155,157,158,161,163,168,169,174,176,178,181,182,186,187,188,189,191,192,194,200,202,204,205,208,210,216,217,218,221,225,226,232,233,235,237,238,239,247,250,252,253,254,270,271,272,273,274,277,281,284,285,287,300,303,305,308,313,319,329,338,339,340,341,342,366,369,390,395,406,407,411,413,414,418,427,434,439,442,446,450,472,476,478,486,490,492,494,495,503,510,512,513,515,517,520,521,523,524,540,541,543,545,548,549,550,552,553,555,563,564,565,566,572,574,575,576,578,579,582,588,591,594,599,602,607,608,609,611,620],help_:414,help_a:414,help_b:414,help_categori:[23,33,82,133,169,178,191,197,204,237,239,240,241,242,247,248,249,250,251,252,253,254,265,281,285,296,299,300,303,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,364,376,380,384,391,408,434,436,440,441,442,450,452,462,464,465,466,474,523,550,552,553,565,616],help_cateogori:550,help_clickable_top:221,help_detail:616,help_end:414,help_entri:[33,221,464,550,616],help_entry1:464,help_entry_dict:[33,464],help_file_modul:464,help_kei:242,help_list:616,help_messag:249,help_mor:[221,249],help_more_en:[33,221],help_search_with_index:467,help_sstem:197,help_start:414,help_summary_text:93,help_system:197,help_text:[249,287,407,413,608],help_top:616,helpact:300,helparg:253,helpdetailtest:609,helpdetailview:616,helpentri:[33,35,50,196,197,249,464,465,466,548,580,591,613,616],helpentry_db_tag:580,helpentry_set:543,helpentryadmin:580,helpentryform:580,helpentrymanag:[465,466],helper:[0,11,29,32,41,43,58,100,112,118,124,125,126,133,135,136,139,141,145,149,152,155,169,184,185,187,221,225,228,236,239,242,247,249,257,265,277,305,310,322,324,338,342,369,371,372,373,376,390,395,417,420,474,478,479,489,501,502,521,533,546,552,553,555,561,566,567,568,578,586,592],helpfil:249,helpfilterset:[588,594],helplistseri:[591,594],helplisttest:609,helplistview:616,helplockeddetailtest:609,helpm:[97,99,126,348,349,451],helpmixin:616,helppopup:221,helpseri:[591,594],helptaginlin:580,helptext:[0,29,476,552],helptext_formatt:[0,29,476,552],helpviewset:[196,594],henc:[9,10,82,101,102,143,300,442,546],henceforth:[15,35,45,64,75,105,174,190,191,217,533],henddher:[111,126,334,335],hendher:0,her:[59,96,146,316,326,555,572,573],herbal:551,herbalist:152,herd:205,here:[0,1,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,20,23,26,29,32,33,34,35,36,37,38,39,42,43,44,45,46,48,49,50,52,54,55,57,58,59,61,63,66,67,69,70,71,72,74,76,78,81,82,83,84,88,89,97,100,101,102,104,105,112,113,116,118,120,121,122,124,125,126,127,128,129,131,132,133,134,135,136,137,138,140,141,143,144,145,146,147,149,150,151,152,155,157,161,163,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,197,198,200,201,202,203,204,205,206,208,210,211,212,213,215,216,218,219,220,221,223,228,229,235,236,237,242,250,251,252,254,258,265,277,281,286,287,300,303,304,305,308,310,313,316,322,323,338,349,358,362,364,371,373,384,390,391,395,400,405,406,407,408,409,412,418,440,441,442,458,466,470,472,474,478,479,492,494,501,503,509,510,512,515,524,530,531,533,539,540,542,545,548,551,552,554,559,561,566,573,577,584,586,589,591,597,613,616,617,620],herein:76,hero:149,heroism:149,herself:[32,59,555,572,573],hesit:[82,181,407],hexsha:452,hfill_char:554,hi_text:412,hidden:[14,52,90,122,124,126,131,132,145,146,147,171,182,187,249,258,300,316,384],hide:[0,14,21,23,33,35,41,105,112,124,126,127,132,134,147,177,189,249,258,384,391,441],hide_from:[37,258],hide_from_accounts_set:231,hide_from_objects_set:473,hide_script_path:242,hieararci:469,hierarach:543,hierarch:[13,41,58,239,469,543],hierarchi:[24,26,58,64,82,132,147,196,197,221,248,316,469,568,589],high:[21,41,59,124,130,134,144,146,207,213,221,235,322,323,341,474,534,543],higher:[1,8,19,21,29,35,41,45,50,58,71,81,97,112,124,136,139,140,149,161,167,169,174,175,177,191,213,217,221,228,235,239,242,252,338,342,371,390,442,469,494,543,552,568],highest:[21,41,118,149,161,169,395,545,568],highest_depth:409,highest_protocol:564,highli:[18,29,35,46,48,69,98,124,125,126,127,130,131,143,149,163,167,189,210,213,387,479,546,559],highlight:[7,16,61,128,168,169,188],hijack:[195,208],hill:[38,100],hilt:[149,323],him:[29,59,96,101,112,139,200,326,391,555,572],himself:[59,555,572,573],hint:[24,43,54,93,128,132,133,145,150,152,191,193,200,221,222,277,308,538,620],his:[29,32,43,59,96,101,112,169,200,316,326,391,553,555,567,572],histogram:568,histor:[23,44,73,132,175,491,561],histori:[0,12,19,27,52,95,131,134,143,149,169,205,212,236,247,256,450,561],hit:[0,30,81,86,120,132,141,146,149,151,161,171,172,177,178,179,189,221,229,322,338,339,340,341,342,376,377,406,408,412,417,440,441,490,531,561,564],hit_dic:412,hit_msg:440,hitter:133,hnow:61,hoard:149,hobbi:[88,147,150,217],hobbit:175,hobbyist:217,hoc:[66,130],hold:[0,4,9,10,13,15,16,21,29,33,35,39,43,45,47,49,57,64,75,92,100,105,117,118,119,124,126,128,131,132,133,138,139,140,147,149,151,163,169,177,178,179,182,189,191,193,194,212,220,221,235,236,259,265,274,305,308,316,322,323,338,339,340,341,342,376,384,395,407,408,417,436,440,441,458,462,463,467,469,470,478,479,480,483,488,499,501,510,520,521,523,533,542,543,544,548,552,554,555,557,561,568,574],holder:[163,189,217,225,226,259,260,270,275,376,540],hole:[100,184],home:[12,26,39,43,53,54,57,64,124,125,126,131,133,138,139,194,207,213,217,219,221,236,242,248,440,472,473,474,479,548,568],home_loc:242,homepag:[8,20,200,213,215,217],homes_set:473,homogen:[0,20,150,478,479,482],homogenize_prototyp:478,honcho:150,honest:152,hong:76,honor:[0,149,170,391],honour:[76,126],hood:[19,23,29,32,38,43,44,49,69,86,106,109,118,122,126,131,134,136,139,147,168,223,272,275,300,322,391,394,395],hook:[0,1,13,19,23,24,34,35,39,44,46,48,81,83,88,100,112,124,139,155,173,177,178,180,182,183,185,190,191,198,218,221,228,233,235,237,239,242,247,248,250,252,253,254,256,258,263,278,287,303,305,309,316,322,324,335,338,339,340,341,342,343,346,349,355,358,362,364,368,371,376,377,391,392,394,401,405,407,408,412,413,423,432,439,440,441,442,447,452,458,474,482,485,487,496,503,515,518,520,523,528,530,531,532,534,542,550,553,555,559,560,562,568,578,581,582,592,608,612,613,614,616,619],hooligan:56,hope:[6,146,149,161,169,186],hopefulli:[0,52,93,105,143,146,150,182,194,207,216,217],horizon:175,horizont:[0,7,349,370,441,554,568],hors:20,host1plu:217,host:[20,39,56,74,76,86,126,131,147,166,203,205,208,212,219,221,222,271,273,274,275,390,537,568],host_os_i:568,hostil:[163,185,410],hostnam:221,hot:[0,81,149],hotbutton:52,hotel:217,hotspot:219,hould:149,hour:[20,89,100,149,175,190,277,409,556,568],hous:[43,124,132,142,150,196,217,242,555],housecat:20,how:[0,1,5,6,8,9,10,11,12,14,15,16,17,18,19,20,21,24,25,26,29,32,35,36,37,38,41,43,44,45,47,50,51,52,53,54,55,56,58,59,62,63,64,67,69,70,71,74,75,76,81,82,83,87,88,93,96,100,101,102,105,110,112,113,116,118,119,120,121,123,124,126,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,155,157,161,163,164,165,166,167,168,170,171,172,173,175,176,177,178,179,180,181,182,183,184,186,187,188,191,193,194,195,196,197,198,202,204,205,207,208,210,211,213,217,218,219,220,221,222,223,229,230,234,236,237,249,251,252,253,256,265,277,303,305,308,316,319,322,323,326,340,341,342,349,358,362,370,371,372,373,376,380,384,390,391,395,405,409,412,413,418,434,440,458,462,467,469,473,474,479,482,487,492,497,502,506,511,516,519,523,524,530,531,532,533,537,542,546,550,552,553,554,555,561,562,568,577,578,580,583,584,608,620],howev:[0,7,13,14,15,16,17,18,21,23,27,32,35,43,44,48,49,51,52,55,56,59,61,63,70,71,72,73,74,81,82,95,98,100,101,102,105,119,124,126,130,134,139,140,143,145,149,151,155,169,172,173,175,177,186,187,190,191,196,198,205,217,218,221,236,237,242,249,252,253,265,287,341,387,434,450,458,462,469,545,591],howto:[87,125,128,171,172,183],hp_max:[151,152,161,405,412],hp_multipli:412,hpad_char:554,href:[18,194,197],hrs:[221,277],htm:507,html2html:52,html40:221,html5:138,html:[0,53,61,74,76,105,128,130,131,132,138,166,193,195,196,197,206,219,221,237,252,256,300,458,464,466,514,516,520,521,537,542,564,567,568,588,597,612,613,614,616,617,619],htmlchar:567,htop:[8,218],http404:[195,197],http:[0,4,5,11,12,42,46,50,51,52,53,54,55,57,66,71,74,76,82,93,101,105,128,130,131,138,165,178,181,189,192,194,195,197,201,203,205,208,209,210,211,213,215,219,221,222,225,229,247,265,300,319,452,455,458,467,494,501,503,504,505,506,507,508,514,516,519,520,521,537,545,554,567,568,571,588,608],http_200_ok:196,http_log_fil:221,http_request:[74,219,221],httpchannel:537,httpchannelwithxforwardedfor:537,httpd:207,httprequest:228,httprespons:[576,578,581],httpresponseredirect:194,huawei:217,hub:[33,152,200,212,257,548],hue:61,huge:[57,69,123,126,144,147,149,165,175,179,181,362,553],huh:[23,82],hulk:152,human:[8,56,63,90,118,126,131,132,147,151,168,177,192,194,322,395,614],humanizeconfig:192,hundr:[72,194,202],hung:150,hungri:69,hunt:[118,126,177,394,395,440],hunting_pac:440,hunting_skil:177,hurdl:182,hurri:141,hurt:[121,146,149,170,173,395,405,407],hurt_level:405,hwejfpoiwjrpw09:189,hxyxyz:110,hybrid:[149,177],i18n:[0,66,137,221,474],iaa:[110,455],iac:70,iam:76,iattribut:540,iattributebackend:540,ice:124,ice_and_fir:145,icon:10,icontain:0,iconv:66,id_:[578,580,582,584,608],id_str:36,idcount:523,idea:[5,7,10,11,12,23,33,35,46,51,54,56,71,83,93,100,102,120,121,125,128,136,138,143,144,147,149,150,152,157,158,167,171,177,180,181,182,189,191,194,195,197,202,204,221,237,249,250,253,313,390,479,559,567,618],ideal:[23,66,73,101,217,231,470],idenfi:235,ident:[0,9,11,12,14,21,23,39,52,67,100,112,133,144,149,168,174,189,218,228,250,355,376,380,391,470,472,474,481,545,546,566],identif:[20,48,533],identifi:[0,6,7,8,9,12,21,23,27,29,34,36,43,44,48,49,67,70,81,88,91,102,112,126,136,139,140,141,147,169,173,178,181,182,195,196,197,205,207,234,237,242,247,250,253,256,257,265,308,322,346,371,376,390,391,408,414,442,462,470,474,478,481,484,487,489,492,497,499,502,516,520,529,531,533,540,541,545,548,551,552,555,568],identify_object:257,idl:[45,56,221,228,229,440,474,524,531,533],idle_command:[23,221],idle_tim:[228,474],idle_timeout:[221,229],idmap:559,idmapp:[49,69,221,225,226,252,258,466,499,525,540,541,542,544],idmapper_cache_maxs:221,idnum:257,ids:[56,145,169,180,346,523,533,551],idstr:[36,48,483,487,529,568],idtifi:257,idx:180,ietf:508,ifconfig:208,ifier:[118,395],ifram:52,ignor:[0,6,11,16,19,20,21,23,29,32,33,34,35,41,45,49,61,67,69,99,126,128,133,134,138,140,144,152,169,177,180,186,205,214,217,221,223,228,234,235,236,237,242,346,349,364,370,371,373,391,469,473,474,487,492,497,503,504,519,520,521,540,542,545,546,551,552,563,566,568,569],ignore_ansi:568,ignore_error:228,ignorecas:[237,242,248,249,252,254,303,316,322,391,545,550,552,567],ignoredext:537,illog:100,illumin:105,illus:55,illustr:100,imag:[0,10,18,52,53,54,74,76,126,138,146,192,193,194,197,213,217,221,222,223,597],imagefield:0,imagesconfig:192,imagin:[16,21,29,88,101,120,133,140,141,146,147,149,150,172,178,190,418,434,546],imaginari:[105,149,200],imc2:0,imeplement:362,img:18,immedi:[17,20,23,29,34,43,44,51,67,81,100,102,124,131,133,136,139,140,143,149,157,163,172,178,182,194,195,198,210,212,213,217,221,240,252,319,322,371,407,408,414,418,440,481,496,503,546,548,552,553],immers:[88,149],immobil:1,immort:[100,412,440],immut:[14,376,487],impact:[97,126,149,188,411],impass:[124,146],impati:213,imper:114,implement:[0,1,9,11,14,19,21,23,29,32,35,37,39,47,48,49,52,54,59,61,63,69,70,71,74,75,77,78,88,92,100,105,116,119,120,121,122,124,125,126,130,132,135,138,140,141,144,147,151,152,155,157,161,163,167,168,169,170,171,172,176,178,179,182,183,185,187,191,196,198,199,200,208,221,223,225,226,230,231,235,236,239,240,241,242,243,244,247,248,249,250,251,252,254,256,257,258,259,277,296,301,313,322,326,332,338,339,342,344,346,355,358,360,364,370,384,390,391,394,402,407,412,436,440,441,442,447,462,465,466,470,472,473,474,481,482,484,487,498,503,505,506,507,508,509,510,512,514,515,516,519,520,521,523,530,537,540,541,542,543,545,546,549,550,552,553,560,563,564,567,568,576,593,615,617,620],impli:[47,82],implic:77,implicit:[186,188],implicit_keep:479,impmement:470,import_cmdset:236,importantli:[19,29,134,139,194,470],importerror:[9,189,192,221,541,568],impos:[130,535],imposs:[0,17,29,58,72,100,105,124,128,180,182,194,217,371,478,554],impract:[23,43,124,479],imprecis:559,impress:[105,149],improv:[0,12,66,102,132,141,143,147,150,161,186,417],impur:323,in_game_error:[219,221],inabl:[215,219],inaccess:[35,102],inact:[93,305,409,440],inactiv:252,inadvert:342,inadyn:217,inarticul:71,inbuilt:[47,191],incant:211,incapacit:149,incarn:608,incid:[77,126,447],includ:[0,4,8,10,13,14,15,20,21,23,26,29,32,34,35,36,39,45,46,47,48,49,51,52,54,56,57,61,70,71,74,77,78,81,82,83,88,92,95,104,105,110,112,118,119,120,121,124,125,126,127,128,129,130,131,132,133,134,135,138,139,141,142,143,144,145,147,148,149,151,158,163,164,166,169,170,173,174,175,177,178,179,180,181,186,189,192,193,194,195,196,197,199,211,212,215,220,221,228,233,234,235,237,240,241,242,250,253,256,257,287,300,303,308,313,316,322,323,324,326,338,339,340,341,342,346,362,368,370,371,372,373,376,380,390,391,395,407,408,411,412,418,442,447,450,455,462,467,469,474,478,485,492,510,512,515,516,524,529,532,540,541,542,543,545,546,547,548,549,551,552,554,556,561,566,568,591,597,601,617,620],include_account:540,include_children:[541,565],include_par:[541,565],include_prefix:[234,237],include_unloggedin:[510,533],inclus:[33,541,555],incoher:188,incol:[169,551,554],incom:[23,53,63,70,205,217,220,221,229,234,251,303,339,371,447,492,501,505,508,511,515,516,520,521,523,531,532,533,537,552,553,555,576,578,581,582,589],incompat:0,incomplet:[116,125,237,358,554],inconsist:[9,55,458],incorpor:[0,239,380,554],incorrect:257,increas:[0,35,41,49,61,78,81,110,118,124,126,136,139,149,157,175,177,219,221,313,339,341,342,371,395,405,442,504,510,524,550,552],increase_ind:550,incred:[119,462,494],increment:[215,540],incur:20,indata:[63,540],inde:[90,130,186,189,217],indefinit:[157,340,441,481,548],indent:[0,7,15,16,20,27,32,52,102,128,133,143,144,168,189,370,521,546,550,552,555,568],independ:[0,37,44,53,93,100,102,126,131,167,188,210,313,319,446],indetermin:494,index:[33,53,54,69,71,74,105,119,125,128,132,139,147,167,180,182,193,200,217,221,222,225,226,234,247,248,249,305,313,370,371,441,462,464,466,467,472,490,494,495,537,543,545,553,554,568,574,607,608,609,611,613,616,620],index_category_clr:249,index_to_select:462,index_topic_clr:249,index_type_separator_clr:249,indexerror:[123,195,362,541],indexread:305,indextest:609,indic:[11,29,37,59,82,96,100,102,105,119,124,126,128,134,136,143,144,155,161,172,175,182,186,207,229,242,249,250,305,326,370,371,391,412,417,447,462,482,485,503,504,512,519,520,533,535,537,540,545,546,552,553,568,594],individu:[12,14,15,16,23,32,43,70,81,82,100,101,102,105,124,126,139,144,149,168,169,177,179,182,190,196,199,204,217,236,240,256,284,287,306,322,341,384,394,395,414,476,479,531,543,545,554,555,562,563],ineffici:[0,48,545],inert:11,inf:[571,573],infact:23,infinit:[0,44,81,100,102,124,132,147,163,221,229,362,371,478,571,573],infinitely_lock:305,inflat:149,inflect:[0,571],inflict:340,inflict_condit:340,influenc:[29,55,57,82,101,132,147,191,308,313,568],info1:436,info2:436,info3:436,info:[0,1,8,10,11,14,15,18,19,20,23,25,26,30,33,39,40,44,45,47,49,50,54,57,59,69,70,77,124,131,135,138,139,140,141,143,149,163,165,169,174,199,200,205,206,210,212,220,221,222,228,229,231,239,240,242,249,252,254,259,281,299,305,313,329,346,373,387,418,442,465,466,474,492,497,501,509,510,530,531,533,541,542,543,548,551,561,568],inforamt:[362,373,391,474,542],inform:[0,1,4,6,8,12,13,14,20,23,29,36,37,43,44,45,47,52,54,61,64,65,67,69,74,81,82,87,90,100,101,102,110,113,124,126,128,133,134,137,138,140,143,145,149,165,177,178,185,186,187,189,190,191,193,194,195,196,197,198,201,205,207,208,212,214,219,220,221,228,229,237,240,242,247,248,252,257,258,265,270,303,319,322,340,341,342,384,391,395,430,447,448,455,458,465,466,474,492,497,506,507,508,510,519,532,533,541,542,545,548,550,561,568,608,620],infrastructur:[67,128,131,150,217,219,221,233,502],infrequ:101,ing:[16,93,141,149,169,189,384],ingam:[100,101],ingame_map_displai:[99,225,226,259,344,620],ingame_python:[100,101,225,226,259,260,620],ingame_tim:175,ingen:66,ingo:[21,29,34,59,62,124,169,235,472,504,555,571],ingot:[322,323],ingredi:[88,126,149,305,322],ingredient1:305,ingredient2:305,ingredient3:305,ingredient_recip:305,inher:[38,55,71,118,395],inherit:[0,4,6,11,13,14,19,20,21,23,39,49,51,54,61,62,63,69,82,83,84,86,88,96,100,112,116,118,122,124,131,132,133,135,136,137,139,140,141,145,149,157,158,163,168,171,173,191,196,197,221,231,235,237,242,250,252,253,256,258,265,271,273,300,303,305,313,316,322,326,335,338,339,340,341,342,346,349,355,358,364,376,391,395,407,408,413,416,439,440,442,452,471,473,474,479,482,484,523,532,539,541,542,550,553,554,559,565,566,568,591,594,612,613,614,616,618,619],inheritng:479,inherits_:144,inherits_from:[155,185,195,252,568],inifinit:478,init:[10,52,63,82,86,97,124,128,169,182,189,210,211,213,265,266,308,313,365,450,473,492,510,511,521,533],init_delayed_messag:450,init_django_pagin:553,init_evennia_properti:542,init_evt:553,init_f_str:553,init_fill_field:[95,450],init_game_directori:492,init_iter:553,init_menu:439,init_mod:236,init_new_account:568,init_pag:[478,553],init_pars:[122,299,300],init_queryset:553,init_rang:342,init_sess:[63,532],init_spawn_valu:478,init_st:308,init_str:553,init_tree_select:[119,462],init_tru:236,initi:[2,5,9,12,14,23,27,29,44,45,46,52,53,54,76,78,81,83,88,95,97,119,120,124,126,128,131,132,133,135,137,147,158,161,169,172,177,179,182,184,187,189,191,194,198,213,218,221,222,228,229,236,237,253,256,258,271,272,273,274,281,284,288,290,308,313,319,322,338,342,349,369,370,371,372,376,377,378,390,391,395,406,407,411,414,418,434,439,440,441,450,462,464,472,473,474,478,483,486,487,489,490,492,494,495,496,501,502,503,505,506,507,508,510,511,512,513,514,515,516,517,519,520,521,523,531,532,533,540,542,543,545,547,550,551,552,553,555,563,564,568,577,578,580,582,584,586,602,608,619,620],initial_formdata:450,initial_ind:554,initial_setup:[0,221,225,226,488,530],initial_setup_modul:221,initialdelai:[489,503,504,523],initialize_for_combat:338,initialize_nick_templ:540,initil:520,initpath:124,inject:[0,53,93,138,219,305,372,407,418,478,492,523,524,531,546,551,552],inkarn:149,inlin:[7,24,52,59,129,132,141,168,474,490,555,576,577,578,580,581,582,584,620],inlinefunc:[0,43,59,138,220,221,555],inlinefunc_stack_maxs:0,inlinetagform:584,inmemori:540,inmemoryattribut:540,inmemoryattributebackend:540,inmemorybackend:540,inmemorysavehandl:563,inn:104,innard:0,inner:0,innermost:32,innoc:[56,240],innocu:219,inobject:501,inp:[29,242,257,478,490,553,555,568],inpect:29,input:[0,8,11,14,16,17,18,19,20,21,24,27,34,38,43,45,48,52,53,54,55,59,61,62,63,67,72,74,78,82,88,95,104,105,112,119,124,126,127,128,129,132,133,134,135,138,139,142,152,161,168,169,172,173,176,183,186,189,194,218,220,221,228,232,233,234,237,242,247,249,250,251,252,253,256,257,265,308,322,323,341,371,384,390,391,394,395,417,441,447,450,456,462,465,474,477,478,479,490,492,497,501,512,520,531,533,540,541,543,550,551,552,553,554,555,562,564,566,568,569,608,620],input_arg:566,input_cleanup_bypass_permiss:[0,221,568],input_cmdset:552,input_func_modul:[34,221,497],input_str:[32,552],input_validation_cheat_sheet:608,inputcmdset:552,inputcommand:[34,67,70],inputcompon:52,inputdebug:[34,497],inputfuc:138,inputfunc:[24,63,70,138,220,221,225,226,229,488,520,531,533,620],inputfunc_nam:520,inputfunct:34,inputhandl:225,inputlin:[38,248,256,540,541],insecur:217,insensit:[33,41,136,145,249,346,442,464,472,541,600],insert:[0,14,15,16,27,32,38,43,59,88,96,110,126,128,131,132,143,169,204,214,236,256,305,322,326,332,391,473,478,546,552,554,555,568],insid:[0,1,5,6,8,10,11,12,14,15,17,20,21,23,29,32,35,39,42,43,44,45,49,50,54,55,58,66,69,70,71,74,76,86,94,96,98,100,101,102,105,112,123,124,126,128,131,132,133,134,135,136,137,138,140,143,144,145,151,152,155,163,168,170,177,179,180,184,185,186,187,190,191,193,194,195,197,204,205,208,212,215,218,221,225,229,252,256,265,286,287,346,362,387,391,405,409,440,442,469,473,474,477,492,509,530,537,546,547,555,568],inside_rec:[0,469],insiderecurs:469,insight:[6,134,146,193],insist:[186,217],inspect:[29,56,124,184,205,228,242,252,313,380,490,492,552],inspect_and_bui:184,inspectdb:69,inspector:379,inspectorcarac:[0,83,110,126,380,455,572],inspir:[0,7,23,59,73,93,96,109,126,149,158,161,177,178,296,326,554,568],insta:161,instac:[237,322,474,531],instal:[0,5,6,8,10,11,12,16,66,71,98,101,102,120,125,126,128,130,131,132,134,137,140,143,146,152,165,168,169,195,200,201,203,204,209,218,219,221,225,226,259,268,281,296,311,313,316,319,321,329,332,335,338,339,340,341,342,344,346,349,355,357,374,375,383,387,391,393,408,436,447,599,620],installed_app:[11,69,192,194,195,197,221,599],instanc:[0,1,5,9,13,14,18,20,24,27,29,32,36,43,45,46,47,51,52,57,62,66,76,81,82,86,100,101,102,104,113,119,124,126,131,132,133,135,136,138,139,143,145,149,151,155,165,167,168,169,172,175,178,180,181,184,186,188,193,197,207,228,231,233,234,235,236,237,246,249,251,252,256,258,263,265,271,273,274,275,287,290,300,310,322,362,373,376,378,406,407,409,418,458,462,466,473,474,478,479,481,482,486,487,489,492,501,502,503,504,505,506,507,508,510,514,515,519,523,524,532,533,537,540,542,543,545,548,549,552,554,559,560,564,566,568,569,576,577,578,580,581,582,584,588,589,591,593,608,616],instanci:[265,273],instant:193,instanti:[11,23,32,69,81,144,228,236,253,395,434,484,487,509,530,533,540,551],instantli:[577,584],instead:[0,8,10,12,14,16,19,20,21,23,29,32,36,39,41,43,44,45,47,49,54,55,56,57,58,59,61,67,69,74,76,77,81,82,87,88,91,93,95,98,99,100,101,102,105,106,110,112,116,118,119,123,124,125,126,128,131,132,134,135,136,138,139,140,141,143,144,145,147,149,150,151,152,155,157,161,163,165,168,169,170,171,172,173,175,178,179,180,181,183,186,188,189,190,191,193,194,195,196,205,208,210,212,213,215,217,218,220,221,222,228,229,236,237,239,240,242,244,247,251,252,254,256,257,265,274,281,290,300,303,305,310,319,322,323,338,339,340,341,342,349,358,362,364,370,371,373,376,384,390,391,394,395,407,408,409,412,418,439,441,450,455,462,469,470,472,474,479,487,492,520,521,531,535,540,542,543,548,551,552,553,555,559,561,563,564,565,568,572,577,584,599,608,612,613,614,616],instig:240,instil:[75,340],instnac:486,instr:[501,568],instruct:[6,10,12,15,16,20,34,67,70,83,101,102,104,120,124,125,126,128,130,132,137,143,144,146,147,168,169,173,189,192,200,205,207,208,210,211,212,213,215,216,217,221,223,228,237,252,391,447,479,487,489,492,502,504,510,515,516,520,521,523,531,533,552,562],insur:149,int2str:[555,568],intefac:0,integ:[21,23,32,43,45,49,95,118,126,161,181,186,191,221,234,277,316,338,340,342,371,373,376,384,395,442,450,469,474,541,555,564,568,569],integerfield:[194,582,608],integr:[50,52,112,120,126,131,144,192,195,253,391,416,451,495,497,552,588,620],intel:143,intellig:[67,139,149,151,152,161,163,177,186,195,219,236,405,410,412,417,523],intend:[15,18,20,21,23,32,37,43,47,52,71,76,77,78,82,105,111,121,124,125,126,130,134,140,146,147,155,188,192,193,217,219,221,228,265,310,313,322,373,376,391,412,465,466,474,479,510,541,543,548,549,551,554,555,565,566,568,569,586,614,617],intens:[61,136,149],intent:[12,112,219,390,568],inter:[15,124,149,200,370],interact:[0,6,10,13,23,24,26,29,62,63,71,79,81,97,124,128,130,134,135,140,144,146,149,150,152,167,172,178,184,194,200,205,212,218,221,222,225,241,303,342,434,492,509,546,561,566,568,620],intercept:[77,100,126,533],interchang:[41,132,178,464,552,618],interconnect:[149,370],interest:[6,8,16,23,33,43,63,69,78,82,88,97,101,102,123,124,127,130,132,134,144,146,147,149,150,155,158,168,172,179,180,182,186,191,193,198,217,219,236,251,277,313,319,362,371,442,620],interf:[215,434],interfac:[4,6,9,35,51,52,53,63,74,81,82,105,131,137,143,149,179,184,189,194,197,205,213,217,221,222,223,239,242,256,412,418,472,474,485,503,532,537,540,543,545,568,578,583,617],interfaceclass:512,interfer:[9,205,478],interim:[48,172],interlink:[509,530],intermediari:[391,470,483,552],intern:[0,14,17,19,20,29,35,38,43,45,46,47,55,63,70,72,89,91,123,136,137,138,149,178,208,212,217,218,219,221,228,229,258,281,322,326,362,368,370,371,376,391,395,407,432,472,473,474,478,484,520,521,540,542,543,545,549,552,554,568],internal:552,internal_port:217,internation:[62,72,221,620],internet:[23,54,55,56,57,63,202,205,208,210,219,221,222,240,489,494,502,503,504,512,515,523,537],interpret:[6,8,23,43,44,143,144,149,167,186,195,219,220,221,237,241,242,373,478,479,520,545,564],interract:124,interrel:376,interrupt:[100,140,233,237,253,284,287,290,364,368,512],interrupt_path:[124,371],interruptcommand:[23,140,186,225,233,237],interruptev:290,interruptmaplink:[124,371],interruptmapnod:[124,371],intersect:[21,235],interv:[34,44,48,80,118,126,131,149,171,178,180,190,198,221,229,230,277,287,323,338,376,395,400,407,409,440,442,481,482,487,497,548,556,568],interval1:487,intim:[21,23],intimid:169,intoexit:[242,364],intpropv:191,intric:152,intricaci:175,intrigu:209,intro:[121,132,142,144,146,176,192,195,197,439,442],intro_menu:[225,226,259,396,438],introduc:[9,11,12,21,32,86,88,112,149,150,168,172,177,184,191,391,409],introduct:[0,7,15,16,17,24,57,58,76,132,133,134,142,148,158,164,165,166,176,189,213,265,620],introductori:130,introroom:442,introspect:[111,335],intrus:188,intuit:[12,29,69,82,147,149,186,221,235],intuitiion:149,intxt:20,inv:[21,26,248,303,316,408],invalid:[14,32,43,124,161,186,221,228,371,391,395,450,456,478,540,554,555,564,568,569,572],invalid_formchar:551,invent:[118,395],inventori:[0,1,9,20,21,26,35,88,93,133,134,136,141,145,149,150,151,155,157,179,184,186,187,196,248,303,316,322,323,391,405,407,408,411,412,413,414,418,469,474,542],inventory_slot:[155,411],inventory_use_slot:[155,157,411,413],inventoryseri:196,invers:[35,61,124,133,139,140,188,371,394,518],invert:[61,188],investig:[54,77,126,139,141,163,418],invis:[35,124,206,368,371],invisiblesmartmaplink:371,invit:[55,102,147,166,434],invitingli:[134,434],invok:[15,16,44,183,446],involv:[14,35,39,44,45,46,62,63,95,124,141,147,149,152,167,178,191,211,221,322,323,342,371,407,408,450,452,542,543,545,589],ioerror:[7,546],ipli:395,iplier:395,ipregex:240,ipstart:[212,215,218],iptabl:219,ipv4:205,ipv6:221,ipython:[8,132,142,169],irc2chan:[26,33,133,202,221,247],irc:[0,135,150,203,221,222,225,226,229,247,255,488,497,500,510,533,620],irc_botnam:229,irc_channel:229,irc_en:[202,221,247,469],irc_network:229,irc_port:229,irc_rpl_endofnam:504,irc_rpl_namrepli:504,irc_ssl:229,ircbot:[229,504],ircbotfactori:[229,504],ircclient:[504,533],ircclientfactori:510,irchannel:[202,247],ircnetwork:[202,247],ircstatu:[26,133,247],iron:[78,313,322,323],ironrealm:516,irregular:[80,126,400,440,442],irregular_echo:440,irrelev:[219,501],irur:30,is_account_object:167,is_act:[231,482,576],is_aggress:185,is_anonym:[192,197],is_authent:194,is_ban:[0,228],is_bot:231,is_build:192,is_categori:462,is_channel:23,is_connect:[231,474],is_craft:172,is_dark:139,is_dead:86,is_exit:[23,237],is_fight:172,is_full_moon:1,is_giving_light:441,is_gm:169,is_idl:412,is_in_chargen:191,is_in_combat:338,is_inst:20,is_it:568,is_iter:568,is_lit:[441,442],is_next:[231,258,466,473,482,540,542],is_o:568,is_ooc:[380,469],is_ouch:[14,145],is_pc:[151,405,412],is_play:192,is_prototype_bas:478,is_rest:140,is_room_clear:409,is_sai:183,is_sit:140,is_staff:[231,576],is_subprocess:568,is_superus:[13,51,192,228,230,231,470,474,548,576],is_thief:249,is_turn:338,is_typeclass:[0,228,542],is_valid:[44,180,194,313,482,485],is_valid_coordin:[123,362],is_webcli:52,isalnum:545,isalpha:545,isauthent:221,isb:566,isbinari:[503,520],isclos:52,isconnect:52,isdigit:[169,545],isfil:221,isinst:[14,161,181,187,568],island:104,isleaf:521,islow:545,isn:[18,27,81,82,100,101,102,136,167,175,186,192,196,197,213,221,265,284,288,300,341,342,442,494,545,562,571,577,584,600],isnul:564,iso:[17,72,221,254],isol:[11,15,93,125,128,131,143,147,151,186,212,270],isp:[217,219],isspac:545,issu:[0,6,8,11,12,14,15,16,21,23,26,39,49,55,71,75,82,105,121,127,128,140,144,169,172,188,189,191,205,207,209,213,215,217,219,221,222,247,254,269,478,492,501,523,524,554],istart:[0,6,218,225],istartswith:0,istep:524,istitl:545,isub:178,isupp:545,ital:620,italian:[0,66],itch:149,item1:[161,407],item2:[161,407],item3:[161,407],item4:161,item5:161,item:[0,29,35,52,69,76,78,84,88,93,95,110,112,120,126,128,132,134,136,137,138,145,149,151,152,155,158,161,176,178,185,196,197,248,306,313,316,322,340,362,391,405,407,408,411,413,414,418,430,434,450,511,540,555,568],item_consum:340,item_func:340,item_kwarg:340,item_selfonli:340,item_us:340,itemcombatrul:340,itemcoordin:362,itemfunc:340,itemfunc_add_condit:340,itemfunc_attack:340,itemfunc_cure_condit:340,itemfunc_h:340,iter:[9,12,14,29,32,47,81,104,125,133,139,140,155,161,182,228,230,257,273,274,362,371,376,391,417,432,465,472,474,479,481,485,521,523,524,540,542,543,545,546,549,553,565,568],iter_cal:553,iter_to_str:[0,568],itl:[82,265],its:[0,1,5,6,7,8,11,12,13,14,16,17,19,20,21,23,24,27,29,30,32,33,35,36,39,41,43,44,45,48,49,50,51,52,53,56,57,59,61,63,67,69,70,73,74,77,78,81,82,86,88,93,94,95,96,97,100,102,105,107,110,111,114,116,118,119,121,123,124,126,128,130,131,133,134,136,137,138,139,140,141,143,144,145,146,149,150,151,152,155,157,161,163,165,167,168,169,172,173,174,175,177,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,201,202,203,205,207,211,212,213,215,217,220,221,228,229,231,233,234,235,236,237,240,242,250,252,256,257,265,266,269,273,274,287,296,300,305,308,313,322,323,326,335,338,339,340,341,342,349,358,362,364,371,373,376,378,390,391,395,407,409,411,412,416,417,432,434,440,441,450,462,472,473,474,479,486,487,492,496,497,501,505,516,518,519,520,521,524,532,533,537,538,540,541,542,543,546,551,552,554,555,559,561,562,563,564,565,566,568,572,576,577,584,586,588,597,608,612,613,614,616,618],itself:[0,1,4,8,10,11,12,14,17,18,19,20,23,29,33,35,39,41,44,45,47,48,49,54,59,63,66,69,74,77,81,82,95,100,101,102,105,118,119,120,124,128,131,132,133,134,135,138,139,142,143,144,145,146,151,152,155,161,163,172,174,178,179,182,183,189,191,192,193,194,195,196,199,205,208,211,213,215,220,221,228,229,249,256,265,272,275,290,304,305,306,308,322,341,362,371,376,384,391,395,400,417,441,442,450,458,462,463,466,467,469,472,474,476,477,479,486,492,516,521,533,537,540,543,545,548,550,551,552,555,563,565,568,572,573,577,584,608,618],iusernamepassword:512,ivanov:76,iwebsocketclientchannelfactori:503,iwth:487,jack:38,jail:[15,56],jam:[0,93,126],jamalainm:0,jamochamud:206,jan:[2,56,175,221],janni:76,januari:[100,175],jarin:217,jason:76,jaunti:316,java:143,javascript:[50,52,53,54,70,74,76,126,130,193,219,221,520,521],jenkin:[0,84,95,98,119,120,126,191,315,316,337,338,339,340,341,342,386,387,449,450,460,462],jet:341,jetbrain:[10,200],jewelri:84,jinja:138,jiwjpowiwwerw:14,jnwidufhjw4545_oifej:189,job:[23,35,152,197,208,228],jodi:76,john:[117,169,436],johnni:[0,77,126,446,447],johnsson:38,join:[52,82,93,110,126,130,136,147,149,152,169,178,182,183,191,194,201,202,221,228,247,256,296,304,313,390,407,408,545,568],join_combat:407,join_fight:[338,342],join_rangefield:342,joiner:256,jointli:[131,236],joker_kei:[82,265],jon:76,jonca:76,josh:76,journal:105,json:[50,52,67,70,77,196,221,446,503,516,520,521,549,591],jsondata:70,jsonencod:521,jsonifi:521,jtext:545,judgement:177,jump:[15,16,29,30,39,71,119,130,147,149,152,174,179,182,213,303,462,490,555],jumpei:76,jumpstat:303,june:100,junk:501,just:[0,1,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,23,29,30,32,33,34,35,37,38,39,43,44,45,46,47,48,49,51,52,54,55,56,58,59,61,63,66,67,69,70,72,74,75,76,77,78,81,82,83,87,88,91,93,98,100,101,102,104,105,109,110,118,119,123,124,125,126,127,128,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,165,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,184,186,187,188,189,190,191,192,193,194,195,196,197,198,205,208,209,210,212,213,214,215,216,217,218,220,221,223,228,235,236,237,240,242,247,250,251,253,256,265,284,286,287,303,307,308,310,313,316,319,322,323,338,340,341,342,346,362,364,371,373,376,387,390,395,405,407,408,411,416,417,434,436,440,442,462,470,474,479,483,497,510,520,524,530,537,540,541,542,545,549,550,552,554,555,563,564,566,568,569,614,617,620],justif:[553,568],justifi:[0,32,43,545,553,554,555,568],justify_kwarg:[0,553],kafka:[77,110],kaldara:100,kaledin:76,kamau:[110,455],kcachegrind:8,keep:[0,1,6,7,8,9,12,15,16,17,23,29,33,42,43,45,54,57,81,86,94,98,100,102,104,110,126,131,133,136,140,141,143,144,147,149,150,152,155,167,168,169,172,173,175,177,178,180,183,186,188,189,190,194,195,197,199,205,208,210,211,212,213,215,216,221,223,229,236,287,319,346,387,434,441,442,446,458,478,479,494,535,551,552,554,568],keep_log:[256,257,548],keepal:[45,515,521],keeper:[149,408],keepint:131,keeva:110,kei:[0,1,6,7,9,11,12,14,15,19,20,21,23,27,30,32,33,34,35,36,39,41,44,46,47,48,49,50,52,54,55,66,69,70,76,77,81,86,88,96,100,102,104,105,110,112,118,119,122,124,126,128,129,132,133,135,136,139,140,141,143,144,151,152,155,157,163,167,168,169,171,172,173,174,175,178,179,180,181,182,184,186,187,189,191,194,197,198,204,207,221,228,229,230,231,233,235,236,237,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,256,257,258,265,266,271,272,273,275,277,281,285,286,296,299,300,303,304,305,308,310,313,316,319,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,362,364,370,371,372,373,376,377,380,384,390,391,395,407,408,412,413,414,418,434,436,439,440,441,442,450,452,455,462,464,465,466,467,469,472,473,474,477,478,479,481,482,483,484,485,486,487,490,492,497,498,499,501,510,513,516,517,519,520,521,523,524,531,532,533,535,540,541,542,543,547,548,550,551,552,553,555,561,562,563,565,566,568,588,608,619],keith:76,kept:[8,23,33,41,54,138,168,186,221,242,286,287,391,479,540],kept_opt:462,key1:[29,332],key2:[29,332,474],key3:29,key_:187,key_mergetyp:[21,235,434],keydown:52,keyerror:[0,322,349,456,478,487,563,568],keyfil:[513,517],keynam:[256,257,465,477,479,548],keypair:512,keys_go_back:[82,265],keystr:543,keystrok:512,keywod:554,keyword:[0,1,7,8,11,14,20,23,27,29,30,32,34,35,43,44,46,48,49,55,59,67,69,81,82,94,100,102,110,112,135,136,140,143,151,152,169,172,173,175,184,186,191,195,221,228,229,230,233,237,242,248,256,257,277,284,286,287,290,300,308,310,316,338,340,342,346,373,387,390,391,407,411,412,442,447,455,470,472,474,478,479,481,483,486,487,490,492,497,501,503,504,510,511,512,515,520,521,531,532,533,535,540,541,542,548,551,552,553,554,555,559,561,562,564,565,568,617],keyword_ev:[100,290],kha:110,khq:110,kick:[19,21,29,56,149,152,169,217,229,235,240,247,254,281,296,553],kildclient:206,kill:[8,20,29,45,78,132,134,138,147,150,151,161,178,211,212,222,313,412,413,416,440,441,483,487,492,530,537,620],killsign:492,kind:[9,14,35,63,81,87,100,102,110,127,128,132,139,141,143,147,148,178,180,183,186,194,220,319,338,376,442,470,474,542,569],kindli:188,kitchen:[47,140,141,174,242,364],kizdhu:110,kja:221,klass:66,klein:76,knave:[92,132,149,151,152,155,157,158,163,406,411,417],knee:[124,305,371],kneeabl:305,kneed:305,kneel:305,kneelabl:305,knew:[143,149],knife:[47,88,322,323],knight:14,knob:14,knock:[29,146],knot:[84,316],know:[6,8,9,12,13,14,15,16,17,19,21,23,29,32,33,34,35,36,39,45,49,54,55,57,59,61,63,66,67,69,72,82,87,88,100,102,105,112,114,119,124,126,127,131,132,133,134,136,137,138,139,140,141,142,143,144,145,147,149,150,151,152,155,157,161,163,167,168,169,170,172,174,177,178,179,180,181,182,185,186,188,193,195,196,197,200,202,203,205,207,208,209,210,217,218,221,222,237,241,242,250,253,286,313,319,329,341,371,390,434,441,462,473,474,497,531,533,540,546,547,552,568,577,584,615,620],knowledg:[15,17,23,130,183,514,533],known:[0,23,27,33,38,41,42,48,49,52,132,134,139,140,147,177,195,200,206,221,227,251,341,455,553],knuth:8,korean:[0,66],kornewald:76,koster:200,kovash:29,kwar:542,kwarg:[0,1,7,14,19,23,29,32,34,35,36,39,43,46,48,49,52,55,63,65,67,70,81,86,88,89,100,104,118,124,140,152,155,157,169,180,183,184,190,195,221,228,229,230,231,233,236,237,239,240,241,242,247,248,249,250,251,252,253,254,256,257,258,265,271,273,274,275,277,281,284,285,286,287,296,299,300,303,304,305,306,307,308,310,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,362,364,371,372,373,376,377,380,384,390,391,395,400,405,406,407,408,409,412,413,414,416,418,432,434,436,439,440,441,442,447,450,452,458,462,465,466,469,470,472,473,474,476,477,478,479,481,482,483,485,486,487,489,490,497,498,499,501,502,503,504,509,510,511,512,513,515,516,517,520,521,523,525,531,532,533,534,535,537,540,541,542,543,545,548,550,551,552,553,554,555,556,558,559,561,562,563,564,565,566,568,569,576,577,578,581,582,584,588,590,591,594,608,612,613,614,616,617,618,619],kwargs_to_pass_into_next_node_or_cal:152,kwargtyp:568,label:[12,69,75,77,134,145,163,184,194,588,608],label_suffix:[578,580,582,584,608],labl:47,laborum:30,labyrinth:124,lack:[14,15,54,73,128,133,147,150,167,391,434,474,540,568],laddad:66,ladder:169,ladi:139,lag:[8,182],lair:16,lambda:[29,43,55,181,197,287,479,568],lamp:[105,434],lamp_breaks_msg:434,land:[152,178,186,440,441],landscap:[105,219],lang:[112,390],langaug:112,langcod:[221,391],langnam:391,languag:[5,17,24,32,41,49,52,53,54,59,62,63,71,72,73,119,126,128,130,131,133,136,137,138,139,141,143,150,167,168,169,186,200,221,225,226,259,374,389,391],language_cod:[66,221],languageerror:[390,391],languageexistserror:390,languagehandl:390,lanki:152,larg:[0,7,9,11,12,15,16,29,43,44,54,55,57,69,71,76,104,112,123,124,125,126,130,132,134,140,146,147,150,157,161,167,205,217,221,223,305,362,365,378,390,434,478,510,546,551,559],larger:[16,32,35,69,71,94,128,143,147,168,182,221,346,376,474,518,545,559,568,597,620],largest:[118,395],largesword:69,larlet:76,lasgun:135,last:[0,4,6,12,14,15,16,19,21,23,29,34,38,39,45,46,52,59,66,69,78,82,84,100,110,119,124,126,128,141,143,144,145,146,147,149,150,152,155,169,171,172,178,180,186,188,192,193,195,196,197,208,209,218,221,230,233,234,236,242,247,248,277,287,313,319,338,340,346,349,376,391,407,411,414,417,418,455,462,474,496,545,546,547,552,553,554,556,561,568],last_cast:171,last_cmd:[23,139],last_initial_setup_step:[221,530],last_login:[231,576],last_nam:[110,231,455,456,576],last_step:496,last_tim:171,last_upd:409,last_us:171,lastli:[105,194,233,322],late:[100,478,547],later:[9,12,13,14,15,19,23,33,34,36,43,44,48,49,56,63,67,69,75,76,82,83,88,93,100,101,102,105,111,124,130,131,133,134,136,138,139,140,141,143,144,147,149,150,151,152,157,158,161,163,169,170,172,174,176,177,180,185,187,189,191,192,194,197,198,205,210,211,213,217,221,235,239,240,242,250,256,277,335,371,380,391,406,407,417,418,478,479,487,512,543,555,568],latest:[0,3,12,20,21,54,76,93,97,128,131,169,180,203,208,210,211,213,215,223,228,242,247,252,452,474,479,511,535,552,555,561,588],latin:[0,2,17,66,72,221,254,474,568,620],latin_nam:474,latinifi:[0,474,568],latter:[0,20,29,35,48,112,118,124,131,152,155,172,186,188,391,395,464,482,484,543],launch:[0,10,16,24,100,124,146,179,209,211,213,217,218,221,236,434,491,492,502,504,523,550,568],launchcmd:[124,225,226,259,344,363,365],launcher:[0,8,10,124,213,221,365,366,491,492,501,502,523],lava:124,law:200,lawrenc:221,layer:[21,81,82,110,137,144,376,473,542],layout:[20,33,42,49,52,54,62,104,124,139,145,167,169,182,362,370,474,551],lazi:[414,568],lazy_properti:[0,81,87,118,155,187,319,376,394,395,414,568],lazyencod:521,lazyset:561,lc_messag:66,lcnorth:60,ldesc:167,ldflag:211,lead:[0,11,12,14,15,18,21,29,32,44,51,53,54,65,67,69,81,82,100,102,105,112,124,130,131,134,136,140,145,147,157,161,167,180,182,197,200,205,207,219,221,228,234,235,242,252,287,290,322,355,364,369,371,372,373,391,409,423,425,458,474,478,479,501,531,540,542,554,555,568],leak:[54,74,221],lean:[37,391],leap:[143,175],learn:[6,10,17,18,21,23,50,54,57,71,81,82,92,93,100,101,102,112,121,124,126,133,135,136,137,139,140,141,143,144,146,147,149,150,155,163,167,168,182,193,195,196,197,210,341,376,377,390,391,620],learnspel:341,least:[0,6,7,10,14,23,29,35,37,51,69,78,81,100,112,118,130,139,142,143,144,147,150,151,165,168,169,177,180,181,182,208,217,221,228,236,257,305,313,390,395,407,465,474,479,485,545,551,554,555,565,568],leasur:440,leather:[149,184,323],leatherrecip:323,leav:[0,1,8,13,19,34,52,54,82,100,102,123,134,140,146,152,155,161,169,177,178,179,191,216,219,221,239,241,242,256,265,303,305,306,307,313,362,364,405,407,409,423,442,474,486,516,520,521,552,555,559,591],leaver:256,leaving_object:[405,474],led:[139,149],ledg:121,lee:407,leech:377,leer:76,left:[0,4,12,20,23,32,34,35,43,52,69,82,100,105,110,123,124,128,136,140,141,146,152,168,181,186,197,221,228,242,248,250,305,319,338,339,340,341,342,362,370,371,376,380,387,416,434,441,470,479,542,545,554,568,620],left_justifi:43,leftmost:124,leg:529,legaci:[0,32,43,44,70,85,126,145,149,210,221,228,296,297,555,620],legal:[217,219],legend:[27,104,182,206,225,226,259,344,363,370,372],legend_key_except:370,legenddict:372,leidel:76,leisur:569,leland:76,len:[1,43,136,145,161,169,178,180,182,184,204,221,234,251,277,414,568],lend:27,length:[7,64,69,82,84,89,95,112,124,126,143,175,182,186,204,205,217,234,277,290,310,322,349,370,371,387,390,391,450,455,456,494,535,540,545,551,554,555,568,619],lengthi:1,lenient:43,less:[10,29,33,52,54,66,69,71,81,82,110,124,131,139,141,147,149,155,161,167,170,174,177,178,186,190,194,217,221,277,339,341,371,413,540],lesson:[130,132,133,134,136,137,138,139,140,141,143,144,145,147,149,150,151,152,155,157,161,163,176],let:[1,7,8,10,11,12,14,16,17,19,21,23,29,32,34,35,39,41,48,52,54,56,61,63,67,75,81,82,83,88,93,95,98,100,101,102,105,110,119,123,124,126,128,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,155,157,158,161,164,165,166,167,168,169,170,171,172,174,175,177,179,180,181,182,183,184,185,186,187,188,189,191,193,194,195,196,201,202,203,207,210,211,213,228,236,237,242,248,253,257,273,313,362,370,376,384,387,395,408,450,462,470,474,502,521,533,548,552,562,588,608,615,616],lethal:[149,151],letsencrypt:[208,217],letter:[0,7,17,29,37,61,66,72,82,105,110,112,113,124,128,143,181,191,194,217,221,239,248,254,265,305,390,395,458,536,545,555,568],leve:478,level10:323,level:[3,7,9,13,14,15,19,20,27,29,32,33,35,41,45,47,49,50,51,54,58,63,64,66,71,75,82,86,88,100,104,105,112,128,130,134,136,140,143,147,149,150,151,152,155,161,163,168,169,173,177,184,192,196,197,200,204,215,217,220,221,228,230,239,242,244,245,256,265,266,269,277,303,323,329,362,370,390,405,407,409,412,413,414,417,418,434,462,464,469,474,479,494,531,540,542,543,548,550,555,556,561,568,589,619],level_up:405,lever:[23,49,303],leverag:[53,128,165],levi:69,lexicon:305,lhs:[0,1,169,250],lhslist:250,liabl:305,lib:[205,208,211,215,216,221],libapache2:207,libcloud:76,libcrypt:211,libjpeg:211,librari:[0,7,9,11,15,24,43,49,50,52,66,71,97,122,124,126,129,131,132,139,142,144,157,161,167,168,176,186,193,194,196,199,200,210,211,212,213,219,221,259,300,458,478,479,505,540,542,554,568],licenc:545,licens:[0,10,12,110,113,125,126,149,455,458,545,571,572,620],lid:[114,434],lidclosedcmdset:434,lidopencmdset:434,lie:[105,305],lied:305,lies:[12,23,141],life:[38,132,140,149,150,175,188,277,440,620],lift:[35,134,161,177,191,196,305,342,470],lifter:35,light:[16,20,44,61,71,128,146,147,149,150,205,210,236,339,373,441,442,479,486,545],lightabl:441,lighter:339,lightest:20,lightli:[57,339],lightsail:217,lightsourc:441,lightsource_cmdset:441,lightweight:[87,126,319],like:[0,1,4,6,7,8,9,10,11,12,13,14,16,17,18,19,20,21,23,25,29,30,32,33,34,35,36,37,39,41,43,44,45,46,47,48,49,51,52,53,54,55,56,57,58,59,61,63,66,67,69,70,71,73,74,75,77,81,82,84,86,87,88,89,93,94,95,96,98,100,101,102,104,105,110,112,113,114,115,116,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,165,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,184,186,187,188,189,190,192,193,194,195,196,197,198,200,201,202,204,207,208,209,210,211,212,213,215,216,217,219,220,221,228,229,231,232,234,235,236,239,241,242,247,250,254,255,256,257,265,281,290,296,298,300,305,313,316,319,322,323,326,338,340,341,342,346,355,358,362,371,376,378,387,390,391,395,405,407,409,411,412,413,417,432,434,442,450,458,462,465,466,467,469,470,472,473,474,478,479,492,497,505,521,524,526,530,532,533,540,541,542,543,545,546,548,551,552,553,554,555,556,559,562,564,565,566,568,571,593,608,617,620],likewis:0,limbo:[15,16,20,64,82,102,105,121,124,134,138,139,146,180,189,195,220,221,242,265,364,442,496],limbo_exit:105,limit:[0,1,8,13,14,19,20,21,23,24,29,32,33,35,37,43,44,47,49,50,51,57,58,69,75,84,87,101,102,118,119,120,124,126,129,130,131,132,134,136,138,141,143,145,147,150,155,169,171,178,186,188,191,204,205,217,221,228,230,237,239,240,241,242,256,257,287,305,316,319,338,340,341,370,391,394,395,407,408,413,434,462,464,465,466,467,470,472,474,479,481,482,487,497,510,535,540,542,543,546,548,550,561,565,568,571,586,614],limit_valu:[221,228],limitedsizeordereddict:568,limitoffsetpagin:221,limp:146,line26:183,line34:172,line:[0,1,4,7,8,9,11,12,14,15,16,17,19,20,21,23,24,29,32,34,37,38,39,42,43,49,52,54,55,58,61,66,67,69,71,76,77,82,88,91,100,101,102,104,105,108,112,119,123,124,125,126,128,129,133,134,137,139,140,141,142,144,145,149,152,155,161,167,168,169,170,172,173,175,176,180,181,183,186,189,191,192,194,195,196,197,203,205,208,209,212,213,215,217,218,220,221,223,225,228,233,236,242,247,249,251,252,265,300,332,362,366,370,390,391,434,450,462,474,478,492,497,512,515,520,531,542,545,546,550,551,552,553,554,561,568,608,613],line_prefix:568,linear:182,linebreak:[197,545,567],lineeditor:550,lineend:567,lineno:128,linenum:550,liner:504,linereceiv:[512,515],linesend:521,lingo:[45,69,74,168],linguist:568,link:[0,1,3,11,12,13,16,18,19,21,23,26,29,33,39,45,50,53,54,62,63,65,82,97,100,101,105,120,125,127,130,131,132,133,134,136,137,138,139,143,149,165,168,172,180,181,182,187,189,191,192,194,195,197,202,203,209,213,217,221,223,228,231,242,247,284,300,364,368,369,370,371,372,378,409,452,470,474,482,490,492,503,507,512,515,542,567,568,581,620],link_button:581,link_object_to_account:581,linknam:209,linknod:371,linktext:128,linkweight:371,linod:217,lint:[0,2,620],linux:[1,3,8,10,12,38,77,128,131,143,144,189,192,202,205,207,208,211,212,217,222,446,568,620],liquid:542,list1:136,list2:136,list:[0,7,8,9,10,12,13,14,15,16,17,19,20,21,23,26,29,32,33,34,35,37,39,43,44,45,47,49,50,51,52,54,56,61,63,64,66,69,70,72,74,77,79,81,82,83,84,85,86,88,94,95,100,101,102,103,104,105,108,110,112,113,119,124,127,130,132,133,134,135,137,138,143,145,146,147,150,151,152,155,157,161,165,168,169,177,178,180,181,182,186,191,192,194,195,196,197,200,202,203,205,209,215,217,218,219,221,223,228,229,230,231,234,235,236,237,239,240,241,242,247,248,249,250,252,253,256,257,258,265,268,273,274,284,285,287,288,290,296,303,304,305,313,316,319,322,326,329,332,335,338,339,340,341,342,346,349,362,364,370,371,372,373,377,380,387,390,391,395,407,411,412,414,417,418,434,439,440,441,446,447,450,455,456,458,462,464,465,467,470,472,473,474,478,479,481,483,484,485,487,490,492,497,498,501,502,504,506,508,510,511,516,521,524,533,535,537,540,541,542,543,545,546,547,548,549,552,554,555,561,562,565,566,568,571,572,576,577,584,586,589,591,592,593,599,601,612,613,614,616,618,619,620],list_callback:285,list_channel:247,list_displai:[576,578,580,581,582,583,584],list_display_link:[576,578,580,581,582,583],list_filt:[576,580,581,584],list_nod:[0,24,552],list_of_fieldnam:169,list_of_myscript:44,list_prototyp:478,list_select_rel:[578,580,581,582,583],list_serializer_class:594,list_set:492,list_styl:239,list_task:285,list_to_str:[0,568],listabl:242,listaccount:252,listbucket:76,listcmdset:242,listdir:221,listen:[13,19,35,45,52,56,112,176,205,208,219,221,247,256,274,296,305,390,391,434,613,620],listen_address:205,listing_contact:[209,221],listnod:552,listobject:242,listview:[613,614,616],lit:[441,442,555],liter:[0,15,32,33,43,51,64,134,168,248,545,551,555,564,568],literal_ev:[32,552,555,568,577],literari:150,literatur:620,littl:[0,1,6,17,23,43,44,49,54,55,61,79,100,102,104,105,110,119,121,123,124,126,128,131,132,133,134,136,139,141,143,144,145,146,147,149,150,152,155,157,161,163,168,169,172,174,179,183,184,185,186,189,193,195,197,200,204,212,213,217,218,305,339,341,391,407,408,416,417,439,442,527,540,552,568,608],live:[10,14,24,54,132,139,149,158,205,207,208,210,212,217,405,620],livingmixin:[151,155,405,412],ljust:[32,545,555],lne:462,load:[0,8,9,10,11,14,15,17,21,23,27,29,43,52,53,54,56,66,76,88,93,105,124,139,143,144,147,155,161,167,168,169,172,177,180,191,193,197,219,221,231,236,248,249,252,258,271,273,287,308,324,346,370,372,390,413,464,466,470,473,474,478,482,486,496,499,501,532,540,542,543,546,547,550,555,560,562,563,566,568,586,601,606],load_buff:550,load_data:547,load_game_set:601,load_kwarg:563,load_module_prototyp:478,load_stat:308,load_sync_data:532,loader:[29,372,542,568],loadfunc:[27,550,563],loadout:[155,407,411],loaf:[88,126],loc:[0,242,364],local0:208,local:[0,1,4,10,12,32,50,51,54,66,97,100,112,124,126,131,133,137,141,149,175,187,193,194,202,205,208,212,215,217,219,221,284,287,349,391,452,479,515,540,620],local_and_global_search:472,local_non_red_ros:136,local_ros:136,locale_path:221,localecho:[0,497],localhost:[50,51,52,53,54,74,165,189,192,194,195,197,205,206,208,210,211,213,217,221,222,521],locat:[0,1,8,9,11,12,13,15,20,21,23,25,26,29,34,35,39,43,44,47,49,50,51,52,54,56,59,61,64,74,75,76,81,82,93,94,100,101,102,104,105,107,111,123,124,126,128,131,132,133,134,135,136,137,138,139,140,141,143,146,149,151,155,168,169,170,179,180,181,182,183,185,186,189,191,192,193,194,207,208,210,212,213,217,219,220,221,222,228,233,242,248,252,256,257,265,308,310,316,322,335,346,349,355,362,364,368,370,371,372,373,376,391,405,407,409,410,411,412,416,432,440,442,469,472,473,474,479,521,530,540,542,543,546,548,554,561,565,594,597,599],location_nam:362,locations_set:473,locattr:[441,469],lock:[1,19,21,23,24,26,32,37,39,43,44,47,49,51,55,56,58,82,93,97,100,109,112,115,124,129,133,134,137,138,139,140,169,172,174,175,179,181,191,192,194,196,204,205,217,218,220,221,225,226,228,230,237,239,240,241,242,247,248,249,251,252,253,254,256,257,258,265,281,284,285,287,288,296,303,305,313,316,322,323,326,329,332,335,346,355,362,364,371,380,384,391,405,407,409,412,413,434,436,440,441,442,452,464,465,466,472,473,474,478,479,481,501,537,540,542,543,548,550,552,562,568,569,581,589,616,620],lock_definit:470,lock_func_modul:[35,221,470],lock_storag:[237,239,240,241,242,247,248,249,250,251,252,253,254,258,265,281,285,296,299,300,303,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,364,376,380,384,391,408,434,436,440,441,442,450,452,462,464,466,474,523,540,542,550,552,553],lock_typ:35,lockabl:[37,115,126,169,305,355],lockablethreadpool:537,lockdown:[35,221,540],lockdown_mod:[217,221],lockexcept:470,lockfunc1:35,lockfunc2:35,lockfunc:[0,1,19,23,35,41,129,138,141,180,220,221,225,226,242,247,468,543],lockhandl:[0,14,33,35,49,133,225,226,237,265,300,468,469],lockset:474,lockstr:[0,9,14,19,23,33,35,43,140,141,221,230,242,247,249,256,257,258,272,296,355,376,465,470,472,474,479,481,540,543,548,589],locktyp:[19,235,247,322,479,543,555],lockwarn:221,lockwarning_log_fil:221,locmem:221,locmemcach:221,log:[0,4,5,8,10,13,14,23,24,25,29,34,37,39,44,45,46,51,52,53,54,55,56,64,66,69,74,77,79,93,100,105,121,124,128,129,131,132,133,134,140,141,149,151,152,168,169,177,179,180,181,191,192,194,195,201,202,204,205,206,207,208,211,212,215,218,221,222,228,230,236,240,254,256,257,280,281,292,306,370,371,372,446,447,450,474,482,486,492,497,501,502,506,509,510,512,515,523,524,525,531,533,535,537,542,548,561,568,576,613,614],log_19_03_08_:0,log___19:0,log_dep:[20,561],log_depmsg:561,log_dir:[19,221,256,446,561],log_err:[20,561],log_errmsg:561,log_fil:[19,20,256,561],log_file_exist:561,log_info:[20,561],log_infomsg:561,log_msg:561,log_sec:[0,561],log_secmsg:561,log_serv:561,log_system:561,log_trac:[20,44,198,561],log_tracemsg:561,log_typ:561,log_typemsg:561,log_warn:[20,561],log_warnmsg:561,logdir:4,logentry_set:231,logfil:[492,561,613],loggad:66,logged_in:[45,221],loggedin:[54,510],logger:[0,20,44,129,198,225,226,446,504,544],logic:[0,6,9,29,54,55,81,88,93,100,102,105,124,138,140,149,152,174,181,182,187,195,196,197,221,305,390,442,473,474,477,496,540,552,569,591],login:[0,1,8,9,12,13,23,25,29,35,45,46,53,54,62,77,124,125,126,135,149,189,192,194,197,217,221,228,239,254,279,280,281,282,292,470,496,497,512,515,520,521,524,533,568,600,602,609,620],login_func:524,login_redirect_url:221,login_requir:221,login_throttle_limit:221,login_throttle_timeout:221,login_url:221,loginrequiredmixin:[614,619],logintest:609,loglevel:561,logo:76,logout:[0,221,523,524,609],logout_func:524,logout_url:221,logouttest:609,logprefix:[502,512,515,537],lon:555,lone:[105,147,242,249],long_descript:[209,221],long_running_funct:55,long_text:30,longer:[0,7,23,27,30,32,48,49,59,69,100,102,116,121,127,133,139,140,143,144,151,152,169,186,188,197,209,235,240,256,316,338,342,358,390,391,407,483,486,550,554,568],longest:20,longrun:23,longsword:50,loo:[237,253],look:[0,1,4,6,7,8,9,11,14,15,16,17,18,20,21,23,24,25,26,29,32,34,35,38,39,41,43,44,45,47,49,51,53,54,55,56,57,58,59,61,63,66,67,69,70,71,74,81,82,84,88,91,93,94,95,100,101,102,105,106,107,108,110,112,114,119,121,124,126,127,128,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,147,150,151,152,155,157,161,163,165,166,168,169,172,173,174,175,177,178,179,180,181,182,183,184,185,186,188,189,192,193,194,195,196,197,204,205,208,211,212,215,217,218,219,221,228,229,234,236,237,239,242,248,250,253,254,280,281,286,292,303,304,305,316,322,332,335,340,346,362,371,372,373,380,390,391,405,407,413,418,432,434,439,441,442,450,462,465,469,470,473,474,476,479,481,497,512,513,520,524,540,542,546,552,554,555,562,565,566,568,572,576,581,608],look_str:[228,380],lookaccount:169,lookat:23,looker:[8,32,59,124,169,182,191,228,305,306,316,346,362,373,391,409,413,416,432,474,542],lookm:23,lookstr:474,lookup:[9,14,23,35,47,59,69,132,142,221,233,248,410,446,464,472,473,478,511,543,545,558,559,564,565,568,569],lookup_expr:588,lookup_typ:564,lookup_usernam:29,lookuperror:545,loom:[105,182],loop:[0,8,14,32,49,83,100,101,102,120,124,126,130,131,132,136,149,161,170,178,179,182,183,197,221,225,229,338,371,409,479,510],loopingcal:495,loos:[7,16,29,84,152,228,247,316,342,465,512,523,546],loosen:7,loot:[132,147,151,405,412],loot_chanc:412,looter:[151,405],lop:136,lore:[33,169,249,464],lose:[14,45,147,149,151,161,167,174,178,191,212,218,340,406,446,474,503,504,512,515],loser:146,loss:161,lost:[12,49,74,102,105,116,155,157,167,172,181,186,187,200,218,221,247,358,489,502,503,504,512,515,520,540,545],lot:[0,3,6,8,11,12,15,17,19,20,32,33,35,43,44,47,49,51,53,54,55,59,66,69,71,74,81,82,88,91,93,95,100,101,102,104,105,117,119,120,124,127,129,132,133,135,136,138,139,141,143,144,145,146,147,149,150,152,157,158,168,169,171,175,177,180,181,186,191,192,194,196,197,200,208,217,221,265,277,281,339,362,391,408,411,436,441,450,537],loud:[140,179,376],love:[33,52,150,464],low:[0,21,63,64,101,149,217,221,235],lower:[8,13,14,19,21,23,29,41,52,55,58,61,69,110,118,124,146,149,152,161,169,172,175,182,217,221,234,235,239,250,252,370,371,391,395,497,543,545,568],lower_bound_inclus:395,lowercas:[7,128,143,237,391,545],lowest:[41,64,118,149,161,217,395,469,545],lpmud:73,lsarmedpuzzl:335,lspuzzlerecip:335,lst:[155,182,465,548],lstart:27,lstrip:[186,545],ltthe:252,ltto:60,luc:551,luciano:200,luck:[29,88,139,149,186,207],luckili:[35,105,139],lue:545,lug:130,luggag:145,luhttp:252,lunch:[100,101],lunr:[0,33,221,249,467],lunr_stop_word_filter_except:[0,221],lunrj:467,lure:221,lurk:149,luxuri:[47,539],lvl10:323,lvl:561,lycanthrophi:136,lycantrhopi:136,lycantroph:136,lycantrophi:136,lying:[105,305],m2m:543,m2m_chang:46,m_len:568,mac:[8,10,12,128,131,143,189,205,206,210,212,222,568,620],machin:[1,10,12,15,143,149,205,212,221,440],machineri:221,macport:[12,213,215],macro:[178,192],macrosconfig:192,mad:12,made:[0,1,4,12,14,25,29,32,35,41,43,50,54,58,76,78,84,90,93,100,105,110,119,124,126,128,133,134,139,140,141,144,145,147,149,151,152,161,163,165,167,169,171,172,179,180,184,191,195,200,203,216,217,219,220,221,233,235,252,253,256,313,316,340,341,342,366,395,407,420,450,455,462,470,486,494,524,538,545,546,550,552,555,568],mag:551,magazin:200,mage:[29,76,136],mage_guild_block:29,mage_guild_welcom:29,magenta:188,magentaforeground:61,magic:[2,14,35,47,75,78,92,98,132,146,147,149,158,161,173,180,313,323,341,387,394,407,410,411,413,494,620],magic_meadow:47,magicalforest:75,magiccombatrul:341,magnific:29,mai:[2,5,7,8,9,10,11,12,14,15,19,20,21,23,29,32,33,35,36,38,39,43,44,45,48,49,50,54,55,58,59,61,63,64,66,67,69,70,71,74,76,78,81,84,86,88,93,97,98,100,102,105,112,118,119,120,121,124,125,126,128,131,132,134,136,138,139,142,143,145,146,147,150,151,161,163,167,168,170,171,172,175,177,178,179,184,189,191,193,194,195,197,198,200,204,205,207,208,209,211,212,213,215,216,217,218,219,220,221,223,228,229,233,234,235,237,239,240,242,247,249,252,253,256,257,258,259,277,305,308,313,316,322,323,338,339,340,341,342,370,371,387,390,391,395,407,409,410,411,414,417,441,442,450,452,470,472,474,478,479,480,494,531,533,534,538,540,542,543,545,547,548,549,550,552,554,555,556,562,565,568,571,577,584,597,614],mail:[0,8,12,29,37,125,133,168,178,189,223,225,226,257,258,259,311,620],mailbox:[37,329],main:[0,2,9,12,14,15,16,17,21,23,29,33,36,39,41,42,43,44,45,47,48,49,50,52,53,54,59,63,67,69,74,82,95,100,101,109,112,124,126,131,132,134,139,140,141,142,149,158,161,167,172,173,178,179,182,186,194,195,196,197,200,205,209,212,217,218,220,221,228,231,233,239,242,247,249,253,256,258,265,287,322,324,329,362,366,372,390,391,407,414,450,452,466,467,473,474,479,482,492,496,497,499,504,509,511,516,530,532,537,542,543,552,553,555,557,565,567,568,576,582,599,617,620],mainli:[0,8,14,23,29,37,39,45,55,56,59,67,141,143,168,200,221,239,413,463,540,546,568],maintain:[0,8,33,48,58,71,76,124,125,126,128,139,145,150,167,189,192,205,212,217,221,222,252,254,281,366,487],maintainership:0,mainten:217,major:[16,17,32,131,168,180,194,205],make:[0,1,2,4,5,7,8,9,10,12,13,14,15,16,17,19,21,23,24,26,27,29,32,33,34,35,37,38,39,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,63,66,67,69,71,72,75,76,77,78,80,81,82,83,88,94,96,97,98,99,100,101,102,103,104,105,110,112,115,116,118,119,121,123,124,125,126,127,128,130,131,132,135,136,137,138,141,142,144,145,146,147,148,150,151,152,155,157,158,163,164,166,167,170,173,174,175,176,177,178,181,182,183,185,186,188,189,192,193,194,195,196,197,199,202,204,205,206,207,208,209,210,211,212,213,215,216,217,218,219,220,221,223,228,229,231,234,235,236,237,239,240,242,247,250,253,257,265,277,288,303,305,313,316,322,323,329,338,339,340,341,346,349,355,358,364,370,371,373,376,380,387,390,391,395,400,405,406,407,408,409,410,411,412,413,414,417,418,421,434,440,441,442,448,450,462,465,469,470,472,474,478,479,481,484,487,492,496,504,509,523,524,530,531,533,534,536,537,540,541,542,543,545,546,547,548,549,550,551,552,554,555,556,559,565,566,568,577,584,586,609,617,619,620],make_it:[157,568],make_shared_login:602,make_uniqu:235,makeconnect:501,makefactori:512,makefil:128,makeit:523,makemessag:66,makemigr:[4,69,194,223],makeshift_fishing_rod:88,male:[59,96,326,555,572],malevol:[16,221],malform:[0,372,478,479,566,569],malici:[32,219],malign:470,malysh:76,man2x1:71,man:[0,7,38,59,71,112,217,248,329,391],mana:[171,173],mana_cost:323,manaag:580,manag:[0,8,11,13,19,21,24,35,39,44,45,48,49,63,67,69,83,108,112,124,126,129,136,138,140,155,167,168,171,181,187,189,194,210,212,216,218,221,225,226,227,228,231,242,247,252,253,255,256,258,296,308,332,342,373,376,391,408,442,463,466,471,473,474,478,480,482,487,488,492,499,539,540,542,543,544,547,548,557,560,561,565,568,609,612,613,614,619],manager_nam:540,manchest:568,mandat:608,mandatori:[7,12,43,46,82,100,102,104,124],mandatorytraitkei:395,maneuv:[119,462],mangl:518,mango:[111,335],manhol:512,manhole_ssh:512,mani:[0,7,8,11,12,13,14,16,17,18,19,20,21,23,29,32,33,39,43,44,45,46,48,49,50,53,54,55,56,61,62,63,64,66,69,70,71,72,73,74,75,76,81,84,95,102,105,110,112,116,117,119,120,122,124,126,128,130,131,133,134,135,136,138,141,143,144,147,149,150,152,155,157,161,163,167,168,169,171,172,173,174,175,177,178,180,182,183,186,188,189,191,194,195,196,202,203,213,217,218,219,220,221,230,231,235,237,242,247,253,258,269,281,300,305,313,316,322,324,340,341,358,370,371,373,376,391,408,409,436,440,450,462,466,467,470,472,473,479,482,487,492,506,514,516,535,540,542,543,545,552,553,555,559,560,561,617],manifest:138,manipul:[0,14,21,29,41,43,44,51,69,81,82,94,100,102,118,125,126,131,133,149,174,187,191,230,242,252,257,284,344,346,376,395,465,472,474,481,498,548,553,614,616],manner:[16,362,391,474,510,542],manual:[0,8,9,14,16,23,33,35,39,43,44,49,51,53,61,63,66,69,75,97,100,105,118,119,124,126,128,132,134,138,139,140,143,145,147,150,155,163,169,173,179,180,192,195,205,208,214,215,216,217,218,221,222,223,225,229,242,300,307,371,395,434,439,452,462,474,479,485,492,509,516,552,553,555,620],manual_paus:[44,485],manual_transl:[112,390],manytomanydescriptor:[231,258,466,473,482,540,542,543],manytomanyfield:[231,258,466,473,482,540,542,543],map10:368,map11:368,map12a:368,map12atransit:368,map12b:368,map12btransit:368,map1:[124,368,371],map2:[124,368,371],map3:368,map4:368,map5:368,map6:368,map7:368,map8:368,map9:368,map:[0,1,9,17,19,29,32,38,59,70,74,76,85,89,100,101,102,112,123,125,126,131,149,152,161,168,169,176,181,184,208,212,221,225,226,239,247,256,259,268,269,277,305,344,349,362,363,364,365,367,368,369,370,372,373,390,391,395,416,418,467,474,478,479,516,540,542,545,551,552,555,566,568,572,573,620],map_align:[124,373],map_area_cli:373,map_character_symbol:[124,373],map_data:[368,370],map_displai:[124,368,373],map_exampl:365,map_fill_al:[124,373],map_legend:104,map_mod:[124,373],map_modul:105,map_module_or_dict:370,map_separator_char:[124,373],map_str:[105,123,182,362],map_target_path_styl:[124,373],map_visual_rang:[124,373],mapa:124,mapb:124,mapbuild:[104,105,182,225,226,259,344,348,620],mapc:124,mapcorner_symbol:370,mapdata:372,mapdisplaycmdset:[99,349],maperror:[369,370],maplegend:104,maplink:[124,370,371],mapnam:[104,364,372],mapnod:[124,370,371],mapp:555,mapparsererror:[369,371],mapper:[370,555,559,573],mapprovid:[123,362],maps_from_modul:372,mapstr:[124,372],mapstructur:370,mapsystem:221,maptransit:369,maptransitionnod:[124,371],mar:66,march:[2,200,561],margin:18,mariadb:[222,620],mark:[0,7,12,15,16,23,32,33,35,51,52,54,60,61,65,74,75,119,124,128,133,136,143,161,169,179,182,192,202,210,213,215,217,221,234,241,274,287,310,323,346,368,370,371,458,462,533,540,542,546,551,552,555,564],mark_categori:462,markdown:[7,33,128,209,221],marker:[7,15,19,23,32,38,54,59,61,96,119,124,126,131,143,163,221,247,248,305,310,322,326,346,370,371,391,462,474,504,512,515,520,521,540,543,545,551,552,553,561,597],market:[149,184,217],markup:[33,59,61,126,163,193,221,225,226,242,267,268,269,407,544,567,568,620],martei:76,marti:76,martiniussen:76,masculin:[110,455],mask:[112,126,335,391,447,448],maskout_protodef:335,mass:[8,147,341],massiv:[130,171,221],master:[12,90,93,101,118,126,128,132,147,168,177,178,183,189,195,203,212,221,223,395,538],match:[0,2,11,12,14,20,21,23,29,32,33,34,35,38,39,41,43,44,45,47,49,51,52,54,61,67,69,70,74,81,82,85,88,94,104,105,110,118,123,124,134,136,138,140,143,145,151,152,157,161,163,168,169,174,175,181,186,187,189,193,194,195,196,205,210,220,221,223,228,230,233,234,235,236,237,240,242,247,248,249,251,253,256,257,265,268,277,290,322,329,332,335,341,346,362,370,371,373,376,377,391,395,407,417,450,464,465,467,469,470,472,474,478,479,481,484,487,497,498,510,523,533,540,541,542,543,545,550,552,554,555,561,563,565,566,567,568,569,571,597,619,620],match_index:234,matched_charact:450,matcher:29,matches2:69,matchingtrigg:81,matchobject:[545,567],mate:131,materi:[88,143,322,323],math:181,mathemat:235,matplotlib:525,matric:[124,370],matrix:[124,554],matt:76,matter:[1,4,7,21,29,33,36,45,46,66,71,88,102,112,124,132,143,147,152,161,168,175,177,178,184,186,187,189,193,197,213,219,235,322,342,371,391,440,473,497,540],matur:[0,33,54,71,73,143,223],maverick:131,max:[19,49,57,76,81,86,95,118,149,151,152,155,161,178,182,204,221,249,370,391,394,395,405,411,412,417,450,467,535,561,568],max_char_limit:221,max_char_limit_warn:221,max_command_r:221,max_connection_r:221,max_damag:340,max_dbref:541,max_depth:568,max_dist:[182,349],max_entri:221,max_heal:340,max_hp:86,max_l:182,max_length:[69,182,194,391],max_lin:554,max_nest:555,max_new_exits_per_room:409,max_nr_charact:[0,83,149,221,228],max_nr_simultaneous_puppet:221,max_nr_simultaneus_puppet:0,max_num_lin:613,max_numb:417,max_pathfinding_length:370,max_popular:613,max_rmem:559,max_siz:[368,370,561],max_slot:[132,411],max_steal:151,max_target:341,max_tim:368,max_unexplored_exit:409,max_us:407,max_valu:[387,608],max_w:182,max_width:182,maxalex:0,maxconn:208,maxdelai:[489,503,504,523],maxdepth:479,maxdiff:[253,324,392,423,592,603],maximum:[57,69,84,95,98,105,110,124,126,149,155,181,186,204,221,228,319,338,339,340,341,342,349,370,387,395,450,474,479,537,545,552,554,555,568],maxiumum:368,maxlengthvalid:[221,228],maxnum:568,maxrotatedfil:561,maxsplit:545,maxstack:[81,376,377],maxthread:537,maxval:[0,161,555,568],maxvalu:555,maxwidth:554,may_use_red_door:43,mayb:[1,14,15,16,20,21,23,29,43,47,69,75,78,82,88,124,128,138,139,141,145,147,149,150,155,163,174,177,178,179,182,184,189,197,209,215,217,236,290,313,323,390,510],mcclain:76,mccormick:76,mccp:[34,206,225,226,488,497,500],mccp_compress:505,mcintyr:76,mcmillan:0,md5:205,meadow:[32,47,75,82,135,185,555],meal:[377,417],mean:[0,6,7,8,9,11,12,14,15,16,17,19,20,21,23,29,32,34,35,36,37,38,41,43,44,45,47,49,53,55,56,59,61,63,67,69,70,72,74,81,82,88,100,101,102,105,110,112,118,122,123,124,125,126,130,131,132,134,135,136,137,138,139,140,141,143,144,146,147,150,151,152,155,157,161,163,168,169,170,171,175,177,178,180,182,184,187,188,191,193,195,196,199,205,212,213,217,218,219,220,221,223,228,229,230,236,242,249,287,300,305,323,370,373,384,390,395,405,407,409,412,413,414,418,441,469,472,474,478,479,483,487,492,516,532,540,542,545,552,554,555,559,561,564,565,568],meaning:[237,253],meaningless:191,meant:[0,21,33,37,44,49,50,52,53,57,67,75,82,96,118,120,123,125,126,134,138,139,141,171,174,175,188,209,221,235,265,305,326,338,339,340,341,342,362,391,395,407,418,436,442,464,474,497,546,568],meanwhil:33,measaur:8,measur:[8,149,191,217,221,234,251,370,411,412,413,523,524,568],meat:[132,142,148,158,164,166,194],mech:[176,620],mechan:[0,9,19,20,23,27,29,43,44,49,94,120,125,126,132,146,147,161,169,177,178,181,186,188,191,196,197,221,228,229,233,306,341,346,391,407,468,479,487,492,496,502,510,521,532,542,550,553,557,563,614,619],mechcmdset:179,mechcommand:179,mechcommandset:179,meck:179,med:66,medan:66,media:[57,76,126,138,221,520,537,564,576,577,578,580,581,582,583,584,608],media_root:221,media_url:221,median:182,mediat:177,mediev:323,medium:[57,149,221],mediumbox:501,meet:[1,4,123,138,146,286,362,536],mele:[86,120,161,342,407],melt:[322,323],mem:[221,252],member:[14,19,51,69,149,189,221,247,248,250,474,568],membership:[136,189],memori:[0,8,21,23,24,33,49,54,56,69,72,74,86,139,143,157,167,171,205,211,217,221,228,252,256,271,272,378,474,486,487,525,535,540,544,553,559,563,568],memoryusag:525,memplot:[225,226,488,522],menac:185,meni:265,mental:[132,188],mention:[14,15,16,17,23,33,34,48,55,63,71,72,128,134,136,141,143,147,167,168,179,182,188,189,215,217,236,281],menu:[0,1,10,21,24,43,45,54,83,95,101,117,121,126,128,129,132,137,146,147,149,158,191,197,201,209,213,218,221,225,226,242,259,264,265,266,301,302,303,306,380,406,407,408,412,418,436,439,450,460,462,475,479,490,492,544,562,620],menu_cmdset:552,menu_data:29,menu_edit:265,menu_kwarg:412,menu_login:[0,106,225,226,259,260,620],menu_modul:552,menu_module_path:552,menu_quit:265,menu_setattr:265,menu_start_nod:436,menu_templ:[29,552],menuchoic:[29,552],menudata:[304,412,418,439,450,476,552],menudebug:[0,29,552],menufil:552,menunod:184,menunode_fieldfil:450,menunode_treeselect:462,menunodename1:29,menunodename2:29,menunodename3:29,menuopt:462,menutest:133,menutre:[29,152,552],mercenari:163,merchandis:149,merchant:[101,117,126,149,176,418,620],merchantcmdset:184,mercuri:71,mere:[98,126,252,376,387],merg:[0,9,23,24,29,32,82,100,123,125,128,131,136,139,140,141,149,165,168,174,175,233,234,235,236,362,376,434,442,479,482,516,552],merge_prior:552,merger:[21,105,235,236],mergetyp:[21,29,178,235,434,442,550,552,553],merit:140,mess:[8,14,19,20,58,119,128,217,462],messag:[0,2,8,11,12,15,17,19,20,23,27,29,30,32,34,35,37,39,42,44,45,55,62,63,65,66,72,75,77,82,88,95,96,100,101,104,105,114,126,128,129,131,133,134,135,140,141,143,145,147,149,151,161,169,171,172,174,175,176,177,178,179,183,186,191,201,204,207,215,217,218,220,221,223,228,229,233,236,237,240,242,247,248,249,255,256,257,258,265,285,287,300,305,306,308,313,316,322,324,326,329,335,338,342,364,371,391,395,400,401,407,412,432,434,439,440,441,442,447,450,458,472,474,481,492,494,501,503,504,510,511,512,515,516,518,520,529,531,533,535,537,548,550,552,553,555,561,565,566,568,620],message_rout:52,message_search:257,message_tag:221,message_templ:191,message_transform:256,messagemiddlewar:221,messagepath:[62,620],messagewindow:52,messeng:432,messsag:308,meta:[37,49,138,196,220,221,542,559,576,577,578,580,581,584,588,591,594,608],metaclass:[49,69,237,542],metadata:[37,133,447,494],metavar:300,meter:[0,98,126,387,395],method:[0,1,2,6,11,12,13,14,19,20,21,24,29,32,33,35,39,41,43,45,46,47,48,49,52,54,55,59,63,67,69,70,77,82,83,88,100,101,105,108,109,112,113,114,118,122,124,128,130,131,132,133,135,136,137,140,141,144,145,151,152,155,157,161,163,169,172,173,175,177,178,180,181,182,183,184,186,187,189,190,191,192,194,195,196,197,198,220,221,228,230,231,233,235,236,237,239,242,243,247,249,250,252,253,256,257,258,263,265,266,271,273,274,277,278,284,287,296,300,303,305,308,309,310,313,316,319,322,324,332,335,338,339,340,341,342,343,346,349,355,358,362,364,368,371,373,376,378,380,390,391,392,394,395,401,408,411,412,414,417,423,434,439,440,441,442,446,447,452,455,458,464,465,466,469,470,472,474,481,486,487,489,494,497,498,499,501,502,503,504,505,510,512,515,518,520,521,523,524,528,530,531,532,533,535,540,542,543,545,546,548,550,552,553,554,555,556,559,560,561,562,563,565,566,567,568,578,584,588,589,591,592,594,614,617,619,620],methodnam:[253,263,266,269,275,278,282,288,297,299,309,314,317,320,324,327,330,333,336,343,347,356,359,361,368,378,382,385,388,392,394,401,421,422,423,424,425,426,427,428,429,437,443,448,453,456,459,461,487,518,528,560,566,573,592,603,609],metric:390,mez:110,michael:76,microsecond:14,microsoft:[105,213],mid:[71,180],middl:[23,110,126,152,172,182,217,339,368,455,545],middleman:208,middlewar:[0,221,225,226,574,598],midnight:[1,100,175],midst:146,midwai:61,mighht:186,might:[1,6,9,11,16,17,18,20,21,23,29,30,33,35,39,41,44,45,48,55,56,61,63,66,78,81,82,100,101,102,105,110,113,116,121,122,126,130,132,133,134,147,169,171,172,173,175,177,178,181,186,188,190,191,192,193,194,196,197,198,203,205,207,211,212,215,217,218,219,220,236,240,242,300,313,338,358,447,458,474,481,521,542,545,550,562,568,591,608],mighti:[19,105,139,172],migrat:[0,3,4,5,8,11,46,69,76,105,126,128,138,189,194,205,210,211,213,216,218,479,620],mike:242,million:[49,194,205],milton:[92,149,417],mime:[76,257,548],mimic:[0,8,11,14,27,44,130,149,152,177,205,221,258,395,464,531,550],mimick:[0,27,131,177,523,550,553],mimim:543,min:[44,89,95,118,151,152,161,175,182,221,277,394,395,409,450,555,556],min_damag:340,min_dbref:541,min_heal:340,min_height:554,min_length:221,min_shortcut:[82,265],min_valu:608,min_width:554,mind:[15,16,29,55,56,86,98,100,110,125,126,130,140,143,144,147,149,150,152,167,168,188,195,205,209,287,313,387,407,458,494,568],mindex:234,mine:[59,101,149,219,555,572],mini:[41,59,105,130,138,139,141,416],miniatur:146,minim:[8,45,54,76,112,124,147,150,178,219,221,390,479],minimalist:[23,71,169],minimum:[0,45,82,88,95,110,118,126,131,149,169,177,196,221,338,340,341,395,406,407,417,450,497,537,542,554,555,563,568],minimum_create_permiss:589,minimum_list_permiss:589,minimumlengthvalid:221,mininum:554,minlengthvalid:[221,228],minor:[149,216,236,380],mint:[12,208,213],minthread:537,minu:[69,136,474,556],minut:[20,44,49,100,150,171,175,178,186,200,212,221,247,252,277,313,409,535,556,568],minval:[0,161,555,568],mirc:504,mirror:[45,107,124,143,225,226,259,396,620],mirth:104,mis:[163,168],misanthrop:136,miscelan:544,miscellan:[125,126,137,138],misconfigur:205,miser_factor:412,misfortun:152,mismatch:[34,568],miss:[0,19,54,66,133,149,168,176,182,187,213,215,217,322,324,338,339,340,341,342,391,456,478,497,620],missil:[179,341],mission:197,mistak:[0,12,51,128],mistaken:0,mistakenli:0,misus:217,mit:[200,545],mitig:[168,219,618],mix:[0,11,14,23,29,59,61,66,78,81,118,124,126,129,136,140,155,157,171,173,188,194,228,249,258,305,313,323,370,391,395,416,474,478,479,536,543,546,554,555,568,620],mixabl:305,mixer:305,mixer_flag:305,mixin:[0,11,39,86,132,139,158,170,171,225,226,259,273,396,402,405,419,423,424,425,426,427,478,526,566,574,591,594,607,611,612,613,614,616,619],mixtur:[149,305,555],mkdir:[4,189,213],mktime:175,mmo:120,mmorpg:150,mob0:167,mob:[16,35,45,92,121,130,132,146,147,151,167,225,226,236,242,259,396,412,438,442,443,479,546],mob_data:167,mob_db:167,mob_vnum_1:167,mobcmdset:440,mobdb:167,mobil:[16,43,146,149,204,412,440,469],moboff:440,mobon:440,mock:[132,323,378,486,566],mock_author:453,mock_delai:378,mock_evmenu:424,mock_git:453,mock_join_combat:424,mock_randint:[161,422,423,428],mock_random:401,mock_repeat:253,mock_repo:453,mock_spawn:422,mock_tim:[320,394,528],mock_tutori:253,mockdeferlat:566,mockdelai:566,mocked_idmapp:528,mocked_o:528,mocked_open:528,mocked_randint:385,mockrandom:324,mockval:566,mod:[0,118,207,376,377,378,394,395,478],mod_import:568,mod_import_from_path:568,mod_or_prototyp:478,mod_prototype_list:478,mod_proxi:207,mod_proxy_http:207,mod_proxy_wstunnel:207,mod_sslj:207,mode:[0,6,8,10,13,21,24,26,27,29,34,54,62,74,79,100,103,114,124,134,139,143,144,149,152,178,191,194,197,207,208,212,213,219,221,222,225,241,249,252,253,254,263,329,368,370,373,407,412,434,440,474,492,497,502,509,520,521,530,546,550,552,555,561,568,620],mode_clos:521,mode_init:521,mode_input:521,mode_keepal:521,mode_rec:521,model:[0,2,14,33,35,37,38,44,47,48,49,50,51,59,62,74,87,118,120,126,128,131,136,149,177,189,190,193,196,197,221,225,226,227,228,230,255,256,257,319,395,463,471,474,480,483,487,488,498,539,540,541,543,544,549,557,558,560,564,565,568,576,577,578,580,581,582,583,584,588,591,608,612,613,614,618,619,620],model_inst:564,modeladmin:[578,580,581,582,583,584],modelattributebackend:540,modelbackend:600,modelbas:559,modelchoicefield:[576,581],modelclass:[14,47],modelform:[576,577,578,580,581,582,584,608],modelmultiplechoicefield:[576,578,580,581],modelnam:[221,237,256,464,466,542],modelseri:[196,591],modelviewset:594,moder:[78,112,181,313],modern:[0,14,17,55,71,105,106,126,173,188,200,208,219,221,505],modgen:[81,377],modif:[1,23,32,54,67,81,100,101,102,125,186,191,207,212,221,395,538,608],modifi:[0,1,13,14,19,21,23,24,29,32,33,39,43,44,45,49,50,52,53,61,63,74,75,82,83,88,91,93,96,100,101,102,105,106,112,116,118,120,124,125,126,128,129,130,132,133,134,135,138,140,141,142,143,144,145,146,149,150,152,166,167,168,169,170,174,177,181,183,191,192,196,199,205,212,218,220,221,223,225,228,236,249,256,259,265,287,300,305,306,308,322,323,326,335,338,339,340,341,342,346,358,374,375,377,378,380,384,391,394,395,416,417,441,442,466,472,474,479,487,540,542,546,552,559,564,567,576,597,608,612,613,614,616,618,619],modul:[0,8,9,11,14,15,17,20,21,23,25,27,29,32,33,34,35,39,44,45,46,49,54,63,67,71,74,77,78,82,84,85,86,88,89,90,91,93,95,97,98,100,104,105,106,109,110,112,113,115,116,119,120,122,124,125,126,128,130,132,133,134,137,138,139,140,141,142,144,149,151,152,155,157,158,165,167,168,169,175,179,180,184,191,196,201,203,204,211,218,220,221,233,234,236,237,242,244,245,246,249,251,253,265,268,269,277,280,281,284,285,286,288,292,296,300,303,305,308,310,313,316,319,322,323,324,338,339,340,341,342,346,355,358,364,370,372,376,384,387,390,391,394,395,408,412,417,420,428,429,434,440,441,442,448,450,455,458,462,464,469,470,473,474,477,478,479,483,485,486,487,489,491,492,496,497,501,509,511,512,515,516,519,521,523,524,525,530,532,533,534,540,542,543,544,545,546,547,548,549,550,551,552,553,555,556,566,568,573],modular:0,module1:125,module2:125,module_path:372,module_with_cal:555,modulepath:501,mogilef:76,moifi:346,mold:144,mollit:30,moment:[0,21,33,48,66,74,101,139,152,168,179,186,221,228,370,482],mona_lisa_overdr:145,monei:[69,78,126,147,149,150,189,217,408],monetari:[127,313],mongodb:76,monitor:[0,8,36,70,129,187,483,497,516,559],monitor_handl:[0,36,129,225,483],monitorhandl:[0,24,34,225,226,480,620],monlit:136,mono:1,monster:[33,39,43,131,139,144,147,149,151,161,168,172,242,407,412,417,479],monster_move_around:144,month:[0,76,89,100,126,127,175,208,217,221,277,556,561,568],monthli:[127,175],montorhandl:36,moo:[71,73,130,132,168,200,467,555],mood:[101,118,146,149,150,395],moon:[1,170,175],moonlight:136,moonlit:136,moor:[104,146],moral:[9,132,412,417],morale_check:[161,417],more:[0,1,4,6,7,8,9,11,12,13,14,15,16,17,18,19,20,21,23,24,25,27,29,30,32,33,34,37,38,39,41,44,45,47,48,49,52,54,55,56,58,62,63,64,66,67,69,70,71,72,77,78,79,81,82,83,84,87,91,93,94,98,100,101,102,104,105,108,109,110,112,113,114,116,117,118,119,120,121,123,124,125,127,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,150,151,152,155,157,161,163,164,165,167,169,170,171,172,174,175,177,178,179,180,181,182,183,186,187,188,189,190,191,193,194,195,196,197,200,202,204,205,208,210,211,212,213,217,218,219,220,221,223,225,227,228,230,231,234,235,236,241,242,247,248,249,252,253,254,256,257,259,265,270,277,280,281,287,290,292,300,303,305,313,316,319,322,338,339,340,341,342,346,358,362,370,371,372,373,376,387,390,391,395,405,407,408,411,413,414,417,418,425,434,436,440,441,442,455,458,462,465,467,472,474,478,479,481,502,504,507,516,523,524,533,538,540,541,542,545,546,548,549,550,551,552,553,554,555,559,565,566,568,569,581,590,591,608,617],more_command:553,more_funcparser_cal:32,morennanoth:253,morennthird:253,moreov:[44,217],morn:[94,95,346,450],morph_engli:571,morpholog:571,mortal:33,mosso:76,most:[0,8,9,11,12,14,15,18,19,20,21,23,24,25,29,33,34,35,37,39,45,46,48,49,50,51,52,54,55,59,61,63,67,69,70,71,72,73,75,81,82,88,98,100,101,102,105,112,116,118,124,125,126,127,128,131,132,133,134,135,136,137,138,140,143,144,145,146,149,150,151,152,157,161,167,168,169,172,173,175,177,178,180,181,182,186,188,189,191,194,197,205,212,215,217,219,220,221,223,228,231,235,236,239,242,250,258,265,310,322,323,338,339,340,341,342,349,358,368,370,371,387,390,391,395,413,418,442,466,467,470,473,474,478,479,482,486,515,520,530,540,541,542,543,552,553,559,560,566,568,613],mostli:[0,29,49,52,54,63,83,100,124,149,161,168,177,186,191,197,217,235,254,340,362,371,380,384,390,512,576],motiv:[15,16,39,130,132,147,148,407,503,504,510,511,512,515,520,521,532,533],mount:212,mountain:[71,104,105],mous:[52,60,221,552],mouth:364,movabl:305,move:[0,2,12,16,17,19,23,27,29,30,39,78,81,82,95,100,101,102,105,118,121,123,124,126,132,138,139,142,143,144,146,147,149,152,158,169,172,174,176,178,179,182,184,186,188,189,194,195,196,197,200,205,209,216,236,242,248,265,286,305,306,308,313,316,338,341,342,344,358,362,364,371,395,405,407,409,411,425,440,441,442,450,465,469,474,524,542,546,553,620],move_around:[139,144],move_callback:252,move_delai:252,move_hook:474,move_obj:362,move_posit:305,move_to:[0,39,102,140,155,180,184,358,442,474],move_typ:[0,180,184,306,362,405,442,474],movecommand:174,moved_obj:[306,362,405,442,474],moved_object:[155,405,474],movement:[0,43,116,120,124,126,155,169,180,252,338,342,358,370,371,442,474],movementfailcmdset:174,mover:342,mptt:192,mratio:[234,251],msdp:[0,67,497,516],msdp_list:[0,497],msdp_report:[0,497],msdp_send:497,msdp_unreport:[0,497],msdp_var:516,msg:[0,1,6,7,11,13,14,15,19,20,23,24,27,29,30,35,36,39,41,45,52,55,63,69,70,82,86,87,88,96,98,100,101,102,103,104,105,107,122,126,128,129,139,140,141,143,144,145,151,152,157,161,167,169,170,171,172,173,174,175,177,178,180,183,184,186,191,204,221,225,228,229,230,237,239,242,243,247,256,257,258,300,305,308,319,322,326,329,370,371,372,373,387,391,395,407,414,432,434,447,470,474,503,504,531,546,548,550,552,553,561,566,568,577,578,584,620],msg_all:178,msg_all_sess:[23,237],msg_arriv:[100,102],msg_channel:247,msg_char:305,msg_cinemat:310,msg_content:[0,20,23,32,39,44,59,81,100,101,102,151,175,179,180,190,191,376,474],msg_db_tag:578,msg_help:249,msg_leav:[100,102],msg_locat:474,msg_other:313,msg_receiv:474,msg_room:305,msg_self:474,msg_set:543,msg_sitting_down:140,msg_system:305,msg_type:391,msgadmin:578,msgform:578,msglauncher2port:[492,501],msgmanag:[257,258],msgobj:256,msgportal2serv:501,msgserver2port:501,msgstatu:[492,501],msgtaginlin:578,mssp:[138,220,221,225,226,488,500],mssp_meta_modul:221,mtt:519,much:[0,1,2,6,7,8,12,14,15,16,17,29,33,35,39,44,48,49,54,55,59,66,72,81,82,88,100,102,105,110,112,118,119,124,131,132,133,134,136,139,141,143,144,146,149,150,155,161,167,170,175,177,178,180,181,182,184,186,190,194,195,197,198,205,213,216,217,221,231,236,241,250,265,277,319,342,370,376,384,390,391,395,406,412,413,417,421,434,441,462,532,540,543,545,546,547,554,568,586,597],muck:[132,168],mud:[0,9,17,34,35,38,42,45,48,52,59,61,63,70,71,74,75,82,92,93,100,105,120,126,130,131,134,138,143,146,147,150,152,167,173,176,177,178,182,186,188,190,200,202,203,205,206,207,210,212,213,215,217,218,220,221,231,236,239,342,407,411,413,417,439,489,505,506,507,512,515,516,519,546,556],mudbyt:200,mudconnector:[200,254],muddev:[189,213,215],mudinfo:[0,133,221,254],mudlab:200,mudlet:[0,206,507],mudmast:206,mudprog:[100,126],mudramm:206,mudstat:254,muhammad:567,muircheartach:[110,455],mukluk:206,mult:[32,43,81,376,394,395,555],multi:[0,7,21,29,45,55,82,119,121,125,126,128,130,132,135,139,140,142,145,146,147,191,200,212,220,221,234,252,266,305,323,368,370,371,391,412,462,467,474,533,552,568,616],multiaccount_mod:9,multidesc:[225,226,259,311,620],multilin:567,multilink:[124,371],multimatch:[0,21,145,221,234,391,474,555,568],multimatch_str:[228,391,474,568],multimedia:[0,52,76],multipl:[0,7,11,16,19,20,21,23,32,33,36,39,43,45,46,48,49,51,56,63,70,71,82,85,86,88,93,100,104,108,110,119,120,124,126,131,132,136,138,139,143,146,147,151,152,157,169,171,173,175,177,191,205,210,217,220,221,228,233,235,240,241,242,247,249,251,252,268,270,272,275,281,288,296,322,326,332,338,340,341,346,370,371,376,377,378,384,387,391,394,408,411,414,432,442,462,470,472,474,478,479,487,490,494,497,501,516,524,540,541,546,552,554,555,565,566,568,577,584,609],multiplay:[0,19,93,126,130,132,148,149,150,168,200],multiple_tag:275,multipleobjectsreturn:[228,229,231,256,258,275,277,287,305,306,307,313,316,326,335,338,339,340,341,342,346,355,358,362,368,372,373,378,380,390,391,394,400,405,407,409,412,413,416,432,434,436,440,441,442,458,466,473,474,478,482,485,499,525,540,543,556,560],multipli:[32,81,143,349,395],multisess:[24,62,197,221,407,552,620],multisession_mod:[0,13,23,29,45,51,131,149,191,194,197,206,221,228,239,243,326,474,533],multitud:[105,168],multivers:620,multumatch:474,mundan:[146,179],murri:568,muse:200,mush:[4,71,85,108,126,130,132,176,177,178,189,200,268,332,620],mushclient:[34,206,497,507],musher:200,mushman:71,mushpark:217,music:53,musket:136,musoapbox:[168,200],must:[0,1,7,8,9,11,12,13,14,17,21,23,27,29,32,33,34,35,36,37,38,39,41,43,44,47,48,49,50,51,52,53,54,55,59,60,63,66,67,72,74,75,77,78,81,85,86,87,97,100,102,110,111,112,114,118,124,125,126,128,131,132,133,135,138,139,140,141,143,144,145,147,150,151,152,155,157,161,163,167,169,172,175,178,182,184,187,191,193,194,196,201,202,204,206,207,208,212,213,215,217,218,219,220,221,223,229,234,235,237,242,247,253,256,257,258,268,271,277,280,281,292,305,308,313,316,319,322,335,338,339,340,341,342,349,370,371,373,376,377,390,391,395,407,409,410,411,412,414,417,434,439,441,442,447,455,462,464,466,467,469,474,477,478,481,483,487,492,497,510,512,515,532,534,535,540,541,542,543,545,546,547,548,549,550,551,552,553,555,556,562,563,564,565,566,568,569,571,577,584,591,599,616,617],must_be_default:236,mustn:124,mutabl:[0,2,81,376,549,620],mute:[18,19,109,228,247,256,296],mute_channel:247,mutelist:[19,256],mutual:[434,541,565],mux2:[73,254],mux:[23,62,71,85,109,126,130,132,134,169,179,219,232,250,268,295,296,297,620],mux_color_ansi_extra_map:[85,268],mux_color_ansi_xterm256_bright_bg_extra_map:85,mux_color_xterm256_extra_bg:[85,268],mux_color_xterm256_extra_fg:[85,268],mux_color_xterm256_extra_gbg:[85,268],mux_color_xterm256_extra_gfg:[85,268],mux_comms_cmd:[109,225,226,259,260,620],muxaccountcommand:[250,329,380],muxaccountlookcommand:239,muxcommand:[0,1,23,129,133,169,171,172,173,174,191,221,225,226,232,238,239,240,241,242,247,248,249,251,252,254,281,285,303,316,329,332,335,340,341,346,349,355,364,380,384,436,442,452,474,550],mvattr:[26,133,242],mxp:[0,34,60,206,221,225,226,249,488,497,500,512,515,545,552,567,568],mxp_enabl:[0,221],mxp_outgoing_onli:[0,221],mxp_pars:507,mxp_re:545,mxp_sub:545,mxp_url_r:545,mxp_url_sub:545,my_callback:534,my_component_respons:275,my_datastor:69,my_dict:275,my_func:144,my_github_password:12,my_github_usernam:12,my_identsystem:38,my_int:275,my_list:275,my_other_respons:275,my_other_sign:275,my_port:63,my_portal_plugin:63,my_respons:275,my_script:44,my_server_plugin:63,my_servic:63,my_sign:275,my_view:196,my_word_fil:[112,390],myaccount:[47,135],myaccountnam:145,myapp:69,myarx:189,myattr:[14,228],mybool:14,mybot:247,mycar2:38,mychair:47,mychan:19,mychannel1:247,mychannel2:247,mychannel:[19,56,247],mychargen:29,myclass:7,mycmd:[0,23,33,492],mycmdget:141,mycmdset:[21,23,133,141],mycommand1:21,mycommand2:21,mycommand3:21,mycommand:[11,21,23,33,67,133,141,173,566],mycommandtest:566,mycompon:52,myconf:4,mycontrib:11,mycontribnam:125,mycss:52,mycssdiv:52,mycustom_protocol:63,mycustomchannelcmd:19,mycustomcli:63,mycustomview:74,mydata:14,mydatastor:69,mydbobj:14,mydefault:32,mydhaccount:212,mydhaccountt:212,mydhacct:212,mydict:14,myevennia:202,myevilcmdset:[21,235],myevmenu:29,myfixbranch:12,myformclass:54,myfunc:[11,29,32,48,55,568],myfuncparser_cal:32,myfunct:11,mygam:[0,1,6,8,10,11,12,13,14,15,16,19,20,21,25,29,34,35,39,43,44,49,50,51,52,54,63,66,69,74,76,78,82,83,84,85,88,90,93,94,96,97,99,103,104,105,106,108,109,112,115,116,118,123,124,126,128,129,132,133,135,137,138,139,140,141,143,144,151,152,155,157,161,163,165,167,168,169,170,171,173,174,175,177,178,179,180,182,183,184,185,187,189,191,193,194,195,196,197,198,201,204,205,208,209,210,211,212,213,215,216,217,218,220,221,223,225,259,265,268,296,323,329,332,344,346,349,355,357,365,367,384,390,391,395,408,452,517,566,568],mygamedir:128,mygrapevin:247,mygreatgam:54,myguild:135,myhandl:46,myhousetypeclass:242,myinstanc:69,myircchan:247,mykwarg:29,mylayout:52,mylink:128,mylist1:14,mylist2:14,mylist:[9,14,136,542],mylog:20,mymap:[104,124],mymenu:29,mymethod:167,mymodul:48,mymud:[10,207],mymudgam:[217,221],mynam:[149,212,214],mynestedlist:549,mynod:29,mynoinputcommand:23,mynpc:191,myobj1:47,myobj2:47,myobj:[14,20,35,44,242,487],myobject:[14,187],myobjectcommand:1,myothercmdset:21,myownclass2:139,myownclass:139,myownfactori:63,myownprototyp:43,mypassw:281,mypassword:50,myperm:543,myplugin:52,mypobj:14,myproc:63,myproc_en:63,myprotfunc:43,mypwd:214,myquest:414,myrecip:88,myreserv:32,myroom:[44,47,136,167,242],myros:39,myscript2:135,myscript:[44,47,49,135],myself:[14,59,150,555,572,573],myserv:281,myservic:63,mysess:45,mysql:[4,131,221,222,568,620],mysqlclient:205,myst:620,mysteri:[33,38,149,211],myston:145,mystr:14,mytag2:543,mytag:[47,52,543],mytestobject:11,mytestview:54,mythic:146,mytick:487,mytickerhandl:487,mytickerpool:487,mytrait:[118,395],mytupl:14,myusernam:50,myvar:23,myview:74,myxyzroom:124,n_objects_in_cach:221,naccount:533,nail:[88,322],naiv:[110,237,256,347,362,464,466,542],nake:23,name1:242,name2:242,name:[0,1,2,4,5,6,7,8,10,11,12,13,14,15,16,17,19,21,23,26,29,30,32,33,34,35,36,38,39,41,43,44,45,46,47,49,50,51,52,54,55,58,59,63,64,67,69,70,72,74,75,76,77,81,82,86,88,89,93,95,100,101,102,105,106,112,113,118,119,123,124,126,128,131,132,133,134,135,136,137,138,140,141,143,144,145,146,147,151,155,157,158,161,163,165,167,168,169,172,174,175,178,180,182,184,185,186,188,189,190,191,192,193,194,195,196,197,201,202,204,205,206,208,209,211,212,217,218,219,220,221,225,228,229,230,231,233,234,235,236,237,239,240,242,247,248,249,250,251,252,253,254,256,257,258,265,271,272,273,274,275,277,281,284,286,287,290,296,300,303,305,306,308,310,316,319,322,323,335,340,341,349,355,361,362,364,370,371,372,373,376,377,378,380,390,391,394,395,406,408,412,414,418,440,442,450,455,456,458,462,464,465,466,467,472,473,474,478,479,481,482,483,485,487,492,495,497,498,499,501,502,504,509,512,515,516,519,520,521,524,533,535,537,540,541,542,543,545,546,547,548,550,551,552,553,555,559,560,561,562,564,565,566,568,569,571,572,577,584,588,592,593,594,599,600,608,613,614,619,620],name_gener:[0,110,225,226,259,444,620],namechang:187,namecolor:462,namedtupl:284,nameerror:[6,143],namegen:[110,225,226,259,444,454],namegen_fantasy_rul:[110,455],namegen_first_nam:[110,455],namegen_last_nam:[110,455],namegen_replace_list:[110,455],namelist:329,namesak:9,namespac:[49,52,81,197,287,300,479,535,546,561,585],namn:66,napoleon:128,narg:300,narr:342,narrow:[50,124,140,141,182,186],nativ:[6,44,50,52,59,70,76,77,128,136,149,213,446,535,537,619],natrribut:171,nattempt:29,nattribut:[0,24,29,49,171,178,242,271,472,479,531,540,542,548,552],nattributehandl:[0,540],nattributeproperti:[0,14,272,540],natur:[14,17,19,20,47,70,130,149,161,200,229,376,554],natural_height:554,natural_kei:[221,540],natural_width:554,navbar:[0,54],navig:[10,29,105,124,128,137,182,189,194,195,342,616],naw:[30,206,225,226,488,500],ncar:198,nchar:198,nclient:523,ncolumn:554,ncurs:225,ndb:[0,1,14,15,23,29,44,45,49,82,86,99,123,171,172,178,184,228,231,252,349,362,473,482,531,542,552],ndb_:[242,479],ndb_del:531,ndb_field_nam:271,ndb_get:531,ndb_set:531,ndbfield:[86,272],ndk:211,nearbi:[124,149,235,236,237,342],nearli:[120,138,140,545],neat:[102,165,608],neatli:[71,196,568],necess:63,necessari:[4,49,61,63,71,82,83,88,100,102,104,124,137,138,147,168,169,180,181,183,186,187,196,205,218,221,236,237,258,287,300,305,371,442,447,478,479,521,546,552,554,555,562,564,568,577,584],necessarili:[43,70,124,125,126,146,163,168,217,221,568],necessit:534,neck:[14,43,84,316],neck_armor:14,neck_cloth:14,necklac:[84,316],need:[0,1,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,29,32,33,34,35,36,38,39,43,44,45,47,48,49,51,52,53,54,55,58,59,61,63,64,66,67,69,70,72,74,75,76,77,78,79,81,82,83,86,87,88,89,91,93,94,96,97,100,101,104,105,110,112,118,119,122,123,124,125,126,127,128,131,133,134,135,136,137,138,139,140,142,143,144,145,146,147,150,151,152,155,157,161,163,164,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,200,201,202,203,204,205,207,208,209,210,211,212,213,215,216,217,218,219,220,221,223,228,229,230,231,235,237,239,242,247,248,250,256,265,273,281,285,286,287,288,300,305,306,308,310,313,319,322,323,326,335,338,339,341,346,362,364,370,371,372,376,380,390,391,395,405,407,408,409,411,412,413,414,417,434,440,441,442,452,458,462,464,470,473,474,478,479,481,492,494,497,501,509,516,521,523,531,532,533,537,540,542,543,545,546,548,551,552,553,554,555,556,562,563,565,566,568,571,577,579,584,586,613,617,620],need_gamedir:492,needl:335,needless:139,neg:[175,188,221,235,411,550,568],negat:[61,136,407,470,571],negoti:[78,313,506,508,510,519,533],negotiate_s:508,neighbor:[149,181,371],neither:[0,9,14,29,177,209,218,249,384,478,516,540,543,552,569],nelson:76,nenter:29,neophyt:[118,395],neph:110,nerror:66,nest:[0,9,14,16,23,29,32,33,81,110,112,119,145,216,221,228,242,376,391,462,469,474,479,516,549,555],nested_r:242,nestl:105,neswmaplink:[124,371],net:[149,168,200,202,217,229,247,254,505,506,516,519,533],netrc:12,network:[0,63,72,129,130,131,150,200,201,202,204,205,217,219,221,229,247,503,504,509,530,533],neu:265,neural:149,neutral:[32,59,96,152,163,326,407,410,555,572,573],never:[2,7,12,14,16,20,21,23,29,32,37,41,43,48,49,56,69,70,81,93,100,112,118,124,131,138,139,140,143,144,145,147,149,151,155,167,171,175,180,183,186,194,196,208,209,220,221,228,252,286,322,341,342,365,390,391,395,407,440,470,474,531,540,549,568],nevertheless:[29,69,151,188,239,265],new_account:135,new_alias:[237,472],new_arriv:442,new_attrobj:540,new_channel:[135,169,247],new_charact:[152,412,440,474],new_coordin:362,new_create_dict:305,new_datastor:69,new_destin:472,new_hom:472,new_kei:[46,237,472,474,481],new_list:155,new_loc:[242,472],new_lock:[472,481],new_menu:265,new_nam:[46,242],new_name2:242,new_natural_kei:221,new_obj:[35,308,310,474,479,481],new_obj_lockstr:242,new_object:[43,479],new_permiss:472,new_po:305,new_posit:305,new_progress:306,new_raw_str:234,new_room:409,new_room_lockstr:242,new_ros:39,new_scor:306,new_script:[44,135],new_typeclass:[228,542],new_typeclass_path:49,new_valu:[36,540],new_word:568,newbi:130,newbranch:12,newcom:[23,149,163],newer:189,newindex:462,newli:[50,64,101,110,122,136,143,169,185,194,230,242,256,257,265,300,308,310,322,329,370,373,458,465,472,474,479,484,485,548],newlin:[0,23,52,249,546,554],newnam:[23,242,542],newpassword:240,newstr:52,nexist:82,nexit:[11,198],next:[0,1,4,6,7,10,12,15,16,21,23,27,29,30,32,33,35,41,44,50,51,52,53,54,55,56,59,66,67,69,82,88,93,100,101,102,104,105,108,119,124,127,128,131,132,133,134,135,137,138,139,140,141,143,144,145,146,147,149,150,152,155,157,161,167,169,171,172,173,175,177,178,179,180,181,182,183,184,189,191,192,194,195,200,201,202,203,205,208,211,212,213,217,218,219,221,222,265,277,305,308,332,338,339,340,341,342,371,407,408,409,412,441,462,470,492,546,552,553,556,568,616],next_menu_nod:407,next_nod:29,next_node_nam:29,next_stat:[305,308],next_turn:[338,340],nextnod:552,nextnodenam:552,nfe:0,nfkc:228,ng2:554,nginx:[207,219,221],nice:[20,33,54,56,75,78,82,84,88,102,105,112,121,124,139,141,147,157,163,169,175,182,209,210,212,217,313,316,391,478],nicer:[7,134,143],niceti:242,nick:[0,7,13,14,19,24,26,34,39,112,133,168,200,221,228,229,242,247,248,256,391,473,474,504,540,541,591,620],nick_typ:38,nickhandl:[14,38,256,540],nicklist:[229,247,504],nicknam:[7,26,38,39,112,248,391,473,474,504,540,541],nickreplac:540,nickshandl:591,nicktemplateinvalid:540,nicktyp:[391,474],nifti:[141,207],night:[32,94,132,147,161,169,190,208,346,417],nine:[64,221],nineti:569,nit:175,nline:561,nmisslyckad:66,nnode:371,no_act:552,no_channel:[21,23,235,552],no_db:[478,479],no_default:[49,228,542],no_exit:[21,23,178,235,434,439,552],no_gmcp:516,no_log:236,no_match:265,no_mccp:505,no_more_weapons_msg:441,no_msdp:516,no_mssp:506,no_mxp:507,no_naw:508,no_obj:[21,235,434,439,552],no_of_subscrib:578,no_prefix:[228,237,239,240,241,242,247,248,249,250,251,252,253,254,256,265,281,285,296,299,300,303,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,364,376,380,384,391,408,434,436,440,441,442,450,452,462,474,523,550,552,553],no_superuser_bypass:[228,256,470,474,542],no_tel:35,noansi:566,nobj:198,nobodi:221,nocaptcha:194,nocaptcha_recaptcha:194,nocolor:[497,512,515,520,521],nodaemon:10,node1:[29,552],node2:[29,552],node3:[29,552],node4:29,node5:29,node:[0,15,24,43,83,119,132,158,184,304,365,368,370,371,372,373,406,407,412,418,439,450,462,476,490,552],node_:152,node_abort:29,node_apply_charact:[152,406],node_apply_diff:476,node_attack:29,node_background:29,node_betrayal_background:29,node_border_char:[304,552],node_cal:412,node_change_nam:[152,406],node_chargen:[152,406],node_confirm_bui:418,node_confirm_register_act:407,node_confirm_sel:418,node_create_room:304,node_destin:476,node_end:[29,408],node_examine_ent:476,node_exit:29,node_formatt:[29,304,450,552],node_four:29,node_g:408,node_game_index_field:490,node_game_index_start:490,node_guard:29,node_hom:476,node_index:[365,368,371,476,552],node_inspect_and_bui:184,node_join_room:304,node_kei:476,node_loc:476,node_login:29,node_mssp_start:490,node_mylist:29,node_on:29,node_opt:304,node_or_link:[369,371],node_parse_input:29,node_password:29,node_prototype_desc:476,node_prototype_kei:476,node_prototype_sav:476,node_prototype_spawn:476,node_quest:29,node_quit:304,node_readus:29,node_rec:408,node_select:29,node_select_act:407,node_select_enemy_target:407,node_select_friendly_target:407,node_select_use_item_from_inventori:407,node_select_wield_from_inventori:407,node_set_desc:304,node_set_nam:29,node_shopfront:184,node_start:[412,490],node_start_:[412,418],node_start_sell_item:418,node_swap_:[152,406],node_test:29,node_usernam:29,node_validate_prototyp:476,node_view_and_apply_set:490,node_view_sheet:29,node_violent_background:29,node_wait_start:407,node_wait_turn:407,node_with_other_nam:552,nodebox:571,nodefunc:552,nodekei:552,nodenam:[29,412],nodename_or_cal:552,nodetext:[29,304,450,476,552],nodetext_formatt:[29,304,450,476,552],noecho:[143,252],noerror:474,nofound_str:[228,391,474,568],nogoahead:514,nohom:[472,548],noid:391,nois:[140,179],noisi:[217,489,494,502,512,515,523,537],noloc:242,nomarkup:34,nomatch:[82,251,265,550,568],nomatch_exit:82,nomatch_single_exit:82,nomigr:11,nomin:614,non:[0,2,6,7,16,17,19,20,21,23,27,30,32,33,34,41,43,44,45,49,52,54,69,70,75,82,88,115,118,124,126,128,130,131,132,134,136,139,141,145,147,149,151,155,158,161,169,172,174,175,176,182,185,188,196,201,215,218,221,222,228,229,230,231,233,235,247,252,254,256,258,271,287,308,323,349,355,364,373,384,395,412,416,436,441,458,462,464,465,469,472,473,474,477,478,479,482,483,485,487,492,501,515,516,530,531,533,540,542,545,548,549,550,552,553,554,555,565,568,591,594,620],nonc:520,noncombat_spel:341,nondatabas:[531,542],none:[0,1,6,8,13,14,15,16,17,19,21,23,27,29,32,34,35,36,38,43,44,45,47,50,55,59,63,67,69,70,81,82,84,86,88,100,102,104,105,110,118,124,131,133,135,136,139,140,141,145,151,152,155,161,163,167,169,171,173,175,178,180,181,182,183,186,187,191,196,197,221,228,229,230,233,234,235,236,237,239,242,243,244,245,246,247,248,249,250,253,256,257,258,263,265,266,271,272,273,274,275,284,286,287,290,296,300,303,304,305,306,308,310,313,316,322,324,326,335,338,339,340,341,342,346,349,355,358,362,364,365,368,369,370,371,372,373,376,377,380,384,390,391,392,395,405,406,407,408,409,411,412,414,417,418,423,426,430,432,434,436,439,440,441,442,450,452,455,458,462,464,465,467,469,470,472,473,474,476,478,479,481,483,484,486,487,489,490,492,494,496,498,501,502,503,504,511,512,520,521,523,531,532,533,535,536,537,540,541,542,543,545,546,547,548,549,550,551,552,553,554,555,556,559,561,563,564,565,566,568,569,572,573,576,577,578,580,581,582,584,586,588,592,594,600,603,608,613,616,619],nonexistentrecip:322,nonpc:191,nonsens:[0,152,390],noon:[35,66,100,134,177,416],nop:515,nopkeepal:[206,515],noqa:221,nor:[0,6,7,10,12,14,15,21,66,71,91,121,124,126,139,149,158,178,188,207,209,281,300,384,474,478,516,540,543],norecapcha:194,norecaptcha_secret_kei:194,norecaptcha_site_kei:194,norecaptchafield:194,normal:[0,1,7,8,9,11,12,13,14,15,16,17,19,20,21,23,29,32,33,34,35,37,38,39,41,43,45,47,49,51,52,54,55,58,61,64,66,67,69,70,72,74,75,76,78,79,81,89,94,101,105,114,115,118,121,122,124,126,128,130,131,133,134,135,136,139,140,141,143,144,146,149,157,161,165,167,168,169,170,172,173,174,175,178,179,180,182,183,187,188,189,191,195,197,202,205,211,212,216,217,218,220,221,223,228,229,231,233,234,235,236,237,239,242,249,252,256,263,269,277,300,305,313,322,338,339,340,341,362,368,370,371,373,376,384,395,405,408,412,413,417,418,434,440,442,464,469,473,474,476,479,487,492,501,504,505,506,508,510,524,531,533,539,540,541,542,545,546,549,552,553,559,565,566,568,574,591],normal_turn_end:178,normalize_nam:[0,474],normalize_usernam:[0,228],north:[39,60,79,82,100,101,102,104,105,116,124,134,140,172,174,180,182,185,242,265,349,358,364,370,371,372,409,524],north_room:104,north_south:105,northeast:[124,134,242,362,371],northern:[82,105],northwest:[124,242,370,371,372],nose:540,nosql:77,not_clear:409,not_don:537,not_error:492,not_found:[14,242],notabl:[0,8,12,19,55,63,189,215,219,237,242,253,313,376,408,418,496,542,545,549,568],notat:[9,54,242,545,568],notdatabas:49,note:[1,2,5,6,7,8,10,13,14,15,19,20,24,26,32,34,35,39,41,43,44,45,46,48,49,54,56,58,59,60,61,62,66,67,69,70,72,74,76,77,81,84,85,86,88,92,93,94,100,102,109,110,112,114,115,118,119,122,124,126,131,132,133,134,135,136,139,140,141,143,144,145,146,147,149,151,152,157,161,163,168,169,172,175,177,178,179,180,182,184,187,188,189,191,192,193,194,195,197,205,206,211,212,217,218,219,221,225,226,228,229,230,234,235,236,237,239,242,243,244,247,248,249,250,252,253,254,256,257,259,268,269,277,281,286,287,290,300,305,310,313,316,322,323,326,332,335,338,339,340,341,342,344,346,355,357,362,364,370,371,372,373,384,390,391,395,405,407,409,411,412,413,417,434,442,458,462,464,465,469,470,472,473,474,478,479,481,487,489,492,497,501,502,504,505,509,510,511,512,515,516,517,519,520,523,525,526,531,533,537,538,540,541,542,543,545,546,547,548,549,550,551,552,553,554,555,556,559,561,563,564,565,566,568,576,577,589,591,594,597,616,620],notepad:[132,215],noteworthi:128,notfound:568,notgm:169,noth:[6,7,14,16,20,23,32,39,48,55,67,71,81,82,100,102,104,105,124,133,134,139,140,143,145,149,157,167,168,175,178,184,228,242,251,338,342,362,371,407,440,462,474,485,504,540,542,552],nother:198,notic:[4,6,12,15,23,55,56,82,100,101,102,124,134,138,139,140,149,161,175,180,181,186,188,196,197,205,221,265,377,400,505,615],notif:[52,192,211,221,329],notifi:[100,145,203,296,322,338,342,442,478],notification_popup:221,notification_sound:221,notificationsconfig:192,notimplementederror:515,notion:[48,88,157,158,175,178,395],noun:[0,59,112,390,391],noun_postfix:[112,390],noun_prefix:390,noun_transl:[112,390],nov:[2,143],novemb:0,now:[0,1,4,9,10,12,13,14,16,19,20,21,23,29,32,35,37,39,40,43,44,45,48,49,50,52,53,54,55,56,59,61,69,71,74,75,78,81,82,88,89,93,95,100,101,102,105,114,118,119,123,124,126,130,131,132,133,134,136,137,138,139,140,141,143,144,145,146,147,149,150,151,152,155,161,164,165,167,168,169,170,171,172,175,177,179,180,181,182,183,184,185,186,187,188,189,191,193,194,195,196,197,200,201,202,203,204,205,208,210,211,212,213,215,216,217,218,219,223,236,247,249,277,287,313,324,362,366,395,407,434,450,462,470,474,504,512,533,564,566,568],nowher:[105,143,149,371],noxterm256:515,npc:[14,23,29,41,92,100,101,105,110,126,131,132,147,151,158,176,177,189,225,226,259,313,396,402,407,408,417,418,435,436,437,469,620],npc_name:110,npc_obj:110,npcmerchant:184,npcname:183,nr_start:484,nroom:[82,198],nroom_desc:11,nrow:554,nsmaplink:[124,370,371],nsonewaymaplink:[124,371],ntf:215,nthe:434,nudg:[114,199,434,537],nulla:30,num:[32,35,110,155,182,391,455,456,474],num_lines_to_append:561,num_object:136,num_objects__gt:136,num_tag:136,num_total_account:230,number:[0,4,7,8,9,11,14,15,20,21,23,27,29,32,37,38,44,45,46,47,48,49,50,54,55,56,74,75,76,81,83,84,89,90,93,95,98,100,102,104,105,110,112,113,119,123,124,126,128,131,133,136,139,140,141,143,144,145,146,149,152,155,157,161,163,168,169,172,175,177,178,179,182,184,191,195,198,203,204,205,208,212,217,220,221,225,228,229,230,234,235,236,240,242,247,248,249,257,258,277,284,286,287,290,305,316,319,322,338,340,341,364,368,370,371,373,376,378,380,384,387,390,391,408,417,450,455,458,462,472,474,478,479,481,484,490,492,497,503,504,506,510,523,524,533,535,537,540,541,543,545,546,548,550,552,553,554,555,556,559,561,565,568,571,578,593,594,608],number_of_dummi:492,numberfilt:588,numer:[9,98,118,132,147,177,370,387,394,395,545],numericpasswordvalid:221,numpi:525,oak:323,oakbarkrecip:323,oakwood:323,oauth:221,obelisk:[146,441],obfusc:[390,391],obfuscate_languag:[112,390,391],obfuscate_whisp:[112,390,391],obj1:[9,11,14,32,41,43,145,242,303,322,335,342],obj1_search:303,obj2:[9,11,14,32,41,43,145,242,303,322,335,342,546],obj2_search:303,obj3:[14,145,242,322],obj4:[14,145],obj5:14,obj:[0,1,6,11,13,14,20,21,23,32,35,36,38,39,43,44,47,48,49,55,59,69,82,100,118,133,135,136,140,141,143,145,155,157,161,163,167,169,170,180,184,186,187,196,221,228,235,236,237,240,242,248,250,252,253,257,258,263,265,266,274,284,286,287,290,303,305,308,316,319,322,326,329,335,338,339,340,341,342,346,362,376,391,395,409,411,414,418,430,432,434,441,442,450,462,469,470,472,473,474,479,481,482,483,484,521,523,524,531,540,541,542,543,546,548,549,553,555,563,564,565,566,568,576,577,578,581,582,584,589,591],obj_desc:341,obj_detail:442,obj_kei:341,obj_nam:82,obj_or_slot:411,obj_prototyp:479,obj_to_chang:49,obj_typ:[157,413,418],obj_typeclass:341,objattr:[441,469],objclass:[559,568],object1:23,object2:[23,313,474],object:[0,2,4,6,7,8,11,13,15,16,17,19,21,23,24,26,27,29,30,32,33,34,36,37,38,41,43,46,48,49,50,52,53,55,56,58,62,63,67,69,70,71,74,75,77,78,79,81,82,86,87,88,93,94,95,96,100,101,102,104,107,111,112,113,114,117,118,120,121,123,124,126,128,129,130,132,133,137,138,140,142,146,148,151,152,155,158,161,163,167,168,169,171,172,173,174,175,176,177,178,179,181,182,184,186,189,190,191,194,195,196,197,198,200,205,218,219,220,221,225,226,227,228,229,230,231,233,234,235,236,237,239,240,241,242,243,244,247,248,249,250,252,253,254,256,257,258,259,265,266,270,271,272,273,274,275,281,284,285,286,287,288,290,296,300,301,302,303,304,306,308,310,313,316,319,322,323,326,329,335,338,339,340,341,342,346,349,355,358,362,364,368,370,371,372,373,376,377,378,380,391,394,395,396,400,402,405,406,407,408,409,410,411,412,414,416,417,418,420,430,431,432,433,434,436,438,440,442,446,447,448,450,458,462,464,465,466,469,470,476,477,478,479,480,481,482,483,484,485,486,487,490,492,494,496,497,498,499,501,502,505,506,507,508,509,510,511,512,514,516,519,521,523,524,530,531,532,533,535,536,537,540,541,542,543,545,546,547,548,549,550,551,552,553,554,555,559,560,561,562,563,564,565,566,567,568,569,572,574,575,576,577,578,580,582,584,588,589,591,593,594,599,600,602,607,608,609,611,612,613,614,616,617,618,620],object_confirm_delet:619,object_detail:[614,619],object_from_modul:568,object_id:[195,581],object_or_list_of_object:59,object_search:[195,472],object_subscription_set:473,object_tot:[230,472,481,541],object_typ:242,object_typeclass:[566,609],objectadmin:[51,581],objectattributeinlin:581,objectcr:608,objectcreateform:[576,581],objectcreateview:[614,619],objectdb:[0,14,47,49,51,129,194,198,225,472,473,474,479,539,540,548,553,565,576,577,581,584,588,593],objectdb_db_attribut:581,objectdb_db_tag:[577,581,584],objectdb_set:[231,540,543],objectdbfilterset:[588,594],objectdbmanag:[472,473],objectdbseri:[591,594],objectdbviewset:[196,593,594],objectdeleteview:[614,619],objectdetailview:[613,614,619],objectdoesnotexist:[231,258,466,473,482,499,540,543,560],objecteditform:581,objectform:608,objectlistseri:[591,594],objectmanag:[373,472,474,541],objectnam:169,objectpar:[0,39,139,144,170,185],objectpuppetinlin:576,objects_objectdb:69,objectsessionhandl:[13,474],objecttaginlin:581,objectupd:608,objectupdateview:[614,619],objet:170,objid:35,objlist:[32,43,555],objlocattr:[441,469],objloctag:469,objmanip:242,objmanipcommand:242,objnam:[20,49,242],objparam:479,objs2:47,objsparam:479,objtag:469,objtyp:[157,257,410,413],obnoxi:494,obs:542,obscur:[112,126,202,390,391],observ:[15,16,59,70,80,126,134,242,248,346,391,400,442,516,546,568],obtain:[8,23,82,86,102,181,186,212,213,217,265,441],obviou:[19,98,102,124,126,161,180,219,223,387,619],obvious:[16,45,71,77,100,102,130,180,182,543],occaecat:30,occasion:[145,161,217],occat:143,occation:[145,149,554],occur:[6,23,44,52,55,110,168,189,251,300,340,376,377,458,470,474,486,524,552],occurr:[101,186,191,545,551],ocean:[146,217],oct:[2,66,144],odd:[82,147,161,182,188,219,370],odin:[110,455],odor:169,ofasa:110,off:[0,2,4,12,14,16,19,21,23,27,29,33,34,35,44,46,48,54,61,63,64,69,70,71,74,88,93,95,102,104,114,121,124,126,127,130,131,132,134,135,137,139,140,143,145,147,150,151,152,157,161,163,171,172,182,188,191,205,206,212,217,218,221,228,237,252,253,254,256,257,296,316,323,373,376,380,391,406,407,408,412,414,434,440,442,450,470,474,497,505,512,515,531,542,545,546,548,550,552,553,554,561,569,620],off_bal:172,offend:56,offer:[10,11,12,16,21,23,27,29,34,38,41,43,44,48,52,61,63,67,69,71,73,76,78,82,100,105,110,112,119,124,126,127,130,131,133,137,138,139,143,147,149,167,168,171,174,175,177,178,181,182,186,190,191,192,202,217,221,228,235,236,241,242,249,252,265,305,313,346,390,408,409,442,476,483,533,552],offernam:313,offici:[12,51,76,128,202,212,561,620],officia:30,offlin:[17,19,43,189,217,221,241,247,546],offload:[52,407],offscreen:189,offset:[50,391,550,561],often:[6,8,9,12,13,14,17,19,21,23,24,29,41,45,47,48,54,55,62,63,66,69,70,82,87,100,101,124,125,126,128,131,132,135,138,139,143,144,145,146,149,161,168,171,175,178,182,186,217,219,220,221,223,229,235,240,242,250,252,256,257,265,319,338,462,470,473,482,484,492,497,511,531,540,542,543,546,548,554,555,561,568,591,614],ogotai:0,okai:[6,29,105,124,140,149,152,161,169,182,191,211,290,371],olc:[0,24,26,137,242,476,479],olcmenu:476,old:[0,1,8,10,20,21,27,29,33,35,45,49,59,61,70,92,102,105,109,126,128,146,149,167,169,179,181,184,188,189,191,208,213,215,216,217,221,228,235,236,239,242,257,296,310,313,347,391,409,470,474,479,501,541,542,545,548,561,620],old_default_set:11,old_desc:347,old_kei:[46,474],old_nam:46,old_natural_kei:221,old_obj:305,old_po:305,older:[2,13,45,49,54,131,152,189,200,206,213,215,216,242,620],oldnam:542,oliv:61,omit:[43,186,212],on_:265,on_bad_request:494,on_death:86,on_ent:[82,265],on_leav:[82,265],on_nomatch:[82,265],onam:472,onbeforeunload:52,onbuild:212,onc:[1,6,8,9,12,13,14,15,19,23,29,33,35,37,39,44,45,49,52,54,55,57,61,63,66,67,71,78,79,81,82,83,84,87,93,95,97,101,103,104,106,110,111,112,115,118,119,121,122,123,124,126,128,130,131,132,134,136,137,138,139,140,141,142,143,144,147,149,150,151,152,157,163,168,169,174,175,178,179,180,181,182,184,187,188,189,192,194,196,202,205,208,210,212,215,217,218,221,223,228,229,234,237,242,247,250,253,256,265,287,300,303,305,306,307,313,319,326,329,335,338,339,340,341,355,362,366,368,371,376,390,395,400,406,407,408,409,413,434,440,441,442,450,462,474,478,482,485,497,502,515,519,530,540,542,545,552,553,561,566,568],onclos:[63,503,520],onconnectionclos:52,ond:543,one:[0,1,4,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,29,30,32,33,34,35,37,38,39,41,42,43,44,45,47,48,49,51,52,54,55,56,57,58,59,61,66,67,69,70,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,130,131,132,133,134,135,136,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,165,167,168,169,170,171,172,175,177,178,179,180,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,200,201,202,203,205,208,209,212,213,215,216,217,219,220,221,223,227,228,231,234,235,236,237,239,240,242,247,248,251,252,253,256,257,258,265,272,275,280,287,290,292,300,305,306,308,310,313,316,319,322,323,324,326,329,338,339,340,341,342,346,362,368,370,371,372,373,376,377,384,390,391,395,405,407,408,409,411,412,413,414,416,417,418,425,434,436,439,441,442,448,455,458,462,464,465,466,469,470,472,473,474,476,477,478,479,481,482,487,492,494,496,497,502,503,504,512,515,516,524,531,532,533,537,539,540,541,542,543,545,546,548,549,551,552,553,554,555,556,559,560,561,563,564,565,566,568,569,572,581,594,608,609,614,620],one_consume_onli:305,ones:[16,19,20,21,23,26,32,33,34,35,37,43,67,74,82,133,134,135,136,141,150,152,168,169,178,188,189,201,202,212,217,219,221,235,236,237,258,265,287,338,339,340,341,342,409,411,418,455,464,478,479,496,501,533,545,554,562],oneself:407,onewai:242,ongo:[0,44,93,116,126,178,186,313,358],ongotopt:52,onkeydown:52,onli:[0,1,3,6,7,8,10,11,12,13,14,15,16,17,19,20,21,23,27,29,30,32,33,34,35,37,38,39,41,43,44,45,46,47,49,50,51,52,53,54,55,56,58,59,60,61,63,67,69,70,74,75,76,78,79,81,82,84,86,88,93,94,95,97,100,101,102,103,104,105,110,112,118,119,120,121,122,123,124,125,126,129,130,131,132,133,134,135,138,139,140,141,142,143,144,145,146,147,150,151,152,155,157,161,163,167,168,169,170,171,174,175,177,178,179,180,181,182,183,184,186,187,188,189,190,191,193,194,195,196,197,200,201,202,204,205,206,208,209,210,212,213,214,215,216,217,220,221,222,223,225,228,229,230,233,234,235,236,237,239,240,241,242,247,248,249,250,251,252,253,254,256,257,258,265,287,300,303,305,306,307,310,313,322,323,324,329,338,339,340,341,342,346,362,364,365,370,371,372,376,384,387,390,391,395,400,407,409,411,412,413,414,417,436,441,442,450,455,462,466,469,470,472,474,478,479,481,482,483,485,486,487,492,496,497,504,507,509,510,512,515,524,530,531,533,535,536,537,540,541,542,543,545,546,547,548,550,551,552,553,554,555,559,561,563,564,565,566,568,571,576,577,584,608,613,614,616,617,619,620],onlin:[0,5,17,19,39,54,56,71,73,93,95,130,131,132,138,142,144,147,148,149,150,158,164,166,168,169,172,177,178,191,197,200,201,203,204,205,210,220,221,225,239,247,256,258,265,303,450,506,546,620],onloggedin:52,onlook:[59,474],only_:395,only_nod:370,only_obj:411,only_tim:[481,565],only_valid:479,onmessag:[63,503,520],onopen:[63,503,520],onoptionsui:52,onprompt:52,onsend:52,onset:14,ontext:52,onto:[19,21,23,52,124,141,147,180,202,217,236,247,323,417,442,473,504,549,552],onunknowncmd:52,onward:[46,176],oob:[0,23,40,52,62,67,173,206,220,221,228,229,249,326,432,474,497,515,516,520,521,533,552,620],oobfunc:220,oobhandl:559,oobobject:44,ooc:[0,13,19,26,45,103,129,133,135,152,169,191,221,228,231,239,242,243,250,258,329,380,474],ooc_appearance_templ:228,ooclook:45,oop:141,opaqu:17,open:[0,5,6,10,12,21,23,26,27,33,35,41,45,53,54,60,78,82,93,95,100,101,102,105,114,115,116,124,126,127,128,130,131,133,134,137,139,140,141,143,144,149,165,168,169,177,178,189,191,192,194,195,196,197,200,201,202,204,205,208,210,211,213,215,217,219,221,223,242,249,252,257,263,265,303,305,310,313,342,355,358,364,370,412,434,441,450,535,540,548,561,568,620],open_chest:41,open_flag:305,open_parent_menu:265,open_shop:184,open_submenu:[82,265],open_wal:441,openapi:196,opensourc:545,oper:[0,9,14,16,19,20,23,29,32,34,39,41,44,47,48,50,52,53,56,62,66,70,76,81,82,90,93,100,101,124,131,135,136,139,143,168,188,202,208,217,218,221,228,230,233,235,237,239,242,247,252,256,265,296,303,308,322,371,384,391,394,405,441,470,474,479,487,489,492,501,502,506,508,512,514,515,521,523,524,531,532,540,541,542,545,548,552,553,554,555,559,566,568,593,594],opic:253,opinion:88,opnli:540,oppon:[149,177,339,341,377,407,440],opportun:[82,102,149,186,194,342],opportunist:149,oppos:[20,39,132,149,218,219,417,531,543],opposed_saving_throw:[161,417],opposit:[124,133,169,180,242,371,434],opt:[52,122,152,161,169,300],optim:[0,8,14,19,20,23,37,44,48,69,124,131,167,171,181,205,221,237,256,407,478,479,527,530,540],optimiz:407,option100:29,option10:29,option11:29,option12:29,option13:29,option14:29,option1:29,option2:29,option3:29,option4:29,option5:29,option6:29,option7:29,option8:29,option9:29,option:[0,1,4,6,7,8,10,11,12,13,14,18,19,20,21,23,26,27,32,33,34,35,37,39,43,44,47,52,54,55,59,61,67,69,71,72,74,77,78,81,84,86,88,93,100,103,105,110,112,118,119,120,122,123,125,126,128,130,131,133,134,135,137,138,141,149,152,161,163,168,172,175,178,184,191,194,195,205,206,207,208,209,212,213,214,215,216,220,221,222,225,228,229,230,233,234,235,236,237,239,240,242,247,249,250,253,254,256,257,258,265,277,284,286,287,299,300,303,304,305,306,307,308,310,313,316,322,326,329,335,340,341,342,346,349,362,364,366,368,370,371,372,373,376,380,384,390,391,394,395,405,407,408,412,413,414,417,418,430,432,434,436,439,442,450,455,458,462,464,465,467,469,470,472,473,474,476,478,479,481,482,483,484,485,486,487,489,490,492,494,497,498,501,502,504,505,506,507,508,509,510,511,512,514,515,516,519,520,521,523,524,531,533,535,540,541,542,543,545,546,547,548,550,551,552,553,554,555,556,559,561,562,563,564,565,566,567,568,569,571,572,573,576,577,578,580,581,582,583,584,586,588,600,601,620],option_class:[221,225,547],option_class_modul:[0,221],option_contain:0,option_gener:552,option_kei:569,option_str:300,option_typ:563,option_valu:563,optiona:[489,542],optionclass:[221,225,226,544,547],optioncontain:547,optionhandl:[225,226,544,562],optionlist:[29,304,439,476,552],options2:52,options_account_default:221,options_accounts_default:0,options_dict:563,options_formatt:[0,29,304,439,450,476,552],optionsl:478,optionslist:439,optionsmenu:304,optionstext:[29,304,450,552],optlist:462,optlist_to_menuopt:462,optuon:390,oracl:[205,221,568],orang:[61,111,122,143,300,335,545],orc:[43,168,185],orc_shaman:43,orchestr:[212,409,425],order:[0,4,5,7,8,13,14,15,16,20,21,23,27,29,32,33,35,36,38,39,41,43,44,47,50,51,52,55,60,66,72,81,82,83,84,85,88,90,95,99,100,102,105,120,124,126,131,136,138,139,141,143,146,149,150,152,155,169,175,178,180,181,182,188,189,191,193,194,195,197,204,205,210,220,221,228,233,236,237,243,248,249,252,253,265,268,300,305,313,316,322,323,324,335,338,339,340,341,342,349,370,371,373,377,380,384,391,395,405,407,411,412,413,440,441,442,450,458,469,470,472,473,474,479,501,503,515,520,524,531,540,542,545,546,552,553,554,561,565,566,568,576,578,580,581,582,583,619],order_bi:136,order_clothes_list:316,ordered_clothes_list:316,ordereddict:[14,568],ordin:545,ordinari:[104,341],ore:[149,322,323],org:[66,71,128,131,178,217,221,300,455,458,508,514,520,545,568,608],organ:[14,19,33,39,41,44,47,51,71,73,82,86,105,124,125,128,136,140,144,145,177,189,190,197,237,249,253,372,571],organiz:140,orient:[120,130,131,144,168],oriented_program:131,origin:[0,1,10,29,39,45,50,51,54,66,81,89,93,97,100,102,109,112,126,130,136,139,150,161,168,182,186,189,193,196,200,208,211,219,228,229,235,242,265,296,300,329,371,390,391,409,418,472,474,478,479,481,501,535,542,545,551,552,554,564,567,568,571,572,620],original_object:472,original_script:481,origo:[124,370],orm:32,ormal:545,orphan:221,orthogon:124,oscar:[237,256,464,466,542],osnam:568,osr:[149,417],oss:10,ostr:[228,230,257,465,472,481,565],osx:[12,213,215],oth:407,other:[0,1,3,4,7,9,11,13,14,15,16,17,18,19,20,21,24,27,29,32,33,34,35,37,38,39,43,45,46,47,48,49,50,52,53,55,56,57,58,60,61,62,63,66,67,69,70,71,72,74,75,76,77,78,81,82,84,86,88,89,95,99,100,101,102,103,104,105,110,112,115,118,119,120,123,124,125,126,128,129,130,131,132,133,134,135,136,138,139,140,141,142,144,147,150,151,152,155,158,161,163,168,169,171,172,174,175,176,177,178,179,180,181,182,183,184,186,188,189,191,192,193,194,195,196,197,198,201,204,207,208,212,218,219,221,222,223,228,230,233,234,235,236,237,242,247,248,249,250,253,254,256,257,269,277,281,286,300,303,304,305,310,313,316,319,322,329,338,339,340,341,342,349,355,362,370,371,373,376,390,391,395,407,408,409,411,416,417,434,442,447,450,462,464,466,470,473,474,478,479,483,485,487,490,492,497,501,503,504,510,512,515,524,530,531,532,534,540,542,544,545,546,548,550,551,552,553,554,555,562,563,565,566,568,569,572,584,613,614,616,620],other_modul:137,other_obj:305,otherchar:341,othercondit:133,othermodul:54,otherroom:[115,355],others_act:305,otherwis:[0,1,6,8,9,12,17,20,21,23,29,32,39,43,44,45,61,66,67,69,74,81,85,100,102,107,118,123,124,128,136,143,145,147,149,155,161,163,175,180,181,186,191,192,196,197,199,205,212,217,219,221,225,230,234,235,239,242,247,256,268,284,287,305,308,310,313,322,338,346,362,364,376,391,395,409,412,414,417,432,450,464,470,474,477,478,479,486,492,503,504,512,531,535,536,545,552,553,555,561,565,566,568,577,612,613,614,616,618],otypeclass_path:472,ouch:174,ought:[97,571],our:[4,6,12,13,14,16,21,23,26,35,41,48,52,57,59,62,63,66,67,70,73,74,75,81,88,100,101,104,105,119,123,125,128,130,131,132,134,136,140,141,142,144,145,148,150,151,152,155,157,158,161,164,165,166,168,169,170,172,173,174,175,176,177,178,179,181,182,185,186,187,189,190,191,192,193,195,196,199,200,203,205,207,208,211,212,217,219,223,231,236,250,258,323,346,362,406,410,412,440,441,462,470,483,537,555,561,572,573,577,584,591],ourself:[141,191],ourselv:[35,38,51,59,81,102,132,133,134,136,140,141,142,144,147,149,169,183,190,228,376,380,505,506,508,519,555,572],out:[0,1,6,7,8,9,11,12,14,15,16,17,18,19,23,24,29,32,33,37,39,41,43,44,45,47,50,52,53,54,55,56,57,58,59,64,69,70,71,74,77,78,81,82,83,88,91,93,95,97,100,101,102,103,104,105,109,110,112,115,116,118,121,124,126,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142,143,144,146,147,148,150,151,152,155,157,158,161,163,164,165,166,167,168,170,172,174,175,178,179,180,181,182,183,184,186,187,188,189,191,192,194,196,197,200,204,205,207,208,209,210,212,216,217,220,221,227,228,234,235,239,241,242,247,256,277,281,296,299,303,305,313,322,323,329,338,339,340,341,342,349,355,358,364,370,371,372,373,390,391,395,407,409,414,417,423,439,441,446,447,450,452,469,478,479,485,492,494,516,520,521,523,532,533,540,549,551,552,554,555,568,571,576,584,608,620],out_txt:408,outcom:[69,128,149,177,235,322,384,470,474,478],outdat:[207,208],outdata:[63,533],outdoor:[47,124,146,149,190,442,555],outer:[136,137,554],outermost:[32,34,137,140,143,280,292],outerwear:[84,316],outfunc_nam:63,outgo:[32,45,62,65,70,124,208,217,221,229,371,409,474,504,516,532,555,568,572],outgoing_port:217,outlet:217,outlin:[4,7,26,105,124,127,194,503],outlist:370,outmessag:474,output:[0,7,8,10,16,20,24,29,30,32,33,34,45,50,52,61,63,66,70,71,72,74,82,105,124,126,128,132,133,134,138,139,143,145,149,157,169,178,180,186,188,191,205,212,218,221,225,226,237,247,249,252,254,256,259,265,277,322,323,326,338,339,340,342,370,371,380,444,445,447,456,474,492,497,512,516,524,531,545,552,553,555,561,564,566,568,620],output_nam:322,output_prototyp:[88,322,323],outputcmd:516,outputcommand:[34,62,67],outputfunc:[0,24,63,67,70,474,497,503,620],outputfunc_nam:[63,497],outputfunct:67,outrank:541,outright:[56,149,217,474],outro:[121,146,442],outroroom:442,outsid:[0,15,17,32,33,43,50,53,54,66,70,71,76,100,102,104,120,124,128,131,134,138,143,144,145,149,161,168,172,174,177,179,180,181,195,208,212,217,218,249,341,365,370,371,409,417,440,458,464,469,516,531,532,540,543,554,599],outtempl:540,outtxt:20,outward:[182,217],oven:[88,126],over:[0,3,7,8,9,11,14,15,16,17,18,19,20,21,23,29,43,44,45,47,48,49,50,52,54,57,62,63,67,70,71,72,73,81,90,95,100,104,105,115,124,126,128,133,136,139,140,141,143,144,147,149,151,152,155,161,163,168,169,170,171,177,178,181,182,183,188,193,194,196,207,209,212,216,219,221,222,223,228,236,257,270,323,338,355,371,376,407,410,417,442,450,462,474,487,496,510,512,515,517,521,523,525,538,542,546,559,564,617],overal:[50,55,69,84,92,167,168,204,217,235,250,339],overcom:[105,417],overdo:139,overhaul:0,overhead:[20,44,72,123,190,205,362,540],overhear:[112,390],overheard:[112,126],overlap:[21,175,390,545,554],overload:[0,9,21,23,24,29,34,39,48,63,81,82,115,141,168,173,174,191,193,220,221,228,235,237,251,256,265,269,300,303,322,326,335,338,339,340,341,342,346,349,355,358,364,368,376,391,408,413,439,440,441,442,452,474,479,487,496,515,523,532,550,552,553,554,562],overpow:[81,149],overrid:[0,1,2,4,8,19,21,29,32,33,35,39,43,44,45,46,50,51,52,54,67,74,76,82,83,86,88,97,100,122,124,129,133,134,138,141,144,157,165,174,179,180,183,185,186,189,192,197,209,221,228,237,242,247,249,253,256,257,265,273,287,299,300,307,308,316,322,340,342,346,364,371,372,373,376,380,390,391,405,409,412,413,417,432,442,448,464,470,474,478,479,485,501,515,533,537,540,542,545,552,553,555,559,561,562,565,576,577,578,582,584,594,613,614,616,619,620],overridden:[32,37,54,63,124,155,192,193,221,228,242,249,265,266,273,275,300,371,394,478,542,553,555,576,619],override_set:46,overriden:391,overrod:[57,140],overrul:[13,41,228,236,391,474,554],overseen:177,overshadow:147,overshoot:568,oversight:168,overview:[2,3,8,17,51,57,62,97,101,121,125,132,142,149,163,168,176,191,205,219,452,620],overwhelm:[101,119,136,147],overwrit:[66,76,81,141,193,242,249,376,510,541,617],overwritten:[23,32,76,77,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,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,126,195,442,543],owasp:608,owen:322,owllex:[0,87,126,318,319],own:[0,1,5,7,8,9,11,12,14,15,18,19,20,21,24,26,29,32,33,35,38,43,44,45,46,47,49,50,53,54,55,58,59,62,67,69,70,71,73,74,77,81,82,83,84,86,88,91,92,94,100,103,105,106,112,114,119,120,121,122,123,124,126,127,128,130,131,132,133,134,135,137,138,139,141,142,144,146,147,148,150,151,152,155,158,161,163,164,165,166,168,170,172,173,174,175,179,180,183,184,186,187,189,191,192,193,194,195,199,200,202,203,204,207,208,211,213,215,219,220,221,222,225,226,231,233,234,235,236,242,250,259,277,296,300,304,305,316,329,338,339,340,342,346,362,370,371,374,376,380,390,391,393,407,417,441,447,450,469,470,474,479,497,524,532,542,545,546,547,553,554,559,561,562,566,568,594,614],owner:[35,41,58,81,149,163,192,205,228,376,430,470,562],owner_object:35,ownerref:376,ownership:[76,212,217],oxford:[0,568],p_id:194,pace:[149,440],pack:[0,53,67,121,174,501],packag:[0,8,9,11,33,51,70,71,74,76,86,97,124,125,128,131,137,138,158,163,189,199,202,205,207,210,211,212,213,215,217,221,225,227,232,238,255,259,308,463,468,471,480,488,492,501,516,520,539,544,574,588],package_nam:131,packagenam:131,packed_data:501,packeddict:[9,542],packedlist:[9,542],packet:[67,512],pad:[18,32,545,554,555,568],pad_bottom:[551,554],pad_char:554,pad_left:[551,554],pad_right:[551,554],pad_top:[551,554],pad_width:554,page1:305,page2:305,page:[0,1,4,5,7,10,11,12,15,16,18,21,23,24,26,29,30,32,33,37,39,49,50,51,52,53,56,57,59,62,63,66,70,71,73,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,130,131,132,133,134,137,145,147,149,150,155,166,168,169,176,177,188,189,192,194,195,196,200,202,205,207,208,210,211,212,217,218,219,221,223,224,237,242,247,248,256,305,418,464,466,478,521,542,552,553,568,574,579,581,582,584,597,606,610,616,617,619],page_back:553,page_ban:[56,247],page_end:553,page_formatt:[478,553],page_next:553,page_quit:553,page_s:221,page_titl:[613,614,616,618],page_top:553,pageno:[478,553],pager:[0,30,33,553],pages:[29,552],pagin:[0,33,50,129,221,478,553],paginag:553,paginate_bi:[613,614,616],paginated_db_queri:478,paginator_django:553,paginator_index:553,paginator_slic:553,pai:[149,151,167,184,217,219,441],paid:[150,217],pain:[217,377],painstakingli:15,paint:144,pair:[21,52,67,77,81,83,84,124,143,155,178,228,235,316,371,376,469,474,533,608,619],pal:38,palac:124,palett:188,pallet:[105,140],palm:[95,450],pane:[0,52,70,221,254,281,373,439],panel:[10,192,208],panic:[43,133,161],pant:[84,147],pantheon:[33,464],paper:[178,200],paperback:177,paperwork:124,par:205,paradigm:[0,147,189,339],paragraph:[16,20,33,125,332,546,554,568],parallel:[0,119,168,175,197,541],paralyz:340,param:[100,208,242,474,487,494,504,537,567,588,589,591],paramat:[237,474,531],paramet:[4,6,10,21,50,82,87,101,102,136,145,149,175,181,182,186,206,212,225,228,229,230,233,234,235,236,237,247,249,256,257,258,265,266,271,273,274,277,284,285,286,287,290,300,303,304,305,306,307,308,310,313,316,319,322,326,329,338,339,340,341,342,346,349,355,362,370,371,372,373,376,380,384,387,390,391,395,405,407,408,409,411,412,413,414,417,418,430,432,434,439,442,446,447,450,458,462,464,465,466,467,470,472,473,474,476,478,479,481,483,484,485,486,487,489,490,491,492,494,496,497,498,499,501,502,503,504,505,506,507,508,509,510,511,512,514,515,516,517,519,520,521,523,529,530,531,532,533,535,536,537,540,541,542,543,545,546,547,548,549,550,551,552,553,554,555,556,559,561,562,563,565,566,567,568,569,571,572,576,578,581,582,586,589,600,616],paramt:569,pardir:221,paremt:479,parent1:43,parent2:43,parent:[0,1,13,20,21,23,26,39,43,44,49,62,63,75,82,88,124,128,131,133,135,139,141,144,151,157,161,170,174,180,183,191,215,221,231,239,242,250,252,265,266,300,303,305,322,324,371,391,394,395,462,473,474,478,479,482,540,541,542,550,560,565,566,568,586,588,594,617],parent_categori:462,parent_kei:[82,265],parent_model:[576,577,578,580,581,582,584],parentag:418,parenthes:[51,110,143],parenthesi:[32,143,144],parentobject:139,paretn:586,pari:[200,217],pariatur:30,paricular:23,park:[82,265],parlanc:[54,165],parri:[178,323,441],pars:[0,2,7,9,17,21,23,27,29,32,59,61,62,63,67,70,71,83,88,122,124,125,126,128,129,132,139,140,142,152,165,176,191,195,215,220,221,232,233,234,237,242,248,249,250,252,253,265,280,281,292,299,300,303,305,310,313,322,323,329,346,364,370,371,372,376,384,391,392,408,418,434,441,442,446,447,448,452,462,467,470,474,477,478,479,497,504,507,516,520,521,523,533,540,545,546,550,551,552,555,561,566,567,568,620],parse_ansi:545,parse_ansi_to_irc:504,parse_entry_for_subcategori:467,parse_fil:546,parse_for_perspect:310,parse_for_th:310,parse_html:567,parse_inlinefunc:0,parse_input:552,parse_irc_to_ansi:504,parse_languag:391,parse_menu_templ:[29,552],parse_nick_templ:540,parse_opt:462,parse_sdescs_and_recog:391,parse_to_ani:[32,555],parseabl:[478,555],parsed_str:[32,504],parsedfunc:555,parseerror:300,parser:[0,7,23,24,29,33,61,65,71,122,124,126,128,137,195,200,220,221,233,234,239,242,249,250,252,254,269,281,300,303,305,316,323,335,346,349,369,370,371,390,391,441,442,478,511,545,555,567,620],parsingerror:[32,555,568],part1:335,part2:335,part:[0,6,7,9,10,11,15,16,17,19,23,29,33,35,41,42,44,45,49,50,52,53,54,57,63,65,69,70,74,75,76,79,81,82,100,101,105,110,111,112,124,125,128,134,136,137,138,139,140,141,143,144,146,147,149,150,152,153,154,156,159,160,162,168,169,172,174,176,177,178,181,186,189,191,192,193,197,205,212,214,217,221,234,235,237,247,250,251,253,256,265,271,303,313,322,323,335,341,368,370,371,376,384,391,406,408,409,416,418,434,442,455,462,465,469,470,477,478,485,492,496,521,523,532,535,537,540,541,545,546,550,552,555,566,568,620],part_a:313,part_b:313,parth:517,parti:[0,6,15,20,32,60,78,90,125,131,143,144,150,189,195,202,211,217,221,258,313,384,417,555,620],partial:[1,33,124,247,249,390,411,417,464,472,478,494,507,533,563,565,568,569],particip:[120,126,219,338,339,340,341,342,407],participl:[571,573],particular:[7,8,9,12,14,15,16,21,33,34,35,39,44,45,46,47,49,56,61,63,67,70,72,74,81,82,94,118,124,126,128,131,134,136,137,138,140,141,143,144,145,147,149,155,157,163,169,174,180,183,190,200,202,207,208,211,220,228,230,234,235,242,257,306,322,340,341,346,370,371,373,409,413,447,465,469,470,481,482,533,535,542,555,559,565,615,617],particularli:[29,56,59,76,81,100,102,112,118,126,128,151,181,237,250,253,376,391,395,479,496],partit:545,partli:[14,21,69,73,112,126,137,235],party_oth:313,pase:184,pass:[0,1,3,4,11,19,20,23,29,30,32,34,35,37,39,41,43,44,45,46,48,49,55,63,67,70,77,81,83,86,87,88,95,100,104,105,110,112,115,118,119,124,126,132,133,135,137,139,140,141,142,144,145,149,151,152,155,157,161,163,171,172,173,175,179,180,182,184,186,187,195,196,197,205,212,214,217,218,221,228,229,235,247,254,256,273,274,275,277,286,303,308,310,316,319,322,326,338,339,340,341,342,349,355,370,371,373,376,377,378,384,391,395,405,406,407,409,412,414,417,418,432,434,441,446,447,450,462,469,470,474,477,478,483,486,487,490,492,502,510,512,515,520,521,531,537,540,542,543,551,552,553,554,555,556,562,563,564,566,567,568,588,594,614,617,619],passabl:371,passag:[67,149,178,316,441,442,556],passant:188,passavataridterminalrealm:512,passiv:[178,194,407],passthrough:[21,370,485],password123:50,password1:[576,608],password2:[576,608],password:[0,4,8,12,25,26,29,34,35,54,56,77,91,106,113,126,131,133,135,138,189,205,208,210,214,219,221,228,230,231,239,240,254,281,305,447,458,497,512,515,536,548,576,600,608],password_chang:609,password_valid:221,passwordresettest:609,past:[15,27,51,52,71,76,101,102,105,124,125,134,138,149,169,175,178,191,194,197,208,220,221,230,340,371,538,546,556,571,573,617],pastpl:571,pat:472,patch:[49,50,76,132,151,196,566],patfind:368,path:[0,9,10,11,12,13,16,20,29,32,33,34,35,37,39,43,44,45,49,53,54,62,63,64,66,69,70,74,76,77,81,82,100,102,104,112,124,128,132,133,134,135,136,139,143,144,163,179,180,181,182,183,191,192,193,194,195,196,197,207,208,210,212,213,215,217,221,228,229,231,234,235,236,237,241,242,243,244,245,246,247,256,258,263,265,275,277,287,290,296,303,305,306,307,308,310,313,316,322,326,335,338,339,340,341,342,346,349,355,358,362,364,368,370,371,372,373,378,380,384,390,391,394,400,405,407,408,409,412,413,416,432,434,436,439,440,441,442,452,458,464,466,472,473,474,478,479,481,482,484,485,487,492,499,501,510,517,523,525,529,533,537,540,541,542,546,548,550,551,552,553,555,556,559,560,565,568,586,594,614],path_or_typeclass:290,pathdata:364,pathfind:[0,126,181,364,368,370,371],pathnam:566,patient:29,patrol:[121,440],patrolling_pac:440,patron:[104,127],pattern:[19,38,57,74,75,81,126,165,192,194,195,196,197,221,240,256,376,536,540,568,585],pattern_is_regex:540,paul:49,paus:[0,24,29,44,55,81,100,101,178,181,212,218,221,242,252,286,376,377,414,485,486,552,566,568],pausabl:568,pauseproduc:494,pax:189,payload:[503,520],payment:[78,126],paypal:127,paywal:127,pdb:[0,2,225,620],pdbref:[35,469],pdf:[149,200],pebbl:407,peek:[29,124,134,186],peer:[503,520],peform:497,peg:219,pem:208,pemit:[71,240],penalti:[69,132,147,161,340],pend:537,pennmush:[71,73,168,254],pentagon:219,peopl:[0,3,7,9,13,19,32,33,35,54,59,61,71,91,93,100,112,126,131,134,138,140,147,149,150,169,177,178,179,202,204,209,217,219,221,247,248,257,281,391,441,442,548,577,584],pep8:[0,7,76],pep:7,per:[0,8,12,13,14,19,23,32,43,45,58,61,67,69,76,81,87,88,89,94,102,110,112,118,120,124,126,128,131,143,149,157,161,169,175,178,191,192,197,212,221,228,247,256,305,306,319,338,340,342,346,370,371,376,377,390,395,407,409,411,412,413,440,472,474,478,505,506,508,516,519,535,552,553,554,559,561,562],perceiv:[149,175],percent:[23,259,374,393,418,568],percentag:[118,178,394,395,541,568],percentil:568,perception_method_test:528,perfect:[27,76,92,126,130,147,158,161,211,212,370,407],perfectli:[44,47,73,84,110,197,545],perform:[0,1,6,7,8,9,14,15,16,19,29,30,34,35,39,44,59,79,82,87,88,95,100,109,119,120,126,130,143,178,181,186,191,194,195,204,205,211,219,221,228,233,235,239,242,247,249,265,286,287,296,303,316,319,322,338,339,340,341,342,368,391,405,407,412,418,446,450,462,472,474,478,482,483,496,501,515,523,524,540,541,542,549,552,553,555,562,565,568,569,608],perhap:[9,19,57,71,82,100,101,175,186,197],period:[5,7,11,81,143,212,217,219,221,568],perist:[49,135],perk:[81,376],perm1:543,perm2:543,perm:[0,1,14,19,23,33,35,41,43,47,56,58,82,100,133,139,169,191,192,194,204,221,231,240,241,242,247,248,249,252,285,296,303,335,346,355,364,442,466,469,470,473,474,482,540,542,543,568],perm_abov:[35,41,469],perm_us:240,perma:149,permadeath:149,perman:[0,19,29,54,56,76,81,124,132,146,147,161,192,206,210,217,221,239,242,247,248,252,376,390,409,417,486,542],permiss:[0,1,8,11,12,13,14,19,21,24,43,50,51,56,62,64,71,76,79,97,134,135,139,140,149,179,189,191,194,204,205,207,211,213,221,225,226,228,230,231,235,237,239,240,241,242,247,248,250,256,285,306,342,391,464,466,469,470,472,473,474,478,479,482,540,541,542,543,546,548,555,561,565,568,574,576,587,588,591,594,619,620],permission_account_default:[41,221,523],permission_class:[196,594],permission_func_modul:469,permission_guest_default:[64,221],permission_hierarchi:[41,58,221,469,470,543],permissiondeni:589,permissionerror:478,permissionfilt:588,permissionhandl:[0,41,194,543],permissionproperti:[0,543],permissionshandl:[584,591],permit:[196,199,205,242,536],permstr:[35,228,472,542,548],perpetu:[8,132,148,149],perri:76,persion:59,persist:[0,1,19,20,21,23,24,29,36,39,44,45,48,49,69,81,82,86,87,97,102,112,114,116,118,120,126,130,131,132,135,138,140,141,142,143,167,168,172,176,178,179,180,191,200,218,220,228,231,235,236,252,257,258,265,266,271,277,287,304,319,338,339,340,341,342,358,372,390,391,395,434,439,441,450,452,462,466,472,473,474,476,478,481,482,483,485,486,487,497,498,499,530,531,535,539,542,548,550,552,554,556,568,620],persit:37,person:[7,12,19,32,45,56,59,76,78,110,112,126,132,133,140,142,147,150,177,179,183,184,213,217,228,242,247,248,256,305,306,310,313,384,391,408,455,555,571,572,573],persona:33,perspect:[45,59,177,310,407,572],perstack:[81,376,377],pertain:[188,193,219],pertin:194,perus:52,pester:[147,168],petal:128,peter:303,pg_ctlcluster:205,pg_hba:205,pg_lscluster:205,phantom:33,phase:[147,182],phen:110,phex:110,philosophi:[35,143,305],phone:[57,113,126,131,211,458],phone_gener:[113,458],phonem:[110,112,390],phonet:[0,110,455],php:[71,131,608],phrase:[12,100,101,290],phrase_ev:[100,290],physic:[13,37,132,147,152,182,341,440],physiqu:152,pick:[10,12,15,17,21,23,25,29,32,33,35,44,54,59,92,93,100,105,124,130,132,134,140,141,143,149,152,155,161,170,172,175,177,179,181,185,189,190,202,210,212,217,220,234,239,242,248,250,256,280,292,316,342,387,391,412,441,442,474,478,524,555],pickabl:39,pickl:[0,14,48,51,67,81,124,221,263,395,412,483,487,489,499,501,502,540,541,549,550,552,564,568],pickle_protocol:564,pickleabl:81,pickledfield:[472,564],pickledformfield:[564,577],pickledobject:564,pickledobjectfield:564,pickledwidget:564,picklefield:[0,225,226,544,577],pickpocket:249,pickup:[342,474],pictur:[10,63,149,152,155,163,168,179],pid:[4,35,51,194,212,218,469,474,492,502,568],piddir:4,pidfil:492,pie:303,piec:[8,12,15,24,37,54,55,88,93,110,111,131,141,143,151,152,161,163,208,322,323,335,349,408,519,546,553],piecem:[0,125,126],pierc:441,pig:[322,323],piggyback:228,pigironrecip:[322,323],piglei:76,pii:77,pile:[236,546],pillow:[0,211],pinch:149,ping:[229,247,492,504],pink:545,pip:[5,6,8,11,76,97,124,128,137,143,189,194,201,203,204,205,211,212,213,215,216,221,222,225,620],pipe:[45,52,77,504,549],pitfal:[16,61,188],pixel:[54,206],pizza:[231,258,466,473,482,540,542,543],pkg:211,pki:207,place:[0,1,12,13,14,16,17,19,29,35,37,39,43,44,45,50,52,53,54,66,67,68,73,74,78,81,82,86,88,95,100,101,102,105,118,121,124,126,127,131,134,138,139,140,141,143,145,149,151,152,155,163,165,172,173,174,175,177,179,180,182,186,187,188,189,190,191,193,194,197,204,207,211,212,213,215,217,219,220,221,228,240,242,248,256,265,277,305,313,323,335,338,342,362,370,371,373,391,395,407,409,411,434,441,442,446,450,455,474,481,485,501,510,515,531,532,533,540,546,547,549,552,568,620],placehold:[53,54,66,83,195,470,474,554],plai:[0,13,16,33,45,54,58,61,67,81,82,101,102,105,114,120,121,126,130,131,132,138,140,141,143,146,147,150,161,169,177,178,180,181,186,190,191,194,210,211,217,221,228,230,338,342,516,533,548],plain:[0,15,16,52,69,70,78,128,134,161,169,191,247,256,265,313,332,479,497,523,549,617],plaintext:447,plan:[16,17,19,49,63,100,127,132,141,142,145,148,158,164,166,167,176,189,212,217,407,546],plane:[124,145,180],planet:[0,138,175],plank:88,plant:[122,300],plate:[29,49,54,113,126,170,458],platform:[10,12,57,100,167,189,213,217],playabl:[83,149,194,380,609],player1:474,player2:474,player:[0,1,8,9,11,14,19,21,29,32,35,39,41,44,45,51,53,54,55,56,58,59,63,66,67,71,72,76,77,78,81,83,93,94,95,98,99,100,103,105,111,112,119,121,122,123,124,126,129,130,131,132,134,135,138,139,141,142,143,144,146,147,148,152,155,158,164,166,169,172,176,177,178,179,180,183,184,185,186,189,191,192,194,198,201,203,204,209,210,217,218,221,236,239,242,252,257,265,290,296,300,303,304,305,306,308,313,329,335,341,342,349,362,370,380,387,390,391,407,409,412,414,418,434,436,442,447,450,462,465,482,506,515,532,546,551,552,568,594,608,614],playercmdset:100,playerdb:221,playernam:204,playerornpc:189,playtim:[376,377],pleas:[8,11,12,18,21,29,33,43,49,57,61,77,105,121,134,140,141,149,172,194,198,199,202,204,207,210,211,215,217,221,252,494,523,559,564,608],pleasur:57,plenti:[7,16,130,158],plethora:149,plop:54,plot:525,plu:[10,20,82,131,252],pluck:23,plug:[37,46,193,362],pluggabl:[221,418],plugin:[0,24,63,67,71,76,126,129,137,138,192,202,220,221,391,409,490],plugin_handl:52,plugin_manag:52,plugin_servic:221,plural:[0,41,58,59,169,221,341,474,555,571,572,573],plural_word:555,plusmaplink:[124,371],png:[42,54,193],pocoo:568,poeditor:66,poet:136,point:[0,1,4,5,6,8,9,10,12,13,15,16,17,20,21,23,29,32,33,37,39,43,44,45,47,48,49,51,54,59,67,69,70,72,74,78,81,82,91,92,93,96,100,102,104,106,120,124,126,128,130,133,134,135,138,139,140,141,143,144,147,149,150,152,161,164,167,172,175,176,177,178,179,180,181,182,184,186,191,193,194,195,196,197,207,208,210,211,212,213,216,217,221,228,233,237,242,247,250,300,303,313,319,322,326,338,355,362,364,368,370,371,391,406,407,442,474,476,478,487,492,496,510,512,520,531,533,540,542,546,552,555,568,577,584,597,619],pointer:[167,182,186,349],pointless:[39,48,55,187,249],pois:377,poison:[14,81,118,126,221,340,376,377,395,417,479],pole:335,polici:[7,26,73,76,144,217,219,447,466,536,540],polish:[0,66,128],polit:[144,149,219],poll:[63,193,239,440,492,521],pommel:[149,172,323],pong:504,pool:[21,48,81,205,487,537,549],poor:[59,141,169],poorli:219,pop:[10,55,128,169,205],popen:502,popul:[4,74,82,100,104,147,168,175,205,221,235,243,244,245,246,265,303,316,322,335,338,339,340,341,342,346,349,355,358,364,391,408,434,436,439,440,441,442,452,474,478,486,487,523,546,550,551,553,577,584],popular:[71,120,131,132,136,168,189,200,613],popup:[0,52,221],port:[0,4,8,102,130,189,202,205,207,208,209,212,215,218,221,222,229,247,501,504,512,524,533,537],portal:[8,10,24,39,52,53,63,70,85,129,137,138,180,196,200,217,218,219,220,221,225,226,229,252,268,488,489,492,530,531,532,533,556,561,568,620],portal_connect:533,portal_disconnect:533,portal_disconnect_al:533,portal_l:502,portal_log_day_rot:221,portal_log_fil:221,portal_log_max_s:221,portal_pid:[502,568],portal_receive_adminserver2port:502,portal_receive_launcher2port:502,portal_receive_server2port:502,portal_receive_statu:502,portal_reset_serv:533,portal_restart_serv:533,portal_run:492,portal_service_plugin_modul:63,portal_services_plugin:[63,138,220,221],portal_services_plugin_modul:[63,221],portal_sess:63,portal_session_handler_class:221,portal_session_sync:533,portal_sessions_sync:533,portal_shutdown:533,portal_st:492,portal_uptim:556,portalsess:[45,63,510],portalsessiondata:533,portalsessionhandl:[63,221,225,226,488,500,511,533],portalsessionsdata:533,portion:[76,126,265,387],portuges:66,pos:[305,371],pose:[0,26,59,112,126,133,149,169,172,178,228,248,287,303,391,434],pose_transform:256,posgresql:205,posit:[0,15,29,44,52,82,100,104,105,120,122,124,126,134,144,149,178,181,182,186,188,221,236,254,256,265,281,300,303,305,332,342,349,362,370,371,373,407,408,441,442,474,486,545,546,549,550,554,568,569],position:305,position_prep_map:305,positive_integ:569,positiveinteg:562,posix:[561,568],possess:[59,96,326,555,572],possibl:[0,8,14,19,21,23,27,29,32,33,34,35,37,43,44,45,47,51,53,54,55,61,64,77,78,82,84,86,100,101,102,104,105,112,117,118,121,123,124,125,126,127,130,131,136,137,140,143,144,146,149,150,155,157,161,168,169,177,178,181,186,188,189,191,192,193,195,205,207,211,212,213,215,216,220,221,223,225,228,230,231,233,235,242,249,250,257,269,286,305,313,322,335,346,349,362,370,371,373,390,391,395,407,411,413,418,436,440,442,455,467,470,472,474,477,478,479,483,487,497,517,521,531,533,540,541,543,545,548,550,551,552,554,556,561,564,565,568,571,586],post:[14,19,21,35,46,50,54,66,77,88,105,125,126,130,132,147,168,169,193,194,196,197,198,203,204,221,447,485,521,593,614],post_:0,post_action_text:407,post_craft:[88,322],post_delet:46,post_init:46,post_join_channel:[19,256],post_leave_channel:[19,256],post_loot:405,post_migr:46,post_mov:474,post_puppet:81,post_sav:46,post_send_messag:256,post_text:387,post_url_continu:[576,578,581],post_us:407,postfix:[112,390],postgr:[131,205],postgresql:[0,221,222,568,620],postgresql_psycopg2:205,postinit:52,posttext:450,postupd:[198,204],pot:[56,135],potato:[122,206,300],potenti:[0,5,14,15,32,55,61,67,88,100,105,112,144,178,191,203,217,221,237,249,257,447,448,469,470,474,478,562,565,568],potion:[145,149,157,305,407,411,413,423,542],pow:32,power:[0,6,17,21,23,27,29,32,37,39,41,43,51,52,54,58,59,81,87,100,101,105,112,119,122,126,130,131,134,136,140,141,143,144,145,146,149,167,169,172,173,178,191,235,236,241,242,300,319,340,341,413,417,462,467,546,568],powerattack:[87,319],powerfulli:102,powerhous:81,ppart:571,pperm:[19,35,41,56,97,139,194,204,221,239,247,296,335,380,452,469,474],pperm_abov:[41,469],pprofil:492,pprogram:492,practial:17,practic:[3,15,16,23,39,44,45,51,81,82,86,92,102,110,131,139,140,141,143,144,145,149,151,163,168,169,172,176,184,188,208,216,217,222,371,546,620],praxi:210,pre:[0,14,23,39,50,105,128,147,149,182,196,204,209,210,215,217,221,228,242,249,322,390,418,420,470,474,478,479,520,521,524,550,555,564],pre_craft:[88,322],pre_delet:46,pre_init:46,pre_join_channel:[19,256],pre_leave_channel:[19,256],pre_loot:405,pre_migr:46,pre_sav:[46,564],pre_send_messag:256,pre_text:387,pre_us:407,preced:[21,41,43,58,61,119,124,140,235,237,462,474,479,541,554,555,572],preceed:[32,134],precend:233,precens:14,precis:[14,44,100,188,319,322,545],predefin:[0,180,536],predict:[49,143,150,194],prefer:[10,19,21,23,35,43,52,82,92,105,125,130,132,138,141,168,179,186,191,204,205,217,221,235,237,240,265,339,371,391,440,465,467,472,474],prefix:[0,6,9,19,49,69,82,86,110,112,128,205,219,221,228,234,249,251,256,272,275,387,390,472,497,504,535,545,555,565,568,577,578,580,582,584,588,608],prelogout_loc:139,prematur:[8,20,44,313,414],premis:[93,303],prep:303,prepai:217,prepar:[0,4,38,43,53,124,165,168,182,196,221,228,247,338,380,391,440,482,549,564],prepars:128,prepend:[32,329,391,474,545,546,552,555,568],prepopul:[577,584,617,619],preposit:305,preprocess:242,prerequisit:[189,222],prescrib:[130,168],presen:32,presenc:[18,32,124,130,138,167,176,184,188,189,193,205,217,228,474,537,574,620],present:[6,9,29,33,45,50,54,81,82,86,95,98,101,110,119,120,125,126,147,149,152,175,178,182,184,186,191,197,220,221,265,273,300,376,387,390,417,436,450,458,462,479,550,568,571,573,577,591],present_participl:573,preserv:[188,221,250,542,545,546,561,568],preserve_item:[123,362],preset:555,press:[6,10,16,17,21,23,29,35,67,70,82,114,126,132,134,138,143,152,189,210,212,218,265,305,434,441,490,552,581],pressur:170,prestig:149,presto:134,presum:[37,175,177,236,561,562],pretend:211,pretext:450,pretti:[1,7,12,14,23,39,44,51,59,70,82,84,100,102,128,131,139,143,144,146,147,149,152,157,163,178,180,181,187,188,191,194,202,217,221,237,256,310,316,395,458,463,470,478,551,553,562,568],prettier:[0,8,102,608],prettifi:[0,161,168,568],prettili:175,pretty_corn:554,prettyt:[20,554],prev:[29,553],prev_entri:29,prevent:[0,2,23,100,101,128,134,143,175,286,300,342,535,577,614,620],preview:128,previou:[0,12,14,16,21,23,29,30,32,33,35,38,46,50,54,55,57,61,69,81,82,86,100,118,119,132,133,136,137,139,140,141,143,144,146,149,151,152,155,157,158,161,169,171,172,175,184,186,188,191,196,197,210,212,213,220,221,247,395,407,442,462,476,552,553,561,616],previous:[12,14,21,27,34,44,54,104,124,134,139,141,149,182,184,186,193,194,202,208,220,237,240,242,247,256,313,372,408,474,497,513,517,524,533,543,568],previu:44,prevtick:81,prgmr:217,price:[76,149,217,418,441],primadonna:33,primari:[12,18,49,139,194,212,221,380,391,472,474,540,565],primarili:[4,13,56,71,78,125,130,147,228,313,391,465,467,510,549,568],primary_kei:194,prime:[78,233,313],primer:[54,55],primit:[149,242],princess:[105,146],princip:150,principl:[7,11,13,19,23,29,32,35,37,39,51,58,59,63,78,88,93,125,126,128,135,136,138,139,144,149,152,155,168,173,183,189,190,191,203,217,236,239,313,442,551],print:[1,6,8,9,14,20,27,44,49,55,63,69,72,81,112,118,128,136,139,143,144,152,163,169,179,186,187,189,192,218,221,239,300,370,372,384,390,395,478,491,492,551,552,553,554,561,568],print_debug_info:552,print_error:372,print_help:300,print_stat:8,print_usag:300,printabl:518,printable_order_list:370,printout:[144,515],prio:[1,21,23,139,233,442,543],prior:[216,286,474],priorit:[124,371,390,543],prioriti:[1,9,21,23,24,29,43,124,140,174,178,235,239,243,244,245,246,250,265,303,407,439,441,442,474,550,552,553],prison:[132,136,147],privaci:77,privat:[0,12,19,77,128,147,149,168,197,205,207,217,247,248,504,517],private_set:189,privatestaticroot:537,priveleg:[0,141],privileg:[23,124,132,147,179,191,201,202,203,205,213,248,362,373,391,474,542],privkei:208,privkeyfil:512,privmsg:504,prize:146,pro:[126,620],proactiv:48,probabl:[1,8,23,29,33,39,44,50,51,54,57,69,71,76,82,100,101,118,124,130,131,139,149,168,172,178,179,180,187,189,192,193,194,195,197,205,217,223,249,265,266,290,395,413,442,458,494,504,512,559,568,569],problem:[0,1,3,7,9,11,14,15,17,20,23,26,35,62,72,75,82,105,127,131,133,140,143,145,147,149,150,157,161,167,179,197,205,206,208,211,212,217,218,219,221,228,236,287,322,370,409,474,501,546,555],problemat:[1,568],proce:[16,17,66,161,180,188,212,247,519,612,614],procedur:[119,149,409,425,462,512,515],proceed:568,process:[0,1,3,6,8,10,12,14,15,16,17,23,29,32,37,39,42,50,52,53,54,66,67,70,81,82,83,88,100,102,104,124,128,131,135,138,143,147,148,149,172,174,177,181,182,186,189,192,194,205,207,208,211,212,217,221,222,223,228,233,235,242,252,256,274,300,313,322,323,366,391,397,462,468,470,474,478,483,486,492,497,501,502,509,512,515,520,521,524,530,531,533,540,545,546,549,552,562,567,568,569,586,620],process_languag:391,process_recog:391,process_sdesc:391,processed_result:568,processor:[24,26,105,126,128,149,164,218,221,225,226,241,252,253,544,620],procpool:568,produc:[7,19,23,29,33,61,79,99,100,112,150,161,163,191,239,242,280,292,305,310,322,323,335,362,390,441,474,478,479,491,523,540,542,551,552,568],produce_weapon:441,producion:20,product:[0,3,4,8,10,53,54,74,149,205,217,219,221,222,523,526,552],production_set:189,prof:8,profess:[110,136],profession:[0,71,131,143,149,150,165,168],profil:[2,95,201,221,225,226,231,450,488,620],profile_templ:[95,450],profit:149,profunc:43,prog:[300,571],program:[0,8,10,11,13,17,19,32,42,50,53,55,69,71,129,131,137,138,140,143,144,146,148,150,167,168,181,200,205,208,211,212,213,215,217,218,221,252,254,300,488,492,515,521,523,620],programiz:181,programm:[142,150,186],progress:[12,83,93,120,126,172,177,187,306,308,319,338,339,340,341,342,371,380,409,414,427,550,620],proident:30,project:[0,1,3,7,17,52,71,74,105,125,127,131,150,182,186,193,202,562],projectil:341,promin:33,promisqu:188,prompt:[0,6,49,52,67,70,97,98,105,119,128,131,143,176,189,192,205,206,209,210,211,212,213,221,237,387,462,490,504,515,520,521,546,552,566,620],promptli:16,pron:[0,32,474,555],prone:[223,236,542],pronoun:[0,32,59,96,225,226,326,474,544,555,570,573],pronoun_to_viewpoint:572,pronoun_typ:[59,555,572],pronounc:310,proof:0,prop:[132,147],propag:[14,207,235,496,564],proper:[0,4,14,17,20,32,33,52,59,74,78,112,131,147,149,167,168,174,178,179,181,186,191,194,205,212,242,265,273,288,313,390,474,551,555,566,572],properi:249,properli:[5,10,12,32,36,49,71,75,77,81,157,169,175,187,188,189,194,197,215,221,223,237,313,368,442,448,469,486,487,512,568,579],properti:[0,1,9,11,15,24,33,35,36,38,41,43,44,48,54,59,69,81,82,86,87,88,100,105,118,123,126,129,130,132,133,137,139,142,145,149,151,152,155,157,163,167,168,170,177,178,180,181,184,187,188,191,196,218,220,221,228,229,231,237,239,242,250,252,253,256,258,265,271,273,275,286,300,303,305,306,319,322,323,335,338,340,342,362,371,372,373,376,378,391,394,395,405,407,408,409,411,412,413,414,434,440,441,442,450,462,464,466,467,469,470,472,473,474,478,479,482,484,485,486,496,497,499,504,510,523,524,531,532,533,540,542,543,547,549,552,555,562,563,564,565,566,568,576,577,578,580,581,582,583,584,591,608,616,618],propertli:187,property_nam:472,property_valu:472,propnam:191,propos:[27,127],proprietari:205,propval:191,propvalu:191,prose:150,prosimii:[0,194,195],prospect:[147,322],prot:479,prot_func_modul:[43,221,477],protect:[0,8,21,77,140,217,221,242,323,408,434],protfunc:[0,221,225,226,475,478,479,555],protfunc_callable_protkei:477,protfunc_modul:478,protfunc_pars:478,protfunc_raise_error:[0,478,479],protfunct:478,protkei:[43,477,478],proto:[501,512],proto_def:335,protocol:[20,23,34,42,45,52,62,67,129,131,137,138,150,200,202,206,217,218,219,220,221,228,229,237,240,326,432,447,474,488,489,492,494,497,501,502,503,504,505,506,507,508,510,511,512,514,515,516,517,519,520,521,523,530,531,532,533,550,564,568,620],protocol_flag:[0,221,514,515,519,531],protocol_kei:[221,532],protocol_path:[510,533],protodef:335,prototocol:252,protototyp:[476,478,479],protototype_tag:43,prototoyp:477,prototyp:[24,32,88,101,111,129,137,138,147,152,198,221,225,226,242,259,273,322,335,339,340,344,363,370,371,372,418,441,620],prototype1:479,prototype2:479,prototype_:43,prototype_desc:[43,479],prototype_dict:242,prototype_diff:479,prototype_diff_from_object:479,prototype_from_object:479,prototype_kei:[0,43,88,124,242,322,478,479],prototype_keykei:242,prototype_list:0,prototype_lock:[43,479],prototype_modul:[0,43,124,221,242,367,478,479],prototype_or_kei:418,prototype_pagin:478,prototype_par:[0,43,124,242,367,479],prototype_tag:479,prototype_to_str:478,prototypeevmor:478,prototypefunc:[221,479],protpar:[478,479],proud:184,provid:[1,3,4,9,11,14,18,19,23,24,32,33,41,43,44,49,50,51,52,53,54,56,57,59,65,71,76,81,82,83,84,87,88,98,100,102,104,111,119,123,126,128,130,137,140,143,144,145,149,155,165,184,186,188,192,193,194,195,196,197,208,211,212,217,219,228,237,242,247,254,256,265,266,274,285,299,300,305,316,319,322,335,338,340,341,342,349,362,370,376,380,387,409,411,413,418,420,442,450,452,458,462,464,469,474,477,478,485,492,512,535,541,543,551,552,555,562,563,564,566,568,569,593,594,608,614,617,619],provok:[6,200],prowl:33,proxi:[0,49,137,208,221,222,537,577,584,620],proxypass:207,proxypassrevers:207,proxyport:221,prudent:4,prune:21,pseudo:[63,71,112,126,182,186,390,457,458,620],psionic:341,psql:[205,223],pstat:8,psycopg2:205,pty:189,pub:[221,247,256],pubkeyfil:512,publicli:[12,54,149,209,221],publish:[3,4,200,212],pudb:[0,2,225,620],puff:167,puid:221,pull:[1,3,21,23,32,53,54,97,125,126,127,128,131,138,150,193,212,216,223,290,407,441,452,494,616],pummel:146,punch:[21,121,133],punish:[149,161,342],puppet:[0,9,13,21,23,26,34,35,41,45,46,51,58,63,81,82,88,100,103,139,152,168,169,175,179,181,183,185,189,191,194,221,227,228,233,239,242,250,258,322,329,349,364,406,469,474,531,533,542,543,576,581,609,614,616],puppet_object:[13,228],puppeted_object:576,purchas:[149,184,208],pure:[49,61,70,81,101,149,167,171,188,208,482,492,540,545],pure_ascii:568,purg:[14,49,218,252],purpl:417,purpos:[0,7,14,42,47,59,67,93,136,144,149,152,155,161,172,188,191,194,196,208,217,229,233,237,286,310,371,384,412,417,512,540,549,552,555,568,572],pursu:[146,152,440],push:[0,82,100,114,132,141,142,149,188,212,219,290,305,434,441],pushd:213,put:[0,1,2,6,7,10,11,13,15,16,23,27,29,35,38,39,41,43,45,49,50,54,55,56,58,61,67,69,74,76,84,87,88,92,93,100,101,102,105,110,119,124,125,126,128,131,133,134,138,139,140,141,143,145,147,150,151,155,163,165,168,169,170,174,177,178,179,180,182,184,185,191,192,193,194,196,205,217,220,221,222,236,239,240,242,244,248,263,310,316,319,322,323,338,342,387,390,391,400,408,409,411,442,450,462,470,501,515,553,554,568,620],putobject:76,putobjectacl:76,putti:217,puzzl:[0,88,93,121,146,200,225,226,259,311,322,409,441,442,620],puzzle_desc:441,puzzle_kei:442,puzzle_nam:335,puzzle_valu:442,puzzleedit:335,puzzlerecip:[111,335],puzzlesystemcmdset:[111,335],pvp:[132,147,416],pwd:[8,212],py2:0,py3:501,py3k:76,pyc:138,pycharm:[2,128,132,620],pyopenssl:[201,221],pypa:215,pypath:568,pypath_prefix:568,pypath_to_realpath:568,pypi:[0,8,131,200,217,545],pypiwin32:[189,213,215],pyprof2calltre:8,pyramid:[123,362],pyramidmapprovid:[123,362],python2:189,python3:[131,211,213,215,395],python3_properti:131,python:[0,5,6,7,8,9,10,11,13,14,16,17,20,21,23,27,29,32,33,35,37,39,43,47,49,50,51,52,53,54,55,56,58,61,64,65,66,69,71,72,74,76,77,79,82,86,90,97,101,102,105,122,123,124,126,128,129,131,132,133,134,135,136,137,139,140,141,142,145,148,149,150,151,152,155,157,158,161,163,164,165,166,167,169,172,175,176,177,178,179,181,182,184,186,187,189,191,192,194,195,196,197,201,202,203,204,205,210,211,212,213,215,216,217,218,220,221,234,236,241,242,246,252,253,265,284,285,286,287,288,290,300,322,362,372,384,410,412,458,464,470,472,473,477,479,481,484,487,492,494,501,505,510,520,531,533,537,539,541,542,545,546,548,549,550,551,552,554,555,556,559,561,564,565,566,568,586,591,597,620],python_path:[144,236,568],pythonista:200,pythonpath:[236,492,502,546],pytz:569,q_lycantrop:136,q_moonlit:136,q_recently_bitten:136,qualiti:[77,126,127,147,149,157,161,163,234,411,413,417,418],queen:124,quell:[13,24,26,62,115,121,133,134,139,140,143,146,180,239,355,469],quell_color:242,queri:[0,12,14,24,32,43,47,50,57,67,69,87,124,126,131,132,142,145,157,167,176,181,231,247,249,258,274,319,373,391,465,466,467,472,473,474,478,479,482,499,512,527,540,541,542,543,553,555,560,565,568,569],query_al:540,query_categori:540,query_info:492,query_kei:540,query_statu:492,query_util:588,queryset:[0,44,47,131,132,142,145,196,230,257,306,329,372,373,465,472,474,478,481,484,498,541,553,565,577,584,588,594,613,614,616,619],queryset_maxs:553,querystr:588,quest:[92,100,117,126,130,132,146,147,150,157,158,168,176,225,226,259,396,402,405,410,412,413,418,427,442],quest_categori:414,quest_kei:414,quest_storag:187,quest_storage_attribute_categori:414,quest_storage_attribute_kei:414,questclass:187,quester:[187,414],questhandl:[187,414],question:[0,11,23,27,29,55,74,81,82,106,126,135,147,148,149,150,168,177,207,208,217,242,473,489,490,540,550,552,566,568],queu:[221,492],queue:[4,178,407,537],qui:30,quick:[0,9,21,23,37,44,47,71,75,79,82,88,100,111,126,128,130,132,135,143,144,147,152,178,181,186,213,217,229,242,265,390,464,479,497,540,543,554,593],quicker:[38,69,102],quickfind:145,quickli:[0,1,12,14,17,23,29,37,39,47,55,69,82,108,112,124,126,149,150,152,181,193,198,223,242,265,308,310,390,543,546],quickstart:[66,69,141,169,211,217],quiescentcallback:494,quiet:[1,86,124,145,184,228,240,242,247,265,296,316,364,391,474,553,568],quiethttp11clientfactori:494,quietli:[32,67,70,172,221,540],quirk:[2,14,206,236,620],quit:[0,6,8,13,18,23,26,27,29,45,55,63,82,95,100,101,102,121,124,128,130,133,134,136,139,143,144,145,146,149,163,168,173,179,181,184,192,194,196,205,208,209,211,223,239,254,265,266,281,286,303,308,341,413,450,512,550,552,553],quitfunc:[27,550],quitfunc_arg:550,quitsave_yesno:550,quitter:146,quo:48,quot:[14,20,25,27,32,35,43,143,183,205,242,254,281,391,408,550,552,564,568],qux:[119,462],ra4d24e8a3cab:25,race:[130,132,147,158,167,177,194,200,207,568],rack:[323,441],radial:409,radiant:81,radio:[19,149],radiu:[105,181,182],rafal:76,rage:[118,146,395],ragetrait:[118,395],rail:[131,180],railroad:180,railwai:371,rain:[44,146,149,190],raini:442,rais:[0,7,14,17,20,23,32,43,55,67,88,100,136,149,155,161,163,177,186,195,197,228,229,230,257,265,277,284,286,287,322,346,349,370,371,372,373,384,390,391,395,405,411,417,456,458,470,472,477,478,479,487,491,492,510,515,521,536,540,541,543,545,546,548,551,552,554,555,562,563,564,566,568,569,589],raise_error:[32,478,555,563,568],raise_except:[0,14,322,540,543],raise_funcparse_error:474,ram:[14,217],ramalho:200,ran:[4,6,15,29,143,485],rand:44,randint:[32,43,88,100,104,139,161,177,178,186,191,198,338,479,555],random:[0,25,29,32,43,44,80,81,88,100,101,104,112,126,132,134,139,146,149,158,161,177,178,186,189,190,191,198,217,220,280,292,310,323,338,342,362,376,390,400,401,406,409,415,417,418,434,441,442,455,456,457,458,459,479,501,523,524,555,568,620],random_result:161,random_string_from_modul:568,random_string_gener:[113,225,226,259,444,620],random_t:[152,225,226,259,396,402],randomli:[8,44,69,104,161,190,221,338,339,340,341,342,406,434,440,441,492,524,555],randomstringgener:[113,458],randomstringgeneratorscript:458,rang:[6,8,21,27,43,70,95,104,105,118,120,124,126,134,146,155,161,167,178,181,182,186,206,219,221,242,277,339,341,342,368,370,373,394,395,407,417,450,541,550,555,608,619],ranged_attack:323,rangedcombatrul:342,ranger:408,rank:[0,58,469],rant:0,raph:200,rapidli:236,rapier:136,raptur:516,rare:[10,23,48,55,59,69,82,104,128,215,223,247,372,470,472,548],rascal:47,rase:324,rate:[8,23,81,87,126,127,131,161,217,221,247,259,319,374,393,487,492,511,568],rate_of_fir:171,ratetarget:[118,394,395],rather:[0,1,7,9,11,12,13,14,15,23,33,39,44,47,48,54,69,73,74,76,77,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,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,130,131,132,134,135,138,140,143,149,151,152,165,168,172,178,181,186,195,204,208,218,220,221,223,228,231,235,239,242,243,249,250,252,256,286,296,313,332,338,339,340,341,342,371,372,376,387,391,395,409,463,474,476,478,479,540,542,545,554,563,564,577,584,617],ration:[78,152,161,313],rattl:[161,417],raw:[0,14,23,32,34,43,52,56,61,67,69,128,131,132,134,143,144,149,165,167,228,234,237,242,250,251,253,300,391,395,447,474,497,512,515,520,521,531,540,545,550,552,562,568],raw_cmdnam:[133,234,251],raw_desc:346,raw_id_field:[578,581,582],raw_input:[29,552],raw_nick:38,raw_str:[23,29,133,152,184,228,229,233,234,237,253,304,406,407,408,412,418,439,450,462,474,476,531,540,552,566],raw_templ:38,rawhid:323,rawhiderecip:323,rcannot:82,rdelet:242,re_format:545,re_mxplink:567,re_mxpurl:567,re_protocol:567,re_str:567,re_styl:567,re_url:567,re_valid_no_protocol:567,reach:[29,38,70,82,124,133,134,140,146,149,157,177,180,181,217,221,225,237,284,342,371,395,405,413,418,450,512,516,535,552,553,565],reachabl:[48,131,370],react:[29,48,53,100,176,183,376,407,440,474,540,620],reactiv:[81,252],reactor:[503,530,537,566],read:[0,1,7,8,11,12,14,15,17,18,20,21,23,29,32,33,35,37,43,45,50,54,57,62,66,69,70,76,82,88,93,98,100,101,102,110,113,118,121,124,125,126,128,130,131,133,134,136,137,138,139,140,141,143,144,146,149,150,155,157,163,167,169,171,172,181,186,188,189,191,192,194,195,196,197,200,202,204,205,207,210,217,219,220,221,223,228,231,241,248,249,258,265,290,305,329,346,370,371,387,391,395,441,442,458,464,466,473,474,478,479,482,499,501,524,540,542,543,546,547,551,553,560,561,568,576,613,616,620],read_batchfil:546,read_default_fil:4,read_flag:305,read_only_field:[196,591],readabl:[7,8,20,48,49,61,71,100,128,182,249,263,305,322,370,441,545,552,616],readable_text:441,reader:[34,98,128,140,169,194,200,203,221,228,247,342,387,497,511],readi:[0,1,4,6,8,10,13,17,35,39,55,56,63,87,93,132,134,138,149,150,155,171,172,180,184,193,196,209,211,228,237,273,319,338,339,340,341,342,380,391,407,408,474,521,553,562,568],readili:[105,205],readin:551,readlin:561,readm:[12,16,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,138,163,221,259,447],readon:155,readonly_field:[576,578,581,582],readonlypasswordhashfield:576,readout:[81,376],readthedoc:588,real:[0,6,8,9,12,13,20,21,32,39,43,49,55,64,71,82,93,100,101,105,112,120,126,128,130,136,141,143,144,149,164,169,170,175,177,178,179,181,188,191,202,208,212,215,217,218,221,231,236,258,277,313,323,340,371,372,390,391,406,418,455,469,523,546,555,556],real_address:13,real_nam:13,real_seconds_until:[277,556],real_word:390,realist:[8,149,150,190,305],realiti:[8,105,130,147,167,188,200],realiz:[139,188],realli:[1,6,9,12,14,15,16,19,21,23,29,32,35,39,44,47,48,50,55,56,58,71,82,93,100,105,119,121,122,124,126,128,131,133,134,137,139,140,141,144,145,150,158,161,169,175,180,181,183,186,187,202,203,208,218,221,237,253,265,300,313,371,462,470,501,545,546,552,564,566],really_all_weapon:136,realm:[149,512],realnam:39,realpython:55,realtim:[138,169,277,376],realtime_to_gametim:[89,277],reappli:81,reapplic:[81,376],reason:[1,7,8,10,12,14,15,19,29,33,35,37,38,39,41,43,44,48,49,51,56,63,67,69,73,82,88,91,112,118,124,125,128,131,133,139,141,147,149,150,155,161,163,167,168,169,177,178,181,182,188,189,197,207,208,215,221,228,240,242,247,252,281,296,306,322,370,371,390,395,458,472,474,478,483,489,494,501,502,503,504,510,511,512,515,520,521,523,531,532,533,542,550,555,561,568,619],reasourc:43,reassign:182,reattach:[10,503,504],rebal:0,reboot:[0,14,20,26,27,36,44,45,48,69,76,85,118,130,138,178,196,208,210,212,217,221,222,228,236,247,252,268,319,395,440,441,450,474,482,483,485,487,492,532,533,550,552,620],reboot_evennia:492,rebuild:[124,169,208,212,215,372,390,504],rebuilt:[23,124,208,221,370],rec:221,recach:442,recal:[151,155,441,613],recaptcha:194,receiev:221,receipt:[77,219,494],receiv:[0,6,19,21,23,29,30,32,37,38,45,52,53,62,67,72,88,138,157,169,185,186,194,217,221,228,235,236,254,256,257,258,281,306,329,370,391,395,408,447,474,494,497,501,503,504,510,520,521,523,530,531,548,553,555,565,566,568,578,620],receive_functioncal:501,receive_status_from_port:492,receiver1:566,receiver2:566,receiver_account_set:231,receiver_extern:258,receiver_object_set:473,receiver_script_set:482,recent:[18,54,149,191,208,230,535],recently_bitten:136,recev:521,recip:[48,102,111,126,149,225,226,259,311,321,324,335],recipe_modul:322,recipe_nam:322,recipebread:88,recipenam:88,recipes_pot:322,recipes_weapon:322,recipi:[19,32,37,88,169,228,256,257,329,380,474,501,555],reckon:189,recog:[0,38,62,112,391,620],recogerror:391,recoghandl:391,recogn:[11,34,39,57,83,133,134,140,143,144,149,163,174,192,195,213,217,218,391,395,537],recognit:[59,112,126,150,391,540],recommend:[0,1,7,8,12,14,29,39,43,49,56,69,70,71,74,86,92,120,124,128,130,135,143,147,149,163,169,176,177,189,197,200,205,206,207,210,213,215,216,217,221,252,286,300,370,387,406,446,470,472,474,479,494,546,552,565],reconfigur:217,reconnect:[91,106,221,228,229,247,256,489,492,501,503,504,530,533],reconnectingclientfactori:[489,503,504,523],record:[17,77,191,205,217,342,447,535,608],record_ip:535,recours:56,recov:[0,20,118,161,167,171,172,338,339,340,341,342,395,470,568],recoveri:178,recreat:[44,105,138,139,205,215,221,229,236,372,546,547],rectangl:551,rectangular:[169,551],recur:131,recurs:[0,14,100,349,371,469,478],recycl:123,recycle_tim:409,red:[15,16,21,38,41,43,54,61,79,124,126,128,134,138,141,143,144,187,188,221,242,252,305,316,417,433,434,441,545,555,569,620],red_button:[0,15,16,38,114,134,138,225,226,242,253,259,396,620],red_kei:41,red_ros:136,redbutton:[15,16,38,114,134,138,242,434],redd:219,reddit:[200,219],redefin:[23,39,82,130,474,608],redhat:[208,215],redirect:[0,45,54,63,74,82,138,194,197,207,221,265,305,308,552,610,614,619],redirectlink:371,redirectview:614,redit:[82,265],redmapnod:124,redo:[27,143,144,147,550],redoc:[0,196],redraw:512,reduc:[178,338,339,505],reduct:76,redund:545,reel:236,reen:545,ref:[49,81,128,205,221,391,474,568,608],refactor:[0,168,338,339,341,474,571],refer:[2,5,10,12,14,15,21,23,29,32,35,38,39,43,44,45,49,54,58,59,63,69,70,73,76,78,81,82,83,88,100,101,102,104,105,112,113,118,126,131,132,133,136,138,139,141,143,144,150,151,155,157,161,163,167,168,175,177,178,182,184,188,189,194,195,196,197,200,207,210,212,217,218,220,221,228,236,242,247,251,256,296,308,313,323,338,340,364,370,373,376,391,395,402,407,410,412,418,450,458,469,474,483,484,486,487,494,504,524,532,541,552,555,559,564,565,568,577,584,619,620],referenc:[39,43,51,62,112,126,128,157,167,196,220,237,242,247,256,370,391,409,464,466,542,568,620],referenti:568,referr:217,refin:[136,182,323],reflect:[81,143,146,213,376,619],reflectbuff:[81,376],reflex:[59,555,572],reflog:12,reflow:57,reformat:[479,554],reformat_cel:554,reformat_column:[105,554],refresh:[54,81,124,157,161,195,376,377,413,512,535],refus:[19,56,149],regain:[161,172,417],regard:[188,458,588],regardless:[0,11,21,23,41,45,49,56,58,59,67,81,136,147,155,169,177,180,221,228,235,256,305,313,326,376,391,411,474,487,509,512,515,530,532,540,543,546,559,561,568],regener:340,regex:[0,19,23,27,29,38,52,54,77,85,221,237,240,252,253,256,268,458,536,540,552,568,597],regex_nick:38,regexfield:576,region:[75,124,169,217,221,240],regist:[0,52,53,54,67,74,86,100,124,178,194,196,198,201,204,219,220,221,222,228,230,247,252,271,272,273,275,290,319,407,414,418,440,441,483,492,503,504,510,533,535,537,545,555,593,599,609,612],register_act:407,register_error:545,register_ev:[100,290],register_exit_travers:409,registercompon:52,registertest:609,registr:[0,50,201,612],registrar:208,registri:[126,458,535,537,620],regress:478,regroup:86,regul:470,regular:[0,11,14,18,19,23,32,33,37,44,45,48,51,52,53,59,74,77,78,84,100,111,113,124,126,128,132,134,135,136,138,139,143,144,147,155,157,161,165,187,190,195,197,212,213,217,221,229,235,316,335,371,407,417,442,458,464,470,487,540,543,555,559,568,572,597],regulararticl:560,regulararticle_set:560,regularcategori:560,regularli:[100,190,198,203,208,221,277,307,440,442,485,487,495,525,556],reilli:200,reimplement:[89,126,196],reinforc:200,reiniti:218,reinstal:[213,215],reinvent:168,reiter:144,reject:[95,100,450,458],rejectedregex:458,rejoin:19,rel:[12,15,16,21,29,33,51,55,58,82,104,123,124,126,128,132,142,149,163,182,191,194,220,277,305,342,546,552],relai:[0,20,23,45,202,228,247,313,326,370,474,510,533,552,553,568],relat:[0,14,19,21,23,29,33,49,52,54,97,118,124,125,126,136,138,139,140,144,145,157,161,167,168,171,187,190,200,218,219,220,221,231,232,235,250,255,257,258,272,273,274,275,277,290,304,305,306,338,339,340,341,342,344,370,371,376,378,395,414,439,442,447,466,473,474,481,482,487,497,533,540,542,543,545,552,560,561,574,576,577,584,591,601,608,620],related_field:[576,577,578,580,581,582,584],related_nam:[231,258,466,473,482,540,542,543,560],relationship:[37,49,182],relay:229,releas:[0,76,92,125,126,128,132,138,148,149,150,161,171,189,199,200,212,216,217,222,223,252,572],relev:[14,16,23,35,39,46,47,49,51,54,74,75,78,81,82,118,124,127,128,140,151,152,155,157,161,165,169,173,175,178,189,191,194,200,216,228,233,235,265,313,322,371,376,395,470,484,506,524,531,532,533,545,550,552,562,568,577,584],relevant_choic:265,reli:[0,11,29,48,61,69,70,74,96,100,112,126,145,149,175,186,188,189,326,391,395,407,442,492,542],reliabl:[1,15,49,205,542,559],reliant:104,religion:[33,464],reload:[0,2,3,4,6,10,13,14,15,16,20,21,23,25,26,27,29,33,34,42,44,45,48,49,51,53,54,56,58,63,64,74,81,82,88,91,93,94,96,97,99,100,102,106,108,109,112,116,118,124,126,133,138,139,140,141,143,151,155,157,163,165,168,169,171,172,174,175,177,178,179,180,181,183,184,185,187,191,193,194,195,197,201,203,204,208,210,215,220,221,222,228,229,236,241,242,252,256,265,281,287,296,332,346,349,358,362,370,372,378,391,395,441,442,452,464,470,472,474,481,483,485,487,492,501,502,504,506,530,533,537,540,546,548,550,551,552,556,568,620],reload_evennia:492,reluct:149,remain:[0,9,14,15,21,23,27,29,43,44,46,58,72,81,93,112,118,138,139,140,141,169,176,186,217,218,234,236,242,244,248,277,308,322,338,339,340,341,342,346,390,395,407,409,440,474,492,520,521,552,553,568],remaind:[23,179,277],remaining_repeat:44,remap:[143,221,540,551],rememb:[2,8,11,12,14,15,21,23,29,33,41,43,47,48,52,54,56,61,69,70,82,100,102,105,124,136,139,143,144,145,146,147,149,150,151,152,155,157,161,163,167,169,172,175,179,181,182,184,185,186,187,188,191,196,197,209,213,215,217,223,240,242,286,371,390,474,483,546,565,620],remind:[27,102,128,414],remit:240,remnisc:168,remot:[1,12,97,208,212,219,222,247,452,501,503,515],remote_link:452,remov:[0,2,4,12,14,19,20,21,24,27,29,32,33,36,38,39,41,44,48,56,76,77,82,86,93,102,112,113,114,118,124,130,132,133,136,138,139,146,149,158,169,178,179,181,186,189,193,194,197,203,221,223,225,235,236,240,242,247,248,249,252,253,256,258,265,271,272,273,274,275,284,288,296,305,310,316,323,335,338,339,340,346,371,372,376,377,378,390,391,394,395,405,407,408,409,411,414,418,434,450,458,462,470,473,474,478,479,483,484,486,487,492,510,521,533,535,540,543,545,549,552,559,564,566,567,568,594,620],remove_alia:247,remove_backspac:567,remove_bel:567,remove_by_cachevalu:[81,376],remove_by_nam:273,remove_by_sourc:[81,376],remove_by_stat:[81,376],remove_by_trigg:[81,376],remove_by_typ:[81,376],remove_charact:178,remove_combat:407,remove_default:[21,236],remove_listen:274,remove_map:372,remove_non_persist:481,remove_object:372,remove_object_listeners_and_respond:274,remove_receiv:258,remove_respond:274,remove_send:258,remove_user_channel_alia:[19,256],removeth:540,renam:[0,8,26,133,134,143,144,169,189,193,216,221,242,248,256,474,481,542],render:[46,52,53,54,82,98,99,128,165,193,194,195,197,249,349,387,537,562,564,576,577,578,580,581,582,584,591,597,606,608,619],render_post:521,render_room:349,renew:[169,208,535],reorgan:0,repair:[132,147,179],repeat:[0,6,8,70,89,100,102,105,113,126,143,147,149,161,175,178,180,183,193,211,218,221,228,229,277,307,313,407,409,458,462,481,482,485,492,497,516,540,548,552,556,568],repeatedli:[6,16,34,138,175,307,440,482,485,487,492,497,523,601],repeatlist:34,repetit:[175,178,458],replac:[0,1,4,14,19,21,23,27,29,32,33,34,35,38,39,43,45,50,52,59,61,74,76,78,82,85,91,95,100,105,108,109,110,112,124,126,128,132,133,135,138,140,142,143,145,155,161,168,173,174,176,178,189,193,195,197,205,207,208,212,216,220,221,228,234,235,236,237,240,248,249,252,253,256,268,271,281,284,287,296,300,304,310,313,319,322,332,335,346,370,371,390,391,407,408,417,418,434,439,442,450,470,474,476,478,479,504,507,520,521,531,540,545,550,551,552,553,554,555,567,568,597,599],replace_data:554,replace_timeslot:346,replace_whitespac:554,replacement_str:248,replacement_templ:248,replai:221,replenish:[338,342],repli:[23,29,78,149,173,201,229,313,329,490,514,515,521,533,552],replic:[150,193,543],replica:139,repo:[0,10,12,66,97,126,128,137,147,168,189,200,216,223,452,568],repo_typ:452,repoint:54,report:[0,8,9,11,12,23,26,36,44,48,82,88,100,112,121,124,127,145,147,149,177,178,186,193,205,206,211,215,219,220,221,230,242,247,284,287,300,322,371,391,474,492,497,501,504,507,508,515,516,520,523,531,533,545,548,552,568],report_to:[230,472,481,548],repositori:[1,3,5,66,76,97,137,187,189,199,205,207,212,452,479],repositri:66,repr:[186,568,616],reprehenderit:30,repres:[0,1,7,13,21,23,32,33,37,39,45,46,49,54,59,63,69,72,82,86,95,98,100,101,102,104,112,113,115,118,124,126,129,131,132,133,134,136,137,138,139,141,144,149,150,155,157,161,167,171,172,175,178,179,182,184,187,188,189,193,194,197,228,233,257,284,290,300,308,316,340,355,370,371,372,376,387,390,391,395,410,413,414,441,442,447,450,458,462,464,474,479,486,487,489,503,504,520,521,531,532,533,537,540,541,545,547,548,552,553,554,555,564,568,571,594],represent:[0,13,14,32,37,38,45,63,69,70,72,131,169,177,188,257,284,287,370,391,411,418,472,478,482,501,520,521,543,549,556,591],reprocess:219,reproduc:[55,124,371,474],repurpos:76,reput:[132,147,446],reqhash:[541,568],reqiur:[95,450],request:[0,12,29,35,46,50,53,54,63,74,78,125,127,138,144,165,191,194,195,196,197,207,217,219,221,228,229,240,287,313,319,474,478,492,494,501,504,506,511,512,514,521,537,543,552,576,577,578,579,581,582,584,588,589,594,599,600,601,602,606,613,615,616,619],request_finish:46,request_start:46,requestavatarid:512,requestfactori:537,requestor:535,requir:[3,7,8,11,16,17,23,27,29,32,33,35,36,39,41,43,48,49,50,51,52,53,54,55,60,69,76,77,81,82,86,88,93,97,100,101,104,105,106,108,113,119,124,125,126,128,133,140,147,149,150,152,169,178,182,183,188,189,190,193,194,195,196,197,199,200,204,205,207,208,209,211,213,217,218,221,222,230,241,242,247,257,258,281,296,300,319,322,323,332,340,341,346,370,371,373,376,384,391,395,407,411,442,450,458,462,465,469,472,474,478,486,492,503,504,517,525,536,541,546,551,552,553,554,555,559,563,564,565,568,576,577,578,580,581,582,584,608,614],require_al:[41,543],require_singl:[0,478],requirements_extra:[0,76,97,124],requr:43,requri:[478,555],rerout:[0,53,184,239,243,504,585],rerun:[0,14,15,16,29,124,322],res:221,rescind:408,research:[149,200,286],resembl:[1,73,130],resend:23,reserv:[23,32,55,105,133,139,143,151,172,478,536,541,555,568],reserved_keyword:32,reserved_kwarg:[32,555],reset:[0,12,17,18,20,21,23,26,27,44,45,49,56,61,64,81,100,102,105,112,118,133,138,157,171,174,177,178,180,188,191,220,221,222,228,229,236,242,252,277,287,303,305,319,376,390,391,394,395,407,409,441,470,492,496,502,512,530,540,543,546,554,555,556,566,568,620],reset_cach:[540,543],reset_callcount:44,reset_exit:409,reset_gametim:[20,556],reset_serv:496,reset_tim:346,reshuffl:[132,142],resid:[71,137,470],residu:[252,340],resist:[86,479,568],resiz:[53,169,551,554],resolut:[118,149,178,370,395,413,417],resolv:[6,12,93,128,143,144,149,150,157,161,178,217,220,335,338,339,340,342,407,591],resolve_attack:[338,339,340,341,342],resolve_combat:178,resort:[23,128,169,209,247,568],resourc:[11,24,48,50,53,54,71,74,76,118,125,126,128,129,133,136,137,138,139,141,143,144,145,149,157,161,167,171,189,193,205,217,219,221,228,341,369,395,467,483,490,521,537,547,566,620],respawn:[124,132,147],respect:[0,23,32,35,39,44,45,49,50,81,88,100,102,103,111,116,124,126,141,163,169,172,191,205,220,221,240,242,249,313,322,329,335,358,376,391,407,470,474,531,532,542,543,546,548,551,554,565,568,572,608],respond:[0,29,36,46,67,101,102,107,126,138,140,147,183,184,185,188,218,274,519,523],respons:[0,8,18,29,32,33,50,53,54,55,57,70,125,131,180,182,183,186,196,198,217,221,228,229,236,237,247,256,274,322,362,409,442,464,466,474,490,492,494,501,523,524,533,542,551,562,564,568,591],response_add:[576,578,581],rest:[0,10,18,19,23,24,29,32,38,44,53,54,69,76,83,92,105,110,118,128,132,138,139,142,143,144,146,147,149,157,161,167,172,176,177,191,194,210,213,220,221,234,250,251,338,339,340,341,342,395,417,540,545,554,588,589,591,592,593,594,620],rest_api_en:[50,53,221],rest_framework:[50,196,221,588,589,590,591,592,594],restart:[0,6,10,26,42,44,52,56,66,74,85,90,97,100,126,139,144,169,178,196,205,208,213,217,218,219,220,221,222,223,225,228,252,256,265,268,271,287,378,384,452,474,481,483,485,486,487,496,509,530,531,532,568],restartingwebsocketserverfactori:[229,503],restock:149,restor:[14,21,102,188,265,323,341,483,487],restrain:[118,242,395,469,551,568],restrict:[14,35,43,48,49,52,58,81,84,100,105,113,134,137,138,145,155,177,195,207,217,242,296,316,341,342,370,458,464,465,470,472,479,481,548,550,551,552,554,565],restructur:[0,128,167],restructuredtext:7,result1:335,result2:[29,335],result:[0,7,9,11,14,20,21,23,29,32,33,35,43,45,48,50,52,53,55,59,70,74,77,79,83,84,88,90,92,95,104,110,111,112,113,118,124,128,133,136,137,139,141,143,145,149,151,155,157,161,163,169,173,177,178,183,186,188,191,193,195,205,217,220,221,228,230,234,235,237,242,249,256,258,274,305,313,322,323,324,335,338,339,340,342,370,371,376,384,390,391,395,407,417,442,446,450,458,465,467,470,472,474,478,479,481,492,501,523,540,542,545,550,551,552,554,555,559,561,562,565,566,568,569,571,586,616],result_nam:335,resum:[23,83,124,172,380,486],resurrect:[149,440],resync:[229,501,531],ret1:555,ret:[23,155,566],ret_index:568,retain:[0,9,20,21,33,43,54,55,66,96,105,144,152,161,221,257,326,395,464,466,473,479,538,540,542,546,548,555,561,568,572],retain_inst:[0,237],retext:128,retract:313,retreat:[342,407],retri:492,retriev:[0,9,19,23,34,47,50,69,71,75,86,100,102,118,124,155,191,196,197,221,228,231,233,236,242,247,252,253,257,273,286,346,364,371,376,395,452,465,469,473,474,478,490,497,498,504,510,519,540,543,549,559,563,565,568,573,588,589,593,594,613,616,619],retriv:[229,547],retro:19,retroact:[49,169],retur:30,return_al:474,return_alias:371,return_appear:[0,124,182,191,305,306,316,346,373,391,413,432,441,474],return_apper:[373,474],return_cmdset:249,return_detail:[346,442],return_dict:464,return_except:0,return_iter:478,return_key_and_categori:543,return_list:[0,32,110,455,456,540,543,555],return_map:105,return_minimap:105,return_obj:[14,38,540,543,563],return_par:0,return_puppet:228,return_str:[32,370,555],return_tagobj:543,return_tupl:[38,384,540],return_valu:161,returnvalu:[23,55],reus:[0,49,86,143,145,171,270,296,559],rev342453534:568,reveal:[100,124,146,316],reveng:150,reverend:[76,126],revers:[21,23,54,59,61,100,105,123,172,180,181,188,195,221,231,247,258,362,370,394,466,473,482,537,540,542,543,545,560,594],reverse_lazi:221,reverseerror:[492,501],reversemanytoonedescriptor:[231,473,560],reverseproxyresourc:537,revert:[12,54,188,217,239,465],review:[12,21,74,102,125,127,131,133],revis:[0,147,572],revisit:[4,552],reviu:29,revok:169,reward:[121,149,414],rework:[0,106,126,139,147],rewrit:54,rfc1073:508,rfc858:514,rfc:[508,514],rfind:545,rgb:[61,143,545],rgbmatch:545,rgh:143,rhel:207,rhello:32,rhost:254,rhostmush:[71,73,168],rhs:[1,169,250,253],rhs_split:[242,248,250,316],rhslist:[0,250],rhythm:377,ricardo:568,riccardomurri:568,rice:149,rich:[0,76,82,149,168,199,549],richard:200,rick:43,rid:[141,167],riddanc:56,riddick:[95,450],ride:180,right:[0,1,6,8,9,12,16,23,29,32,34,35,38,43,44,50,52,53,54,55,66,76,81,86,88,94,95,100,101,102,105,123,124,126,128,132,133,136,137,138,139,140,143,144,146,147,149,150,151,152,163,167,168,169,172,179,180,181,184,186,188,191,192,194,195,196,200,205,207,208,211,217,221,236,239,242,250,252,254,256,287,288,299,303,305,316,322,335,342,346,349,362,370,371,387,407,412,417,434,440,441,442,450,470,479,482,532,545,546,550,551,554,568,569],right_justifi:43,rightmost:[124,371],rigid:168,rindex:545,ring:[112,145,149,390],ringmail_armor:14,rink:76,rip:152,rise:[21,175],risen:175,risk:[12,32,53,147,149,168,191,213,217,221,241,252,568],rival:105,rjust:[32,545,555],rm_attr:242,rmem:221,rnormal:61,rnote:252,road:[21,101,105,180,184,235,408],roam:[146,236,440],roar:105,robot:194,robust:[186,219],rock:[69,100,104,178,236],rocki:146,rod:236,rodrigo:76,role:[0,18,76,120,126,130,132,141,147,168,177,186,205,338],roleplai:[33,62,108,125,126,130,132,147,168,176,177,178,189,191,200,384,389,391,620],roll1:177,roll2:177,roll:[12,29,88,100,120,125,126,132,144,149,151,152,157,158,163,169,176,177,178,186,191,338,339,340,341,342,383,384,405,406,412,417,428,535],roll_challeng:177,roll_death:[151,161,417],roll_dic:384,roll_dmg:177,roll_engin:161,roll_hit:177,roll_init:338,roll_random_t:[151,152,161,417],roll_result:[161,384],roll_skil:177,roll_str:[161,417],roll_with_advantage_or_disadvantag:[161,417],roller:[126,132,149,151,177,178,322,384,417,620],rom:200,roof:242,room1:11,room2:11,room56:15,room:[0,2,6,7,11,14,15,16,17,19,20,21,23,35,37,43,44,47,49,50,51,56,59,71,75,82,90,93,99,100,101,104,112,115,116,117,120,122,123,124,125,126,129,130,131,132,134,136,138,139,140,141,142,143,144,145,146,148,151,152,155,158,167,168,170,174,175,176,177,178,179,180,183,184,185,186,189,191,194,196,198,220,221,225,226,233,234,235,236,240,242,248,253,259,265,286,300,301,302,303,304,305,307,308,310,316,338,339,340,341,342,345,346,349,355,358,362,364,365,367,370,371,372,373,384,391,396,402,407,409,411,425,434,436,438,439,440,441,469,474,482,496,524,546,566,588,594,609,620],room_desc:[11,104],room_dict:104,room_flag:167,room_gener:409,room_lava:167,room_replac:303,room_typeclass:[347,362,566,609],room_x_coordin:124,room_y_coordin:124,room_z_coordin:124,roombuildingmenu:[82,265],roomnam:[169,242],roomref:180,rooms_with_five_object:136,roomstat:305,roomviewset:[196,594],root:[4,5,7,8,9,10,15,35,39,54,59,69,74,76,82,97,128,131,137,189,193,195,196,197,199,205,208,211,212,213,216,217,225,226,441,474,479,492,537,549,574,587,599],root_urlconf:221,rose:[14,38,39,49,135,136,145],roses_and_cactii:145,rostdev:217,roster:[189,338,339,340,341,342],rosterentri:189,rot:11,rotat:[0,19,138,221,305,561],rotate_flag:305,rotate_log_fil:561,rotatelength:561,rough:[128,147],roughli:[147,169,568],round:[8,18,32,81,112,118,319,342,390,395,407,523,554,555],rounder:[112,390],rout:[52,124,126,134,167,180,182,196,228,364,370,371,407,412],router:[196,217,590,593],routerlink:124,routermaplink:[124,371],routin:[112,221,391,472,527,565],row:[0,52,57,61,69,102,105,128,131,136,161,165,169,178,182,188,197,370,373,407,554,568],rowboat:184,rowdi:104,rpcharact:391,rpcommand:391,rpg:[0,81,83,90,98,112,118,120,125,132,138,139,147,151,152,158,161,169,170,177,225,226,259,342,417,428,620],rplanguag:[0,112,225,226,259,374,389,391],rpm:215,rpolv:0,rpsystem:[0,59,108,112,149,225,226,259,332,374,620],rpsystemcmdset:[112,391],rred:545,rsa:[512,513],rspli8t:186,rsplit:[191,545],rss2chan:[26,133,203,221,247],rss:[221,222,225,226,229,247,255,488,497,500,510,620],rss_enabl:[203,221,247],rss_rate:229,rss_update_interv:[221,247],rss_url:[203,229,247],rssbot:229,rssbotfactori:511,rsschan:247,rssfactori:511,rssreader:511,rstop:242,rstrip:[186,545],rsyslog:446,rtext:[184,555],rthe:82,rthi:[61,143],rtype:537,rubbish:239,rubbl:124,rubi:131,rudimentari:[121,440],rug:152,ruin:[146,346,442],rule:[0,7,9,15,16,23,35,56,61,100,112,118,125,126,130,132,138,144,147,151,152,158,163,169,176,179,188,192,200,225,226,259,265,323,338,339,340,341,342,376,390,395,396,402,406,422,428,455,458,466,546,551,620],rulebook:[152,161,178],ruleset:[92,110,149,151,158,161,417],rumor:[33,149,418],rumour:146,run:[0,1,2,3,4,5,8,9,12,13,14,15,16,17,19,20,21,24,25,29,32,33,35,42,43,44,48,50,51,52,53,54,55,63,65,66,69,76,79,80,81,83,93,99,100,101,102,105,121,124,128,129,131,132,133,134,135,136,138,139,140,141,143,144,146,147,149,150,151,152,157,161,165,167,168,171,172,175,177,180,186,188,189,190,191,193,194,195,196,197,202,205,206,208,209,210,213,214,215,216,217,218,219,220,221,223,225,228,229,233,234,236,237,241,242,248,249,252,253,256,269,287,288,296,304,322,338,340,341,347,349,358,362,370,371,376,377,390,391,407,408,414,418,439,446,462,469,470,474,478,479,481,482,485,486,487,492,496,498,501,502,509,510,517,521,523,526,530,531,535,537,542,545,546,550,552,553,555,556,561,565,566,568,594,619,620],run_async:[55,568],run_connect_wizard:492,run_custom_command:492,run_dummyrunn:492,run_evscaperoom_menu:304,run_in_main_thread:[0,568],run_init_hook:530,run_initial_setup:530,run_menu:492,run_option_menu:304,run_start_hook:[49,542],rundown:142,rune:[157,161,407,411,413,423],runeston:[157,411,413],runnabl:43,runner:[2,4,8,10,221,441,523,620],runsnak:8,runsnakerun:8,runtest:[253,263,266,269,275,278,282,288,297,299,309,314,317,320,324,327,330,333,336,343,347,356,359,361,368,378,382,385,388,392,394,401,421,422,423,424,425,426,427,428,429,437,443,448,453,456,459,461,518,528,560,566,573,592,603,609],runtim:[20,23,56,81,86,175,221,237,265,273,300,556,568],runtimecomponenttestc:275,runtimeerror:[161,177,228,229,284,287,290,322,369,372,390,395,407,458,478,510,540,552,555,568],runtimeexcept:7,runtimewarn:[369,478],rusernam:29,rush:[149,172],russel:76,russian:66,rusti:[50,59,184],ruv:4,ryou:82,s3boto3storag:76,s3boto3storagetest:263,s3boto3testcas:263,s_set:136,sad:[194,408,515,552],sadli:254,safe:[0,3,9,12,14,21,39,53,54,78,101,124,126,131,149,157,167,173,194,208,220,228,239,313,470,487,501,533,537,542,546,549,555,559,568],safe_convert_input:568,safe_convert_to_typ:[32,568],safe_ev:568,safer:[15,56],safest:[45,102,217,542],safeti:[0,13,39,49,78,126,167,191,217,242,313,473,546],sai:[0,1,7,8,11,14,16,18,19,20,21,23,26,29,35,41,43,49,51,52,54,55,56,61,63,75,76,78,81,82,95,100,101,102,112,118,119,124,130,131,133,134,135,136,139,143,144,149,150,167,168,169,171,172,174,175,177,178,181,183,185,186,187,188,191,196,197,199,215,217,221,236,248,256,290,303,305,313,384,390,391,395,407,410,418,434,442,450,462,474,552,555],said:[29,47,55,67,82,100,101,102,105,128,139,143,149,163,168,174,176,182,186,195,221,234,247,251,362,370,391,405,407,409,412,413,474,504,540,542,552,620],sake:[15,74,143,147,150,168,185,188,221,254,281,618],sale:[184,418],salt:[88,322],same:[0,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,27,32,33,34,35,36,37,39,41,43,44,45,47,48,49,51,52,53,54,55,56,57,58,59,61,63,64,66,67,69,70,71,72,76,79,81,82,83,86,89,93,97,100,102,104,105,110,112,113,117,118,119,123,124,125,126,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,149,150,151,152,155,157,161,163,167,168,169,171,172,174,175,177,178,179,180,184,185,186,187,188,189,191,193,194,195,196,197,199,203,205,208,212,215,217,218,220,221,223,228,233,234,235,236,237,240,242,247,250,251,252,253,254,257,263,265,277,286,287,300,305,306,310,316,319,322,329,338,339,340,341,342,346,355,362,364,371,373,376,387,390,391,395,407,408,409,412,436,440,442,452,458,462,464,469,474,478,479,482,483,487,496,501,513,516,517,531,532,533,535,537,540,541,542,543,545,546,548,551,552,553,554,555,556,561,562,566,568,571,577,584,594,608,619],sampl:[4,81,119,167,207,212,376,462],samplebuff:[81,225,226,259,374,375,376],san:387,sand:[175,323],sandi:105,sandwitch:88,sane:[0,2,124,128,147,200,371,619],sanit:[608,619],saniti:[11,105,124,143,182,189,562],sarah:[7,248],sargnam:7,sat:[75,179,305],sate:377,satisfi:[71,250,540],satur:219,sauc:143,save:[0,4,6,9,12,17,20,23,24,27,29,36,37,38,43,44,45,46,47,48,49,51,54,69,76,77,82,99,100,101,102,112,131,132,133,135,138,139,143,157,158,167,178,179,189,191,194,206,208,209,212,218,219,221,228,239,242,252,256,258,263,265,287,319,349,390,406,417,470,473,474,476,478,479,483,485,486,487,490,497,510,525,530,537,540,542,549,550,559,562,563,564,568,576,577,578,581,582,584],save_a:[578,580,581,582,583],save_as_new:[577,584],save_attribut:[155,411],save_buff:550,save_data:562,save_for_next:[23,237],save_handl:562,save_kwarg:563,save_model:[576,578,581,582],save_nam:487,save_on_top:[578,580,581,582,583],save_prototyp:[0,478],save_recip:335,savefunc:[27,550,563],savehandl:563,saver:549,saverdict:549,saverlist:549,saverset:549,saveyesnocmdset:550,saving_throw:[161,417],savvi:150,saw:[0,55,88,100,101,139,143,197],say_text:183,saytext:391,scale:[10,51,112,128,138,147,168,177,205,221,390,413,620],scalewai:217,scam:149,scan:[124,207,233,370,371,373,440,442],scarf:[84,316],scari:[139,143],scatter:[340,546],scedul:89,scenario:[169,368],scene:[9,14,34,43,47,61,100,113,130,144,146,149,177,178,179,188,395,442,458,482,487,559],schedul:[20,87,89,100,126,175,277,287,319,486,556],schema:[49,69,131,196,223,568],schema_url:196,schemaless:77,scheme:[23,61,69,93,143,242,252,545],schneier:76,school:[92,149],sci:[124,170],scienc:182,scientif:[170,200],scipi:[124,371],scissor:178,scm:189,scope:[34,51,100,131,140,147,149,195,280,292,458,481,548],score:[149,152,161,169,306,568],scott:76,scraper:614,scratch:[5,54,63,101,118,135,168,169,191,193,215,223,304,372,395,496],scrawni:152,scream:146,screen:[0,9,23,24,29,30,33,34,43,44,45,57,61,64,91,98,106,124,138,141,152,184,194,212,220,221,228,254,280,281,292,342,387,497,512,553,555,568,576,620],screenheight:[34,497],screenread:[0,26,34,228,254,497,520,521],screenreader_regex_strip:221,screenshot:194,screenwidth:[34,237,497],script:[0,4,5,8,10,11,14,15,16,20,24,26,32,35,36,37,39,43,45,46,47,48,49,50,52,69,71,78,79,94,97,111,113,116,123,124,126,129,130,132,133,134,137,138,139,142,145,146,149,150,167,168,175,178,190,194,196,198,204,213,214,217,218,219,220,221,225,226,228,229,241,242,252,257,258,259,260,277,283,284,290,301,302,313,335,338,339,340,341,342,346,358,362,372,390,399,400,407,409,434,442,452,458,473,474,478,479,492,525,530,546,547,548,555,556,563,565,566,568,574,575,588,591,594,599,609,620],script_copi:481,script_search:481,script_typeclass:[401,566,609],scriptadmin:582,scriptattributeinlin:582,scriptbas:485,scriptclass:484,scriptdb:[49,129,225,482,539,582,588,591],scriptdb_db_attribut:582,scriptdb_db_tag:582,scriptdb_set:[231,473,540,543],scriptdbfilterset:[588,594],scriptdbmanag:[481,482],scriptdbseri:[591,594],scriptdbviewset:[196,594],scriptform:582,scripthandl:[225,226,480],scriptlistseri:[591,594],scriptmanag:481,scriptnam:[242,547],scriptpar:0,scripttaginlin:582,scroll:[7,9,30,33,100,137,143,184,191,213,215,221,407,553],scrollback:19,scrub:[77,533],sdesc:[0,112,167,332,391],sdescerror:391,sdeschandl:[112,391],sdfkjjkl:221,sdk:213,sea:[105,146],seamless:[112,391],seamlessli:42,search:[0,6,11,12,13,15,19,23,24,26,27,32,33,35,37,38,39,43,44,49,62,66,75,81,82,86,100,102,112,124,131,132,133,135,137,138,139,140,141,142,143,149,150,157,169,170,173,176,177,178,179,189,191,193,195,220,221,225,226,228,230,233,235,237,242,247,249,256,257,286,305,308,313,329,335,338,339,340,341,342,362,364,370,371,373,376,391,442,464,465,466,467,469,472,474,478,479,481,484,498,540,541,542,543,544,545,548,550,555,568,588,597,620],search_:[20,136,145],search_account:[20,46,129,145,169,225,230,474,565],search_account_tag:565,search_at_multimatch_input:474,search_at_result:[221,391,474],search_channel:[20,129,225,247,257,565],search_channel_tag:565,search_dbref:541,search_field:[249,576,578,580,581,582,583,584],search_for_obj:242,search_help:[20,33,129,225,465],search_help_entri:565,search_helpentri:465,search_index_entri:[237,239,240,241,242,247,248,249,250,251,252,253,254,265,281,285,296,299,300,303,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,364,376,380,384,391,408,434,436,440,441,442,450,452,462,464,466,467,474,523,550,552,553],search_messag:[20,37,129,225,257,565],search_mod:391,search_multimatch_regex:[221,474],search_multimatch_templ:221,search_object:[14,15,19,20,49,79,105,129,135,136,139,140,143,145,180,225,228,472,565],search_object_attribut:145,search_object_by_tag:157,search_objects_with_prototyp:478,search_prototyp:[0,478],search_script:[20,44,124,129,225,481,565],search_script_tag:565,search_tag:[47,75,129,136,145,225,565],search_tag_account:47,search_tag_script:47,search_target:329,search_typeclass:565,searchabl:[35,286],searchdata:[228,391,472,474,565],season:[94,126,132,147,150,346],seat:147,sebastian:76,sec:[0,34,55,89,172,175,277,504,556,561],second:[1,8,12,14,16,20,21,23,29,32,35,41,43,44,48,49,55,57,59,61,69,70,76,81,82,87,100,102,104,110,116,118,120,124,126,128,133,139,143,145,149,152,172,175,178,179,180,181,186,188,190,191,195,197,198,213,217,218,219,220,221,228,229,234,242,247,249,253,277,286,287,290,310,319,322,338,340,342,358,370,376,391,395,400,407,417,440,469,474,479,481,486,487,492,497,506,511,524,535,545,548,552,555,556,561,568,569],secondari:532,secondli:[39,135],secret:[12,76,77,90,126,127,138,147,149,189,201,204,221,384,417,492],secret_kei:[189,221],secret_set:[12,76,138,189,192,201,205,221,492],sect_insid:182,section:[1,4,7,8,12,14,17,21,23,25,29,32,33,35,44,49,51,52,54,59,63,69,72,82,83,94,100,105,110,112,124,128,132,137,139,141,142,143,145,163,169,172,175,179,181,189,192,194,197,205,211,212,217,221,249,341,346,390,474,479,545,546,552,569,588],sector:182,sector_typ:182,secur:[0,14,15,32,35,43,71,76,82,113,125,126,168,191,194,195,208,213,217,221,222,237,241,252,256,447,464,466,474,512,542,555,561,568,608,620],secure_attr:35,secureshel:221,securesocketlibrari:221,sed:4,sedat:[118,395],see:[0,1,2,5,6,8,10,11,12,13,14,15,16,19,20,21,22,23,25,27,29,30,32,33,34,35,37,38,39,41,43,44,45,48,49,51,52,53,54,55,56,58,59,61,63,66,69,70,71,72,74,77,78,80,81,82,85,87,88,89,91,98,101,102,103,104,105,106,109,110,111,112,113,114,116,117,118,119,122,123,124,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,143,144,145,146,149,150,151,152,155,158,161,163,165,167,168,169,170,172,173,174,175,176,178,179,180,181,182,183,184,186,187,188,189,191,192,193,194,195,196,198,201,202,203,204,205,207,208,211,212,213,215,216,217,218,219,221,222,223,228,237,239,241,242,247,248,249,250,252,253,254,256,259,265,270,271,272,273,274,281,284,299,300,303,305,308,310,313,319,322,323,329,335,338,339,362,364,369,370,371,373,376,387,390,391,395,400,406,407,408,411,412,414,417,418,434,436,440,442,447,455,458,462,464,466,467,473,474,478,481,486,490,492,494,495,503,504,505,506,508,512,513,515,517,519,520,521,523,524,532,533,537,540,543,545,548,549,550,551,554,555,563,564,566,568,571,572,602,608,613,616,619,620],seed:[88,221,322,324,349,371],seek:[146,305,470,561],seem:[12,21,43,52,82,104,110,112,121,130,132,147,150,167,180,181,191,206,211,215,218,254,540,546],seen:[21,29,45,59,63,82,100,101,102,104,105,125,128,133,136,139,140,141,142,144,149,168,169,180,182,186,188,197,198,221,265,504,554],sefsefiwwj3:189,segment:[180,537],sekizai:221,seld:140,seldomli:[237,253],select:[0,2,10,12,13,20,21,29,41,45,51,52,53,54,69,75,82,83,104,105,110,126,134,152,161,184,191,194,197,209,210,213,220,221,234,235,240,304,339,405,406,407,411,418,455,460,461,462,542,550,552,586,591,620],selected_war:184,self:[0,1,6,7,11,13,14,15,20,21,23,27,29,35,38,39,41,43,44,48,49,51,55,63,66,69,78,81,82,83,84,86,87,88,90,93,94,96,97,99,100,102,103,104,108,109,111,112,115,116,118,122,123,124,128,133,134,139,140,141,143,144,145,149,151,152,155,157,161,163,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,187,189,190,191,195,196,198,202,204,228,229,231,233,235,236,237,239,242,243,247,250,252,253,254,256,258,265,271,272,273,274,284,296,300,303,304,305,308,313,316,319,322,323,329,332,335,338,339,340,341,342,346,349,355,358,362,364,369,372,376,384,391,395,400,406,407,408,411,412,414,418,434,439,440,441,442,450,452,462,464,469,474,478,486,490,492,494,495,499,501,503,504,510,512,513,515,517,519,520,521,523,531,532,533,540,542,543,545,550,552,553,555,559,562,563,564,566,568,602],self_fire_damag:323,self_pid:568,self_refer:14,selfaccount:169,sell:[149,157,184,196,199,313,413,418],seller:149,semi:[8,112,134,143,190,221,310,390],semicolon:[35,470,472,481,548],send:[0,8,13,19,20,23,29,30,32,34,35,39,41,44,45,46,48,50,52,53,54,56,62,67,72,75,76,77,78,82,88,95,100,103,104,124,126,131,132,133,135,138,141,142,145,149,151,169,173,177,178,183,186,188,191,194,198,204,208,218,219,221,228,229,236,237,240,242,247,256,257,258,305,313,322,326,329,342,370,371,380,391,400,407,432,439,440,447,450,474,486,487,489,492,494,495,497,501,502,503,504,505,507,510,511,512,514,515,516,518,520,521,523,524,531,532,533,534,545,548,549,552,554,566,568,572,620],send_:[63,67,510],send_adminportal2serv:502,send_adminserver2port:489,send_authent:503,send_broken_link_email:221,send_channel:[503,504],send_default:[63,67,503,504,510,512,515,520,521],send_defeated_to:440,send_emot:[112,391],send_functioncal:501,send_game_detail:494,send_heartbeat:503,send_instruct:492,send_mail:329,send_msgportal2serv:502,send_msgserver2port:489,send_p:504,send_privmsg:504,send_prompt:[67,512,515,520,521],send_random_messag:400,send_reconnect:504,send_request_nicklist:504,send_status2launch:502,send_subscrib:503,send_testing_tag:439,send_text:[63,67,512,515,520,521],send_to_online_onli:[19,256],send_unsubscrib:503,sender:[19,37,46,107,228,229,256,257,258,305,313,391,407,432,474,503,534,548,559,565,578],sender_account_set:231,sender_extern:258,sender_object:534,sender_object_set:473,sender_script_set:482,sender_str:256,senderobj:[257,548],sendlin:[512,515,520],sendmessag:[63,450],sens:[0,21,35,39,53,54,55,66,69,82,118,124,127,140,144,149,151,157,167,169,180,184,205,235,377,395,407,434,472,548,549,552],sensibl:[19,32,33,217,349],sensit:[14,29,33,35,41,77,136,169,230,257,265,277,287,346,373,392,447,448,465,541,543,551,556,565],sensivit:458,sent:[1,8,19,24,29,32,34,37,45,46,52,54,67,70,72,77,91,95,100,103,107,126,138,143,169,173,186,196,197,208,221,228,229,233,247,256,257,258,265,281,287,300,305,329,401,432,447,450,474,489,492,494,497,501,502,503,504,512,516,520,531,533,540,552,565,566,591],sentenc:[0,59,66,100,101,112,151,186,221,290,305,390,391,568],senwmaplink:[124,371],seond:172,sep:[66,545,568],sep_kei:[82,265],separ:[0,7,8,10,11,12,14,15,16,19,21,23,29,32,33,35,36,38,39,42,44,45,47,48,52,54,59,63,69,75,79,81,83,88,100,101,103,104,109,112,118,119,123,124,126,128,131,132,133,134,135,136,137,138,139,141,143,144,147,151,152,168,169,172,175,180,184,186,188,189,191,193,194,202,203,204,205,207,211,213,219,221,234,236,237,242,248,249,250,252,265,287,290,296,319,322,329,338,339,342,362,366,370,371,373,390,391,395,409,411,412,442,462,465,470,472,473,474,478,481,483,487,511,516,521,533,542,545,546,548,551,555,565,566,568,572,577],separator_fil:221,separator_star_color:221,separator_text_color:221,sepat:322,sept:[2,66],seq:38,sequenc:[7,15,16,17,23,35,38,39,53,55,72,78,79,128,131,138,140,146,149,155,188,221,237,241,256,277,308,322,370,391,470,490,496,545,546,552,554,566,567,568],sequenti:149,sequess:427,seri:[0,9,19,29,61,93,106,126,139,143,149,150,193,418,554],serial:[0,14,51,67,187,221,225,226,407,477,486,487,501,510,549,562,564,568,574,576,578,581,582,587,594],serializ:521,serialized_str:[576,578,581,582],serializer_class:594,serializermethodfield:196,seriou:[181,218],serious:215,serrano:76,serv:[53,54,67,74,76,97,105,126,131,133,138,144,145,149,182,208,219,220,221,235,257,340,521,537,546,548,606],serve_media:221,server:[1,3,4,8,9,10,11,12,13,14,15,17,19,20,21,23,24,25,26,29,32,33,34,35,36,39,43,44,46,48,49,51,52,53,54,55,56,58,63,64,67,69,70,72,74,76,77,83,85,88,90,91,93,96,99,100,102,105,106,108,109,110,112,116,118,124,126,127,128,129,130,131,132,133,135,137,139,140,141,142,143,144,149,150,151,152,155,157,163,167,168,169,171,172,173,174,175,177,178,179,180,183,186,187,189,192,193,194,195,197,199,200,201,202,204,208,209,211,212,213,214,215,218,219,221,223,225,226,228,229,230,236,240,242,247,252,254,256,259,265,268,271,281,287,296,303,307,322,332,346,349,358,362,365,366,372,378,384,391,395,440,441,442,444,445,446,464,474,481,482,483,485,487,538,542,546,548,549,552,556,559,561,568,574,575,591,599,620],server_:0,server_connect:510,server_data:221,server_disconnect:510,server_disconnect_al:510,server_epoch:[20,556],server_hostnam:[0,221],server_l:502,server_log_day_rot:[0,221],server_log_fil:221,server_log_max_s:[0,221],server_logged_in:510,server_nam:220,server_pid:[502,568],server_receive_adminportal2serv:489,server_receive_msgportal2serv:489,server_receive_statu:489,server_reload:[483,487],server_run:492,server_runn:530,server_servic:568,server_services_plugin:[63,138,220,221],server_services_plugin_modul:[63,221],server_session_class:[45,77,221],server_session_handler_class:221,server_session_sync:510,server_st:492,server_twistd_cmd:502,server_twisted_cmd:502,serverconf:[0,240,487],serverconfig:[221,486,487,498,499],serverconfigadmin:583,serverconfigmanag:[498,499],serverfactori:[502,512,515],serverload:[26,252],servernam:[34,54,189,192,207,209,217,220,221],serverport:221,serversess:[45,63,77,133,221,225,226,447,470,488,510,533,540],serversessionhandl:[45,63,221,533],serverset:[35,247,469],servic:[3,5,26,56,63,76,133,138,189,194,204,205,208,212,217,218,219,220,221,225,226,252,418,488,489,492,493,501,502,509,530,537,568],sessdata:[532,533],sessid:[11,13,23,45,191,221,473,474,489,501,502,510,533],session:[0,11,13,17,21,23,24,26,29,32,34,36,39,41,44,46,56,63,70,129,133,137,139,141,149,152,168,176,186,191,206,212,221,225,226,228,229,230,231,233,234,235,237,239,240,243,245,250,254,281,304,326,380,406,407,412,439,446,447,448,450,473,474,476,477,478,483,488,489,497,501,502,503,504,510,511,512,515,520,521,530,531,533,535,550,552,553,555,568,569,591,620],session_cookie_ag:221,session_cookie_domain:221,session_cookie_nam:221,session_data:533,session_expire_at_browser_clos:221,session_from_account:533,session_from_sessid:533,session_handl:[45,129,225],session_id:591,session_portal_partial_sync:533,session_portal_sync:533,session_sync_attr:221,sessionauthent:221,sessioncmdset:[21,26,141,221,245],sessionhandl:[0,24,63,67,221,225,226,228,474,488,497,503,504,510,511,531,532],sessionid:[221,510],sessionmiddlewar:221,sessions_from_account:533,sessions_from_charact:533,sessions_from_csessid:[510,533],sessions_from_puppet:533,sessionsmain:129,sesslen:474,set:[1,2,3,4,5,6,7,8,9,11,13,14,15,16,17,18,19,20,22,23,24,25,26,27,30,32,33,34,37,38,39,41,43,44,45,46,47,49,50,51,52,54,55,56,57,58,59,61,63,64,65,66,67,69,71,72,73,74,77,81,82,83,84,85,86,87,88,89,91,94,95,96,100,101,102,104,105,106,111,112,118,119,121,123,124,128,129,130,131,132,133,134,135,136,137,138,140,142,143,144,147,148,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,173,174,178,179,180,181,184,185,186,187,188,193,194,195,197,198,205,206,207,208,210,211,212,213,215,218,222,225,227,228,229,230,231,233,234,235,236,237,239,240,242,243,244,245,246,247,249,250,253,254,255,256,263,265,266,268,269,272,273,275,277,281,285,287,290,297,300,303,304,305,306,307,308,309,314,316,317,319,320,322,323,324,326,332,335,336,338,339,340,341,342,343,346,347,349,355,358,361,362,364,365,366,367,368,370,371,373,376,377,378,382,384,390,391,392,394,395,401,405,406,407,408,409,411,412,413,417,418,420,421,422,423,424,427,428,434,439,440,441,442,446,450,452,453,455,462,464,465,469,470,472,473,474,477,478,479,481,484,485,486,487,489,491,492,496,497,498,499,502,503,505,506,508,509,512,514,515,517,518,523,524,526,528,530,531,532,533,535,537,538,540,541,542,543,545,546,547,548,549,550,551,552,553,554,555,556,559,560,561,562,563,564,565,566,568,569,577,580,581,583,584,589,590,592,593,594,597,601,608,609,616,620],set_active_coordin:362,set_al:440,set_alias:237,set_atribut:594,set_attr:242,set_attribut:[196,594],set_cach:540,set_character_flag:305,set_class_from_typeclass:542,set_dead:440,set_desc:247,set_descript:29,set_detail:[346,442],set_flag:[305,306],set_gamedir:492,set_kei:237,set_lock:247,set_log_filenam:256,set_nam:29,set_password:[0,228],set_posit:305,set_task:287,set_trac:[0,6,225],setattr:[152,161,266],setdesc:[26,133,168,248,355],sete:11,setflag:[303,305],setgend:[96,326],sethelp:[0,26,33,133,134,249,464],sethom:[26,133,242],setlock:355,setnam:63,setobjalia:[26,242],setperm:240,setspe:[116,126,358],sett:203,settabl:[34,69,139,515],setter:[81,181,187],settestattr:27,settingnam:35,settings_chang:46,settings_default:[0,11,129,137,139,192,215,220,221,225,226,561,568],settings_ful:220,settings_mixin:[8,225,226,488,522],settl:[105,178],setup:[0,8,11,17,33,50,54,63,66,69,73,97,124,128,147,151,155,161,169,178,198,204,207,208,211,212,221,228,239,247,253,263,266,275,277,288,297,309,314,317,320,324,336,343,347,361,368,378,382,392,394,401,420,421,422,423,424,425,427,428,434,439,442,453,467,474,485,496,509,518,523,527,528,530,537,540,542,559,560,566,592,609],setup_grid:368,setup_sess:[448,566],setup_str:527,setuptool:[211,213,215],sever:[0,6,14,16,21,23,27,30,35,39,41,43,44,49,50,52,54,58,72,81,82,84,100,102,110,124,125,126,128,136,137,143,149,151,167,168,172,175,178,197,200,220,241,242,250,252,257,286,287,346,417,418,440,442,474,518,519,543,548,568],sewag:124,sex:[149,326],sftpstorag:76,sha:452,shabnam:110,shadow:[0,33,149],shall:[188,195],shaman:[43,168],shape:[82,105,123,134,147,169,181,323,362,554],sharabl:43,share:[1,3,4,6,12,19,21,35,45,47,49,53,69,74,101,125,131,132,138,149,161,168,178,189,194,201,217,219,221,286,287,407,452,479,487,523,540,541,543,554,568,576,591,594,602],shared_field:591,sharedloginmiddlewar:[221,602],sharedmemorymanag:[541,558],sharedmemorymodel:[62,258,466,540,542,559,560],sharedmemorymodelbas:[231,258,466,473,482,540,542,559,560],sharedmemorystest:560,sharp:[47,323],shaung:76,she:[23,33,59,82,96,102,112,167,186,188,265,326,390,555,571,572],sheer:[104,242],sheet:[2,29,52,81,92,128,132,151,163,194,195,205,405,406,417,551,620],sheet_lock:169,shell:[1,4,8,38,49,69,71,128,143,168,169,205,208,211,212,213,217,218,219,512,540],shelter:149,shelv:104,shield:[69,152,155,157,172,407,408,410,411,413,426],shield_hand:[155,157,408,410,413],shift:[16,17,20,71,124,149,221,287,441,465,568],shiftroot:441,shine:[124,179,442],shini:[50,568],shinier:50,ship:[77,105,130,131,134,146,184,211],shire:175,shirt:[84,316],shoe:[84,316],shoot:[341,342,551],shop:[29,71,132,149,158,168,176,225,226,259,396,402,408],shop_front:184,shop_start:184,shopfront:184,shopkeep:[151,184,412,418],shopnam:184,shopper:184,short_datetime_format:221,short_descript:[209,221],short_sha:452,shortcut:[0,7,9,14,19,20,21,23,32,46,49,82,88,100,102,128,133,134,137,139,143,165,172,178,186,194,195,197,205,212,225,228,229,236,237,242,247,265,271,273,284,322,362,470,474,562,568],shorten:[0,6,7,49,81,101,221,479,591],shorter:[0,12,49,63,71,86,124,128,133,139,151,183,190,220,221,256,257,390,465,540,541,548,561],shortest:[124,126,181,364,368,370,371],shorthand:[39,188,242],shortli:[82,102],shortsword:136,shot:[81,341],should:[0,1,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,29,32,33,34,35,37,39,41,43,44,45,46,47,48,49,51,52,54,55,56,57,58,59,61,63,64,66,67,69,70,71,72,73,74,75,76,77,81,82,88,93,97,100,101,102,103,104,105,108,110,112,118,122,124,125,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,165,168,169,170,172,175,177,178,180,181,183,184,185,186,187,188,189,191,192,193,194,195,196,197,201,202,203,205,206,207,208,210,211,212,213,215,217,218,219,220,221,223,228,229,230,231,233,235,236,237,239,241,242,243,246,247,249,250,252,253,254,256,257,258,263,265,271,277,280,284,287,290,292,299,300,303,305,306,308,310,322,323,324,329,332,335,338,339,340,342,346,349,355,358,364,366,368,370,371,372,373,376,380,390,391,394,395,405,407,408,409,411,412,413,414,417,439,440,442,446,452,458,464,469,470,473,474,476,478,479,482,485,486,487,490,491,492,496,499,503,509,512,515,516,518,520,521,523,524,530,531,532,533,535,536,538,540,542,543,545,546,548,549,550,552,553,554,555,556,561,562,563,564,566,568,569,576,577,584,608,609,614],should_join:256,should_leav:256,should_list_top:249,should_show_help:249,shoulddrop:[342,474],shoulder:[84,169,316],shouldget:[342,474],shouldgiv:[342,474],shouldmov:338,shouldn:[15,76,81,82,102,155,169,179,188,221,265,287,290,341,474,523],shouldrot:561,shout:[172,303,305],shove:179,show:[0,6,7,10,12,15,16,19,20,23,25,29,30,32,33,44,45,51,52,54,56,59,60,63,69,81,82,84,88,94,95,101,102,105,109,110,118,119,121,123,124,125,126,127,128,130,131,132,133,134,138,139,141,142,143,144,146,147,148,149,151,157,158,161,163,164,168,169,173,175,176,177,178,181,185,186,188,193,194,195,196,197,198,203,204,206,208,209,213,217,218,219,220,221,228,239,240,242,247,248,249,250,252,254,280,281,292,296,300,303,313,316,332,341,342,346,349,362,364,368,370,371,373,376,384,387,391,395,406,408,409,411,416,430,434,442,450,462,464,474,476,478,479,490,492,501,550,552,561,562,563,568,572,608,620],show_change_link:576,show_foot:553,show_map:[182,349],show_non_edit:478,show_non_us:478,show_sheet:[152,406],show_valu:387,show_version_info:492,show_warn:492,showcas:[21,104,105,146,161],shown:[1,23,25,29,33,43,44,51,60,82,93,99,102,112,113,118,126,139,140,168,175,180,182,184,189,194,209,221,237,240,247,251,253,265,280,292,296,310,316,322,349,370,371,391,395,434,441,458,474,492,552,553,597],shrink:[141,554],shrug:101,shuffl:[20,408],shun:[71,217],shut:[8,52,102,143,192,212,218,220,228,252,474,485,487,492,494,501,502,509,510,530,533],shutdown:[8,21,26,44,45,56,58,133,169,218,228,229,252,481,487,492,501,502,509,530,531,542,548,552],shy:[73,147,150],sibl:[14,44,55,144,168],sickli:[161,417],sid:[76,240],side:[0,4,11,12,14,32,34,44,45,47,54,67,78,90,102,115,124,126,128,136,141,149,161,169,177,182,186,188,194,206,221,228,229,231,242,248,250,258,313,355,371,384,407,409,417,466,473,482,489,497,501,502,510,513,516,517,520,531,532,533,540,542,543,545,554,560],sidebar:[54,145,161],sidestep:58,sidewai:554,sigint:492,sign:[10,16,32,48,67,100,101,102,124,134,136,138,140,145,186,190,191,217,221,247,305,346,370,474,487,540,545,569],signal:[0,8,24,81,100,218,225,226,259,260,270,273,338,339,340,341,342,369,488,492,515,521,523,559,620],signal_acccount_post_first_login:46,signal_account_:46,signal_account_post_connect:46,signal_account_post_cr:46,signal_account_post_last_logout:46,signal_account_post_login:46,signal_account_post_login_fail:46,signal_account_post_logout:46,signal_account_post_renam:46,signal_channel_post_cr:46,signal_helpentry_post_cr:46,signal_nam:274,signal_object_:46,signal_object_post_cr:46,signal_object_post_puppet:46,signal_object_post_unpuppet:46,signal_script_post_cr:46,signal_typed_object_post_renam:46,signalshandl:274,signatur:[23,32,172,177,237,271,272,273,274,284,308,319,369,395,406,407,411,414,418,464,478,486,490,492,494,495,503,512,513,515,517,520,521,540,543,545,552,563,564,602],signed_integ:569,signedinteg:562,signedon:504,signifi:[16,23,469,540],signific:[9,32,124,555,566],significantli:27,signup:192,sila:152,silenc:[247,494],silenced_system_check:11,silent:[14,55,175,240,247,410,434,496,504,561],silli:[39,43,136,187],silmarillion:145,silvren:217,similar:[0,1,7,10,14,15,23,29,33,39,49,50,52,53,54,69,73,75,81,82,86,100,102,120,123,124,126,130,131,132,134,139,146,147,169,177,179,180,193,208,217,228,237,239,253,256,265,322,338,341,342,362,376,390,408,450,466,474,481,533,543,548,552,568,591,617],similarli:[47,86,118,124,136,169,171,175,217,300,339,395,577,584,591],simpl:[0,1,2,11,13,14,15,16,17,18,21,23,24,25,27,32,33,34,39,41,43,45,47,52,54,55,59,63,66,69,70,71,74,78,79,80,87,88,92,93,94,95,96,97,100,101,102,103,105,107,111,112,113,115,117,119,120,123,126,128,130,131,132,133,139,141,144,145,146,147,151,152,155,157,161,163,164,166,167,168,169,173,176,177,178,181,182,183,184,185,186,187,188,189,190,191,192,194,196,197,198,203,208,212,217,219,221,242,256,265,266,270,281,286,303,305,307,313,319,322,323,326,329,335,338,339,340,341,342,346,354,355,358,362,368,390,391,395,400,409,414,416,417,432,434,436,440,441,442,450,458,462,463,473,474,479,485,502,511,513,540,546,547,552,555,568,605,606,608,620],simple_ev:32,simpledoor:[225,226,259,344,620],simpledoorcmdset:[115,355],simpleev:32,simplemu:206,simpleobjectdbseri:[196,591],simpler:[0,12,17,29,55,167,241,242,417,549,617],simpleresponsereceiv:494,simplest:[14,41,54,120,133,169,172,177,178,192,217,236,546,569],simpli:[0,1,11,12,15,18,21,29,35,41,47,49,54,56,61,63,67,75,76,81,82,87,93,94,104,116,119,127,128,134,137,140,141,147,152,155,161,169,177,179,180,181,182,185,190,191,202,204,205,207,215,219,220,221,223,228,235,236,237,253,254,256,265,281,288,319,338,339,342,346,358,370,376,408,432,434,441,462,464,466,474,510,540,542,546,547,553,555,568],simplic:[59,181,184,188,221,254,281,441],simplif:[149,178],simplifi:[0,8,55,66,105,139,151,172,178,197,212,284,407,412],simplist:[52,117,178,190,191,390,436],simul:[8,23,116,126,144,149,151,161,177,358],simultan:[0,70,149,155,169,178,221,407,472,568],simultaneusli:407,sinc:[0,1,6,7,8,9,11,12,14,15,16,19,20,21,23,25,27,29,32,33,34,35,36,37,39,41,44,47,48,49,53,54,55,58,59,63,66,67,69,70,74,77,78,82,102,105,112,119,124,126,128,130,131,132,133,135,136,137,138,139,140,141,143,144,145,146,147,149,150,151,152,155,157,161,163,165,167,168,169,170,171,172,174,175,178,179,180,181,182,183,184,186,188,189,191,192,194,195,196,197,205,208,209,212,217,218,220,221,228,229,231,235,236,237,242,250,251,252,257,265,269,277,305,313,322,329,338,340,341,346,366,370,371,391,406,408,409,417,434,441,442,462,469,472,474,478,479,483,486,487,492,494,497,509,514,516,530,531,533,535,540,541,542,543,546,547,548,550,552,555,556,559,561,564,565,566,568,577,584,608],sinewi:152,singl:[0,7,8,12,16,21,23,29,32,37,38,44,45,47,49,55,57,67,70,71,77,81,82,86,100,102,105,109,110,113,118,121,122,124,125,126,128,130,131,136,138,141,143,144,146,149,152,157,161,168,169,177,187,205,208,217,221,228,240,247,248,252,258,265,272,275,296,300,323,338,339,340,341,342,362,368,370,371,373,376,391,395,414,417,442,446,458,462,474,478,479,486,487,524,531,533,540,541,543,545,546,551,552,554,568,571,608],single_tag:275,single_type_count:316,singleton:[36,45,48,124,161,417,483,486,547],singular:[169,221,474,555,571,573],singular_word:555,sink:149,sint:30,sir:101,sit:[12,16,19,23,39,41,47,49,67,103,130,132,133,138,141,142,143,144,149,152,155,176,180,184,187,191,213,215,217,221,250,256,258,290,305,308,329,371,391,414,441,442,470,481,484,487,505,543,548,563,566],sitabl:49,sitat:442,site:[18,35,42,51,54,57,62,105,192,194,195,197,200,203,204,205,207,208,212,217,219,221,371,537,579,599],site_head:[51,599],site_id:[54,221],sitsondthi:140,sitsonthi:140,sittabl:[140,305],sittablein:140,sitter:140,situ:[14,542,549],situat:[0,7,14,23,32,33,44,45,49,53,66,67,69,82,100,101,102,125,141,145,149,161,175,183,196,236,237,242,286,306,559],six:[100,149,161,163,177,186,384,410,462],sixti:175,sizabl:76,size:[0,6,9,52,57,71,99,105,123,124,126,150,155,157,163,169,182,206,221,225,263,349,362,370,371,411,413,417,418,494,508,545,551,553,554,559,561,568],size_limit:568,skeleton:191,sketch:[149,151,178],skill:[29,59,81,112,118,126,130,132,136,138,143,147,148,161,172,173,177,178,180,194,195,200,218,323,373,390,391,394,395,551],skill_combat:177,skill_craft:88,skill_requir:323,skill_rol:323,skillnam:177,skillrecip:88,skim:[121,126,136,150],skin:[43,152,323],skip:[10,19,21,23,29,43,48,54,59,70,76,79,104,124,128,133,134,136,138,141,144,147,150,152,155,175,182,211,228,241,242,323,474,478,540,549,561,568,586],skip_cal:305,skipkei:521,skippabl:[7,23],skull:[43,145],sky:[44,190],slack:200,slam:[95,450],slash:[54,130,132,134,146,177,178,221,263,441],slate:[105,141],sleep:[23,32,55,149,161,172,177],sleepi:14,slender:152,slew:[0,177,211,546],slice:[0,81,239,376,545,553],slice_bright_bg:239,slice_bright_fg:239,slice_dark_bg:239,slice_dark_fg:239,slicker:0,slide:[323,434],slider:54,slight:[186,207,277,287],slightli:[0,6,33,81,175,178,191,215,258,300,339,346,576,619],slime:411,slogan:189,sloppi:128,slot:[54,95,118,132,149,157,161,163,169,195,271,339,341,346,395,411,413,450,479,568],slotobj:155,slow:[8,20,121,126,178,252,257,357,358,359,362,366,371,440,478,505,511,545,565,568,620],slow_exit:[116,225,226,252,259,344,620],slowdoorcmdset:[116,358],slower:[8,44,149,175,200,217,221],slowexit:[116,358],slowexitcmdset:358,slowli:[0,118,200,395],slug:[237,256,464,466,542,616,619],slugifi:[613,616],slugify_cat:616,small:[1,7,8,9,16,17,23,37,53,57,71,80,83,88,92,93,105,121,123,124,125,126,127,130,146,147,149,150,163,164,168,169,173,176,186,191,197,203,217,223,319,322,341,362,364,365,368,370,384,395,406,434,515,550,551,554,568,620],smaller:[0,15,16,57,128,368,395,417,554],smallest:[32,41,89,100,112,118,161,169,175,217,277,390,395,551,568],smallshield:69,smart:[81,123,186,362,371],smarter:43,smartmaplink:371,smartreroutermaplink:371,smartteleportermaplink:371,smash:[114,434],smaug:[133,139,141,144],smedt:571,smell:[124,147,305],smellabl:305,smelli:43,smile:[23,32,139,248,303,573],smith:[59,551],smithi:172,smoother:0,smoothi:[111,126,335],smoothli:[195,221],smtp:0,snake:[54,193],snapshot:[12,14],snazzi:199,sneak:470,snippet:[0,15,21,35,53,55,61,87,125,126,130,131,133,179,252,319,501,567,568,620],snonewaymaplink:[124,371],snoop:208,snow:[88,322],snowbal:[88,322],snowball_recip:88,soak:[141,411],social:[130,149,204],socializechat:524,societi:136,sock:84,sofa:140,soft:[62,112,131,390,620],softcod:[32,62,73,100,126,149],softli:199,softwar:[215,217],solar:175,sold:[413,418],soldier:[144,184],sole:[168,197,229],solid:[130,150,182],solo:149,solut:[0,1,11,16,20,29,33,48,49,62,102,105,118,124,140,146,149,167,171,177,180,181,183,186,189,192,197,217,251,370,371,395,470],solv:[9,20,93,105,111,124,126,132,146,147,179,215,308,335,370,409,441],some:[0,1,2,4,5,6,7,10,11,12,14,15,16,17,19,20,21,23,26,27,29,32,33,34,35,37,38,39,43,44,45,46,47,48,49,50,51,52,54,56,57,59,61,63,66,67,69,71,72,77,78,81,82,88,91,93,100,101,102,105,113,118,119,120,121,124,125,127,128,130,131,132,133,134,135,136,138,139,140,141,142,144,146,147,150,151,152,155,157,158,161,163,165,168,169,170,171,172,175,176,177,178,179,180,182,183,184,186,188,189,191,192,193,194,195,197,199,200,202,205,206,207,208,210,211,213,215,216,217,218,219,220,221,228,236,237,242,244,247,248,249,251,252,254,256,257,265,281,287,290,300,305,308,313,319,322,339,340,341,342,355,362,371,376,378,390,395,407,409,411,412,413,416,434,439,441,442,452,458,462,470,474,478,479,482,494,496,501,504,530,540,542,545,546,551,552,555,556,559,561,562,568,571,572,576,581,594,608,619],some_iter:155,some_long_text_output:553,some_modul:137,somebodi:[100,102],someclass:137,somehow:[23,38,54,63,72,75,104,140,177,217,316,550],someon:[23,35,46,48,51,59,100,101,102,133,136,140,143,149,150,155,161,169,172,182,183,185,187,217,219,228,248,376,405,407,409,434,440,441,474],somepassword:205,someplac:440,sometag:52,someth:[1,7,8,11,12,14,16,19,20,23,29,30,32,33,35,39,41,43,44,46,48,49,51,52,53,55,56,59,61,63,67,69,71,74,76,78,81,82,87,88,100,101,102,104,105,113,116,118,122,124,126,127,128,130,131,132,133,134,135,136,139,140,143,144,145,146,147,150,152,155,157,161,165,167,168,169,173,174,175,177,181,182,184,185,186,189,191,192,194,195,196,197,201,202,204,205,207,208,211,215,217,220,228,235,237,242,248,250,253,256,265,290,300,313,316,319,323,326,338,342,358,362,371,391,405,411,441,442,458,470,474,479,531,542,546,552,553,555,562,568,614],something_els:44,somethingthat:395,sometim:[6,8,20,23,27,29,32,35,41,43,44,54,63,69,81,82,100,110,130,131,136,141,143,145,175,186,193,215,217,218,249,472],sometypeclass:[100,135],somewhat:[82,168,265],somewher:[0,11,43,44,49,56,93,102,124,127,132,139,140,141,177,180,217,221,237,242,256,364,390,464,466,542,568,620],somon:305,son:[110,455],soon:[6,45,147,161,197,202,212,405,407,521,568],sophist:[20,55,71,130,152,178],sorl:192,sorri:[35,224,470],sort:[0,14,21,36,41,45,47,54,59,67,74,75,78,88,98,118,120,121,126,131,132,136,141,143,147,157,165,177,178,181,182,197,217,218,221,305,313,338,339,340,341,342,371,387,395,442,474,479,482,540,541,542,552,568,599,608,613,614,616,617,618],sort_kei:521,sort_stat:8,sortkei:8,sought:[228,234,256,464,466,474,540,542],soul:[105,150],sound:[0,35,48,67,82,93,104,105,112,125,126,147,161,169,172,220,221,390,516],sourc:[0,3,4,5,7,9,11,17,18,20,21,24,26,32,39,55,56,57,66,70,71,76,81,82,100,101,102,119,121,127,129,130,131,132,137,143,146,155,168,179,189,192,195,200,202,205,208,211,213,215,223,225,228,229,230,231,233,234,235,236,237,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,256,257,258,263,265,266,269,270,271,272,273,274,275,277,278,281,282,284,285,286,287,288,290,296,297,299,300,303,304,305,306,307,308,309,310,313,314,316,317,319,320,322,323,324,326,327,329,330,332,333,335,336,338,339,340,341,342,343,346,347,349,355,356,358,359,361,362,364,365,366,368,369,370,371,372,373,376,377,378,380,382,384,385,387,388,390,391,392,394,395,400,401,405,406,407,408,409,410,411,412,413,414,416,417,418,420,421,422,423,424,425,426,427,428,429,430,432,434,436,437,439,440,441,442,443,446,447,448,450,452,453,455,456,458,459,461,462,464,465,466,467,469,470,472,473,474,476,477,478,479,481,482,483,484,485,486,487,489,490,491,492,494,495,496,497,498,499,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,523,524,525,527,528,529,530,531,532,533,535,536,537,540,541,542,543,545,546,547,549,550,551,552,553,554,555,556,558,559,560,561,562,563,564,565,566,567,568,569,571,572,573,576,577,578,579,580,581,582,583,584,586,588,589,590,591,592,594,596,599,600,601,602,603,606,608,609,612,613,614,615,616,617,618,619,620],source_loc:[0,1,155,185,306,362,405,409,441,442,474],source_object:[254,281],sourceforg:[505,506,516,519],sourceurl:504,south:[0,82,102,104,105,124,140,161,174,180,182,185,242,349,364,370,371,524],south_north:105,south_room:104,southeast:[242,371],southern:105,southwest:[124,134,242,371],space:[0,1,7,14,19,23,25,32,33,35,38,43,44,52,59,61,76,77,82,100,101,104,105,124,128,132,133,134,141,143,144,155,168,178,179,182,183,186,188,189,221,234,237,242,247,248,249,250,253,254,323,332,342,370,371,390,391,418,441,474,536,542,545,546,551,552,554,555,568,572,597],spaceship:180,spaghetti:15,spam:[19,44,56,79,171,178,219,221,247,535],spammi:[56,178,221,561],span:[18,57,71,567],spanish:[0,66],spare:[338,339,340,341,342,370],sparingli:183,sparkly_mag:136,spars:77,spasm:377,spatial:105,spawen:[111,335],spawn:[0,8,19,24,26,37,52,88,93,111,124,126,129,133,137,146,152,225,240,242,322,335,339,340,365,368,370,371,372,409,418,476,477,478,479],spawn_alias:[124,371],spawn_link:[370,371],spawn_nod:370,spawner:[0,24,39,124,152,221,225,226,242,340,341,475,477,620],spawng:88,spd:195,speak:[17,19,58,72,81,101,102,112,126,149,183,188,194,196,248,305,391,474],speaker:[100,101,112,305,390,391],spear:[43,47],special:[0,1,6,7,11,13,14,15,16,17,19,20,21,23,25,29,35,39,41,46,47,49,51,52,53,54,55,58,61,66,67,69,70,72,81,94,96,99,100,105,124,126,128,131,132,134,136,137,138,139,141,143,144,145,151,152,155,157,161,169,171,173,178,191,195,196,197,219,221,229,231,233,236,248,251,303,305,306,310,326,340,341,346,349,362,373,391,407,441,442,462,467,470,474,496,497,520,524,540,542,546,552,567,581],specic:370,specif:[0,1,2,4,6,11,13,14,20,21,23,27,29,35,38,39,41,45,46,47,48,49,50,52,56,59,63,70,74,78,81,82,84,86,87,88,97,99,100,101,102,105,113,124,125,126,128,129,130,131,136,137,138,139,143,144,145,147,149,155,161,167,172,175,178,180,181,186,188,189,190,191,194,195,197,199,200,205,206,208,212,217,218,220,221,228,230,233,240,242,249,252,253,254,258,259,265,274,284,285,286,287,303,305,313,319,322,323,329,349,364,370,371,372,391,407,409,411,413,416,452,458,465,469,472,474,478,481,483,492,496,497,504,520,521,531,540,542,545,546,550,552,553,554,568,572,577,579,588,619,620],specifi:[0,7,11,12,14,19,20,21,29,33,36,43,45,47,48,54,56,57,58,59,61,67,69,70,81,82,84,85,88,90,95,100,101,105,110,111,118,119,123,124,128,134,135,139,140,141,144,145,163,165,169,171,175,179,181,182,186,191,193,195,203,209,212,215,217,219,221,233,234,242,249,256,257,265,266,268,274,284,286,287,305,316,322,329,335,339,340,341,346,349,362,364,370,371,376,384,391,395,405,407,408,409,412,413,450,458,462,469,470,474,477,478,479,483,503,529,540,541,543,545,546,548,551,552,555,556,562,563,564,566,568,571,572,588,591,608,616,619],specifici:306,specii:59,spectacular:6,spectrum:149,speech:[152,303,474],speed:[0,8,14,38,69,78,116,126,149,176,178,195,221,358,407,472,479,510,543,565,620],speediest:149,speedster:184,speedup:[221,478],spell:[17,43,47,58,92,119,120,157,161,163,168,171,225,226,259,311,321,341,407,411,413,423,462,479],spell_attack:341,spell_book:88,spell_conjur:341,spell_heal:341,spell_nam:341,spellbook:[322,323],spellcast:[0,120],spellfunc:341,spellnam:[323,341],spend:[12,39,120,145,149,150,161,181,186,338,339,340,341,407],spend_act:338,spend_item_us:340,spent:[155,341,407],sphinx:128,spike:322,spiked_club:322,spin:[53,152,175,217,406,566],spine:341,spit:[143,165,178,322],splashscreen:281,splinter:146,split:[0,1,21,23,45,105,123,124,141,143,144,149,152,161,169,180,183,184,186,189,191,193,220,234,250,277,362,441,467,476,518,533,545,546,556],split_nested_attr:242,splittin:0,spoiler:121,spoken:[101,102,112,202,390,391,474],spoof:[208,577,584],sport:38,spot:[54,104,131,144,149,168,228,368,371,408],spread:[8,32,43,127,177],spring:[94,346,347],spring_desc:347,sprint:358,sprofil:492,spruce:59,sprung:149,spy:37,spyrit:206,sql:[3,49,69,131,145,167,168,205,527],sqlite3:[4,8,11,12,49,69,131,138,191,210,221,222,568,620],sqlite3_prep:530,sqlite:[69,205,530],sqrt:181,squar:[7,104,128,181],squeez:[69,128],squishi:149,src:[18,35,39,52,55,134,194,211,212,447],srcobj:[237,250],srun:496,srv:4,ssessionhandl:67,ssh:[0,1,12,45,63,67,131,189,217,218,221,222,225,226,488,500,531,532],ssh_enabl:221,ssh_interfac:[217,221],ssh_port:[217,221],ssh_protocol_class:221,sshd_config:219,sshfactori:512,sshprotocol:[221,512],sshserverfactori:512,sshuserauthserv:512,ssl:[0,67,70,131,207,208,221,222,225,226,229,247,488,500,504,517,532],ssl_context:[513,517],ssl_enabl:221,ssl_interfac:[217,221],ssl_port:[217,221],ssl_protocol_class:221,sslcertificatefil:207,sslcertificatekeyfil:207,sslciphersuit:207,sslengin:207,ssllab:207,sslprotocol:[207,221,513,517],ssltest:207,sslv3:208,sta:551,stab:[146,172,441],stabil:[0,147,253,390],stabl:[0,54,63,149,167,212,213,221,223],stabli:[9,487],stack:[0,15,21,52,81,132,140,147,180,235,236,376,378,407,474,478,533,552,568],stack_msg:377,stackedinlin:576,stackexchang:11,stackoverflow:11,stacktrac:478,staf:71,staff:[1,19,23,41,43,51,58,71,100,105,126,132,147,168,177,189,191,194,221,235,373,479,546],staff_contact_email:221,staffer:[51,149,189,221],staffernam:189,stage:[0,4,13,105,147,167,191,194,576,578,581],stagger:504,stai:[21,29,49,93,143,180,182,186,188,217,362,371,413,551],stale:[49,212,486],stale_timeout:486,stalker:614,stamina:[98,118,173,341,387,395],stamp:[20,45,49,52,221,228,231,240,252,473,482,524,529,542],stan:184,stanc:[0,32,62,112,149,178,391,474,555,571],stand:[0,1,11,12,15,18,35,51,69,82,100,105,110,112,121,124,126,128,134,137,140,143,145,146,163,167,177,178,179,180,182,184,185,191,194,202,213,217,221,248,303,305,313,373,390,391,408,417,440,474,482,487,523,543,546,548,554,568,584],standalon:208,standard:[7,14,17,19,20,27,32,50,52,54,61,62,67,70,72,90,91,97,100,102,110,122,124,126,131,136,139,143,157,161,168,169,173,178,179,186,188,189,193,196,198,200,207,208,215,219,221,225,228,239,281,300,373,384,391,406,417,474,512,514,519,536,540,545,554,556,566,569,593,620],stander:140,stanislav:76,stanman:184,stanza:[0,59,502],stapl:149,star:242,start:[0,1,5,6,7,8,10,11,12,13,15,16,17,19,20,21,23,27,29,32,34,35,36,38,41,43,44,45,46,49,52,53,54,56,57,60,63,64,66,67,69,71,76,78,88,92,93,94,95,96,97,102,105,112,117,118,120,121,124,125,126,127,128,130,131,134,136,137,138,139,140,143,144,147,148,149,150,151,152,155,161,163,165,168,172,174,175,176,177,178,179,180,181,182,184,186,187,190,191,192,193,194,196,197,198,200,201,202,203,205,208,209,211,213,214,215,216,217,219,220,221,222,223,228,229,234,235,241,242,247,248,249,250,251,252,253,256,265,277,287,303,304,305,307,313,316,322,326,338,339,340,341,342,346,349,362,370,371,376,384,387,390,391,395,406,407,408,409,411,412,414,418,425,434,436,439,440,442,450,455,462,474,476,478,481,482,483,484,485,486,487,489,492,494,496,497,502,503,504,505,509,510,511,516,517,523,524,529,530,533,537,541,545,546,547,548,550,552,553,554,555,556,561,568,597,620],start_:221,start_all_dummy_cli:523,start_attack:440,start_bot_sess:533,start_char:555,start_chargen:[152,406],start_combat:407,start_delai:[44,178,180,198,481,482,487,548],start_direct:371,start_driv:180,start_evennia:492,start_hunt:440,start_idl:440,start_index:247,start_lines1:492,start_lines2:492,start_loc:221,start_loc_on_grid:[182,349],start_of_messag:578,start_olc:476,start_only_serv:492,start_open:305,start_ov:29,start_patrol:440,start_plugin_servic:[63,221],start_portal_interact:492,start_posit:305,start_read:305,start_room:409,start_rotat:305,start_serv:502,start_server_interact:492,start_step:414,start_sunrise_ev:175,start_text:462,start_turn:[338,342],start_xi:[124,370],startapp:[69,194,195,197],startclr:555,startcolor:32,startcoord:368,startedconnect:[489,503,504],starter:[132,146,189,193],starthour:1,startnod:[29,152,184,304,412,439,450,476,552],startnode_input:[29,304,439,450,476,552],startproduc:494,startservic:[495,537],startset:442,startswith:[33,36,242,545,566],starttupl:512,startup:[0,14,25,63,138,175,193,217,220,221,474,482,485,521,530,561,568],stat1:378,stat:[8,14,18,29,54,78,81,118,138,139,143,144,147,149,152,157,163,176,178,191,193,194,195,204,313,338,341,342,376,377,395,430,617,620],statbuff:377,state:[0,6,14,15,16,21,23,26,27,29,35,44,45,52,61,81,87,93,114,126,131,132,138,144,146,149,155,158,167,172,178,180,187,188,212,216,218,225,226,228,233,235,236,239,246,254,256,259,271,301,302,303,305,306,309,310,319,338,355,376,406,407,414,434,440,442,479,482,484,485,487,492,512,540,550,552],state_001_start:93,state_chang:308,state_nam:308,state_unlog:246,statefultelnetprotocol:[515,523],statehandl:[306,308],statement:[6,7,15,16,20,21,29,54,55,69,76,130,136,143,169,182,434,546,567],statenam:[303,305,308],static_overrid:[0,74,138,193],static_root:[193,221],static_url:221,staticfil:[76,126,221],staticfiles_dir:221,staticfiles_ignore_pattern:221,staticfiles_storag:76,statict:242,statictrait:[118,395],station:[100,149,180],stationari:440,statist:[45,53,54,56,74,98,165,198,220,242,252,387,525,541,559],statu:[0,29,45,48,51,70,78,97,120,126,132,134,138,147,169,172,187,196,205,208,215,217,220,221,222,252,313,340,341,342,414,440,452,487,490,492,501,502,503,506,520,576,620],statuesqu:152,status:[132,147],status_cod:494,stderr:300,stdin_open:212,stdout:[0,212,300,492,561],steadi:131,steal:[37,151,249],stealth:149,steel:323,steer:180,step1:172,step2:172,step3:172,step:[4,6,9,10,15,16,19,21,23,27,29,43,69,71,81,82,92,100,101,102,124,126,132,142,148,149,150,151,152,169,170,172,177,179,180,181,186,187,188,191,192,195,197,205,207,212,213,215,221,222,241,247,265,323,342,368,370,371,394,414,427,442,487,496,508,519,523,524,533,542,546,549,550,552,553],step_:[187,414],step_a:414,step_end:414,step_find_the_red_kei:187,step_hand_in_quest:187,step_sequ:364,step_start:[187,414],stepnam:[221,414],stepper:[124,371],stick:[17,23,29,72,88,128,149,170,240],still:[0,1,2,10,12,14,15,16,17,19,21,23,35,39,45,46,49,51,58,59,61,63,66,67,71,81,82,88,92,93,100,102,109,118,119,123,124,125,126,130,131,133,134,138,139,140,141,143,149,151,152,153,154,155,156,159,160,161,162,163,168,169,172,175,176,180,181,182,186,188,189,191,192,195,199,200,208,215,218,221,223,228,235,242,247,249,254,256,281,296,308,322,338,339,340,341,342,362,371,376,394,395,407,439,442,462,472,474,478,484,524,552,554,555,556,564,568,616],sting:105,stingi:418,stock:[130,150,447,608],stolen:[151,219,545],stone:[23,29,59,134,145,150,157,161,170,411,413],stood:140,stop:[0,1,6,8,10,16,19,20,32,34,39,41,44,45,48,52,55,56,66,71,81,100,114,115,116,118,124,126,132,134,137,138,140,143,149,168,169,172,175,178,180,182,184,189,191,198,208,212,216,217,220,221,222,223,239,242,247,252,256,277,286,288,313,323,339,342,355,358,371,380,391,395,407,434,474,481,484,485,486,487,491,492,494,497,509,510,530,531,537,545,546,548,568,620],stop_combat:407,stop_driv:180,stop_evennia:492,stop_serv:502,stop_server_onli:492,stop_task:0,stopproduc:494,stopservic:[495,537],storag:[0,14,15,23,24,49,69,76,87,131,135,137,150,155,167,171,177,194,205,231,252,258,261,263,290,319,362,390,395,417,418,464,470,473,474,478,479,482,485,487,499,535,539,540,542,547,562,563],storage_modul:547,storagecontain:44,storagescript:44,store:[0,1,9,12,13,15,17,19,20,21,23,24,27,33,35,37,38,39,41,44,45,47,48,49,51,52,63,69,72,74,76,78,79,81,86,88,94,101,102,112,113,118,123,124,126,131,132,133,135,136,138,139,140,141,143,144,147,151,155,157,158,161,167,168,169,171,172,174,177,178,179,180,181,182,184,186,187,189,191,193,194,195,196,197,205,211,212,221,223,228,229,231,236,239,240,242,243,245,249,250,258,273,287,306,308,313,322,323,332,338,340,346,358,362,371,372,376,390,391,395,400,407,412,414,418,436,441,442,447,450,458,464,465,469,470,473,477,478,479,480,483,484,485,486,487,492,496,497,498,499,502,504,505,506,508,516,519,524,530,531,532,533,535,537,540,541,542,543,545,547,548,549,550,552,553,556,559,562,563,564,568,594,608,619],store_kei:[0,487,568],store_tru:[122,300],stored_obj:1,storekei:487,stori:[9,33,120,165,189,194],storm:171,storm_drain:88,storypag:165,storytel:191,stout:152,stove:474,str2int:568,str:[0,1,7,14,20,27,29,32,34,36,37,44,49,55,63,72,82,95,100,102,104,118,124,126,133,139,141,143,152,157,161,163,169,177,181,186,194,195,221,225,228,229,230,233,234,235,236,237,242,247,249,256,257,258,265,273,274,277,284,285,286,287,290,300,304,305,306,308,310,313,316,319,322,326,329,338,340,341,342,346,349,355,362,370,371,372,373,376,377,380,387,390,391,394,395,405,407,410,411,412,413,414,417,430,432,434,439,442,447,450,455,456,458,462,464,465,466,467,470,472,473,474,477,478,479,481,483,484,485,487,489,490,492,496,497,498,499,501,502,503,504,505,507,510,511,512,515,516,517,520,521,523,529,530,531,532,533,535,536,537,540,541,542,543,545,546,547,548,550,551,552,553,554,555,561,562,563,564,565,566,567,568,569,571,572,577,586,588,591,600,614,616],straght:371,straight:[0,124,150,155,182,188,196,371,543],straightforward:[1,180,186,191],strang:[16,44,139,167,172,207,236,254,501],strangl:217,strap:[149,408],strategi:[6,342,407],strattr:[14,272,376,540],strawberri:[122,300],stream:[10,196,501,505,531],streamlin:313,streeter:76,stren:143,strength:[14,35,118,138,139,149,151,152,161,163,168,169,170,177,178,195,394,395,405,410,412,413,417],strengthbuff:[81,376],stress:[8,368,523],stretch:[105,124,128],stribg:568,stricako:0,strict:[0,55,324,478,545,616],stricter:[150,478],strictli:[29,58,91,136,194,281,341,554],strike:[29,171,178,248,341,342,377,436],string1:568,string2:568,string:[0,1,6,7,8,9,11,14,15,17,19,20,21,23,24,25,27,29,32,33,36,38,39,41,43,47,48,49,51,52,56,58,59,61,66,67,69,70,72,81,82,84,88,95,104,105,110,112,113,119,123,126,128,130,132,133,134,135,136,138,139,140,141,144,145,149,151,152,155,161,163,168,169,172,178,182,189,194,195,196,204,205,209,214,217,220,221,225,226,228,229,230,231,233,234,237,240,242,247,248,249,250,251,252,253,256,257,258,265,280,281,290,292,305,310,313,316,319,322,329,335,338,340,349,362,370,372,373,376,377,380,390,391,395,405,410,411,412,413,414,416,417,430,434,439,440,442,447,448,450,455,458,459,462,465,466,468,469,470,472,473,474,477,478,479,481,482,485,487,492,494,497,501,504,512,515,516,518,521,524,529,531,533,536,540,541,542,543,544,545,546,548,549,550,551,553,554,555,561,562,564,565,566,567,568,569,571,572,577,584,591,616,619],string_from_modul:568,string_partial_match:[472,568],string_similar:568,string_suggest:568,stringproduc:494,stringreceiv:501,stringvalu:[118,395],strip:[0,23,29,32,33,34,61,71,82,97,100,126,128,133,140,141,152,163,169,179,183,191,221,234,242,249,250,251,305,323,391,408,416,472,479,497,512,515,516,545,546,550,552,555,566,568],strip_ansi:[545,567],strip_cmd_prefix:249,strip_control_sequ:568,strip_dir:8,strip_mxp:545,strip_raw_ansi:545,strip_raw_cod:545,strip_unsafe_input:[0,221,568],strip_unsafe_token:545,strippabl:552,stroll:358,strong:[35,61,150,170,191],strongest:[35,81,376,408],strongli:[12,19,50,131,143,149,177,390],strr:458,struck:141,struct:[167,221],structur:[0,14,23,29,32,33,41,43,54,67,70,76,110,125,126,130,131,132,133,136,137,138,143,149,155,158,161,167,176,182,189,193,194,195,197,215,216,221,242,247,256,370,372,391,467,474,478,479,516,521,543,549,551,552,589,605,617,620],strvalu:[0,14,540,541],stub:7,stuck:[29,133,140,146,620],studi:163,stuff:[11,14,21,29,32,35,41,43,44,45,46,54,81,96,118,122,126,127,128,132,133,141,142,143,144,145,146,147,149,151,155,163,165,168,176,177,179,182,184,189,208,221,236,253,300,326,394,395,413,418,487,530,601,620],stumbl:[9,150],stunt:407,stunt_dur:407,stupid:150,sturdi:551,stutter:71,style:[0,2,10,12,14,19,20,23,24,26,29,38,52,57,63,73,84,85,88,103,105,111,118,119,120,125,126,127,128,130,132,133,143,146,147,149,150,151,152,158,165,168,169,178,179,200,221,231,237,239,250,256,268,274,295,298,300,310,316,322,329,338,395,407,450,455,456,478,550,554,555,568,620],style_cod:567,style_foot:0,style_head:0,style_separ:0,styled_foot:237,styled_head:[23,237],styled_separ:237,styled_t:[0,23,237],sub:[4,14,19,32,33,43,44,52,54,70,71,109,112,128,135,138,168,178,189,196,197,201,216,217,221,227,232,247,249,255,259,265,266,296,300,368,376,377,391,463,465,467,468,471,479,480,488,539,544,545,555,567,574,578,610],sub_ansi:545,sub_app:194,sub_brightbg:545,sub_mxp_link:567,sub_mxp_url:567,sub_text:567,sub_to_channel:247,sub_xterm256:545,subbed_chan:247,subcategori:[249,467],subclass:[0,20,24,43,45,49,118,123,124,131,135,136,138,157,183,187,242,265,266,362,395,473,478,482,502,515,521,542,560,564,568,576,577,584],subcommand:[0,124],subcrib:19,subdir:11,subdirectori:11,subdomain:[207,217,219],subfold:[0,69,74,138,143,195],subhead:128,subject:[37,59,69,96,136,181,217,326,329,555,572],sublim:132,submarin:180,submenu:[10,265,266,407,476],submenu_class:265,submenu_obj:265,submiss:[95,450,608],submit:[7,18,54,95,126,194,219,254,450,608,612,614,619],submitcmd:450,submitt:0,submodul:516,subnegoti:516,subnet:[56,205,240],subpackag:[11,70],subprocess:[1,568],subreddit:200,subscrib:[19,23,35,48,56,129,131,169,190,221,229,247,256,257,258,296,340,487,503,534],subscribernam:247,subscript:[19,23,44,48,81,169,190,247,257,258,487,578],subscriptionhandl:[19,258],subsect:370,subsequ:[23,55,81,112,143,178,296,303,390,546,568],subsequent_ind:554,subset:[11,47,138,149,167,370,418],subsid:49,substanti:[76,322],substitut:[0,10,38,204,474,545,567],substr:[141,545,555],subsub:[33,249,253],subsubhead:128,subsubsubhead:128,subsubtop:[33,249,253],subsubtopicn:253,subsystem:[0,69,120,189,213,470],subtext:306,subtil:7,subtitl:18,subtop:[247,249,253,464,467],subtopic_separator_char:249,subtract:[32,81,118,126,170,394],subturn:178,subwai:100,subword:568,suc:88,succe:[88,132,147,161,178,299,322,384,407,417],succeed:[29,122,161,247,300,384],success:[0,88,97,126,136,149,161,177,178,191,195,228,247,256,313,322,338,339,340,341,342,384,407,417,434,441,442,470,478,486,492,496,542,550,562,568],success_messag:[322,323],success_teleport_msg:442,success_teleport_to:442,success_url:[612,614],successfuli:[111,322,335],successfulli:[4,5,23,55,105,111,140,171,196,218,228,322,323,324,335,362,407,441,474,486,492,504,536,542,619],succinct:12,suddenli:[9,542],sudo:[208,212,213,215,219],suffer:161,suffic:[18,143,168],suffici:[69,76,217],suffix:[9,20,32,110,187,545,555,561,568,594],suggest:[0,1,12,29,30,33,49,75,76,118,121,128,130,147,149,150,161,171,205,222,234,249,313,323,391,395,442,467,474,568],suggestion_cutoff:249,suggestion_maxnum:[249,467],suggests:33,suid:221,suit:[0,2,5,120,131,150,172,253,568,617,620],suitabl:[1,12,23,32,35,38,44,47,51,67,70,117,124,126,130,131,132,133,143,161,172,179,215,217,230,235,247,305,322,370,408,411,470,526,533,548,552,555],sum:[124,127,132,155,161,170,186,222,236,306,417],summar:[102,125,126,200,417],summari:[51,62,100,101,102,125,132,142,158,191,200,218,222,265,407],summer:[94,149,346],sun:[124,175],sunken:152,sunris:175,sunt:30,super_long_text:553,superclass:576,superfici:[112,390],supersus:470,superus:[1,8,11,13,15,16,24,35,51,58,79,84,100,105,115,121,134,138,139,140,141,143,149,169,179,189,192,195,205,210,213,214,221,223,228,230,231,241,252,256,316,355,440,469,470,474,479,492,542,546,548,576],supplement:29,suppli:[8,14,20,29,32,33,34,36,43,44,45,47,48,50,55,59,70,91,94,100,118,141,149,169,178,191,202,221,231,236,237,240,242,247,252,253,257,265,271,277,281,346,370,387,395,472,473,474,478,482,487,503,533,542,550,551,555,556,565,568],supporst:519,support:[0,6,7,13,14,19,23,27,29,32,33,34,37,38,43,44,60,61,62,63,64,66,67,69,72,76,81,83,85,86,87,90,94,97,100,109,122,124,125,126,127,128,130,131,132,137,141,143,145,147,149,150,161,167,168,169,181,182,186,188,189,191,201,203,205,207,210,211,212,213,215,217,218,221,222,228,239,248,249,252,268,272,273,275,277,290,296,300,305,319,346,349,371,384,396,416,469,474,478,479,487,497,505,506,507,508,512,514,515,516,517,519,521,532,540,545,549,552,553,554,555,565,566,568,571,600,616,620],supports_set:[34,497],suppos:[23,29,43,50,67,102,136,228,265],supposedli:[112,208,390,478,516],suppress:[206,514],suppress_ga:[225,226,488,500],suppressga:514,supress:514,sur:200,sure:[0,1,4,9,10,11,12,13,14,15,16,17,19,21,23,29,33,35,38,39,41,43,44,45,47,48,49,50,51,52,54,56,58,66,69,72,75,77,81,93,102,104,105,112,118,119,123,124,127,128,132,134,135,136,139,140,141,143,146,147,149,150,151,152,155,157,161,163,168,169,170,171,173,175,177,178,179,182,183,184,185,186,187,188,189,191,193,194,195,199,202,204,205,207,208,210,211,212,213,215,216,217,218,221,223,228,229,235,236,237,239,242,250,257,265,288,305,316,322,341,371,390,395,400,405,406,407,408,409,412,414,417,421,440,441,442,448,458,462,465,469,470,474,478,479,484,492,496,502,504,509,530,536,537,538,540,541,542,543,545,547,549,551,552,559,564,565,568,577,584,586,609,617,619],surfac:[121,126,169,219,305],surnam:[110,455],surname_first:[110,455],surpris:[14,35,82,125,143,181,186,197],surrend:161,surround:[7,21,23,32,104,105,121,124,178,240,310,371,408,440,564,568],surviv:[0,14,20,21,27,29,32,36,44,45,48,118,139,161,171,172,178,187,188,221,229,236,252,265,319,395,472,481,482,483,487,548,550,552,568],survivor:149,suscept:[20,167,470],suspect:194,suspend:[10,212,219],suspici:[29,152],suspicion:194,suzu:110,svn:[0,71],swallow:[497,501],swam:[571,573],swap:[0,11,24,26,52,61,94,132,151,158,242,332,346,406,407,411,423,542,550],swap_autoind:550,swap_object:542,swap_typeclass:[49,228,542],swapcas:545,swapper:542,swedish:66,sweep:44,swiftli:55,swim:[571,573],swing:[23,141,171,172],switch1:7,switch2:7,switch_map:242,switch_opt:[239,240,241,242,247,248,249,250,252,296,346],switchboard:135,sword:[14,23,47,50,69,78,88,100,118,126,132,134,136,145,146,149,152,163,171,172,177,184,225,226,259,305,311,313,321,322,324,391,395,407,411,413,472,479,565,568],swordbladerecip:323,swordguardrecip:323,swordhandlerecip:323,swordpommelrecip:323,swordrecip:[322,323],swordsmithingbaserecip:323,swum:[571,573],syllabl:455,sylliaa:76,symbol:[10,16,17,23,71,123,124,136,182,211,221,254,362,365,368,370,371,373,391,462,553],symlink:[128,215],symlinkorcopi:76,symmetr:554,symmetri:11,sync:[12,45,53,67,131,221,370,371,372,481,510,515,530,531,532,533,540,549],sync_node_to_grid:371,sync_port:533,syncdata:[532,533],syncdb:11,synchron:[62,221,561],syntact:[470,568],syntax:[0,7,9,15,16,17,23,29,35,73,79,82,95,100,101,109,110,122,125,126,130,134,135,139,169,172,175,179,186,191,195,205,221,225,226,237,241,242,249,250,253,265,270,300,303,322,346,376,384,408,417,450,455,470,474,492,504,531,540,542,544,545,620],syntaxerror:143,sys:[221,616],sys_cmd:235,syscmdkei:[23,129,221,225],syscommand:[225,226,232,238,474],syslog:[77,446],sysroot:211,system:[0,3,4,8,9,11,12,13,14,19,20,21,24,26,34,36,37,38,41,43,44,45,46,47,48,49,54,55,58,62,63,66,67,69,71,73,75,77,81,82,84,89,92,93,101,102,105,108,110,119,121,124,125,126,128,129,130,131,132,135,137,138,140,142,143,146,148,152,155,163,167,171,172,174,175,180,181,182,188,189,190,192,193,195,196,200,205,208,210,211,213,215,217,218,219,220,221,223,225,226,229,231,232,233,235,237,238,239,241,242,249,251,253,255,256,257,258,261,265,270,281,285,286,287,288,290,305,313,314,316,322,323,324,328,329,332,335,337,338,339,340,341,342,362,368,369,370,371,373,376,378,379,390,391,392,407,409,411,412,414,418,439,442,446,447,448,452,462,463,464,466,469,470,473,474,476,478,479,480,492,515,521,529,539,542,546,548,551,552,555,561,572,576,594,620],system_command:23,systemat:181,systemctl:207,systemd:208,systemmultimatch:251,systemnoinput:251,systemnomatch:251,tab:[0,4,7,10,16,52,53,61,132,143,144,150,173,189,197,221,545,554,567],tabl:[0,9,15,17,49,52,59,61,62,70,72,79,100,101,102,104,105,129,131,132,136,145,149,151,158,169,192,195,197,221,223,237,239,247,249,252,405,412,415,417,450,516,535,545,551,553,554,555,565,568,620],table_char:551,table_choic:[161,417],table_format:239,table_lin:554,table_opt:551,table_str:169,tablea:551,tableb:551,tablechar:[169,551],tableclos:[70,516],tablecol:554,tableopen:[70,516],tablet:57,tabletop:[120,126,149,151,169,177,200,338,342,417],tabsiz:[545,554],tabstop:567,tabularinlin:[577,584],tack:[134,236],tackl:127,tactic:[149,177,178],taction:178,tag:[0,7,15,19,23,24,26,29,33,34,37,38,41,43,44,49,51,52,53,54,56,61,62,66,69,70,75,85,86,88,96,111,112,124,126,132,133,134,136,143,149,168,169,176,187,189,193,195,196,206,212,221,225,226,230,237,239,240,241,242,247,248,249,250,251,252,253,254,256,257,258,265,268,272,273,275,281,285,296,299,300,303,305,306,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,364,371,373,376,380,384,391,395,408,409,413,418,434,436,439,440,441,442,446,450,452,458,462,465,466,467,469,472,474,478,479,481,507,521,523,529,539,541,542,545,548,550,551,552,553,554,555,565,566,568,574,575,576,578,580,581,582,588,591,620],tag_all_charact:306,tag_categori:584,tag_charact:306,tag_data:584,tag_field_nam:271,tag_kei:584,tag_typ:[584,588],tagadmin:584,tagcategori:[305,306,543],tagcount:136,taget_map_xyz:371,tagfield:[86,272],tagform:584,tagformset:[577,584],taghandl:[0,47,49,187,543,584],taghandler_nam:543,taginlin:[576,578,580,581,582,584],tagkei:[469,472,543,548],taglin:18,tagnam:[47,187,479,543],tagproperti:[0,47,225,542,543],tagseri:591,tagshandl:591,tagstr:[479,543],tagtyp:[47,541,543,565,588],tagtypefilt:588,tail:[138,210,212,217,492,561],tail_log_fil:[492,561],tail_log_funct:561,tailor:[197,608],take:[0,1,6,10,11,12,15,16,17,18,19,20,21,23,29,30,32,34,35,41,43,45,49,55,57,58,61,63,66,67,71,77,81,82,88,89,93,95,100,101,102,104,105,110,113,119,121,124,125,126,128,130,131,132,134,139,140,141,142,143,145,146,148,149,150,151,152,158,161,164,165,166,167,168,169,171,175,176,178,179,180,182,186,187,188,189,191,192,193,194,195,196,197,200,211,217,219,228,229,234,235,239,251,256,258,277,280,292,303,308,310,313,316,322,335,338,339,340,341,342,346,349,355,358,364,368,376,391,405,407,408,413,434,439,440,442,446,450,452,458,462,470,479,512,520,523,532,533,541,542,545,550,551,552,553,555,562,566,567,568,569,572,620],take_damag:[81,376],taken:[21,110,131,135,144,167,178,180,191,198,210,219,248,281,338,349,407,413,446,465,474,478,512,536,545,548],taken_damag:[81,376,377],takeov:534,tale:165,tali:[110,455],talk:[7,12,20,23,29,53,63,101,112,125,126,127,143,149,150,155,169,186,205,217,221,228,247,248,296,313,390,391,408,412,418,435,436,437,442,489,572,620],talker:[130,412],talki:[19,131,149],talking_npc:[117,225,226,259,396,620],talkingcmdset:436,talkingnpc:[117,436],tall:[0,7,59,112,149,248,391],tallman:248,tan:323,tang:[133,323],tannin:323,tantal:16,tap:[77,126],target1:341,target2:341,target:[0,1,11,23,35,37,52,59,63,70,81,86,90,94,112,119,124,126,128,133,134,140,141,143,161,169,171,172,173,177,178,179,191,193,196,219,221,228,237,242,247,248,252,256,258,303,305,308,323,329,338,339,340,341,342,346,362,364,365,368,370,371,376,377,380,384,391,407,408,409,417,440,452,462,472,474,483,541,545,548,552,568],target_fire_damag:323,target_flag:305,target_loc:[306,358,362,409,442,474],target_map_xyz:[124,365,368,371],target_obj:470,target_path_styl:370,targetlist:329,task:[0,3,8,19,20,26,44,63,100,102,138,186,208,218,252,253,285,287,364,462,486,487,568],task_handl:[225,486,568],task_id:[252,287,486],taskhandl:[0,225,226,480,568],taskhandlertask:[486,568],tast:[82,146,150,161,194],tasti:322,taught:152,tavern:[112,391],tax:[8,211],taylor:[0,200],tb_basic:[0,120,225,226,259,311,337,339,340,341,342],tb_equip:[0,120,225,226,259,311,337],tb_filenam:546,tb_item:[0,120,225,226,259,311,337],tb_iter:546,tb_magic:[0,120,225,226,259,311,337],tb_rang:[0,120,225,226,259,311,337],tbbasiccharact:[338,339,340,341,342],tbbasicturnhandl:[338,339,340,341,342],tbearmor:339,tbequipcharact:339,tbequipturnhandl:339,tbeweapon:339,tbitemscharact:340,tbitemscharactertest:340,tbitemsturnhandl:340,tbmagiccharact:341,tbmagicturnhandl:341,tbodi:195,tbrangecharact:342,tbrangeobject:342,tbrangeturnhandl:342,tchar:178,tcp:219,tcpserver:[63,537],tea:[110,455],teach:[125,126,137,150],team:[3,23,33,71,131,147,149,150],teamciti:3,teardown:[11,253,278,288,309,324,343,368,378,392,394,401,423,518,566,592],teardown_account:566,teardown_sess:566,teaser:217,tech:[132,142,148,150,158,164,166,200],technic:[24,29,47,49,55,58,59,61,63,66,67,71,124,131,134,147,150,161,181,189,205,217,225,226,259,313,396,433,540],techniqu:[83,140,172,380,545],technolog:149,tediou:[10,105],teenag:[179,219],tegimini:[0,81,126,376],tehom:[0,136,189],tehomcd:189,tel:[26,56,102,133,169,180,186,242,364],telepath:149,telephathi:19,teleport:[0,16,26,56,75,126,134,146,169,242,248,364,368,371,442,474,546],teleport_her:[0,242],teleportermaplink:[124,371],teleportmaplink:124,teleportroom:442,televis:21,tell:[0,5,6,9,12,14,15,21,23,26,29,32,34,35,37,38,41,43,44,55,56,58,66,67,69,74,77,81,82,88,90,93,100,101,102,112,133,134,138,139,140,141,143,144,149,151,152,155,161,165,169,170,172,177,178,179,180,182,185,186,187,190,195,196,197,205,207,211,212,217,218,219,221,223,229,239,247,248,258,371,376,377,384,391,409,442,474,492,510,521,533,550,617],telnet:[0,1,8,17,45,52,53,60,63,65,67,130,131,132,143,173,189,200,210,211,212,213,218,221,222,225,226,249,252,488,500,505,506,507,508,512,513,514,516,517,519,523,531,532],telnet_:217,telnet_en:221,telnet_hostnam:[209,221],telnet_interfac:[217,221],telnet_oob:[70,225,226,488,500],telnet_oob_en:221,telnet_port:[4,8,138,189,209,217,221,524],telnet_protocol_class:221,telnet_ssl:[225,226,488,500],telnetoob:516,telnetprotocol:[221,513,515,517],telnetserverfactori:515,temp:[258,406],tempat:450,templ:[104,121],templat:[0,13,20,21,24,38,43,46,49,50,51,52,53,54,74,119,131,138,144,149,152,163,165,191,193,195,210,220,221,225,226,247,248,250,256,376,439,450,474,492,521,531,532,540,544,551,597,601,606,616,617,619],template2menu:[29,552],template_nam:[54,196,612,613,614,616,617,619],template_overrid:[0,74,138,193],template_regex:540,template_rend:46,template_str:[29,38],templates_overrid:74,templatetag:[225,226,574],templateview:[54,196,617],tempmsg:[24,258],temporari:[0,11,12,14,24,146,152,218,221,236,258,290,338,487,552],temporarili:[9,11,19,21,29,44,53,118,134,139,161,217,247,252,287,322,335,395,434],temporarycharactersheet:[152,406],tempt:[32,139,143,147,149,220,240],ten:[105,172,217],tend:[7,8,9,69,73,112,131,149,157,168,176,177,180,217,219,242,390,446],tens:[571,573],tent:[105,149],terabyt:49,term:[0,7,21,33,55,66,102,131,132,138,139,141,150,175,186,188,197,217,237,305,458,535],term_siz:[0,6,225],termin:[0,6,8,9,10,12,20,54,97,119,124,128,131,132,133,143,144,188,191,192,205,210,211,212,213,215,217,218,219,225,252,286,338,462,491,492,512,519,535,617],terminalrealm:512,terminals:512,terminalsessiontransport:512,terminalsessiontransport_getp:512,termux:222,terrain:[182,371],terribl:[340,505],territori:221,ters:44,test1:[14,34,554],test2010:133,test2028:133,test2:[14,23,34],test3:[14,554],test4:[14,554],test5:14,test6:14,test7:14,test8:14,test:[0,1,2,3,4,5,6,7,10,14,15,16,17,18,21,23,27,29,32,33,34,35,39,41,43,44,46,48,52,54,55,58,77,79,80,82,83,84,88,92,95,101,102,105,111,120,125,126,128,132,134,136,139,140,141,142,144,147,149,150,158,164,167,169,172,175,178,179,186,187,190,194,197,198,201,202,203,205,206,208,211,213,215,216,217,221,225,226,230,232,234,238,239,241,249,252,259,260,261,264,267,270,276,279,283,291,295,298,301,302,311,312,315,316,318,321,322,323,325,328,331,334,337,338,339,340,341,342,344,345,346,348,351,354,357,360,363,370,374,375,379,383,384,386,389,393,396,399,400,402,435,438,439,444,445,450,451,454,457,460,462,478,488,494,497,500,501,521,522,523,527,542,544,545,546,548,552,557,566,568,570,574,587,598,607,616,620],test_:[11,163,378],test_a:275,test_abl:421,test_about:253,test_accept:288,test_access:253,test_active_task:253,test_add:[288,320,426],test_add__remov:426,test_add_choice_without_kei:266,test_add_combat:423,test_add_float:320,test_add_multi:320,test_add_neg:320,test_add_non:320,test_add_overwrit:320,test_add_remov:155,test_add_trait:394,test_add_valid:288,test_addremov:378,test_al:394,test_all_com:297,test_all_st:309,test_alternative_cal:11,test_amp_in:518,test_amp_out:518,test_appli:422,test_at_damag:421,test_at_pai:[151,421],test_at_repeat:401,test_attack:424,test_attack__miss:423,test_attack__success__kil:423,test_attack__success__still_al:423,test_attribute_command:253,test_audit:448,test_auto_creating_bucket:263,test_auto_creating_bucket_with_acl:263,test_available_languag:392,test_b:275,test_ban:253,test_base_chargen:422,test_base_pars:309,test_base_search:309,test_base_st:309,test_batch_command:253,test_bold:518,test_boundaries__bigmod:394,test_boundaries__change_boundari:394,test_boundaries__dis:394,test_boundaries__invers:394,test_boundaries__minmax:394,test_bridgeroom:443,test_buffableproperti:378,test_build:368,test_build_desc:422,test_c:275,test_c_creates_button:528,test_c_creates_obj:528,test_c_dig:528,test_c_examin:528,test_c_help:528,test_c_login:528,test_c_login_no_dig:528,test_c_logout:528,test_c_look:528,test_c_mov:528,test_c_move_:528,test_c_move_n:528,test_c_soci:528,test_cach:394,test_cacheattrlink:378,test_cal:[253,288],test_callback:266,test_can_access_component_regular_get:275,test_can_get_compon:275,test_can_remove_compon:275,test_can_remove_component_by_nam:275,test_cancel:253,test_cannot_replace_compon:275,test_cas:11,test_cboot:297,test_cdesc:297,test_cdestroi:297,test_channel__al:253,test_channel__alias__unalia:253,test_channel__ban__unban:253,test_channel__boot:253,test_channel__cr:253,test_channel__desc:253,test_channel__destroi:253,test_channel__histori:253,test_channel__list:253,test_channel__lock:253,test_channel__msg:253,test_channel__mut:253,test_channel__noarg:253,test_channel__sub:253,test_channel__unlock:253,test_channel__unmut:253,test_channel__unsub:253,test_channel__who:253,test_char_cr:[253,382],test_char_delet:253,test_charact:[151,225,226,259,396,402,419],test_character_assigns_default_provided_valu:275,test_character_assigns_default_valu:275,test_character_can_register_runtime_compon:275,test_character_has_class_compon:275,test_character_instances_components_properli:275,test_chargen:[225,226,259,396,402,419],test_clean_nam:263,test_clean_name_norm:263,test_clean_name_trailing_slash:263,test_clean_name_window:263,test_cleanup:320,test_cleanup_doesnt_delete_anyth:320,test_clear:[320,394],test_climb:443,test_clock:297,test_clothingcommand:317,test_clothingfunct:317,test_cmd_armpuzzl:336,test_cmd_puzzl:336,test_cmd_us:336,test_cmddic:385,test_cmdextendedlook:347,test_cmdgametim:347,test_cmdmultidesc:333,test_cmdopen:356,test_cmdset_puzzl:336,test_cmdsetdetail:347,test_cmdtrad:314,test_cmdtradehelp:314,test_cmdtutori:443,test_colloquial_plur:573,test_colloquial_plurals_0_y:573,test_colloquial_plurals_1_i:573,test_colloquial_plurals_2_m:573,test_colloquial_plurals_3_your:573,test_colloquial_plurals_4_thei:573,test_colloquial_plurals_5_thei:573,test_colloquial_plurals_6_yourself:573,test_colloquial_plurals_7_myself:573,test_color:518,test_color_test:253,test_combat:[225,226,259,396,402,419],test_combat_summari:423,test_command:[225,226,259,392,396,402,419],test_comparisons_numer:394,test_comparisons_trait:394,test_complex:378,test_component_can_register_as_listen:275,test_component_can_register_as_respond:275,test_component_handler_signals_connected_when_adding_default_compon:275,test_component_handler_signals_disconnected_when_removing_compon:275,test_component_handler_signals_disconnected_when_removing_component_by_nam:275,test_component_tags_default_value_is_overridden_when_enforce_singl:275,test_component_tags_only_hold_one_value_when_enforce_singl:275,test_component_tags_support_multiple_values_by_default:275,test_compress_content_len:263,test_connect:282,test_connection_thread:263,test_content_typ:263,test_context_condit:378,test_copi:253,test_count_slot:426,test_craft__nocons__failur:324,test_craft__notools__failur:324,test_craft__success:324,test_craft__unknown_recipe__failur:324,test_craft_cons_excess__fail:324,test_craft_cons_excess__sucess:324,test_craft_cons_order__fail:324,test_craft_hook__fail:324,test_craft_hook__succe:324,test_craft_missing_cons__always_consume__fail:324,test_craft_missing_cons__fail:324,test_craft_missing_tool__fail:324,test_craft_sword:324,test_craft_tool_excess__fail:324,test_craft_tool_excess__sucess:324,test_craft_tool_order__fail:324,test_craft_wrong_tool__fail:324,test_creat:[253,592],test_create_wilderness_custom_nam:361,test_create_wilderness_default_nam:361,test_crumblingwal:443,test_curly_markup:269,test_curr:394,test_custom_gametim:278,test_cwho:297,test_darkroom:443,test_data_in:518,test_data_out:518,test_db_path:221,test_default_map:573,test_default_mapping_00_y:573,test_default_mapping_01_i:573,test_default_mapping_02_m:573,test_default_mapping_03_our:573,test_default_mapping_04_yourself:573,test_default_mapping_05_yourselv:573,test_default_mapping_06_h:573,test_default_mapping_07_h:573,test_default_mapping_08_their:573,test_default_mapping_09_itself:573,test_default_mapping_10_herself:573,test_default_mapping_11_themselv:573,test_del:288,test_delet:[394,592],test_desc:[253,394],test_desc_default_to_room:253,test_destroi:253,test_destroy_sequ:253,test_detail:378,test_different_start_direct:425,test_dig:253,test_do_nested_lookup:253,test_do_noth:423,test_do_task:253,test_dungeon:[225,226,259,396,402,419],test_e2:336,test_e2e_accumul:336,test_e2e_interchangeable_parts_and_result:336,test_echo:566,test_edit:288,test_edit_valid:288,test_emit:253,test_emot:309,test_empti:320,test_empty_desc:253,test_end_of_turn__empti:423,test_enter_wild:361,test_enter_wilderness_custom_coordin:361,test_enter_wilderness_custom_nam:361,test_equip:[155,225,226,259,396,402,419],test_equipmenthandler_max_slot:426,test_error_format:324,test_examin:253,test_exit:[288,359],test_exit_command:253,test_extend:320,test_extend_float:320,test_extend_neg:320,test_extend_non:320,test_extended_path_tracking__horizont:368,test_extended_path_tracking__vert:368,test_extra:187,test_failur:299,test_fantasy_nam:456,test_faulty_languag:392,test_field_funct:461,test_find:253,test_first_nam:456,test_fle:423,test_flee__block:423,test_flee__success:423,test_floordiv:394,test_focu:309,test_focus_interact:309,test_forc:253,test_full_nam:456,test_func_name_manipul:253,test_gain_advantag:423,test_gain_disadvantag:423,test_gametime_to_realtim:278,test_gendercharact:327,test_gener:459,test_general_context:603,test_generated_url_is_encod:263,test_get:[394,609],test_get_and_drop:253,test_get_authent:609,test_get_available_act:423,test_get_dis:609,test_get_new_coordin:361,test_get_obj_stat:[163,429],test_get_sdesc:392,test_get_shortest_path:368,test_get_visual_range__nodes__charact:368,test_get_visual_range__nodes__character_0:368,test_get_visual_range__nodes__character_1:368,test_get_visual_range__nodes__character_2:368,test_get_visual_range__nodes__character_3:368,test_get_visual_range__nodes__character_4:368,test_get_visual_range__nodes__character_5:368,test_get_visual_range__nodes__character_6:368,test_get_visual_range__nodes__character_7:368,test_get_visual_range__nodes__character_8:368,test_get_visual_range__nodes__character_9:368,test_get_visual_range__scan:368,test_get_visual_range__scan_0:368,test_get_visual_range__scan_1:368,test_get_visual_range__scan_2:368,test_get_visual_range__scan_3:368,test_get_visual_range__scan__charact:368,test_get_visual_range__scan__character_0:368,test_get_visual_range__scan__character_1:368,test_get_visual_range__scan__character_2:368,test_get_visual_range__scan__character_3:368,test_get_visual_range_with_path:368,test_get_visual_range_with_path_0:368,test_get_visual_range_with_path_1:368,test_get_visual_range_with_path_2:368,test_get_visual_range_with_path_3:368,test_get_visual_range_with_path_4:368,test_get_wearable_or_wieldable_objects_from_backpack:426,test_gett:378,test_git_branch:453,test_git_checkout:453,test_git_pul:453,test_git_statu:453,test_giv:253,test_give__coin:424,test_give__item:424,test_go_hom:253,test_grid_cr:368,test_grid_creation_0:368,test_grid_creation_1:368,test_grid_pathfind:368,test_grid_pathfind_0:368,test_grid_pathfind_1:368,test_grid_vis:368,test_grid_visibility_0:368,test_grid_visibility_1:368,test_handl:288,test_handler_can_add_default_compon:275,test_handler_has_returns_true_for_any_compon:275,test_heal:[151,421],test_heal_from_rest:428,test_healthbar:388,test_hello_world:144,test_help:[253,427],test_hom:253,test_host_can_register_as_listen:275,test_host_can_register_as_respond:275,test_host_has_added_component_tag:275,test_host_has_added_default_component_tag:275,test_host_has_class_component_tag:275,test_host_remove_by_name_component_tag:275,test_host_remove_component_tag:275,test_ic:253,test_ic__nonaccess:253,test_ic__other_object:253,test_ident:518,test_idl:528,test_info_command:253,test_init:394,test_interrupt_command:253,test_introroom:443,test_invalid_access:609,test_inventori:[253,424],test_ital:518,test_large_msg:518,test_last_nam:456,test_lightsourc:443,test_list:[288,592],test_list_cmdset:253,test_load_recip:324,test_location_leading_slash:263,test_location_search:11,test_lock:[253,288],test_lock_with_perm:609,test_locked_entri:609,test_look:[253,309],test_look_no_loc:253,test_look_nonexist:253,test_lspuzzlerecipes_lsarmedpuzzl:336,test_mail:330,test_mapping_with_opt:573,test_mapping_with_options_00_y:573,test_mapping_with_options_01_y:573,test_mapping_with_options_02_y:573,test_mapping_with_options_03_i:573,test_mapping_with_options_04_m:573,test_mapping_with_options_05_your:573,test_mapping_with_options_06_yourself:573,test_mapping_with_options_07_yourself:573,test_mapping_with_options_08_yourselv:573,test_mapping_with_options_09_h:573,test_mapping_with_options_10_h:573,test_mapping_with_options_11_w:573,test_mapping_with_options_12_h:573,test_mapping_with_options_13_h:573,test_mapping_with_options_14_their:573,test_mask:448,test_max_slot:426,test_memplot:528,test_menu:[119,462],test_messag:529,test_misformed_command:253,test_mob:443,test_modgen:378,test_modifi:378,test_morale_check:428,test_mov:426,test_move_0_helmet:426,test_move_1_shield:426,test_move_2_armor:426,test_move_3_weapon:426,test_move_4_big_weapon:426,test_move_5_item:426,test_move__get_current_slot:426,test_msg:[324,423],test_mudlet_ttyp:518,test_mul_trait:394,test_multi_level:266,test_multimatch:253,test_mux_command:253,test_mux_markup:269,test_mycmd_char:11,test_mycmd_room:11,test_nam:253,test_nested_attribute_command:253,test_new_task_waiting_input:253,test_nick:253,test_nick_list:253,test_no_hom:253,test_no_input:253,test_no_task:253,test_node_from_coord:368,test_obelisk:443,test_obfuscate_languag:392,test_obfuscate_whisp:392,test_object:253,test_object_cach:609,test_object_search_charact:11,test_ooc:253,test_ooc_look:[253,382],test_ooc_look_00:253,test_ooc_look_01:253,test_ooc_look_02:253,test_ooc_look_03:253,test_ooc_look_04:253,test_ooc_look_05:253,test_ooc_look_06:253,test_ooc_look_07:253,test_ooc_look_08:253,test_ooc_look_09:253,test_ooc_look_10:253,test_ooc_look_11:253,test_ooc_look_12:253,test_ooc_look_13:253,test_ooc_look_14:253,test_ooc_look_15:253,test_opposed_saving_throw:428,test_opt:253,test_outroroom:443,test_override_class_vari:263,test_override_init_argu:263,test_overwrit:309,test_pag:253,test_parse_for_perspect:309,test_parse_for_th:309,test_parse_languag:392,test_parse_sdescs_and_recog:392,test_password:253,test_path:368,test_paths_0:368,test_paths_1:368,test_pause_unpaus:253,test_percentag:394,test_perm:253,test_persistent_task:253,test_pi:253,test_pickle_with_bucket:263,test_pickle_without_bucket:263,test_plain_ansi:518,test_pos:253,test_pos_shortcut:394,test_posed_cont:392,test_possessive_selfref:392,test_pre_craft:324,test_pre_craft_fail:324,test_preserve_item:361,test_progress:427,test_progress__fail:427,test_properti:426,test_puzzleedit:336,test_puzzleedit_add_remove_parts_result:336,test_quel:253,test_queri:[225,226,488,522],test_quest:[225,226,259,396,402,419],test_quit:[253,266,282],test_read:443,test_real_seconds_until:278,test_realtime_to_gametim:278,test_recog_handl:392,test_register_and_run_act:423,test_remov:[253,394,424],test_remove__with_obj:426,test_remove__with_slot:426,test_remove_combat:423,test_repr:394,test_reset:320,test_reset_non_exist:320,test_resourc:[11,151,155,161,163,221,225,226,253,266,269,275,278,282,288,297,299,309,314,317,320,324,327,330,333,336,343,347,356,359,361,368,378,382,385,388,392,394,401,421,422,423,424,425,426,427,428,429,437,443,448,453,456,459,461,518,544,592,609],test_responce_of_y:253,test_retriev:592,test_return_appear:347,test_return_detail:347,test_return_valu:11,test_returns_none_with_regular_get_when_no_attribut:275,test_rol:[161,428],test_roll_death:428,test_roll_dic:385,test_roll_limit:428,test_roll_random_t:428,test_roll_with_advantage_disadvantag:428,test_room_cr:361,test_room_method:309,test_round1:394,test_round2:394,test_rpsearch:392,test_rul:[161,225,226,259,396,402,419],test_runn:221,test_sai:253,test_saving_throw:428,test_schedul:278,test_script:253,test_script_multi_delet:253,test_sdesc_handl:392,test_seed__success:324,test_send_case_sensitive_emot:392,test_send_emot:392,test_send_emote_fallback:392,test_send_random_messag:401,test_server_load:253,test_sess:253,test_set:394,test_set_attribut:592,test_set_focu:309,test_set_help:253,test_set_hom:253,test_set_obj_alia:253,test_setattr:266,test_setgend:327,test_shortest_path:368,test_shortest_path_00:368,test_shortest_path_01:368,test_shortest_path_02:368,test_shortest_path_03:368,test_shortest_path_04:368,test_shortest_path_05:368,test_shortest_path_06:368,test_shortest_path_07:368,test_shortest_path_08:368,test_shortest_path_09:368,test_shortest_path_0:368,test_shortest_path_10:368,test_shortest_path_1:368,test_shortest_path_2:368,test_shortest_path_3:368,test_shortest_path_4:368,test_shortest_path_5:368,test_shortest_path_6:368,test_shortest_path_7:368,test_shortest_path_8:368,test_shortest_path_9:368,test_signal_a:275,test_signals_can_add_listen:275,test_signals_can_add_object_listeners_and_respond:275,test_signals_can_add_respond:275,test_signals_can_query_with_arg:275,test_signals_can_remove_listen:275,test_signals_can_remove_object_listeners_and_respond:275,test_signals_can_remove_respond:275,test_signals_can_trigger_with_arg:275,test_signals_query_does_not_fail_wihout_respond:275,test_signals_query_with_aggreg:275,test_signals_trigger_does_not_fail_without_listen:275,test_simple_default:253,test_spawn:[253,368],test_special_charact:263,test_speech:309,test_split_nested_attr:253,test_start:288,test_start_combat:423,test_start_room:425,test_start_turn:423,test_storage_delet:263,test_storage_exist:263,test_storage_exists_doesnt_create_bucket:263,test_storage_exists_fals:263,test_storage_listdir_bas:263,test_storage_listdir_subdir:263,test_storage_mtim:263,test_storage_open_no_overwrite_exist:263,test_storage_open_no_writ:263,test_storage_open_writ:263,test_storage_s:263,test_storage_sav:263,test_storage_save_gzip:263,test_storage_save_gzip_twic:263,test_storage_save_with_acl:263,test_storage_url:263,test_storage_url_slash:263,test_storage_write_beyond_buffer_s:263,test_str_output:368,test_stresstest:378,test_strip_signing_paramet:263,test_structure_valid:456,test_stunt_advantage__success:423,test_stunt_disadvantage__success:423,test_stunt_fail:423,test_sub_trait:394,test_submenu:266,test_subtopic_fetch:253,test_subtopic_fetch_00_test:253,test_subtopic_fetch_01_test_creating_extra_stuff:253,test_subtopic_fetch_02_test_cr:253,test_subtopic_fetch_03_test_extra:253,test_subtopic_fetch_04_test_extra_subsubtop:253,test_subtopic_fetch_05_test_creating_extra_subsub:253,test_subtopic_fetch_06_test_something_els:253,test_subtopic_fetch_07_test_mor:253,test_subtopic_fetch_08_test_more_second_mor:253,test_subtopic_fetch_09_test_more_mor:253,test_subtopic_fetch_10_test_more_second_more_again:253,test_subtopic_fetch_11_test_more_second_third:253,test_success:299,test_swap_wielded_weapon_or_spel:423,test_tag:253,test_talk:424,test_talkingnpc:437,test_task_complete_waiting_input:253,test_tbbasicfunc:343,test_tbequipfunc:343,test_tbitemsfunc:343,test_tbrangefunc:343,test_teleport:253,test_teleportroom:443,test_tim:378,test_time_to_tupl:278,test_timer_r:394,test_timer_ratetarget:394,test_toggle_com:297,test_tradehandler_bas:314,test_tradehandler_join:314,test_tradehandler_off:314,test_trait_db_connect:394,test_trait_getset:394,test_traitfield:394,test_tree_funct:461,test_trigg:378,test_tunnel:253,test_tunnel_exit_typeclass:253,test_turnbattlecmd:343,test_turnbattleequipcmd:343,test_turnbattleitemcmd:343,test_turnbattlemagiccmd:343,test_turnbattlerangecmd:343,test_tutorialobj:443,test_two_handed_exclus:426,test_typeclass:253,test_typeclassed_xyzroom_and_xyzexit_with_at_object_creation_are_cal:368,test_unconnectedhelp:282,test_unconnectedlook:282,test_unfle:423,test_upd:592,test_use_item:423,test_util:[163,225,226,259,396,402,419],test_valid_access:609,test_valid_access_multisession_0:609,test_valid_access_multisession_2:609,test_valid_char:609,test_validate_input__fail:394,test_validate_input__valid:394,test_validate_slot_usag:426,test_validate_slot_usage_0:426,test_validate_slot_usage_1:426,test_validate_slot_usage_2:426,test_validate_slot_usage_3:426,test_validate_slot_usage_4:426,test_validate_slot_usage_5:426,test_valu:394,test_verb_actor_stance_compon:573,test_verb_actor_stance_components_00_hav:573,test_verb_actor_stance_components_01_swim:573,test_verb_actor_stance_components_02_g:573,test_verb_actor_stance_components_03_given:573,test_verb_actor_stance_components_04_am:573,test_verb_actor_stance_components_05_do:573,test_verb_actor_stance_components_06_ar:573,test_verb_actor_stance_components_07_had:573,test_verb_actor_stance_components_08_grin:573,test_verb_actor_stance_components_09_smil:573,test_verb_actor_stance_components_10_vex:573,test_verb_actor_stance_components_11_thrust:573,test_verb_conjug:573,test_verb_conjugate_0_inf:573,test_verb_conjugate_1_inf:573,test_verb_conjugate_2_inf:573,test_verb_conjugate_3_inf:573,test_verb_conjugate_4_inf:573,test_verb_conjugate_5_inf:573,test_verb_conjugate_6_inf:573,test_verb_conjugate_7_2sgpr:573,test_verb_conjugate_8_3sgpr:573,test_verb_get_all_tens:573,test_verb_infinit:573,test_verb_infinitive_0_hav:573,test_verb_infinitive_1_swim:573,test_verb_infinitive_2_g:573,test_verb_infinitive_3_given:573,test_verb_infinitive_4_am:573,test_verb_infinitive_5_do:573,test_verb_infinitive_6_ar:573,test_verb_is_past:573,test_verb_is_past_0_1st:573,test_verb_is_past_1_1st:573,test_verb_is_past_2_1st:573,test_verb_is_past_3_1st:573,test_verb_is_past_4_1st:573,test_verb_is_past_5_1st:573,test_verb_is_past_6_1st:573,test_verb_is_past_7_2nd:573,test_verb_is_past_participl:573,test_verb_is_past_participle_0_hav:573,test_verb_is_past_participle_1_swim:573,test_verb_is_past_participle_2_g:573,test_verb_is_past_participle_3_given:573,test_verb_is_past_participle_4_am:573,test_verb_is_past_participle_5_do:573,test_verb_is_past_participle_6_ar:573,test_verb_is_past_participle_7_had:573,test_verb_is_pres:573,test_verb_is_present_0_1st:573,test_verb_is_present_1_1st:573,test_verb_is_present_2_1st:573,test_verb_is_present_3_1st:573,test_verb_is_present_4_1st:573,test_verb_is_present_5_1st:573,test_verb_is_present_6_1st:573,test_verb_is_present_7_1st:573,test_verb_is_present_participl:573,test_verb_is_present_participle_0_hav:573,test_verb_is_present_participle_1_swim:573,test_verb_is_present_participle_2_g:573,test_verb_is_present_participle_3_given:573,test_verb_is_present_participle_4_am:573,test_verb_is_present_participle_5_do:573,test_verb_is_present_participle_6_ar:573,test_verb_is_tens:573,test_verb_is_tense_0_inf:573,test_verb_is_tense_1_inf:573,test_verb_is_tense_2_inf:573,test_verb_is_tense_3_inf:573,test_verb_is_tense_4_inf:573,test_verb_is_tense_5_inf:573,test_verb_is_tense_6_inf:573,test_verb_past:573,test_verb_past_0_1st:573,test_verb_past_1_1st:573,test_verb_past_2_1st:573,test_verb_past_3_1st:573,test_verb_past_4_1st:573,test_verb_past_5_1st:573,test_verb_past_6_1st:573,test_verb_past_7_2nd:573,test_verb_past_participl:573,test_verb_past_participle_0_hav:573,test_verb_past_participle_1_swim:573,test_verb_past_participle_2_g:573,test_verb_past_participle_3_given:573,test_verb_past_participle_4_am:573,test_verb_past_participle_5_do:573,test_verb_past_participle_6_ar:573,test_verb_pres:573,test_verb_present_0_1st:573,test_verb_present_1_1st:573,test_verb_present_2_1st:573,test_verb_present_3_1st:573,test_verb_present_4_1st:573,test_verb_present_5_1st:573,test_verb_present_6_1st:573,test_verb_present_7_2nd:573,test_verb_present_8_3rd:573,test_verb_present_participl:573,test_verb_present_participle_0_hav:573,test_verb_present_participle_1_swim:573,test_verb_present_participle_2_g:573,test_verb_present_participle_3_given:573,test_verb_present_participle_4_am:573,test_verb_present_participle_5_do:573,test_verb_present_participle_6_ar:573,test_verb_tens:573,test_verb_tense_0_hav:573,test_verb_tense_1_swim:573,test_verb_tense_2_g:573,test_verb_tense_3_given:573,test_verb_tense_4_am:573,test_verb_tense_5_do:573,test_verb_tense_6_ar:573,test_view:609,test_wal:253,test_weapon:443,test_weaponrack:443,test_weatherroom:443,test_whisp:253,test_who:253,test_wield_or_wear:424,test_wilderness_correct_exit:361,test_without_migr:11,test_wrong_func_nam:253,testaccount2:11,testaccount:[11,253],testadmin:253,testampserv:518,testapp:194,testbart:314,testbatchprocess:253,testbodyfunct:401,testbuffsandhandl:378,testbuild:253,testbuildexamplegrid:368,testbuildingmenu:266,testcallback:368,testcas:[11,263,368,443,518,528,560,566,573,603],testchar:[151,155],testcharact:[151,421],testcharactercr:382,testclothingcmd:317,testclothingfunc:317,testcmdcallback:288,testcmdtask:253,testcolormarkup:269,testcomm:253,testcommand:29,testcommschannel:253,testcompon:275,testcomponentsign:275,testcooldown:320,testcraftcommand:324,testcraftingrecip:324,testcraftingrecipebas:324,testcraftsword:324,testcraftutil:324,testcustomgametim:278,testdefaultcallback:288,testdic:385,testdummyrunnerset:528,testdungeon:425,testemaillogin:282,testequip:[155,426],tester:[11,136,217,510],testevadventurecommand:424,testevadventureruleengin:161,testevenniarestapi:592,testeventhandl:288,testevscaperoom:309,testevscaperoomcommand:309,testextendedroom:347,testfieldfillfunc:461,testform:551,testgendersub:327,testgener:253,testgeneralcontext:603,testgitintegr:453,testhealthbar:388,testhelp:253,testid:23,testinterruptcommand:253,testirc:518,testlanguag:392,testlegacymuxcomm:297,testmail:330,testmap10:368,testmap11:368,testmap1:368,testmap2:368,testmap3:368,testmap4:368,testmap5:368,testmap6:368,testmap7:368,testmap8:368,testmap9:368,testmapstresstest:368,testmemplot:528,testmenu:[450,552],testmixedrefer:560,testmod:533,testmultidesc:333,testmymodel:11,testnamegener:456,testnnmain:253,testnumerictraitoper:394,testobj:[11,163,308,310],testobject:11,testobjectdelet:560,testok:186,testpronounmap:573,testpuzzl:336,testrandomstringgener:459,testregularrefer:560,testrenam:133,testrpsystem:392,testrpsystemcommand:392,testrunn:221,testserv:0,testset:11,testsharedmemoryrefer:560,testsimpledoor:356,testslowexit:359,teststat:309,testsystem:253,testsystemcommand:253,testtabl:133,testtalkingnpc:437,testtelnet:518,testtrait:394,testtraitcount:394,testtraitcountertim:394,testtraitfield:394,testtraitgaug:394,testtraitgaugetim:394,testtraitstat:394,testtreeselectfunc:461,testturnbattlebasiccmd:343,testturnbattlebasicfunc:343,testturnbattleequipcmd:343,testturnbattleequipfunc:343,testturnbattleitemscmd:343,testturnbattleitemsfunc:343,testturnbattlemagiccmd:343,testturnbattlemagicfunc:343,testturnbattlerangecmd:343,testturnbattlerangefunc:343,testtutorialworldmob:443,testtutorialworldobject:443,testtutorialworldroom:443,testunconnectedcommand:253,testunixcommand:299,testutil:[163,309,429],testverbconjug:573,testview:54,testwebsocket:518,testwild:361,testxyzexit:368,testxyzgrid:368,testxyzgridtransit:368,testxyzroom:368,text2html:[0,225,226,544],text:[0,7,9,12,13,14,15,16,17,18,19,23,24,25,26,27,30,32,33,35,37,38,41,43,44,47,52,54,55,59,60,61,63,66,67,69,70,71,82,93,94,95,96,98,101,102,105,112,118,124,125,126,127,129,130,134,138,140,141,142,144,146,148,149,150,152,157,163,167,168,169,173,176,177,179,180,183,184,186,188,189,191,194,199,200,202,203,206,208,212,213,215,217,218,221,228,229,234,237,239,240,241,242,247,248,249,250,251,252,253,254,257,258,265,280,281,285,287,292,296,299,300,303,304,305,310,313,316,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,364,376,380,384,387,390,391,395,407,408,413,414,417,432,434,436,440,441,442,447,450,452,462,464,466,467,470,474,476,479,482,489,490,497,503,504,507,510,511,512,515,516,520,521,523,531,532,533,536,537,540,541,543,545,546,548,550,551,552,553,554,555,562,565,566,567,568,569,576,578,582,608,620],text_:128,text_color:387,text_descript:[118,395],text_exit:[82,265],text_single_exit:82,textarea:[564,608],textbook:63,textbox:608,textfield:[69,194],textn:253,textstr:34,texttohtmlpars:567,textual:181,textwrap:[0,554],textwrapp:554,than:[0,1,6,7,8,9,10,11,12,13,14,15,16,19,21,23,24,25,29,30,32,33,35,39,41,43,44,45,47,48,49,52,54,57,58,59,61,66,69,72,74,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,130,131,132,133,135,136,138,139,140,141,143,145,146,147,150,151,152,155,161,168,169,170,171,172,175,177,178,181,182,186,187,188,191,195,196,197,204,205,208,209,217,218,220,221,223,228,231,234,235,236,239,240,241,242,243,249,250,252,253,265,277,280,287,292,296,300,305,308,313,322,338,339,340,341,342,358,366,370,371,372,373,376,387,390,391,395,405,409,411,413,414,417,441,458,462,469,472,474,476,478,492,518,533,538,540,541,542,543,545,546,552,553,554,555,559,561,563,564,565,568,577,584,597,617],thank:[12,29,163,195,329,537],thankfulli:194,the_answ:145,the_one_r:145,thead:195,theathr:33,theatr:33,thei:[0,1,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,29,32,33,35,39,41,42,43,44,45,46,47,49,51,52,53,54,55,56,57,58,59,61,63,64,66,67,69,70,71,72,75,76,78,79,81,82,86,87,88,94,96,97,100,101,102,104,105,110,112,115,118,122,123,124,126,128,130,131,132,133,134,135,136,138,139,140,141,143,144,145,147,150,151,152,155,157,161,163,167,168,169,171,172,173,174,177,178,179,180,181,184,186,187,188,189,190,191,192,193,195,196,197,199,205,207,211,217,218,219,221,228,235,236,239,241,242,247,248,250,251,252,256,265,273,280,286,292,296,300,305,313,316,319,322,323,326,338,339,340,341,342,346,362,370,371,373,376,384,390,391,395,407,408,409,412,413,425,441,442,464,469,470,473,474,478,479,480,482,484,485,487,492,512,513,515,516,517,521,524,530,531,532,533,535,540,545,546,547,549,551,552,554,555,568,569,572,573,577,584,589,591,594,608,614,618,619],theihr:14,theirs:[59,96,178,326,555,572,573],them:[0,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,29,32,33,34,35,37,38,39,41,43,44,45,47,48,49,51,52,54,55,56,57,59,61,63,64,66,67,69,70,72,74,75,76,77,81,82,84,85,86,88,93,94,96,98,100,101,102,105,110,111,112,118,119,124,125,126,127,128,130,131,132,133,135,136,138,139,140,141,143,144,145,146,147,150,151,152,155,157,161,163,166,168,169,171,172,173,174,175,177,178,179,180,181,183,184,185,186,187,188,189,191,192,193,194,195,196,197,203,204,205,209,210,211,217,218,219,220,221,223,228,233,234,235,237,239,241,242,247,249,250,253,256,257,268,280,284,286,292,300,306,316,322,323,326,335,338,339,340,341,342,346,370,376,387,390,391,395,405,407,408,409,411,412,416,417,418,434,440,442,450,458,462,465,470,474,479,484,487,492,510,512,515,523,527,530,531,533,540,542,543,545,546,548,552,555,564,566,567,572,573,577,584,586,591,599,614,617,619],themat:147,theme:[0,54,138,147,149,195],themself:340,themselv:[9,14,19,21,23,29,35,39,46,49,58,59,72,75,81,93,100,102,112,118,126,128,130,138,140,169,177,179,180,182,190,191,197,202,221,242,305,371,391,407,417,474,482,485,492,541,543,555,564,572,573],theoret:[21,71,124,140,148,149,373],theori:[6,21,149,157,168,176,191,200,235,620],thereaft:38,therefor:[44,102,124,146,175,182,186,241,265,284,305],therein:[17,23,239,250,252,254,303,316,335,346,349,442],thereof:[391,474],thess:472,thet:138,thi:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,198,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,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,265,266,268,269,270,271,272,273,274,275,277,280,281,284,285,286,287,290,292,296,300,303,304,305,306,307,308,310,313,316,319,322,323,324,326,329,332,335,338,339,340,341,342,346,349,355,358,362,364,365,366,367,368,370,371,372,373,376,377,378,380,384,387,390,391,394,395,400,402,405,406,407,408,409,411,412,413,414,416,417,418,428,432,434,436,439,440,441,442,446,447,450,452,458,462,463,464,465,466,467,468,469,470,471,472,473,474,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,494,496,497,498,499,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,519,520,521,523,524,525,526,527,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,559,560,561,562,563,564,565,566,567,568,569,571,572,573,574,576,577,578,580,581,582,583,584,586,588,589,591,594,597,599,600,601,605,606,608,610,612,613,614,615,616,617,618,619,620],thie:29,thief:151,thieveri:249,thin:[55,82,84,105,172,316,561],thing:[0,1,2,5,7,8,11,12,14,15,17,19,20,21,23,27,29,32,33,34,39,41,43,45,46,48,49,52,54,55,56,58,59,63,66,67,69,71,73,74,77,78,81,82,88,92,100,101,102,105,112,118,119,121,122,124,126,127,130,131,133,134,136,137,138,140,141,142,143,146,147,150,151,152,157,158,161,163,165,169,170,173,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,193,194,195,196,197,200,204,207,211,212,213,215,216,217,218,219,220,221,228,235,236,242,265,287,300,305,310,313,316,322,323,342,346,378,390,391,395,405,406,407,410,411,434,439,442,462,470,473,474,478,501,505,537,540,542,545,546,551,554,555,564,577,584,586,617,619,620],things_styl:310,think:[9,14,21,37,41,43,47,48,53,54,61,74,100,101,105,121,124,125,126,130,132,133,134,140,142,143,145,147,148,149,158,161,164,166,175,177,186,200,208,533,617],third:[0,6,14,20,29,32,60,100,102,125,128,131,140,143,150,180,181,189,195,197,202,211,217,221,242,253,305,545,552,555,620],third_person:310,thirdli:135,thirdnod:29,this_is_provided_by_amazon:76,this_sign:534,thoma:[38,56,151,240],thorn:[39,81,145],thorni:145,thornsbuff:81,those:[0,3,4,5,11,12,13,14,15,16,17,19,21,23,25,29,32,35,39,41,43,45,49,54,58,59,69,70,74,76,77,81,86,97,104,105,112,118,119,120,124,125,126,130,131,132,133,134,135,136,139,140,141,143,145,146,147,150,152,155,161,165,167,168,169,170,173,175,177,179,180,189,191,192,193,196,199,200,204,205,213,217,218,219,221,223,236,237,239,242,247,248,249,253,257,265,303,310,322,323,338,376,391,395,408,434,441,442,447,462,470,478,479,481,486,515,520,523,541,542,552,553,554,562,563,565,566,568,591,608,613,614,616],though:[0,7,12,13,14,15,16,17,20,21,29,39,51,55,56,73,80,82,100,109,118,124,126,131,133,135,137,139,140,141,143,146,149,150,152,168,172,173,175,178,180,181,186,187,188,191,196,197,202,205,208,211,213,217,218,228,237,265,300,338,339,342,349,371,376,387,395,406,442,474,478,479,540,545,552,568],thought:[35,36,143,147,149,200,205],thousand:[105,181,194,217],thread:[0,20,200,205,218,221,511,537,561,568],threadpool:[221,537,568],threadsaf:[577,584],threat:219,three:[0,1,14,15,19,21,23,29,33,35,38,39,56,57,59,67,74,76,81,82,92,100,101,102,110,119,128,143,145,152,155,158,161,192,194,195,197,217,221,234,247,249,341,372,376,418,462,470,474,545,552],threshold:[124,401,535,546],throttl:[0,221,225,226,228,488,497,510],through:[0,1,6,8,9,10,13,15,16,18,20,21,23,29,30,32,33,35,38,39,43,44,45,46,51,53,54,63,67,70,71,75,78,81,83,93,94,100,101,102,115,120,121,124,125,126,128,130,131,132,133,137,138,140,144,145,146,148,149,150,158,163,166,167,168,169,173,175,178,180,181,184,186,189,193,196,197,200,203,204,205,217,218,219,220,221,223,225,228,236,242,247,249,269,284,308,309,313,338,339,340,341,342,346,355,362,370,371,376,380,391,407,409,410,417,425,447,468,470,473,474,483,484,487,492,494,499,508,512,515,521,524,529,531,532,540,541,542,546,548,551,552,553,565,566,568,577,584,608,617],throughout:[29,93,130,134,182,220,340,368],throughput:[256,257,548],thrown:[149,178,221,323],thrust:[441,573],thu:[0,14,16,19,21,23,29,32,35,37,39,41,49,58,67,69,71,74,76,105,133,136,143,151,168,169,177,180,181,191,193,195,209,221,230,239,243,370,371,373,390,391,411,470,474,487,524,538,540,541,548],thud:[96,326],thumb:[9,61],thumbnail:192,thunder:[104,205],thunderstorm:146,thusli:211,tick:[8,23,29,44,48,80,121,128,131,152,190,205,225,259,309,340,374,375,377,378,407,440,442,487,524],tick_buff:376,ticker1:[48,487],ticker2:[48,487],ticker:[0,24,26,34,44,129,133,190,229,252,409,440,442,483,487,497,568],ticker_class:487,ticker_handl:[48,129,190,225,487,568],ticker_pool_class:487,ticker_storag:487,tickerhandl:[0,20,24,44,87,116,178,190,225,226,252,319,340,358,442,480,568,620],tickerpool:487,tickerpool_layout:487,ticknum:[81,376],tickrat:[81,376,377],tidbit:130,tidi:212,tie:[151,155,178,197,373],tied:[19,84,100,125,126,131,192,236,249,305,308,316,372,434,466,481],tier:[76,81,217],ties:[54,74,149,182,221,244],tight:[84,316],tightli:[41,76,256],tild:136,tim:[0,84,95,98,119,120,126,315,316,337,338,339,340,341,342,386,387,449,450,460,462],time:[0,1,4,6,8,10,11,12,13,14,15,16,18,19,21,24,26,29,30,32,33,35,37,39,43,45,48,49,55,56,61,62,63,64,67,69,70,72,73,74,76,78,79,81,82,86,87,88,89,93,99,102,104,110,111,112,114,116,118,119,120,121,124,126,127,129,130,131,132,133,134,136,138,139,140,141,143,144,145,146,147,150,151,152,155,157,158,161,163,167,169,171,173,176,177,178,179,180,181,182,186,189,190,191,192,194,196,197,201,202,205,207,208,209,211,212,213,214,217,218,220,221,223,228,229,231,233,234,236,237,240,247,252,256,257,258,277,278,286,287,290,305,313,319,322,323,335,338,339,340,341,342,346,349,355,358,376,378,380,384,390,394,395,400,407,408,409,413,417,434,440,441,442,458,462,466,473,474,477,478,479,480,481,482,485,486,487,492,494,496,498,499,504,510,515,517,523,524,525,529,530,531,533,535,540,542,543,545,546,547,548,553,556,559,560,561,564,568,577,584,620],time_ev:290,time_factor:[20,175,221,277,556],time_format:568,time_game_epoch:[20,175,221,556],time_ignore_downtim:221,time_left:319,time_str:175,time_to_tupl:277,time_unit:[89,175,277],time_until_next_repeat:44,time_zon:221,timed_script:44,timedelai:[172,486,566,568],timedelta:[562,569],timeeventscript:287,timefactor:[175,221],timeformat:[561,568],timeit:8,timeleft:[81,376],timelin:[12,150],timeout:[178,198,208,215,221,515,535,559],timer:[0,2,20,23,48,67,80,81,87,94,114,126,131,134,135,137,138,149,167,178,221,242,319,340,346,394,400,407,434,441,480,481,485,486,487,523,531,565,594,620],timerobject:44,timerscript:44,timescript:556,timeslot:[94,346],timestamp:[20,66,81,171,172,347,523,524,535,556],timestep:[8,524],timestr:561,timetrac:[225,226,488,522],timetupl:175,timezon:[205,221,561,562,569],tin:144,tinderbox:152,tini:[152,181,205],tinker:9,tintin:[206,505,506,516,519],tinyfugu:206,tinymud:[71,168],tinymush:[71,73,168,254],tinymux:[71,168],tip:[47,83,196,219],tire:[134,236],titeuf87:[123,126,360,362],tith:110,titl:[7,18,52,82,110,128,152,196,197,203,221,247,249,257,265,266,306,391,465,545,548,619],title_lone_categori:249,titlebar:52,titleblock:197,tlen:204,tls:207,tlsv10:208,tlsv1:207,tmp:[4,215,253,452],tmp_1kpuess:[253,452],tmp_charact:152,tmpmsg:19,tmwx:0,to_backpack:155,to_backpack_obj:155,to_be_impl:615,to_byt:[0,568],to_cach:[81,376],to_closed_st:434,to_cur:340,to_displai:265,to_dupl:235,to_execut:568,to_exit:[100,102],to_fil:[77,446],to_filt:[81,376],to_init:342,to_non:474,to_obj:[228,237,418,474],to_object:257,to_open_st:434,to_pickl:549,to_remov:81,to_str:[0,568],to_syslog:446,to_unicod:0,tobox:501,todai:[98,387],todo:[40,68,92,151,152,161,164,166,169,180,184,216],toe:[71,143],togeth:[0,14,16,21,23,32,33,39,42,49,52,62,67,81,82,93,102,103,108,110,111,124,126,128,131,132,136,138,140,143,144,145,146,147,149,150,155,158,161,164,165,168,169,172,177,178,182,188,189,191,204,207,217,221,222,233,242,244,249,256,306,322,323,332,335,346,349,370,371,390,391,426,441,442,472,473,479,501,520,533,545,546,565,577,584],toggl:515,toggle_nop_keepal:515,togrid:124,toi:88,toint:[32,43,555],token:[19,204,221,256,512,515,546,555],told:[59,61,72,138,143,161,174,186,191,217,564],tolimbo:124,tolkien:175,tom:[7,32,38,59,96,112,169,191,242,248,326,391,551,555,571],tomb:121,tomdesmedt:571,tommi:[38,41,58,555],ton:[168,221],tonon:[242,364],too:[0,1,6,8,10,14,15,16,18,19,20,23,29,33,36,49,51,56,59,61,67,82,100,101,102,119,121,128,133,134,137,139,140,141,145,147,149,150,155,161,168,169,172,177,178,179,180,181,182,186,187,189,191,192,194,196,213,215,221,240,242,259,323,324,341,371,372,409,421,434,462,469,472,497,501,535,537,543,546,551,552,553,554,565,568],took:[11,137,568],tool2:324,tool:[2,3,32,41,43,47,51,54,61,62,69,71,88,105,124,125,126,129,131,132,139,142,143,145,147,148,149,150,155,158,161,164,166,168,172,175,193,196,205,207,208,212,213,217,221,322,323,324,417,620],tool_kwarg:322,tool_nam:322,tool_tag:[88,322,323],tool_tag_categori:[88,322],toolkit:54,tooltip:52,top:[7,8,12,15,21,23,27,30,32,33,44,47,49,51,54,59,82,84,88,93,105,108,123,124,128,132,133,137,141,143,144,161,168,169,172,181,184,189,191,194,195,197,200,211,213,218,220,231,236,258,265,277,300,303,316,332,362,370,371,391,418,462,464,466,473,482,492,534,540,542,543,546,553,554,561],topcistr:465,topic:[6,8,21,23,33,45,51,55,63,69,77,134,136,143,149,188,197,221,249,303,305,338,339,340,341,342,465,467,565,608,616],topicstr:465,topolog:[124,125,126,370,371],toppl:100,topsid:149,tor:223,torch:[152,411,413],torunn:[110,455],tostr:501,total:[8,20,35,45,50,76,81,100,124,155,161,172,175,183,186,220,230,252,371,376,384,529,551,553,554,556],total_add:81,total_div:81,total_mult:81,total_num:559,total_weight:170,touch:[0,128,138,139,170,207,209,220,221,535],tour:[132,138,142,148,158,164,166,186],toward:[6,23,63,82,104,105,124,147,149,150,155,186,342,387,440],tower:[105,152,346,442],town:[124,364],trace:[67,124,287,371,529,561],traceback:[6,9,11,15,20,44,54,66,74,100,133,143,168,191,194,218,221,287,332,477,501,542,546,561,568],tracemessag:529,track:[0,12,14,20,44,45,69,81,87,93,114,118,120,126,127,131,132,138,143,145,147,152,155,157,163,168,173,177,178,180,182,187,190,194,203,215,220,223,228,236,256,319,342,368,371,395,405,407,409,413,414,418,483,503,504,509,512,515,530,535,549,550,562],tracker:[26,121,189],trade:[78,101,126,149,151,157,313,418],tradehandl:[78,313],trader:101,tradetimeout:313,tradit:[3,17,34,55,61,67,134,138,143,149,177,178,217,219,322,362,515,531,553],tradition:[67,147,149,150,168,173,221,323],traffic:[76,207,219,505],trail:[54,221,263],trailing_slash:196,train:[118,149,176,200,395,620],traindriv:180,traindrivingscript:180,trainobject:180,trainscript:180,trainstop:180,trainstoppedscript:180,trait1:[118,395],trait2:[118,395],trait:[0,20,125,128,177,225,226,259,374,376,479,620],trait_class_path:[118,395],trait_data:395,trait_kei:[118,395],trait_properti:395,trait_typ:[118,394,395],traitcontribtestingchar:394,traitexcept:395,traitfield:[394,395],traithandl:[225,259,374,393,394],traithandler_nam:395,traithandlertest:394,traitproperti:[225,259,374,393,394],traitpropertytestcas:394,traitshandl:[394,395],transact:[78,126,149,313],transfer:[194,236,503,513,517,554],transform:[4,136],transit:[0,39,93,126,365,368,370,371],transitionmapnod:[124,365,368,371],transitiontocav:365,transitiontolargetre:365,transitiontomapa:124,transitiontomapc:124,translat:[16,38,43,59,61,62,63,70,72,112,138,188,200,390,391,479,494,545],transmiss:446,transmit:[72,591],transpar:[19,45,52,188,208,221,472,473,487],transport:[501,512,521],transportfactori:512,transpos:188,trap:[16,121,146],traumat:29,travel:[67,70,110,116,182,358,362],travers:[14,35,39,76,100,116,124,126,174,180,182,355,358,362,370,371,409,440,441,442,469,474,594],traverse_:23,traversing_object:[355,358,362,409,474],travi:[0,3],travis_build_dir:5,treasur:[145,157,189,362,410,413],treasurechest:41,treat:[0,14,16,23,45,47,49,55,105,110,124,131,136,144,145,161,172,174,228,233,236,326,371,411,432,464,472,474,479,524,533,552,554,565],tree:[0,23,29,41,75,88,93,122,124,126,128,129,131,132,137,147,165,182,213,225,226,259,265,300,311,321,365,391,412,460,461,462,474,479,492,521,537,552,568,590,620],tree_select:[119,225,226,259,444,620],treestr:[119,462],trembl:[139,144],treshold:559,trhr:[0,76,126,261],tri:[16,23,35,37,38,45,46,56,66,67,72,76,95,133,140,141,145,147,149,152,155,169,172,178,186,194,206,217,221,234,252,313,417,441,442,450,496,535,568,569],trial:[10,443,518],tribal:105,trick:[82,140,141,207,542,608],tricki:[43,157,188],trickier:[189,197],tried_kei:41,trigger:[0,4,6,19,21,23,29,34,36,39,45,46,48,60,67,74,82,100,101,104,114,126,150,167,168,170,178,179,180,182,183,187,195,197,206,212,225,228,229,233,234,237,239,253,259,265,274,290,305,319,374,375,377,378,434,440,442,473,474,479,481,487,494,497,501,523,530,534,548,552],triggerstr:376,trim:545,trip:407,tripl:[20,128,143,568],triumph:[146,149],triumphant:146,trivial:[6,8,20,23,63,140,146,149,186],troll:[56,183],troubl:[37,45,101,134,143,169,186,205,207,210,211,213,540],troubleshoot:[2,210,213,222,620],troublesom:[15,16,56],trove:189,truestr:[95,450],truli:[45,56,81,102,181,346],trunk:0,trust:[29,32,58,100,126,149,168,252,546],trusti:170,truth:6,truthfulli:23,truthi:[81,133,486],try_num_differenti:234,ttack:407,ttarget:178,tto:515,tty:[189,212],ttype:[225,226,488,500,512,515],ttype_step:519,tuck:105,tulip:145,tun:[26,242],tune:[138,149,188,208],tunnel:[26,82,102,124,133,134,135,140,141,169,174,180,182,242,517],tunt:407,tup:181,tupl:[0,6,8,14,29,32,38,41,43,51,69,70,81,100,104,110,123,133,136,140,152,155,161,163,172,178,181,195,217,221,225,228,234,240,242,247,249,250,257,265,277,284,304,310,313,322,326,340,341,362,364,370,371,372,373,376,384,391,407,409,411,412,417,432,439,465,467,469,470,472,474,478,479,481,487,489,492,501,502,512,513,517,524,531,533,540,543,545,547,548,550,552,556,561,563,568,571,572,592],tuple_of_arg_convert:32,tupled:561,turbo:211,turkish:228,turn:[0,2,11,12,14,20,21,23,27,29,32,35,45,46,52,54,55,56,61,64,67,70,74,81,92,93,102,104,105,119,124,126,128,131,136,139,140,141,143,144,145,146,149,155,163,168,169,176,180,185,188,194,196,217,218,221,228,237,252,253,256,257,290,296,338,339,340,341,342,373,391,407,408,414,423,440,442,462,474,479,492,497,505,512,515,523,533,539,542,546,548,552,553,554,555,566,568,577,597,599,620],turn_act:178,turn_bas:423,turn_end_check:338,turn_stat:407,turnbattl:[0,120,225,226,259,311,620],turnchar:340,tut:[146,442],tutor:[121,439],tutori:[0,1,2,6,18,21,22,23,25,29,47,48,54,55,57,61,74,79,80,82,83,92,104,105,107,114,116,117,125,127,128,130,131,133,134,135,138,139,140,141,143,144,150,151,152,153,154,155,156,157,159,160,161,162,163,165,168,169,172,175,181,182,183,185,186,187,188,189,190,192,193,194,196,198,200,204,210,213,217,221,225,226,253,259,265,339,371,552],tutorial_bridge_posist:442,tutorial_cmdset:442,tutorial_exampl:[15,16,134,138,143,400],tutorial_info:442,tutorial_world:[82,121,146,225,226,259,396,620],tutorialclimb:441,tutorialevmenu:439,tutorialmirror:[126,143,432,620],tutorialobject:[440,441],tutorialread:441,tutorialroom:[440,442],tutorialroomcmdset:442,tutorialroomlook:442,tutorialstartexit:442,tutorialweapon:[0,440,441],tutorialweaponrack:[0,441],tutorialworld:[441,442],tutoru:143,tweak:[1,9,14,19,32,33,39,43,49,54,124,126,133,139,140,151,168,169,185,189,208,228,256,417,434,537,545,566,576,581],tweet:[176,620],tweet_stat:198,tweetstat:198,twelv:[555,568],twenti:[149,161,169],twice:[1,8,29,104,146,175,178,263,287,342,423,552],twist:[0,7,20,23,53,55,63,172,200,202,211,213,215,221,443,474,486,489,492,494,495,501,502,503,504,509,512,515,518,520,521,523,530,533,537,561],twistd:[10,215,218,509,530],twistedcli:63,twistedweb:219,twitch:[92,178,407],twitter:[198,222,620],twitter_api:204,two:[0,1,7,8,9,11,12,14,15,16,17,20,21,23,27,29,32,33,34,35,36,39,42,43,44,45,47,49,52,57,58,59,61,63,66,67,69,70,71,72,74,75,78,79,81,82,92,93,100,101,102,103,105,110,112,113,115,116,118,119,122,124,126,128,131,134,135,136,137,138,139,140,141,143,144,145,146,148,149,150,151,152,155,157,161,163,168,169,171,172,174,177,178,180,181,182,184,186,187,188,191,192,194,195,196,197,201,205,208,212,215,217,218,219,220,221,235,242,247,256,258,265,300,305,313,322,323,329,340,342,355,358,368,370,371,384,395,406,407,411,414,426,434,442,458,462,474,476,492,521,532,533,541,543,546,552,554,555,561,568,569],two_hand:[155,157,408,410],two_handed_weapon:[155,157,408,410,413],twowai:242,txt:[0,27,63,76,97,112,124,128,143,189,199,211,217,229,390,508,516,550,552,568,571],txw:0,tyepclass:472,tying:[145,194,217,597],type:[0,1,6,7,9,16,18,19,20,21,23,24,25,26,27,29,32,33,35,37,38,43,44,45,46,47,48,49,50,51,52,56,57,58,59,67,69,70,71,72,76,79,81,82,83,84,87,88,93,95,100,101,102,103,105,112,116,122,124,125,126,128,130,131,132,134,135,136,137,138,139,140,143,144,146,147,149,151,155,158,161,163,167,168,169,171,172,174,175,177,178,179,180,182,183,186,188,191,194,196,200,206,207,211,217,219,221,225,226,228,229,237,242,247,249,252,253,254,256,257,258,259,263,265,271,272,273,274,281,284,287,290,300,303,305,306,308,316,319,322,323,329,338,339,340,341,342,358,368,369,370,371,373,374,376,390,391,393,394,406,407,410,411,413,414,418,434,441,442,450,456,464,466,469,470,473,474,478,479,481,486,487,490,492,494,495,501,503,504,510,512,513,515,516,517,519,520,521,523,531,533,537,540,541,542,543,545,546,548,549,552,553,554,555,563,564,565,567,568,572,576,577,584,588,589,591,594,602,608,616],type_count:316,typecalass:540,typecalss:287,typeclas:187,typeclass:[1,2,11,13,14,15,19,20,23,24,26,33,35,36,37,39,41,43,44,45,46,47,51,54,56,62,64,66,67,82,83,84,86,87,88,94,96,102,104,105,110,111,112,116,117,118,123,124,126,128,132,134,135,136,137,142,144,151,163,167,169,170,174,175,177,178,179,180,181,182,183,184,185,186,187,189,190,191,194,195,196,197,198,221,225,226,228,229,230,231,236,242,247,256,257,258,259,260,270,271,272,273,275,283,286,287,290,303,305,308,310,316,319,322,335,338,339,340,341,342,344,346,355,357,362,364,373,376,378,391,395,434,436,442,465,470,472,473,474,478,479,481,482,483,485,487,530,547,548,565,566,568,586,588,591,594,599,609,618,620],typeclass_aggressive_cach:221,typeclass_path:[44,49,221,231,242,482,541,542],typeclass_search:[230,472,481,541],typeclasses:139,typeclasslistserializermixin:591,typeclassmanag:[230,257,472,481],typeclassmixin:[612,613,614,618],typeclassserializermixin:[196,591],typeclassviewsetmixin:594,typedobject:[49,231,237,258,362,373,391,473,474,482,540,541,542,543,563,568],typedobjectmanag:[230,257,465,472,481,541],typeerror:[6,155,384,411,417,521],typelass:19,typenam:[82,228,229,231,256,258,275,277,287,305,306,307,313,316,326,335,338,339,340,341,342,346,355,358,362,368,372,373,378,380,390,391,394,400,405,407,409,412,413,416,432,434,436,440,441,442,458,466,473,474,478,482,485,499,525,540,542,556,559,560],typeobj:413,typeobj_enum:413,typeobject:543,types_count:316,typic:[11,20,100,118,130,186,196,341,342,376,395,591,618],typo:[0,127,128,163,219,410],ubuntu:[12,205,207,208,213,215,217,219],uemail:230,ufw:219,ugli:[43,52,143,167,562],uid:[212,221,230,231,504,511,532,533],uit:[82,265],ulrik:169,ultima:200,umlaut:17,unabl:[204,387],unaccept:23,unaffect:[29,178,340,486],unalia:[19,109,247,296],unam:[221,230],unari:394,unarm:339,unarmor:[161,339,411],unauthenticated_respons:609,unavoid:48,unban:[0,19,56,109,133,240,247,253,256,296],unban_us:247,unbias:[90,384],unbroken:551,uncal:486,uncas:545,uncategor:565,unchang:[9,38,112,118,144,390,395,479,568],uncleanli:307,unclear:[59,124,150,173,371],uncolor:61,uncom:[208,217],uncompress:505,unconnect:[124,254,281],uncov:316,undefin:[4,47,69],under:[0,2,4,6,8,10,19,23,29,32,33,43,44,49,52,54,66,69,71,74,76,86,90,92,93,95,100,101,106,109,110,118,119,121,122,125,126,128,131,133,134,136,139,141,144,147,149,151,158,161,163,168,176,177,183,184,189,191,193,194,195,199,206,211,212,221,223,237,239,242,272,275,300,322,390,394,395,413,450,455,462,470,485,492,519,540,545,552,553,554,568,571,572,585,620],undergar:[84,316],undergon:287,underground:124,underli:[12,14,35,51,131,147,168],underlin:554,underneath:[189,542],underp:84,underpin:164,underscor:[7,9,29,32,34,70,88,102,128,143,235,418,555,568],underscror:235,undershirt:84,understand:[1,6,12,17,21,23,41,43,45,53,55,61,65,67,72,88,105,113,120,128,130,133,137,138,139,141,143,144,145,147,149,150,151,152,155,161,163,172,173,174,176,181,182,186,191,193,194,195,200,205,206,215,219,220,221,234,235,247,323,390,391,458,537,545,568,620],understood:[33,59,67,88,105,149,155,186,371,520,521],undertak:150,undestand:1,undetect:35,undiscov:149,undo:[12,27,219,550],undon:239,undoubtedli:168,uneven:371,unexpect:[11,149,186,188,221,552,568],unexpectedli:559,unfamiliar:[34,35,54,70,143,213,217],unfeas:125,unfinish:184,unfle:407,unfocu:303,unfocus:305,unformat:[29,552,556],unfortun:147,unhappi:189,unharm:407,unheard:59,unicod:[0,17,67,72,124,228,371,545,568],unicodeencodeerror:545,unifi:[194,532],uniform:[7,45],unimpl:[132,164,176],uninflect:571,uninform:207,uninstal:[132,142,215],uninstanti:568,unintent:300,unintuit:81,union:[21,29,139,235,434,552],uniqu:[0,3,4,12,13,15,21,23,25,35,36,37,43,44,45,47,49,51,52,56,59,63,67,81,101,104,111,124,126,128,131,134,135,136,139,145,168,191,204,217,228,230,233,235,237,242,247,254,256,257,277,281,286,305,319,322,339,340,355,364,370,371,373,376,377,390,391,414,440,442,458,462,465,474,478,479,481,487,489,501,502,510,523,524,532,533,540,541,542,543,548,550,555,562,565,568,572],unit:[0,2,3,4,5,20,21,46,54,77,89,92,100,125,131,132,157,158,163,175,221,257,277,290,309,324,340,394,414,494,548,556,568,573,620],unittest:[0,1,5,11,161,221,253,378,472,533,548,566],univers:[16,17,175,296],unix:[0,7,30,38,126,128,206,208,215,248,298,300,553,561,568,620],unixcommand:[0,122,225,226,259,260,620],unixcommandpars:300,unixtim:561,unjoin:313,unknown:[52,139,167,197,371,410,478,568],unknown_top:616,unleash:171,unless:[12,14,19,20,23,29,32,35,36,37,39,48,56,70,75,76,82,121,124,125,126,139,144,147,149,157,179,191,192,199,202,205,208,217,218,221,228,235,236,240,242,247,249,250,256,286,342,390,391,407,409,417,441,458,464,469,470,474,479,490,505,521,533,540,542,555,565,566,568,569,616,620],unlik:[14,32,46,82,83,111,118,124,125,126,131,149,151,155,172,177,217,228,265,340,371,395,407,542],unlimit:[84,123,221,362,370],unlink:[26,133,242],unload:[124,566],unload_modul:566,unlock:[19,41,139,169,247,305,540],unlock_flag:305,unlocks_red_chest:41,unlog:[8,240,245,246,254,280,281,292,533],unloggedin:[0,45,221,225,226,232,238,533],unloggedincmdset:[25,26,45,91,106,135,141,221,246,280,281,292],unlucki:[56,121],unmask:391,unmodifi:[0,121,126,234,251,346,552,568],unmonitor:[24,497],unmut:[19,109,247,256,296],unmute_channel:247,unnam:[47,235],unneccesari:72,unnecessari:[4,147],unnecessarili:136,unneed:[123,362],unoffici:[149,200],unoppos:417,unpaced_data:501,unpack:[0,152,186,469],unpars:[34,38,234,474,520,521,555],unpaus:[44,81,212,242,252,376,377,486],unpickl:[14,51,67,501,540,549,564],unplay:[1,45],unpredict:568,unprivileg:479,unprogram:177,unpuppet:[0,26,46,81,100,191,239,376,474,576],unpuppet_al:228,unpuppet_object:[13,228],unquel:[26,41,134,143,146,239],unrecogn:555,unrecord_ip:535,unregist:74,unrel:[29,269],unrepat:568,unrepeat:[0,497,568],unreport:[0,497],unsaf:[0,218,235,442,568],unsafe_token:545,unsatisfactori:105,unsav:550,unseri:221,unset:[0,14,23,39,77,118,169,178,182,240,305,306,308,370,372,391,395,440,470,474,478,479,481,487,540,548,552,553,554,555,561,566,568],unset_character_flag:305,unset_flag:[305,306],unset_lock:247,unsign:569,unsigned_integ:[562,569],unsignedinteg:562,unskil:[118,395],unspawn:371,unstabl:[0,212],unstag:452,unsteadi:[161,417],unstopp:81,unstrip:234,unsub:[19,109,221,247,296],unsub_from_channel:247,unsubscrib:[19,48,169,296,487,503],unsuccessful:66,unsuit:[58,478,543],unsupport:14,unsur:[17,32,116,125,133,178,204,213,217],unsurprisingli:143,untag:52,untest:[11,206,215,221],until:[4,8,9,14,15,21,23,29,38,44,48,52,53,55,56,61,69,78,87,104,112,114,120,124,126,131,134,136,138,140,143,144,146,147,149,151,155,170,173,176,187,188,191,193,207,213,216,277,290,313,316,319,338,339,340,341,342,370,394,407,408,409,411,413,434,440,441,442,474,486,492,501,521,523,540,545,546,556,568],untouch:[124,545],untrack:452,untrust:[15,32,100,149,568],untyp:84,unus:[0,23,88,124,149,221,228,233,237,247,256,307,341,342,346,373,380,405,413,432,442,462,474,485,515,531,536,541],unusu:[89,126,150,219,411],unvisit:409,unvisited_exit:409,unwant:100,unwear:408,unwield:[339,405,408],unwieldli:236,unwil:77,upcom:[157,209],updat:[0,2,4,7,8,9,11,13,14,15,16,23,24,26,29,33,36,39,44,48,50,66,67,69,70,74,76,81,85,93,94,97,99,100,117,124,126,128,131,132,138,140,143,147,151,152,157,163,168,169,172,173,175,177,178,180,181,182,186,189,191,193,194,195,196,203,204,205,206,207,208,210,211,212,213,215,216,217,221,222,229,236,237,242,247,250,252,253,256,268,287,341,346,349,366,372,376,391,394,414,442,452,466,470,473,474,476,477,479,481,483,508,510,511,516,530,531,533,535,540,542,549,550,551,552,553,554,559,568,576,577,584,589,593,608,609,618,619,620],update_attribut:540,update_buff:550,update_cach:[81,376],update_cached_inst:559,update_charsheet:169,update_cooldown:171,update_current_descript:346,update_default:530,update_flag:531,update_lock:589,update_method:52,update_po:[182,349],update_scripts_after_server_start:481,update_session_count:531,update_undo:550,update_weath:442,updated_bi:284,updated_on:284,updatemethod:52,updateview:[618,619],upenn:571,upfir:10,upgrad:[0,131,210,211,213,215,222,223,405,620],upload:[12,76,131,212,215,217,221,222],upmaplink:[124,371],upon:[16,35,50,54,69,72,77,95,147,149,185,191,212,217,219,338,339,340,342,447,450,484,494,503,535,553,618],upp:442,uppcas:61,upped:0,upper:[50,61,69,118,124,152,172,181,239,370,371,395,545],upper_bound:[118,395],upper_bound_inclus:395,uppercas:[391,545],ups:0,upsel:217,upsell_factor:412,upset:133,upsid:[123,362],upstart:63,upstream:[97,131,189,223],upstream_ip:221,upt:236,uptick:0,uptim:[0,20,26,32,56,175,252,506,556],urfgar:43,uri:[237,256,464,466,542],url:[0,12,50,51,53,54,60,74,131,132,138,166,193,195,203,207,216,217,219,221,225,226,229,237,247,256,263,464,466,511,521,537,542,567,574,575,587,594,604,607,613,614,616,619,620],url_nam:[594,609],url_or_ref:128,url_path:594,urlconf:221,urlencod:197,urlpattern:[54,74,165,192,194,195,196,197],usabl:[64,88,120,143,149,155,191,192,242,265,305,340,387,407,411,413,469,535,552],usag:[6,7,8,23,24,29,33,37,43,48,56,81,100,102,125,128,131,133,140,141,143,145,155,157,169,171,172,173,177,178,179,180,184,186,191,204,210,217,221,225,226,237,239,240,241,242,247,248,249,252,253,254,259,265,271,277,281,296,300,303,313,316,322,323,326,329,332,335,338,339,340,341,342,344,346,349,355,358,360,364,366,374,376,379,383,389,391,407,408,411,413,434,436,439,440,441,442,447,450,452,469,477,486,492,523,551,552,554,555,559],use:[0,1,2,4,5,6,7,8,10,11,12,13,14,15,16,17,18,20,21,23,24,25,27,29,30,32,33,34,35,36,37,38,39,41,43,44,45,46,47,49,50,51,52,53,54,55,56,57,58,59,61,63,64,66,67,69,70,71,72,74,75,76,77,78,80,81,82,83,84,86,87,88,89,90,92,93,94,96,98,99,100,101,102,103,104,105,108,109,110,111,112,113,115,117,118,119,120,121,122,123,124,125,126,127,128,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,201,202,203,204,205,206,207,208,209,210,212,213,215,216,217,219,221,223,225,228,229,230,231,233,234,235,236,237,239,242,243,247,248,249,250,252,253,254,256,257,258,265,270,273,274,286,290,300,303,305,306,310,313,316,319,322,323,326,329,332,335,338,339,340,341,342,346,349,355,358,362,364,365,366,370,371,373,376,377,380,384,387,390,391,395,400,405,406,407,408,409,410,411,412,413,414,417,418,434,436,439,440,441,442,452,455,458,462,464,469,470,472,473,474,478,479,486,487,490,497,501,514,516,517,520,523,524,531,532,533,540,541,542,543,545,546,547,548,550,551,552,553,554,555,559,561,562,564,566,568,569,572,573,577,579,584,589,591,594,614,617,620],use_dbref:[391,472,474,565],use_destin:474,use_i18n:[66,221],use_int:319,use_item:340,use_lock:474,use_nick:[228,391,474],use_required_attribut:[578,580,582,584,608],use_slot:[155,418],use_slot_nam:163,use_success_location_messag:335,use_success_messag:335,use_tz:221,use_xterm256:545,useabl:[123,362],used:[0,3,7,8,11,12,13,14,15,17,18,19,20,21,24,25,27,29,30,32,33,34,35,36,37,38,39,41,43,44,45,46,47,48,49,51,52,53,54,55,57,58,59,61,63,65,66,67,69,70,71,72,74,77,78,79,81,82,83,84,86,87,88,89,91,94,95,96,97,98,100,101,102,103,104,105,109,110,111,112,113,118,119,120,122,123,124,125,126,128,131,132,134,135,136,137,138,139,140,141,142,143,144,145,146,149,152,155,157,161,163,165,167,168,169,170,171,172,173,175,177,178,180,183,184,186,188,189,191,192,193,194,195,196,197,200,202,205,206,208,209,212,214,215,217,218,219,220,221,225,226,228,229,233,235,236,237,239,242,247,249,250,251,252,253,254,256,257,259,265,269,271,272,274,277,280,281,284,286,287,290,292,296,300,305,306,308,311,313,316,319,321,322,326,329,338,339,340,341,342,346,358,362,364,367,370,371,372,373,376,378,387,390,391,395,406,407,410,412,413,414,417,418,426,434,440,441,442,450,455,458,462,464,465,466,467,468,469,470,472,474,478,479,483,485,486,487,488,489,490,494,497,498,501,502,503,504,505,506,507,508,509,510,512,514,515,516,519,520,521,524,531,533,534,540,541,542,543,544,545,546,548,549,550,551,552,553,554,555,561,562,563,564,565,566,568,569,576,577,581,584,586,591,594,608,612,614,616,617,618],useful:[0,1,2,4,6,7,8,11,12,14,15,16,17,18,20,21,27,29,32,33,35,38,39,41,43,44,46,47,48,49,51,54,55,56,57,58,61,64,78,81,82,83,88,100,101,102,105,110,112,118,122,124,125,126,128,129,131,133,134,135,136,137,139,140,141,143,144,145,146,149,151,152,155,161,163,168,169,171,173,178,181,186,190,191,194,196,197,198,200,205,215,217,218,220,221,233,235,236,237,239,241,242,249,250,253,256,259,265,286,287,300,305,310,313,322,329,340,362,371,372,380,390,391,395,405,407,410,411,413,434,442,447,469,474,478,479,492,512,540,542,546,552,556,564,568,590,620],useless:[139,440],user:[0,1,4,5,6,8,9,11,13,15,16,19,21,24,25,27,29,30,32,33,34,35,38,41,45,46,49,50,51,52,53,55,56,60,61,62,63,64,65,70,72,74,76,77,81,82,84,88,93,96,100,104,109,112,115,121,124,126,128,130,131,132,133,134,135,138,139,140,143,145,149,152,157,161,171,172,173,176,180,182,184,186,188,189,191,192,193,194,195,196,200,201,202,203,204,205,207,208,210,211,212,213,215,217,220,221,222,228,229,231,234,237,240,242,247,249,252,256,257,258,263,265,280,285,287,292,296,304,305,307,316,319,322,326,340,342,346,362,371,373,380,391,405,406,407,411,413,417,418,432,442,446,447,462,464,466,470,474,479,485,488,490,496,504,511,512,515,520,521,531,533,536,540,542,545,550,552,553,554,555,562,566,568,569,576,589,597,600,608,613,614,615,616,617,619,620],user_change_password:576,user_input:29,user_permiss:[231,576],useradmin:576,userattributesimilarityvalid:221,userauth:512,userchangeform:576,usercreationform:[576,608],userguid:76,usermanag:230,usernam:[0,12,13,25,29,34,46,50,91,126,195,212,214,221,228,231,281,512,536,576,588,591,600,608],usernamefield:608,userpassword:[56,133,240],uses:[0,8,11,12,15,17,18,19,21,23,29,32,33,35,37,39,43,44,46,47,48,49,51,52,54,57,59,61,63,69,70,72,78,82,89,91,92,94,97,100,102,103,106,110,112,115,118,122,126,131,136,138,139,143,144,149,151,155,157,161,163,168,171,173,181,187,189,193,196,197,203,205,217,221,228,235,249,256,272,275,300,305,313,322,329,340,346,362,370,371,376,377,384,390,391,394,395,406,412,413,418,442,470,472,482,487,501,521,535,540,543,561,562,566,568,588,591,597,616],uses_databas:568,uses_screenread:[0,228],using:[0,1,2,4,7,8,9,11,13,14,15,16,17,19,20,21,23,26,27,29,32,33,34,35,38,39,41,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,59,61,67,69,70,71,73,75,76,81,82,86,88,89,92,97,98,100,101,104,105,110,111,112,116,119,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,141,142,144,146,147,149,150,151,152,155,157,158,161,163,167,168,169,170,173,175,176,177,178,179,180,181,182,183,186,188,189,190,191,192,194,195,198,199,200,204,205,206,207,208,210,212,213,215,216,217,218,219,221,223,228,231,233,236,237,239,241,242,247,249,250,251,252,256,265,270,273,277,286,300,305,313,322,323,324,335,338,339,340,341,342,346,355,358,362,364,365,370,371,373,376,384,387,390,391,395,407,410,413,414,417,418,436,439,440,442,450,455,462,464,467,470,472,473,474,477,478,479,482,486,487,503,504,505,510,511,515,521,524,533,534,535,537,540,542,543,545,546,550,551,552,553,556,561,562,563,564,565,566,568,574,589,593,594,608,616,617,620],usr:[131,211,212,215],usu:44,usual:[1,7,8,9,10,12,13,14,19,20,21,23,27,29,30,34,35,37,38,39,41,43,44,45,47,48,49,51,53,54,58,59,61,63,66,82,100,101,102,118,124,126,127,128,131,132,133,135,136,138,139,140,143,144,145,149,150,157,161,168,170,172,173,175,179,183,186,188,189,192,193,194,196,202,205,207,208,212,213,215,217,218,221,223,228,229,230,234,235,236,237,239,242,247,248,252,253,256,258,277,286,287,290,300,308,319,370,371,373,380,390,391,395,405,412,417,442,458,470,472,473,474,478,479,492,494,499,524,531,540,542,545,547,548,552,553,555,561,563,565,566,568,577,584],usuallyj:124,utc:[205,221,347,569],utf8:[4,205],utf:[17,34,72,104,105,169,206,221,254,497,503,520,554,568],util:[9,11,14,15,16,27,28,29,30,31,39,44,51,55,57,61,69,77,81,87,89,93,94,95,97,100,104,105,110,113,114,118,119,132,135,137,142,149,150,151,155,157,158,161,168,169,175,176,182,184,185,187,194,195,207,213,219,221,225,226,241,252,253,256,258,259,260,266,269,275,277,278,282,283,287,288,297,299,301,302,304,309,314,317,319,320,324,327,330,333,336,341,343,344,346,347,356,358,359,361,363,368,378,382,385,388,392,394,395,396,401,402,421,422,423,424,425,426,427,428,429,434,437,439,443,463,466,472,474,476,478,485,486,499,518,523,540,541,542,574,575,577,578,580,582,584,592,608,609,620],utilis:552,uyi:[112,390],v22:215,vacat:170,vagu:179,vai:61,val1:[14,555],val2:[14,555],val:[14,70,228,239,516,568],valid:[0,5,6,9,14,15,21,23,29,32,39,43,54,60,70,88,95,100,104,113,119,123,124,126,132,138,143,152,161,169,173,174,186,191,194,195,197,208,217,218,219,221,225,226,228,230,234,236,242,250,256,257,265,284,287,288,300,313,322,324,341,349,362,370,391,394,395,407,417,441,442,450,456,458,462,470,474,476,478,479,481,483,485,486,487,488,490,492,516,520,531,540,541,543,546,548,552,555,562,563,564,565,566,567,568,569,572,591,608,612,614,619],valid_handl:562,valid_target:86,validate_cal:555,validate_email_address:568,validate_input:395,validate_lockstr:0,validate_nam:[0,474],validate_onli:470,validate_password:[0,29,228],validate_prototyp:478,validate_sess:533,validate_slot_usag:[132,158,411],validate_usernam:[0,228],validated_consum:[88,322],validated_input:322,validated_tool:[88,322],validationerror:[228,478,536,562,564],validator_config:228,validator_contain:0,validator_func:221,validator_func_modul:[0,221],validator_kei:562,validatorfunc:[221,225,226,544],valign:[0,551,554],valrang:161,valu:[0,6,9,11,13,14,18,20,21,23,27,32,34,35,36,38,44,47,48,49,50,51,52,55,56,61,69,70,76,77,81,82,84,86,87,95,98,99,100,102,105,110,112,118,120,124,126,128,131,132,133,134,135,136,138,139,140,141,143,145,147,151,152,155,157,161,163,169,171,175,177,178,181,182,184,187,188,191,194,195,197,208,217,221,228,230,231,233,235,237,239,240,242,256,258,265,271,272,273,274,275,284,287,288,305,316,319,326,335,338,339,340,341,342,349,362,370,371,373,376,378,384,387,390,391,394,395,401,405,406,410,411,412,413,417,418,432,442,448,450,455,458,466,469,470,472,473,474,477,478,479,481,482,486,487,490,497,498,499,501,510,515,516,531,532,533,538,540,541,542,543,545,547,548,549,550,551,552,555,559,560,562,563,564,565,566,568,569,572,588,591,608,617,619],valuabl:[146,413],value1:[43,128],value2:[43,128],value3:128,value_displai:591,value_from_datadict:564,value_to_obj:478,value_to_obj_or_ani:478,value_to_str:564,valueerror:[43,186,191,230,265,277,332,456,458,540,543,545,548,568,569],valuei:105,values_list:136,valuex:105,vampir:[86,136],vampirism_from_elsewher:86,vanilla:[49,69,76,132,139,147,167,169,182,189],vaniti:29,vari:[32,33,49,61,63,66,71,81,100,112,118,124,126,131,138,143,157,161,170,173,285,342,373,390,395,531,540,542],variabl:[0,7,8,9,10,14,15,21,23,29,32,33,35,43,44,52,64,66,70,72,74,76,85,88,95,101,102,124,128,130,131,133,136,139,141,143,144,161,165,167,169,180,182,186,194,195,196,197,212,214,219,220,221,228,231,233,237,239,242,247,250,252,253,254,256,268,280,284,286,287,290,292,303,316,335,346,349,370,372,390,395,442,450,469,473,474,478,479,489,492,502,505,506,508,512,514,524,531,538,545,546,552,555,568,601],variable_from_modul:568,variable_nam:[284,287],variablenam:568,varianc:390,variant:[14,47,91,116,126,130,132,136,143,236,237,265,266,281,358,503,545],variat:[41,94,110,136,140,149,175,177,178,221,235,346,390,417,568],varieti:[120,130,178,198,340,341],variou:[0,8,9,14,17,23,32,37,39,43,44,45,47,48,49,52,54,63,65,68,70,81,100,101,112,119,121,124,125,126,129,136,137,138,143,145,149,164,168,175,177,178,191,197,208,217,218,219,221,235,251,277,305,340,341,371,376,390,391,413,430,434,440,441,462,470,473,474,479,480,487,524,548,554,565,566,597],varnam:516,vast:[69,71,105,205],vastli:131,vavera:76,vcc:[112,390],vccv:[112,390],vccvccvc:390,vcpython27:189,vcv:390,vcvccv:[112,390],vcvcvcc:[112,390],vcvcvvccvcvv:[112,390],vcvvccvvc:[112,390],vector:568,vehicl:[179,180],velit:30,venu:257,venv:[131,211,213,215],ver:205,verb:[0,1,32,59,151,474,528,555,571,573],verb_actor_stance_compon:571,verb_all_tens:571,verb_conjug:[0,32,225,226,544],verb_infinit:571,verb_is_past:571,verb_is_past_participl:571,verb_is_pres:571,verb_is_present_participl:571,verb_is_tens:571,verb_past:571,verb_past_participl:571,verb_pres:571,verb_present_participl:571,verb_tens:571,verb_tenses_kei:571,verbal:[80,126,474],verbatim:[32,134,143,572,620],verbatim_el:568,verbos:[0,11,178],verbose_nam:[194,542,576,577,584],verbose_name_plur:[577,584],veri:[0,6,7,8,9,11,12,13,14,15,16,18,19,20,21,23,25,27,29,30,32,33,34,35,43,44,46,47,48,49,51,52,54,55,59,61,63,69,70,71,73,75,81,82,84,93,100,101,102,105,110,112,113,117,119,120,121,123,124,125,126,127,128,130,131,132,134,136,138,139,140,143,144,145,147,149,150,152,157,161,163,167,168,169,170,171,172,177,178,179,180,181,182,184,186,189,190,191,195,196,199,200,202,205,207,208,214,216,217,218,220,221,228,229,235,237,253,256,257,258,265,286,287,300,316,322,341,355,358,362,390,436,440,458,462,465,473,478,496,541,543,548,550,552,568,617],verif:217,verifi:[0,3,8,12,29,91,95,126,139,217,242,322,341,450,456,517,566],verify_online_play:450,verify_or_create_ssl_key_and_cert:517,verify_ssl_key_and_cert:513,verifyfunc:[95,450],versa:[45,54,59,63,70,124,136,178,221,247,364,501,555,572],version:[0,2,4,13,14,15,16,19,21,23,25,26,29,33,34,37,38,39,44,49,52,54,66,69,71,79,83,92,93,97,105,124,126,131,133,134,138,140,141,143,147,149,151,152,161,168,170,172,173,186,187,188,191,193,196,200,205,206,209,210,211,212,213,215,216,217,221,223,242,250,252,254,281,310,316,339,340,341,342,346,391,406,407,434,441,474,479,492,497,511,535,540,545,551,553,568,576,577,578,581,582,585,591,608,620],version_info:492,versionad:128,versionchang:128,versu:[62,130,161],vertic:[0,349,368,370,371,441,554,568],very_strong:470,very_weak:35,vessel:184,vessl:184,vest:219,vesuvio:145,vet:43,veteran:200,vex:573,vfill_char:554,vhon:110,via:[0,8,12,14,19,20,29,30,32,34,41,42,43,44,49,50,52,55,61,63,67,69,71,76,81,83,86,110,130,132,135,136,138,139,140,143,147,167,168,171,177,188,191,208,213,217,221,255,257,258,362,364,376,405,407,409,412,413,418,434,446,455,473,478,482,540,543,545,555,560],viabl:[88,149,440],vice:[45,54,59,63,70,124,136,152,178,221,247,364,501,555,572],vicin:[23,248,346,442],video:[0,52,61,138],vidual:124,vienv:189,view:[0,6,14,18,20,27,29,30,33,35,44,48,50,51,53,54,59,69,97,99,105,112,121,124,126,128,130,131,132,133,138,139,143,149,166,169,176,178,191,193,202,210,215,218,221,225,226,228,237,239,240,242,247,248,249,252,256,296,316,338,339,340,341,342,349,362,376,378,391,408,452,464,466,474,476,527,542,553,555,568,574,579,586,587,589,591,593,597,601,604,607,608,620],view_attr:242,view_lock:[196,589],view_modifi:[81,376],view_on_sit:[576,578,580,581,582,584],viewabl:[129,249],viewer:[128,197,362,391,474,542],viewpoint:[62,555,572,573,620],viewport:6,viewset:[50,593,594],vigor:377,villag:149,vim:[16,27,132,550],vincent:[0,82,94,100,106,113,122,126,264,265,300,345,346,458],violent:29,virginia:76,virtu:152,virtual:[94,124,130,149,168,192,200,210,213,217,252,346,371,556],virtual_env:211,virtualenv:[4,8,10,66,76,97,128,189,205,210,211,212,216,217,218,222,223],virtualhost:207,viru:215,visibl:[0,4,12,14,15,21,33,37,45,49,54,61,86,112,124,128,147,149,191,197,208,209,210,217,221,248,249,368,370,371,376,391,474,504,537,552,568,616],vision:[14,147,169],visit:[76,82,105,122,182,194,195,196,217,300,552],visitor:[74,195,219],visual:[0,1,8,33,52,61,98,124,126,149,152,155,168,213,215,228,249,368,370,371,373,387,411,417,545],visual_rang:373,vital:186,vko:110,vlgeoff:[89,113,122,126,276,277,298,457],vniftg:215,vnum:167,vocabulari:[101,568],voic:[23,100,101],volatil:478,volcano:145,volum:[105,132,147,212],volund:[0,136],volunt:66,voluntari:127,volupt:30,vowel:[112,390,455],vpad_char:554,vscode:132,vulner:[0,86,172,219,377],vvc:[112,390],vvcc:[112,390],vvccv:[112,390],vvccvvcc:[112,390],w001:11,w1d6:163,wai:[0,6,7,8,9,10,11,12,13,14,15,16,17,20,21,23,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,49,52,53,54,55,56,58,59,61,63,67,69,70,72,73,75,76,78,79,81,82,86,88,89,90,91,93,95,98,100,101,102,105,106,108,112,115,118,119,121,126,127,128,130,131,132,133,134,135,136,137,138,139,140,142,144,145,146,147,149,150,151,155,157,163,167,168,169,171,172,173,174,175,177,178,179,180,181,182,183,184,186,187,188,189,190,191,192,193,194,197,200,202,203,205,209,210,211,215,216,217,218,219,220,221,223,228,234,235,242,249,256,277,286,290,300,305,308,313,322,323,338,340,346,355,358,362,364,368,371,376,378,384,387,390,395,405,407,409,412,413,418,434,439,440,441,450,462,464,470,474,478,487,492,497,501,512,533,535,537,538,539,540,541,543,546,551,552,554,559,561,564,568,572,586,593,594,617,619,620],wail:182,waist:316,wait:[1,6,12,20,23,29,44,55,100,102,114,118,121,134,146,149,172,180,221,229,253,286,290,338,339,340,341,342,395,407,408,434,481,492,502,521,523,535,548,552,568],wait_for_disconnect:502,wait_for_server_connect:502,wait_for_statu:492,wait_for_status_repli:492,waiter:492,waitinf:253,wake:[95,450],waldemar:76,walias:242,walk:[16,21,59,100,101,102,119,123,124,130,140,147,149,172,175,179,181,182,358,362,364,371,434,462,546],walki:[19,131,149],wall:[104,105,121,133,143,146,174,240,248,346,441,442],wand:[88,322,323,407],wander:184,wanna:[78,313,434],want:[0,1,5,6,8,9,10,11,12,13,14,15,16,17,19,20,21,23,25,27,29,32,33,34,35,36,37,38,39,41,43,44,45,46,48,49,50,51,52,54,55,56,58,59,61,63,64,66,67,69,70,71,72,74,75,76,77,78,79,81,82,83,87,88,91,93,97,100,101,102,105,106,110,112,114,118,124,125,126,127,128,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,150,151,152,155,157,158,161,163,164,165,166,168,169,170,171,172,173,174,175,177,179,180,181,182,183,184,186,187,188,189,190,191,192,193,194,195,196,197,199,202,203,204,205,206,207,208,209,210,211,213,214,215,216,217,218,220,221,222,223,228,235,236,237,239,242,248,249,253,254,256,265,281,305,313,319,322,338,339,340,341,342,346,349,362,370,371,373,376,377,387,390,391,395,405,407,408,409,411,412,434,442,446,450,455,458,462,469,470,474,479,483,485,487,508,510,516,523,533,538,540,542,543,550,551,552,553,559,564,566,568,577,584,586,593,608,613,616,617,619,620],wanted_id:35,wapproach:342,war:[33,464],warchannel:247,ware:184,warehous:[446,546],wari:[61,362,474,542],warm:[44,218,496],warmor:163,warn:[0,14,20,21,33,45,75,81,105,124,126,131,138,143,186,195,210,215,217,221,223,235,256,391,411,447,491,492,517,561,620],warrior:[41,146,168,169,191,247],wasclean:[503,520],wasn:[81,102,195],wast:[16,48],watch:[10,16,36,81],water:[88,104,126,149,236,322,323,335,413],water_glass:145,waterballon:335,waterglass:145,watt:76,wattack:[338,340,342],wave:105,wavi:124,wbackpack:163,wcach:252,wcactu:341,wcharcreat:[83,228],wchardelet:228,wcommandnam:300,wcure:341,wdestin:242,wdisengag:[338,340,342],wdrop:408,weak:[340,377,479],weaken:[161,417],weakref:559,weaksharedmemorymodel:[499,559],weaksharedmemorymodelbas:[499,559],weakvalu:559,wealth:184,weap:14,weapon:[0,14,29,43,69,92,120,121,131,132,133,135,136,141,146,147,152,158,161,163,172,177,178,183,184,196,323,339,405,406,407,408,410,411,412,413,423,426,440,441,479],weapon_hand:[155,157,408,410,413],weapon_ineffective_msg:440,weapon_prototyp:441,weaponemptyhand:[155,157,413],weaponrack:0,weaponrack_cmdset:441,weaponstr:141,weapoon:146,wear:[84,114,155,316,339,391,408,410,413,434],wearabl:[84,126,316,411,413],wearer:316,wearstyl:316,weather:[44,47,48,75,105,132,135,138,146,147,173,176,177,442,620],weather_script:44,weatherroom:[190,442],weav:151,web:[1,2,18,33,35,43,50,53,57,60,66,76,126,128,129,130,131,132,134,137,143,147,163,166,173,189,192,193,196,197,202,205,207,210,211,213,215,216,218,221,222,225,226,494,496,506,510,516,520,521,531,535,537,543,549,568,620],web_0:216,web_client_url:[209,221],web_get_absolute_url:0,web_get_admin_url:[0,237,256,464,466,542],web_get_create_url:[0,256,466,542],web_get_delete_url:[0,256,466,542],web_get_detail_url:[237,256,464,466,542],web_get_puppet_url:542,web_get_update_url:[0,256,466,542],web_help_entri:616,web_plugin:[138,221],web_plugins_modul:221,webclient:[24,45,52,54,60,61,63,65,67,70,74,76,129,131,138,143,173,192,196,197,206,207,208,209,218,219,221,225,226,249,252,305,439,488,497,500,516,521,532,552,574,602,609],webclient_ajax:[52,225,226,488,500],webclient_client_proxy_port:221,webclient_en:[219,221],webclient_gui:24,webclient_opt:[221,497],webclient_templ:221,webclientdata:521,webclienttest:609,webpag:[0,18,52,207,217,605],webport:4,webserv:[0,24,50,54,63,74,137,138,165,189,208,212,217,221,222,225,226,488,620],webserver_en:[219,221],webserver_interfac:[208,217,221],webserver_port:[4,217,221],webserver_threadpool_limit:221,websit:[0,18,24,50,51,52,53,76,128,129,130,131,138,165,168,176,189,194,195,196,197,200,203,208,217,219,221,225,226,521,537,574,576,602,620],website_templ:221,websocket:[0,52,53,63,131,208,212,217,221,503,509,520,532],websocket_client_en:221,websocket_client_interfac:[208,217,221],websocket_client_port:[217,221],websocket_client_url:[207,208,217,221],websocket_clos:520,websocket_protocol_class:221,websocketcli:[221,520],websocketclientfactori:503,websocketclientprotocol:503,websocketserverfactori:509,websocketserverprotocol:520,weed:235,week:[0,89,100,126,138,175,221,277,409,561,569],weeklylogfil:561,weigh:523,weight:[71,110,112,124,128,132,140,147,176,205,210,370,371,387,390,541,620],weightawarecmdget:170,weild:405,weird:[33,133,140,149,568],welcom:[0,25,54,66,82,125,132,165,184,202],well:[0,1,7,10,11,13,14,18,19,23,26,27,29,30,32,33,34,39,41,43,45,49,51,54,56,57,58,63,64,70,71,72,74,76,81,82,83,90,94,100,101,108,110,112,119,120,124,126,128,130,131,135,136,139,140,141,143,144,145,146,149,150,151,152,157,161,163,168,169,170,172,174,175,178,179,181,182,183,186,189,191,192,193,194,195,196,197,198,203,204,205,210,211,216,219,220,221,223,231,235,236,237,242,255,256,286,296,303,304,305,313,316,332,340,341,342,346,370,373,376,380,390,391,395,416,434,440,462,474,482,486,488,492,501,503,504,510,527,535,540,541,545,549,552,555,556,564,568,577,584],went:[11,135,144,149,151,163,168,210,218,483,487],weonewaymaplink:[124,371],were:[0,6,11,12,14,15,19,21,23,29,32,43,44,49,52,55,69,71,88,100,109,119,124,125,126,131,136,138,139,141,143,144,149,151,152,169,174,186,188,191,197,206,212,216,220,228,234,235,236,247,256,273,296,370,371,376,458,462,474,478,539,542,546,555,565,568,571,573],weren:175,werewolf:[1,132,142],werewolv:136,werkzeug:568,wesson:59,west:[1,32,104,105,124,134,135,174,182,242,349,370,371,442],west_east:105,west_exit:442,west_room:104,western:105,westward:442,wet:149,wether:313,wevennia:82,wflame:341,wflushmem:252,wfull:341,wguild:247,what:[0,1,5,6,7,8,9,11,12,13,15,16,19,20,21,23,24,29,32,33,34,35,37,39,43,44,45,48,49,50,53,54,55,56,58,59,61,62,63,67,69,70,71,72,75,79,81,82,84,88,90,92,97,100,101,102,104,105,110,111,112,113,118,121,124,126,127,128,131,132,133,134,135,136,137,139,140,141,143,146,147,151,155,157,158,161,163,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,184,185,187,188,190,191,192,193,194,195,197,199,200,202,203,205,207,208,215,217,218,219,220,221,228,233,235,236,237,239,242,253,256,287,303,305,306,310,322,323,335,340,341,370,371,372,373,376,377,391,395,407,409,413,414,436,440,442,446,458,464,466,470,474,477,478,479,492,494,497,504,516,521,536,538,540,542,543,545,546,551,552,562,563,566,568,569,591,597,599,600,608,617,618,620],whatev:[11,12,13,14,16,20,23,29,32,39,63,82,95,100,101,105,107,124,131,143,144,147,149,150,152,155,157,163,167,169,170,179,186,191,192,194,195,199,205,208,210,212,221,228,229,236,242,303,322,341,408,409,432,440,441,450,474,482,483,503,512,515,520,533,540,553,562,617],wheat:322,wheel:[48,88,168,211,213,215],whelp:[228,249,300],when:[0,2,4,6,7,10,11,12,13,14,15,16,17,18,19,20,21,23,25,27,29,30,32,33,34,35,36,38,39,41,43,44,45,46,47,49,51,52,53,54,55,56,58,59,61,63,64,66,67,69,70,71,72,73,76,79,81,82,84,86,89,91,93,94,95,96,100,101,102,103,104,105,108,110,112,114,118,119,122,123,124,125,126,127,128,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,155,157,158,161,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,196,197,198,199,200,201,203,205,206,207,208,210,211,212,213,215,217,218,219,220,221,223,225,228,229,231,233,235,236,237,239,241,242,247,248,249,250,251,252,254,256,257,258,263,265,271,272,274,275,277,280,281,287,288,290,292,300,305,306,307,308,313,316,319,322,323,326,329,332,335,338,339,340,341,342,346,355,362,368,369,370,371,372,376,377,384,387,390,391,395,400,401,405,407,409,411,412,413,414,417,418,434,436,439,440,441,442,450,458,459,462,465,466,469,470,472,473,474,476,478,479,481,482,483,485,486,487,489,492,494,498,499,501,502,503,504,505,506,507,508,510,512,513,514,515,516,517,520,521,523,524,530,531,532,533,534,535,540,542,543,545,546,548,549,550,551,552,553,554,559,560,561,563,568,572,581,597,599,608,612,614,619,620],when_stop:492,whenev:[1,10,14,19,23,34,35,36,38,43,44,46,55,59,64,72,82,101,105,123,131,139,141,155,157,185,203,210,212,217,223,228,236,256,271,308,376,377,378,409,414,440,441,442,472,474,483,485,494,511,531,532,533,540],where:[0,1,4,6,7,8,9,12,14,15,16,19,21,23,27,29,30,32,33,35,37,41,43,44,45,49,51,52,54,55,56,59,60,61,63,66,67,69,70,71,72,74,76,77,81,82,87,88,100,101,102,104,105,110,112,118,124,126,127,131,132,133,134,135,138,139,140,141,142,143,144,145,146,147,148,149,151,152,155,158,161,163,165,167,168,169,172,175,176,177,179,180,181,182,183,184,186,189,191,193,194,195,196,197,205,211,212,213,215,217,219,220,221,234,235,240,242,248,249,251,256,257,305,319,323,329,340,362,370,371,372,373,380,384,390,391,394,395,405,407,408,411,416,418,441,442,447,467,469,470,472,474,478,479,483,492,494,497,501,524,529,533,540,542,545,546,550,552,553,554,555,556,562,563,566,568,572,584,591,619,620],wherea:[0,6,8,9,14,15,21,23,29,35,45,49,56,58,59,63,69,72,88,124,143,167,178,179,219,221,223,230,322,371,390,472,481,487,521,540,559],whereabout:146,wherebi:341,wherev:[11,59,82,105,110,118,131,145,155,208,212,213,265,340,371,376,395,446],whether:[29,47,56,77,81,101,102,130,141,155,175,180,181,196,197,221,228,229,230,236,242,247,249,256,319,338,339,340,342,349,376,450,462,474,487,503,520,535,540,541,545,548,562,564,568,571],whewiu:189,which:[0,1,6,7,8,9,10,11,12,14,15,16,17,19,20,21,23,24,26,29,30,32,33,34,35,37,38,39,41,43,44,45,46,47,48,49,50,52,53,55,56,58,59,61,63,64,67,69,70,71,72,74,75,76,81,82,83,84,85,88,93,94,95,97,98,99,100,101,102,104,105,110,115,117,118,119,120,122,123,124,125,126,127,128,131,133,134,135,136,137,138,139,140,141,143,144,145,146,147,149,150,151,152,155,157,161,165,167,168,169,172,173,174,175,177,178,180,181,182,183,184,185,186,187,188,189,190,191,193,194,195,196,197,198,201,202,204,205,206,208,212,213,215,217,218,219,220,221,223,228,229,233,235,236,237,239,240,242,248,249,250,253,254,256,257,258,265,268,277,290,300,303,305,310,313,316,319,322,323,329,332,338,339,340,341,342,346,349,355,362,370,371,372,373,376,387,390,391,395,407,408,409,410,411,412,414,417,418,434,436,440,441,442,446,447,450,455,462,466,470,472,473,474,478,479,481,482,483,485,487,489,491,492,496,497,501,504,510,512,520,521,523,524,531,532,533,535,538,540,541,542,543,545,546,548,549,552,553,554,555,556,559,561,562,564,565,566,568,571,573,577,584,591,594,597,599,600,601,608,614,617,619],whichev:[20,147,150,192,217,219,442],whilst:[104,105],whimper:146,whisk:308,whisp:[112,390],whisper:[26,100,101,126,133,248,290,303,305,390,391,474],whistl:[59,152],white:[34,61,76,163,188,221,545,568],whitelist:34,whitenois:[118,126,393,395],whitespac:[0,16,20,23,132,133,136,169,191,250,332,391,408,545,546,554,568],who:[12,14,19,26,29,32,33,35,38,41,43,44,49,50,55,56,59,61,66,81,93,100,101,109,130,132,135,136,140,141,143,144,146,147,150,151,167,169,177,178,179,180,182,190,191,192,194,219,221,229,237,239,242,247,256,258,287,296,303,305,313,338,339,340,341,342,390,391,407,441,450,464,466,470,474,479,542,550,552,555,572,589],whoever:194,whole:[38,47,52,57,73,105,124,125,126,130,133,140,147,149,168,182,191,196,208,235,242,303,342,376,554,599],wholist:[19,256],whome:242,whomev:[177,180,434],whoopi:140,whose:[32,49,70,88,136,138,139,228,237,253,287,338,340,391,462,481,497,547,552,555,568],whould:552,why:[1,14,29,49,56,82,93,100,101,102,105,130,131,134,145,149,150,181,186,188,191,196,210,215,219,240,338,342,371,407,458,489,490,552],wic:228,wick:540,wide:[1,7,20,32,37,57,61,69,123,124,143,169,177,181,186,192,208,213,240,340,341,362,551,554,568],widen:56,wider:[0,1,7,56,181,240,554],widest:568,widget:[564,576,577,578,580,581,582,584,591,608],width:[0,1,7,18,20,23,32,33,34,43,57,99,105,124,182,225,237,349,370,373,497,512,531,545,550,551,553,554,555,568],wield:[0,43,47,120,149,155,157,163,339,407,408,410,411,413,430],wield_usag:155,wieldabl:[155,411],wieldloc:[155,157,408,410,411],wifi:[217,219],wiki:[7,23,49,66,71,105,131,169,176,178,189,200,221,265,319,520,620],wiki_account_handl:192,wiki_account_signup_allow:192,wiki_anonymous_writ:192,wiki_can_admin:192,wiki_can_assign:192,wiki_can_assign_own:192,wiki_can_change_permiss:192,wiki_can_delet:192,wiki_can_moder:192,wiki_can_read:192,wiki_can_writ:192,wikiconfig:192,wikipedia:[11,17,72,130,131,178,221,520],wikolia:[110,455],wil:19,wild:[54,71,124,136,147,188,372,373],wildcard:[38,56,124,168,240,242,370,372,373,568],wildcard_to_regexp:568,wilder:[225,226,259,344,620],wildernessexit:362,wildernessmap:362,wildernessmapprovid:[123,362],wildernessroom:362,wildernessscript:[123,362],wildli:390,wildr:100,wilfr:100,will_suppress_ga:514,will_transform:136,will_ttyp:519,willing:[147,150,169,200,620],willowi:152,willpow:417,wim:76,win10:[213,215],win11:215,win7:[213,215],win8:215,win:[29,178,186,189,206,303,407],wind:[100,146,190],winder:149,windmil:322,window:[0,1,8,9,10,12,21,30,39,45,52,53,67,70,124,128,131,132,134,143,174,182,192,202,205,210,218,221,222,237,249,305,307,492,508,531,535,568],windowid:531,windows10:213,wine:[145,146],winfinit:163,wingd:105,winpti:189,winter:[94,346],wintext_templ:177,wip:[0,92,126,620],wipe:[14,15,19,26,93,105,133,143,189,205,235,242,252,307,340],wire:[20,63,67,70,72,131,208,217,251,489,501,502,533,545],wiri:152,wis:169,wisdom:[8,149,151,152,161,163,405,410,412,417],wise:[15,16,17,35,74,139,169,183],wiser:[44,134],wish:[4,12,23,81,82,97,181,193,198,211,221,265,342,376,545,608],with_tag:335,withdraw:[178,342],withdrawl:342,within:[0,9,21,23,29,32,33,48,52,55,76,82,93,94,97,98,124,125,126,128,131,136,138,143,145,155,167,169,178,181,182,183,188,189,193,195,198,205,206,207,212,215,217,228,231,233,242,284,313,346,372,380,387,407,409,447,452,465,474,479,486,535,540,541,545,555,561,568,608,614,619],withot:371,without:[0,1,6,7,8,9,11,12,14,15,16,19,20,21,23,25,27,29,32,37,42,43,44,46,48,49,51,53,54,56,57,61,63,64,66,69,70,71,81,82,86,88,90,93,94,97,100,101,102,104,112,115,119,123,124,125,126,128,131,133,134,135,138,140,141,143,144,147,149,150,155,157,168,169,172,173,174,179,180,182,183,184,186,188,191,193,194,196,205,208,210,212,213,215,217,220,221,228,229,234,237,239,240,242,247,248,249,250,251,252,253,256,257,258,263,266,284,287,296,308,313,316,322,338,340,342,346,355,371,376,390,391,395,417,418,427,434,440,442,462,470,472,474,477,478,479,485,486,501,512,515,516,523,533,534,540,542,545,546,548,549,550,551,552,553,555,561,564,565,566,568,601],withstand:35,wiz:169,wizard:[0,43,100,149,222,442,479,490,492],wkei:242,wlocat:242,wlock:242,wmagic:341,wmass:341,wndb_:242,wnn:19,woah:[139,141],woman:149,won:[6,12,13,14,15,17,21,49,50,52,55,56,61,67,69,81,82,83,93,95,101,102,105,113,126,128,133,136,141,143,147,148,149,168,172,177,179,186,191,192,195,197,199,205,212,213,215,236,368,400,407,413,434,450,458,537,545,564],wonder:[49,57,141,167,189],wont_suppress_ga:514,wont_ttyp:519,woo:133,wooc:228,wood:[88,149,322,323],wooden:[43,88,322,323],woodenpuppetrecip:88,woosh:179,word:[0,7,8,9,12,16,19,20,23,27,32,33,39,59,66,70,81,83,86,100,101,105,112,126,127,132,133,139,143,150,151,172,175,182,186,188,193,197,202,221,234,249,250,254,281,290,310,390,472,504,550,554,555,565,568,572],word_fil:390,word_length_vari:[112,390],wordi:390,work:[0,1,4,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,24,26,29,32,33,35,36,39,43,44,45,47,48,51,52,53,54,55,57,59,61,64,67,69,71,73,78,81,82,83,86,88,93,94,97,102,105,108,115,119,125,126,127,128,131,132,133,134,135,136,137,138,139,140,141,143,144,145,147,150,151,155,158,161,163,164,166,167,168,169,170,171,174,175,178,179,180,182,183,187,188,189,190,191,192,193,194,195,196,202,204,205,206,207,208,210,211,213,215,216,217,219,221,222,233,236,237,239,242,247,248,250,252,254,256,265,296,300,303,313,316,322,324,332,335,340,341,342,346,349,355,362,371,391,412,442,462,464,466,469,470,474,478,479,492,496,497,509,524,537,539,540,542,543,546,551,552,553,554,562,568,601,612,613,614,616,618,620],workaround:[12,212,215,222],workflow:[0,576],world:[0,11,14,15,16,17,19,20,21,23,29,33,39,41,43,54,55,69,71,72,78,83,88,89,92,93,100,104,105,108,110,118,123,124,125,126,128,130,131,132,135,139,141,142,144,148,150,151,158,163,164,168,169,175,176,177,178,179,180,181,182,187,189,191,199,200,202,210,217,220,221,228,241,242,247,249,277,313,322,332,338,339,340,341,342,344,362,370,391,395,408,438,441,442,455,464,466,482,531,533,545,546,556,566,620],world_map:105,worm:[149,182],worm_has_map:182,worn:[84,126,155,157,196,316,339,405,411,430],worri:[4,12,14,17,29,49,51,72,100,102,145,146,155,157,181,191,196,220,305,306,313,407],wors:[150,215],worst:[147,215],worth:[8,14,29,44,49,59,102,139,149,150,151,163,179,186,194,207,313],worthi:147,worthless:217,would:[1,4,6,8,10,11,14,15,16,17,20,21,23,29,32,33,35,37,39,43,44,45,47,48,49,53,54,55,57,58,61,69,70,74,75,76,78,82,84,86,88,89,97,100,101,102,105,110,118,119,124,126,127,130,131,133,134,136,137,138,139,140,141,143,144,147,149,150,151,152,155,157,161,163,167,168,169,171,172,174,175,177,178,179,180,181,182,183,186,188,189,191,192,193,194,195,196,197,207,212,215,217,228,234,235,236,237,242,251,256,269,277,287,300,305,313,322,323,362,370,371,390,395,407,410,434,462,464,466,470,478,479,504,516,542,545,546,549,552,563,564,566,568,577,584],wouldn:[33,141,181,188,417],wound:[341,407],wow:[150,197],wpass:[338,340,342],wpermiss:242,wprototype_desc:242,wprototype_kei:242,wprototype_lock:242,wprototype_par:242,wprototype_tag:242,wpublic:228,wrack:377,wrap:[0,29,32,43,44,55,95,136,143,145,173,182,193,221,305,316,323,391,450,499,539,554,568],wrap_conflictual_object:564,wrapper:[0,8,14,20,29,34,45,49,55,69,88,172,228,231,257,258,308,310,355,395,466,467,473,474,482,486,497,499,531,540,542,543,545,554,555,559,560,561,568,579,584],wresid:252,wrestl:[149,161],write:[2,5,7,8,12,14,16,17,20,21,23,24,29,33,38,49,55,57,59,62,70,71,77,81,82,92,93,100,101,102,125,127,133,134,135,139,141,143,144,146,149,150,152,155,161,163,167,169,171,172,174,175,183,186,191,192,196,201,202,204,205,213,215,242,247,249,256,263,265,270,300,362,446,447,474,501,505,561,566,617,619,620],writeabl:211,written:[17,19,20,43,53,110,124,127,128,133,136,138,139,141,143,144,145,152,163,167,168,169,194,195,197,200,209,224,249,371,446,546,617],wrong:[0,11,12,14,135,143,163,205,215,218,221,235,242,252,322,324,391],wrote:139,wserver:252,wservic:247,wsgi:[207,537],wsgi_resourc:537,wsgiwebserv:537,wshoot:342,wsl:[128,213,215],wss:[207,208,217,221],wstatu:342,wstr:152,wstrength:163,wtypeclass:242,wuse:[163,340],wwithdraw:342,www:[50,71,82,128,131,181,189,194,207,217,221,225,252,455,507,508,514,516,567,571,608],wxqv:110,x0c:242,x1b:[545,567],x2x:169,x4x:551,x5x:551,x6x:551,x7x:551,x8x:551,x9x:551,x_r:181,xbx:110,xdy:161,xeph:110,xforward:537,xgettext:66,xgiven:373,xho:110,xit:[82,265],xmlcharrefreplac:545,xp_gain:177,xp_per_level:405,xpo:554,xtag:571,xterm256:[34,52,65,67,85,143,221,239,268,387,497,512,515,545],xterm256_bg:545,xterm256_bg_sub:545,xterm256_fg:545,xterm256_fg_sub:545,xterm256_gbg:545,xterm256_gbg_sub:545,xterm256_gfg:545,xterm256_gfg_sub:545,xterm:[61,143,188],xterm_bg_cod:567,xterm_fg_cod:567,xterms256:61,xval:23,xviewmiddlewar:221,xxx:[1,6,113,458],xxxx:[113,458],xxxxx1xxxxx:551,xxxxx3xxxxx:551,xxxxx:100,xxxxxxx2xxxxxxx:551,xxxxxxxxxx3xxxxxxxxxxx:169,xxxxxxxxxx4xxxxxxxxxxx:169,xxxxxxxxxxx:551,xxxxxxxxxxxxxx1xxxxxxxxxxxxxxx:169,xxxxxxxxxxxxxxxxxxxxxx:169,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:169,xy_coord:409,xy_grid:409,xygrid:[370,371],xymap:[225,226,259,344,363,364,365,368,371,372,373],xymap_data:[124,370,372],xymap_data_list:[124,370,372],xymap_legend:[124,225,226,259,344,363,365,368],xyroom:373,xyz:[38,124,364,367,371,372,373],xyz_destin:[124,373],xyz_destination_coord:373,xyz_exit:[124,367,371],xyz_room:[124,367,371],xyzcommand:[124,365,366],xyzexit:[368,372,373],xyzexit_prototype_overrid:124,xyzexitmanag:373,xyzgrid:[0,182,225,226,259,344,620],xyzgrid_cmdset:364,xyzgrid_use_db_prototyp:124,xyzgridcmdset:[124,364],xyzmanag:373,xyzmap:124,xyzroom:[225,226,259,344,363,368,372],xyzroom_prototype_overrid:124,y10:163,y_r:181,yai:221,yan:545,yank:27,yard:121,year:[0,49,70,71,76,89,100,125,126,130,132,149,175,217,277,556,561,568,608],yearli:[175,217],yeast:[88,126,322],yellow:[12,61,124,163,188,441],yes:[0,23,29,55,59,101,128,181,188,242,252,290,490,550,552,568],yes_act:552,yes_no_question_cmdset:552,yesno:[29,128,550],yesnoquestioncmdset:552,yet:[0,1,4,6,12,13,16,25,29,43,45,56,66,69,82,87,101,102,104,105,124,126,131,133,136,139,140,150,151,152,155,157,158,161,171,172,180,182,183,184,187,194,195,196,208,209,213,215,216,217,223,224,228,247,254,281,287,313,319,371,409,434,470,473,486,510,533,537,545,615],yield:[0,7,23,35,55,71,77,205,242,447,554,566,568],yin:83,yml:[5,212],yogurt:[111,335],yoshimura:76,you:[0,1,2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,23,24,25,27,29,32,33,34,35,36,37,38,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,63,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,131,133,134,135,136,137,138,139,142,143,144,145,147,150,151,152,155,157,158,161,163,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,220,221,222,228,236,237,239,242,247,248,249,250,251,252,253,254,256,265,268,270,272,273,275,277,285,286,287,290,296,300,303,305,306,310,313,316,319,322,323,329,332,335,338,339,340,341,342,346,349,355,358,362,364,366,370,371,376,377,378,380,387,390,391,394,395,400,405,407,408,409,410,411,412,413,414,416,434,436,441,442,446,447,450,452,455,458,462,464,469,470,474,479,483,484,485,486,487,494,503,504,505,521,523,533,535,537,538,540,542,543,545,546,548,551,552,554,555,556,564,565,566,568,571,572,573,588,591,593,594,608,617,619,620],you_obj:32,you_replac:303,your:[0,1,2,4,5,6,7,8,10,14,15,16,17,18,19,20,21,24,25,27,29,32,33,35,37,38,41,43,44,45,46,47,48,49,50,51,53,54,55,56,57,59,61,62,64,66,67,70,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,104,105,106,108,112,114,115,116,119,120,121,122,123,124,125,126,127,128,130,131,132,135,136,137,139,140,141,142,143,144,145,146,147,148,151,155,158,161,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,182,183,186,187,188,189,191,193,195,197,198,199,200,201,202,203,204,205,207,208,209,210,211,213,214,218,220,221,222,225,226,228,231,234,236,237,239,240,242,247,248,249,252,253,254,259,265,266,268,277,281,286,300,303,305,313,316,319,322,323,338,339,340,341,342,346,349,355,358,362,364,365,370,374,376,377,380,384,387,390,391,393,400,407,408,411,413,414,417,434,441,442,446,447,450,452,455,458,462,469,470,473,523,542,545,550,552,554,555,564,565,566,568,569,572,573,577,584,594,608,614,617,620],your_act:305,your_bucket_nam:76,your_charact:155,your_email:[12,221],yourchannelcommandnam:256,yourchar:143,yourgam:446,yourgamenam:76,yourhostnam:208,yourmodulenam:163,yournam:[125,133,139,141,207],yourpassword:205,yourrepo:10,yourself:[5,6,11,12,13,16,21,29,35,39,49,54,57,58,59,69,71,74,76,82,83,100,102,104,105,110,115,118,121,124,127,128,130,132,137,139,140,141,142,143,145,148,149,150,151,157,163,169,177,186,191,197,199,205,215,217,242,248,303,305,313,326,341,355,364,391,395,400,407,408,414,552,555,572,573],yourselv:[59,555,572,573],yoursit:194,yourtest:11,yourus:189,yourusernam:12,yourwebsit:194,yousuck:56,yousuckmor:56,youth:[95,450],youtub:12,ypo:554,yrs:277,ythi:61,yum:[12,207,208],yvonn:169,z_destin:373,z_r:181,z_sourc:373,zcoord:[364,368,370,372],zem:110,zero:[20,37,43,134,139,143,145,215,247,319,322,372,391,467,474,540,545,555],zip:219,zlib:[211,501,505],zmud:[206,507],zone:[47,62,101,138,150,167,200,221,543,561,620],zoord:372,zopeinterfac:215,zuggsoft:507},titles:["Changelog","Coding FAQ","Coding and development help","Continuous Integration (CI)","Continuous Integration - TeamCity (linux)","Continuous integration with Travis","Debugging","Evennia Code Style","Profiling","Quirks","Setting up PyCharm with Evennia","Unit Testing","Coding using Version Control","Accounts","Attributes","Batch Code Processor","Batch Command Processor","Batch Processors","Bootstrap Components and Utilities","Channels","Coding Utils","Command Sets","Command System","Commands","Core Components","Connection Screen","Default Commands","EvEditor","EvForm","EvMenu","EvMore","EvTable","The Inline Function Parser","Help System","Inputfuncs","Locks","MonitorHandler","Msg","Nicks","Objects","Outputfuncs","Permissions","Portal And Server","Spawner and Prototypes","Scripts","Sessions","Signals","Tags","TickerHandler","Typeclasses","Evennia REST API","The Web Admin","Web Client","Webserver","Game website","Async Process","Banning","Bootstrap & Evennia","Building Permissions","Sending different messages depending on viewpoint and receiver","Clickable links","Colors","Core Concepts","Custom Protocols","Guest Logins","In-text tags parsed by Evennia","Internationalization","Messagepath","Multisession modes","New Models","OOB","Soft Code","Text Encodings","Using MUX as a Standard","Web Features","Zones","AWSstorage system","Input/Output Auditing","Barter system","Batch processor examples","Script example","Buffs","Building menu","Character Creator","Clothing","Additional Color markups","Components","Cooldowns","Crafting system","Custom gameime","Dice roller","Email-based login system","EvAdventure","EvscapeRoom","Extended Room","Easy fillable form","Gendersub","In-game Git Integration","Health Bar","Basic Map","Evennia in-game Python system","Dialogues in events","A voice operated elevator using events","In-Game Mail system","Map Builder","Creating rooms from an ascii map","Menu-based login system","TutorialMirror","Evennia Multidescer","Legacy Comms-commands","Random Name Generator","Puzzles System","Roleplaying base system for Evennia","Pseudo-random generator and registry","Red Button example","SimpleDoor","Slow Exit","Talkative NPC example","Traits","Easy menu selection tree","Turn based battle system framework","Evennia Tutorial World","Unix-like Command style","Wilderness system","XYZgrid","Guidelines for Evennia contribs","Contribs","How To Contribute And Get Help","Contributing to Evennia Docs","API Summary","Evennia Introduction","Glossary","Beginner Tutorial","8. Adding custom commands","1. Using commands and building stuff","10. Creating things","12. Advanced searching - Django Database queries","6. Overview of the Evennia library","4. Overview of your new Game Dir","7. Making objects persistent","13. Building a chair you can sit on","9. Parsing Command input","Part 1: What we have","3. Intro to using Python with Evennia","5. Introduction to Python classes and objects","11. Searching for things","2. The Tutorial World","2. On Planning a Game","Part 2: What we want","3. Planning our tutorial game","1. Where do I begin?","3. Player Characters","6. Character Generation","12. In-game Commands","11. Dynamically generated Dungeon","5. Handling Equipment","8. Non-Player-Characters (NPCs)","4. In-game Objects and items","Part 3: How we get there (example game)","9. Game Quests","7. In-game Rooms","2. Rules and dice rolling","10. In-game Shops","1. Code structure and Utilities","Part 4: Using what we created","1. Add a simple new web page","Part 5: Showing the world","Evennia for Diku Users","Evennia for MUSH Users","Evennia for roleplaying sessions","Give objects weight","Adding Command Cooldowns","Commands that take time to finish","Adding a Command Prompt","Return custom errors on missing Exits","Changing game calendar and time speed","Tutorials and Howto\u2019s","Implementing a game rule system","Turn based Combat System","Building a giant mech","Building a train that moves","Adding room coordinates to your game","Show a dynamic map of rooms","NPCs that listen to what is said","NPC merchants","NPCs reacting to your presence","Parsing command arguments, theory and best practices","Making a Persistent object Handler","Understanding Color Tags","Using the Arxcode game dir","Adding Weather messages to a Room","Tutorial for basic MUSH like game","Add a wiki on your website","Changing the Game Website","Web Character Generation","Web Character View Tutorial","Extending the REST API","Help System Tutorial","Automatically Tweet game stats","Licensing Q&A","Links","Connect Evennia channels to Grapevine","Connect Evennia channels to IRC","Connect Evennia channels to RSS","Connect Evennia to Twitter","Choosing a database","Client Support Grid","Configuring an Apache Proxy","Configuring HAProxy","Evennia Game Index","Installation","Installing on Android","Installing with Docker","Installing with GIT","Non-interactive setup","Installation Troubleshooting","Upgrading an existing installation","Online Setup","Start Stop Reload","Security Hints and Practices","Changing Game Settings","Evennia Default settings file","Server Setup and Life","Updating Evennia","1. 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.base_systems","evennia.contrib.base_systems.awsstorage","evennia.contrib.base_systems.awsstorage.aws_s3_cdn","evennia.contrib.base_systems.awsstorage.tests","evennia.contrib.base_systems.building_menu","evennia.contrib.base_systems.building_menu.building_menu","evennia.contrib.base_systems.building_menu.tests","evennia.contrib.base_systems.color_markups","evennia.contrib.base_systems.color_markups.color_markups","evennia.contrib.base_systems.color_markups.tests","evennia.contrib.base_systems.components","evennia.contrib.base_systems.components.component","evennia.contrib.base_systems.components.dbfield","evennia.contrib.base_systems.components.holder","evennia.contrib.base_systems.components.signals","evennia.contrib.base_systems.components.tests","evennia.contrib.base_systems.custom_gametime","evennia.contrib.base_systems.custom_gametime.custom_gametime","evennia.contrib.base_systems.custom_gametime.tests","evennia.contrib.base_systems.email_login","evennia.contrib.base_systems.email_login.connection_screens","evennia.contrib.base_systems.email_login.email_login","evennia.contrib.base_systems.email_login.tests","evennia.contrib.base_systems.ingame_python","evennia.contrib.base_systems.ingame_python.callbackhandler","evennia.contrib.base_systems.ingame_python.commands","evennia.contrib.base_systems.ingame_python.eventfuncs","evennia.contrib.base_systems.ingame_python.scripts","evennia.contrib.base_systems.ingame_python.tests","evennia.contrib.base_systems.ingame_python.typeclasses","evennia.contrib.base_systems.ingame_python.utils","evennia.contrib.base_systems.menu_login","evennia.contrib.base_systems.menu_login.connection_screens","evennia.contrib.base_systems.menu_login.menu_login","evennia.contrib.base_systems.menu_login.tests","evennia.contrib.base_systems.mux_comms_cmds","evennia.contrib.base_systems.mux_comms_cmds.mux_comms_cmds","evennia.contrib.base_systems.mux_comms_cmds.tests","evennia.contrib.base_systems.unixcommand","evennia.contrib.base_systems.unixcommand.tests","evennia.contrib.base_systems.unixcommand.unixcommand","evennia.contrib.full_systems","evennia.contrib.full_systems.evscaperoom","evennia.contrib.full_systems.evscaperoom.commands","evennia.contrib.full_systems.evscaperoom.menu","evennia.contrib.full_systems.evscaperoom.objects","evennia.contrib.full_systems.evscaperoom.room","evennia.contrib.full_systems.evscaperoom.scripts","evennia.contrib.full_systems.evscaperoom.state","evennia.contrib.full_systems.evscaperoom.tests","evennia.contrib.full_systems.evscaperoom.utils","evennia.contrib.game_systems","evennia.contrib.game_systems.barter","evennia.contrib.game_systems.barter.barter","evennia.contrib.game_systems.barter.tests","evennia.contrib.game_systems.clothing","evennia.contrib.game_systems.clothing.clothing","evennia.contrib.game_systems.clothing.tests","evennia.contrib.game_systems.cooldowns","evennia.contrib.game_systems.cooldowns.cooldowns","evennia.contrib.game_systems.cooldowns.tests","evennia.contrib.game_systems.crafting","evennia.contrib.game_systems.crafting.crafting","evennia.contrib.game_systems.crafting.example_recipes","evennia.contrib.game_systems.crafting.tests","evennia.contrib.game_systems.gendersub","evennia.contrib.game_systems.gendersub.gendersub","evennia.contrib.game_systems.gendersub.tests","evennia.contrib.game_systems.mail","evennia.contrib.game_systems.mail.mail","evennia.contrib.game_systems.mail.tests","evennia.contrib.game_systems.multidescer","evennia.contrib.game_systems.multidescer.multidescer","evennia.contrib.game_systems.multidescer.tests","evennia.contrib.game_systems.puzzles","evennia.contrib.game_systems.puzzles.puzzles","evennia.contrib.game_systems.puzzles.tests","evennia.contrib.game_systems.turnbattle","evennia.contrib.game_systems.turnbattle.tb_basic","evennia.contrib.game_systems.turnbattle.tb_equip","evennia.contrib.game_systems.turnbattle.tb_items","evennia.contrib.game_systems.turnbattle.tb_magic","evennia.contrib.game_systems.turnbattle.tb_range","evennia.contrib.game_systems.turnbattle.tests","evennia.contrib.grid","evennia.contrib.grid.extended_room","evennia.contrib.grid.extended_room.extended_room","evennia.contrib.grid.extended_room.tests","evennia.contrib.grid.ingame_map_display","evennia.contrib.grid.ingame_map_display.ingame_map_display","evennia.contrib.grid.ingame_map_display.tests","evennia.contrib.grid.mapbuilder","evennia.contrib.grid.mapbuilder.mapbuilder","evennia.contrib.grid.mapbuilder.tests","evennia.contrib.grid.simpledoor","evennia.contrib.grid.simpledoor.simpledoor","evennia.contrib.grid.simpledoor.tests","evennia.contrib.grid.slow_exit","evennia.contrib.grid.slow_exit.slow_exit","evennia.contrib.grid.slow_exit.tests","evennia.contrib.grid.wilderness","evennia.contrib.grid.wilderness.tests","evennia.contrib.grid.wilderness.wilderness","evennia.contrib.grid.xyzgrid","evennia.contrib.grid.xyzgrid.commands","evennia.contrib.grid.xyzgrid.example","evennia.contrib.grid.xyzgrid.launchcmd","evennia.contrib.grid.xyzgrid.prototypes","evennia.contrib.grid.xyzgrid.tests","evennia.contrib.grid.xyzgrid.utils","evennia.contrib.grid.xyzgrid.xymap","evennia.contrib.grid.xyzgrid.xymap_legend","evennia.contrib.grid.xyzgrid.xyzgrid","evennia.contrib.grid.xyzgrid.xyzroom","evennia.contrib.rpg","evennia.contrib.rpg.buffs","evennia.contrib.rpg.buffs.buff","evennia.contrib.rpg.buffs.samplebuffs","evennia.contrib.rpg.buffs.tests","evennia.contrib.rpg.character_creator","evennia.contrib.rpg.character_creator.character_creator","evennia.contrib.rpg.character_creator.example_menu","evennia.contrib.rpg.character_creator.tests","evennia.contrib.rpg.dice","evennia.contrib.rpg.dice.dice","evennia.contrib.rpg.dice.tests","evennia.contrib.rpg.health_bar","evennia.contrib.rpg.health_bar.health_bar","evennia.contrib.rpg.health_bar.tests","evennia.contrib.rpg.rpsystem","evennia.contrib.rpg.rpsystem.rplanguage","evennia.contrib.rpg.rpsystem.rpsystem","evennia.contrib.rpg.rpsystem.tests","evennia.contrib.rpg.traits","evennia.contrib.rpg.traits.tests","evennia.contrib.rpg.traits.traits","evennia.contrib.tutorials","evennia.contrib.tutorials.batchprocessor","evennia.contrib.tutorials.batchprocessor.example_batch_code","evennia.contrib.tutorials.bodyfunctions","evennia.contrib.tutorials.bodyfunctions.bodyfunctions","evennia.contrib.tutorials.bodyfunctions.tests","evennia.contrib.tutorials.evadventure","evennia.contrib.tutorials.evadventure.build_techdemo","evennia.contrib.tutorials.evadventure.build_world","evennia.contrib.tutorials.evadventure.characters","evennia.contrib.tutorials.evadventure.chargen","evennia.contrib.tutorials.evadventure.combat_turnbased","evennia.contrib.tutorials.evadventure.commands","evennia.contrib.tutorials.evadventure.dungeon","evennia.contrib.tutorials.evadventure.enums","evennia.contrib.tutorials.evadventure.equipment","evennia.contrib.tutorials.evadventure.npcs","evennia.contrib.tutorials.evadventure.objects","evennia.contrib.tutorials.evadventure.quests","evennia.contrib.tutorials.evadventure.random_tables","evennia.contrib.tutorials.evadventure.rooms","evennia.contrib.tutorials.evadventure.rules","evennia.contrib.tutorials.evadventure.shops","evennia.contrib.tutorials.evadventure.tests","evennia.contrib.tutorials.evadventure.tests.mixins","evennia.contrib.tutorials.evadventure.tests.test_characters","evennia.contrib.tutorials.evadventure.tests.test_chargen","evennia.contrib.tutorials.evadventure.tests.test_combat","evennia.contrib.tutorials.evadventure.tests.test_commands","evennia.contrib.tutorials.evadventure.tests.test_dungeon","evennia.contrib.tutorials.evadventure.tests.test_equipment","evennia.contrib.tutorials.evadventure.tests.test_quests","evennia.contrib.tutorials.evadventure.tests.test_rules","evennia.contrib.tutorials.evadventure.tests.test_utils","evennia.contrib.tutorials.evadventure.utils","evennia.contrib.tutorials.mirror","evennia.contrib.tutorials.mirror.mirror","evennia.contrib.tutorials.red_button","evennia.contrib.tutorials.red_button.red_button","evennia.contrib.tutorials.talking_npc","evennia.contrib.tutorials.talking_npc.talking_npc","evennia.contrib.tutorials.talking_npc.tests","evennia.contrib.tutorials.tutorial_world","evennia.contrib.tutorials.tutorial_world.intro_menu","evennia.contrib.tutorials.tutorial_world.mob","evennia.contrib.tutorials.tutorial_world.objects","evennia.contrib.tutorials.tutorial_world.rooms","evennia.contrib.tutorials.tutorial_world.tests","evennia.contrib.utils","evennia.contrib.utils.auditing","evennia.contrib.utils.auditing.outputs","evennia.contrib.utils.auditing.server","evennia.contrib.utils.auditing.tests","evennia.contrib.utils.fieldfill","evennia.contrib.utils.fieldfill.fieldfill","evennia.contrib.utils.git_integration","evennia.contrib.utils.git_integration.git_integration","evennia.contrib.utils.git_integration.tests","evennia.contrib.utils.name_generator","evennia.contrib.utils.name_generator.namegen","evennia.contrib.utils.name_generator.tests","evennia.contrib.utils.random_string_generator","evennia.contrib.utils.random_string_generator.random_string_generator","evennia.contrib.utils.random_string_generator.tests","evennia.contrib.utils.tree_select","evennia.contrib.utils.tree_select.tests","evennia.contrib.utils.tree_select.tree_select","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.pronouns","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"],titleterms:{"2010":0,"2011":0,"2012":0,"2013":0,"2014":0,"2015":0,"2016":0,"2017":0,"403":12,"break":136,"case":[102,149],"class":[7,11,20,23,49,82,100,138,139,144,149,151,184],"default":[1,7,26,32,34,35,52,54,124,139,141,170,173,205,221,223,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254],"enum":[157,163,410],"final":[182,211],"function":[7,32,35,39,54,82,129,143,145],"goto":29,"import":[9,113,124,128,137,143,144],"new":[0,9,11,44,49,54,69,81,88,99,100,138,139,149,157,165,169,192,194,196,197,210],"public":209,"return":[29,45,136,143,174],"static":[118,395],"super":[58,141],"throw":161,"while":140,AWS:76,Adding:[21,34,39,47,51,54,63,69,88,100,102,110,133,134,140,141,171,173,180,181,189,190,192,194,196],And:[42,127],Are:149,Going:222,IDE:132,NOT:136,Not:[12,125],One:[104,124],PMs:169,PRs:[12,125],TLS:207,The:[8,15,16,27,29,32,33,41,43,44,51,55,57,58,67,74,83,86,100,101,110,124,126,146,147,150,157,165,169,178,181,182,184,191,197,210],Tying:[152,187],Use:[133,219],Used:97,Uses:32,Using:[8,11,14,19,30,32,33,36,43,47,54,69,73,75,81,100,118,134,157,164,182,189,196,213,376,395],Will:[49,145,149],Yes:29,_famili:136,_should:149,abil:152,abl:[140,149],abort:172,about:[9,48,49,124,144,149,151,176],absolut:137,abus:56,accept:125,access:[12,51,62],access_typ:35,account:[9,13,51,76,83,131,135,149,169,227,228,229,230,231,239,576,612],action:149,activ:[149,168,194],actor:59,actor_stance_cal:32,actual:[23,49],add:[1,12,54,155,165,192,205],add_choic:82,addclass:596,addit:[85,181,189,212],admin:[9,51,74,131,240,575,576,577,578,579,580,581,582,583,584,585,586],administr:[19,147,149],adminsit:599,advanc:[38,81,129,136,141,205,218],advantag:161,alia:9,alias:[12,47,145],all:[1,12,100,125,139,149,187,197,208,620],allow:[19,149],alpha:147,also:149,altern:[10,189],amount:149,amp:501,amp_client:489,amp_serv:502,analyz:8,android:211,ani:[15,130],annot:136,anoth:[44,128,141],ansi:[20,61,188,545],apach:207,api:[9,50,52,128,129,137,196,587,588,589,590,591,592,593,594],app:[194,197],appear:149,append:136,appli:[81,152,376],approach:110,april:0,arbitrari:29,area:[105,191],arg:[172,186],arg_regex:23,argument:[29,139,143,186],armi:179,armor:[155,157],around:[134,152,155],arx:189,arxcod:189,ascii:[20,99,105],ask:[23,29],asset:150,assign:[23,58],assort:[16,21,23,29,47,55,63,183],async:55,asynchron:55,at_look:83,at_object_cr:[139,157],attach:[10,44,46],attack:[149,191],attribut:[9,14,51,131,136,139,145,157,540,577],attributeproperti:[14,139],audit:[77,126,445,446,447,448],aug:0,auto:[7,33],autodoc:128,automat:[1,198],avail:[25,46,110],awar:171,aws_s3_cdn:262,awsstorag:[76,126,261,262,263],backend:600,backtrack:151,ban:56,bank:149,bar:98,bare:157,barter:[78,126,149,312,313,314],base:[0,1,43,91,106,112,120,124,149,157,178,187],base_system:[126,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],basic:[15,16,24,53,81,82,99,100,130,191,192,193,204],batch:[15,16,17,79,546],batchcod:15,batchprocess:241,batchprocessor:[126,397,398,546],battl:120,begin:150,beginn:[132,142,148,158,164,166,176],behavior:19,best:186,beta:147,between:[15,29,49],black:7,block:[15,124,128,172],blockquot:128,blurb:54,board:149,bodyfunct:[126,399,400,401],bold:128,boot:56,bootstrap:[18,57],border:18,bot:229,branch:[12,29],brief:197,briefli:70,broken:149,buff:[81,126,375,376,377,378],bug:12,build:[51,58,82,105,128,134,140,147,149,169,179,180,182,242],build_techdemo:403,build_world:404,builder:[104,149],building_menu:[126,264,265,266],built:149,bulletin:149,busi:184,button:[18,114,134],cach:81,calendar:175,call:[23,100,139],call_ev:100,callabl:32,callback:[52,100,101,102],callbackhandl:284,caller:29,can:[12,14,82,125,130,140,144,145,149,179],cannot:149,capabl:[149,187],capcha:194,card:18,care:219,carri:[149,170],cast:323,categori:83,caveat:[15,16,49,61,211],certain:136,certif:208,chain:100,chair:[140,149],chang:[0,1,9,51,54,66,71,83,94,100,102,128,139,149,152,169,175,193,219,220],changelog:[0,2],channel:[19,131,135,149,169,201,202,203,613],charact:[1,19,32,39,51,83,99,101,131,135,139,140,141,147,149,151,152,156,169,177,191,194,195,206,405,614],character_cr:[126,379,380,381,382],charcreat:83,chargen:[191,406],chat:19,cheat:6,check:[14,35,41,76,81,161,215],checkout:12,checkpoint:194,children:144,choic:[82,83],choos:[83,152,205],clean:189,clickabl:60,client:[52,67,70,74,132,206,217,494],client_opt:34,close:217,cloth:[84,126,315,316,317],cloud9:217,cmdhandler:233,cmdparser:234,cmdset:[133,141,235],cmdset_account:243,cmdset_charact:244,cmdset_sess:245,cmdset_unloggedin:246,cmdsethandl:236,code:[1,2,6,7,12,14,15,19,20,27,37,38,44,71,82,90,100,127,128,133,135,136,143,147,149,163,177,184,207,322,546],coin:149,collabor:168,colon:196,color:[18,20,54,61,85,143,188],color_markup:[126,267,268,269],colour:61,combat:[178,191],combat_turnbas:407,comfort:212,comm:[109,247,255,256,257,258,578],command:[0,1,6,7,9,12,16,21,22,23,24,25,26,33,44,82,83,94,99,100,109,122,129,132,133,134,138,139,140,141,143,153,169,170,171,172,173,174,175,178,180,186,191,204,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,285,303,364,408,546],comment:[121,144,182],commit:12,commom:54,common:[12,39],commun:[15,200],complet:35,complex:82,compon:[18,24,86,126,270,271,272,273,274,275,371],comprehens:140,comput:217,con:86,concept:[62,149,178,182],conclud:[181,191],conclus:[82,105,135,136,137,139,140,143,149,150,152,186],condit:[1,81],conf:[138,220],config:[10,129],configur:[10,76,77,84,194,201,202,203,204,205,207,208,210,222],confus:215,congratul:147,conjug:571,connect:[9,25,151,155,201,202,203,204,209,217],connection_screen:[280,292],connection_wizard:490,conson:110,consum:157,contain:[44,212,547],context:81,continu:[3,4,5],contrib:[0,11,86,125,126,131,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,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462],contribut:[12,126,127,128,129,620],control:12,convert:[32,186],cooldown:[87,126,171,318,319,320],coordin:181,copi:207,core:[11,24,62,129,131,167],cost:76,count_slot:155,counter:[118,395],cprofil:8,craft:[88,126,149,321,322,323,324],crafter:88,creat:[4,9,13,20,23,39,49,56,69,81,100,102,105,129,133,134,135,139,143,149,152,157,164,165,180,191,194,196,197,212,548],create_object:139,createnpc:191,creation:150,creator:83,creatur:212,credit:[139,140,146,155,157],crop:20,crossov:171,current:[6,175],custom:[11,19,29,32,33,35,45,50,51,52,54,55,63,72,74,81,82,88,89,110,133,168,174,175,196,390],custom_gametim:[126,276,277,278],customis:[123,362],dai:149,data:[10,14,29,45,53,63,187],databas:[9,33,43,69,129,136,139,189,205,223],dbfield:272,dbref:[49,145],dbserial:549,deal:44,death:[149,161],debug:[6,15,219],debugg:10,dec:0,decid:149,decor:[29,55],dedent:20,dedic:194,deep:176,deeper:88,defaultobject:9,defeat:149,defin:[21,23,29,32,35,44,69,124,192],definit:35,delai:[20,44,55,172],delimit:1,demo:147,deni:100,depend:[59,76,97,189],deploi:212,deprec:[128,491],desc:[29,118,395],descer:168,descript:[94,149],design:93,detail:[76,94,111,123,124,176,194,196,197,362],detect:149,dev:200,develop:[2,168,210,212,218,219,620],dialogu:101,dice:[90,126,161,169,383,384,385],dictionari:29,diff:12,differ:[49,59,149,167],diku:167,dir:[11,12,132,138,189,210,216],direct:128,director:59,directori:[217,220],disabl:[100,219],displai:[20,175,182,206],distribut:0,dive:176,django:[0,35,74,131,136,194,196,218],doc:128,docker:[212,223],docstr:[7,128,144],document:[127,128,620],doe:149,doing:150,don:[15,130,212],donat:127,done:146,down:[124,134,180],dummyrunn:[8,523],dummyrunner_set:524,dungeon:[154,409],durat:81,dure:218,dynam:[23,29,154,182],each:[145,149],easi:[95,119],echo:34,economi:149,edit:[27,82,100,128,191],editnpc:191,editor:[27,100,132],effici:171,elarion:110,elev:102,els:149,email:91,email_login:[126,279,280,281,282],emoji:99,emot:112,emul:167,encod:[17,72],encrypt:217,end:110,enemi:149,enforc:149,engin:150,enough:[146,149],enter:180,entir:102,entit:24,entiti:149,entri:[33,134],equip:[155,411],equipmenthandl:155,error:[44,133,143,174,218,615],escap:32,evadventur:[92,126,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],eval:128,eveditor:[27,550],even:[88,99],evennia:[0,2,3,6,7,9,10,11,12,32,43,50,52,57,65,66,75,76,99,100,108,112,121,125,128,130,137,143,149,151,167,168,169,186,188,189,200,201,202,203,204,205,207,209,210,211,212,216,217,218,221,223,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,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620],evennia_launch:492,event:[100,101,102,175],eventfunc:[100,286],everi:173,everyth:[82,155],evform:[28,169,551],evmenu:[0,1,29,83,152,552],evmor:[30,553],evscaperoom:[93,126,302,303,304,305,306,307,308,309,310],evtabl:[1,31,169,554],examin:[6,100,139],exampl:[6,27,29,32,35,41,44,52,54,71,79,80,82,83,85,86,87,88,101,104,113,114,117,123,124,137,158,177,178,181,187,217,362,365,390,546],example_batch_cod:398,example_menu:381,example_recip:323,except:140,execut:6,exist:[49,149,216],exit:[1,23,39,102,116,135,174,358],expand:[118,155,178,180,395],experi:149,explan:82,explor:137,extend:[62,94,124,136,196],extended_room:[126,345,346,347],extern:[128,219],extra:[81,94,100,139,140,146,155,157],fail:[149,215],familiar:[167,168],fantasi:110,faq:1,faster:11,featur:[12,62,74,92,94,99,197,380],feb:0,feel:167,field:[95,131,136],fieldfil:[126,449,450],fight:149,figur:133,file:[15,16,17,33,128,220,221,546],filehelp:464,fill:20,fillabl:95,filter:588,find:[143,145,181],finish:172,firewal:219,first:[82,101,102,124,139,143,168],fix:[12,173],flat:[9,54],flexibl:128,flow:[53,149],flower:149,folder:[163,189],forbidden:12,foreground:218,forget:9,form:[18,54,95,149,194,608],formal:149,format:[29,143],found:[215,218],framework:[120,196,200],fresh:132,friarzen:0,from:[1,9,29,33,52,90,105,130,134,143,194,212,217,552],front:[54,193,207],frontpag:579,full:[82,86,197],full_system:[126,301,302,303,304,305,306,307,308,309,310],func:[41,172],funcpars:[32,151,555],funcparser_cal:32,further:[55,193,207],futur:179,gain:149,game:[0,11,12,14,19,20,33,44,54,93,97,100,103,105,130,132,138,147,149,150,153,157,158,159,160,162,168,169,175,177,181,189,191,193,198,200,209,210,212,216,217,220,322],game_index_cli:[493,494,495],game_system:[126,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],gamedir:128,gameim:89,gameplai:146,gametim:[175,556],gaug:[118,395],gendersub:[96,126,325,326,327],gener:[0,18,62,81,82,110,113,149,152,154,161,191,194,200,248,552],general_context:601,get:[12,29,81,100,127,134,136,155,158,208],get_client_opt:34,get_input:29,get_inputfunc:34,get_valu:34,giant:179,git:[12,97,131,213,215,223],git_integr:[126,451,452,453],github:131,give:[127,149,170],given:47,global:[129,149,186],global_script:44,glone:12,glossari:131,gmcp:70,godhood:134,golden:0,goldenlayout:52,good:144,googl:194,grant:[51,169],grapevin:[201,503],graphic:143,grid:[124,126,182,206,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],group:[136,192],guest:64,guid:189,guidelin:125,had:146,hand:157,handl:[56,149,155,197,218,219],handler:[46,81,129,178,187,376],haproxi:208,have:[142,144,149,191],head:128,heal:161,health:98,health_bar:[126,386,387,388],hello:143,help:[2,33,127,134,197,249,463,464,465,466,467,580,616],helper:81,here:[130,139],hidden:149,hide:149,hierarchi:[41,149,169],hint:[8,44,66,121,146,207,219,223],hit:133,hold:141,holder:273,hook:49,host:217,hous:134,how:[13,23,39,49,72,86,127,149,152,158,169,212],howto:[176,620],html:[52,54,165,194],http:[207,217],human:149,idea:78,idmapp:[557,558,559,560],imag:[212,219],implement:[123,149,177,362],improv:[149,197],index:[0,126,194,197,209,210,617],infinit:149,influenc:149,info:[78,218,620],inform:[83,200,217],infrastructur:177,ingame_map_displai:[126,348,349,350],ingame_python:[126,283,284,285,286,287,288,289,290],ingo:67,inherit:[43,75,144,151],inherits_from:20,init:[12,137,139],initi:[0,1,152,178,192,205,210],initial_setup:496,inlin:[32,151],input:[23,29,32,70,77,141,143],inputfunc:[34,67,497],instal:[76,77,78,82,83,84,85,86,87,89,90,91,92,93,94,96,97,99,100,103,104,106,107,108,109,110,111,112,115,116,117,118,121,122,123,124,189,192,194,205,207,208,210,211,212,213,215,216,217,222,223,322,358,376,384,395],instanc:[23,49,69,144],instead:207,intal:88,integr:[2,3,4,5,97],interact:[15,16,55,143,214],interest:200,interfac:219,intern:128,internation:[0,66],internet:217,interpret:10,interrupt:124,intro:143,intro_menu:439,introduct:[29,93,130,144,194],invent:139,inventori:170,ipython:143,irc:[202,504],isol:210,issu:206,ital:128,item:[147,157],itself:140,jan:0,join:19,jumbotron:18,just:[130,149],kei:[29,43,82,95,145],keyword:[101,139],kill:[149,218],kind:149,knave:161,know:[130,219],known:149,kwarg:172,languag:[29,66,112,390],larg:149,latest:212,latin:1,launch:[27,29],launchcmd:366,layout:[0,57,125],learn:[130,200],leav:180,legaci:109,legend:[124,371],length:110,lesson:[142,148,158,164,166],let:[6,15,136,197,217],librari:[137,216],licens:[76,199],life:222,lift:56,like:[15,122,149,167,191],limit:[15,16,149,170],line:[6,27,132,136,143],link:[51,60,124,128,135,200],lint:7,linux:[4,213,215,218],list:[3,6,128,136,139,140,141,149],list_nod:29,listen:183,literatur:200,live:[151,218],load:187,local:[128,186],localhost:215,locat:[145,173,215],locations_set:136,lock:[0,14,33,35,41,141,180,468,469,470],lockdown:217,lockfunc:[140,469],lockhandl:470,log:[12,19,20,138,143,189,197,210,217,219],logfil:10,logger:561,login:[34,64,91,106],logo:[54,193],longer:101,look:[33,134,149,167,191],lookup:[129,136],loop:139,loot:149,mac:[213,215,218],machin:217,magic:[9,157],mai:[0,149],mail:[103,126,328,329,330],main:[7,128,129,145,152],make:[11,20,93,133,134,139,140,143,149,161,168,169,171,172,179,180,184,187,191],manag:[14,41,52,230,257,465,472,481,498,541,558],manual:[149,209],map:[99,104,105,121,124,182,371],mapbuild:[126,351,352,353],mapper:182,march:0,mariadb:[205,223],markup:[85,545],mass:170,master:[149,169],match:[9,141],matter:[144,149],max_slot:155,mccp:505,mean:149,mech:179,mechan:149,memori:14,memplot:525,menu:[20,29,82,106,119,152,184,304,476,552],menu_login:[126,291,292,293,294],merchant:184,merg:[12,21],messag:[1,52,59,67,70,102,190],messagepath:67,method:[7,9,23,44,81,139,143,185],middlewar:602,migrat:[131,192,223],minimap:105,mirror:[126,431,432],miss:174,mixin:[151,420,618],mob:[149,440],mock:161,mod:81,mod_ssl:207,mod_wsgi:207,mode:[15,16,45,68,131,217,218],model:[11,69,129,194,231,258,466,473,482,499,542,559],modif:169,modifi:[54,81,139,173,207,376],modul:[7,43,143,161,163,177,178],monitor:34,monitorhandl:[36,483],moral:161,more:[35,43,57,59,61,74,88,126,128,129,141,149,168,176],motiv:150,move:[1,140,155,180],msdp:70,msg:[37,67,133],mssp:506,mud:132,multi:[110,141,143,144,149,168],multidesc:[108,126,168,331,332,333],multipl:[14,81,83,149],multisess:[45,68,131],multivers:128,mush:[168,191],must:149,mutabl:[9,14],mux:73,mux_comms_cmd:[126,295,296,297],muxcommand:250,mxp:507,mygam:358,mysql:[205,223],myst:128,nakku:110,name:[9,56,83,110,139,149,152,210],name_gener:[126,454,455,456],namegen:455,nattribut:14,naw:508,need:[102,130,132,141,149],nest:82,next:[168,196,204,210],nick:38,nicknam:12,night:149,node:[29,124,152],non:[1,14,156,171,209,214],nop:206,note:[11,16,17,21,23,29,33,38,47,52,53,55,63,80,91,106,116,121,128,183,207,358],nov:0,npc:[78,117,149,156,183,184,185,191,412],number:186,numer:149,obfusc:112,obinson:110,obj:41,object:[1,9,14,20,35,39,44,45,47,51,59,83,105,131,134,135,136,139,141,143,144,145,147,149,157,170,180,185,187,305,413,441,471,472,473,474,581,619],obtain:194,oct:0,off:[1,149],offici:200,olc:43,old:176,older:0,onc:[100,146],one:[128,149,181],onli:[128,136,149,172,218,219],onlin:[12,217,222],oob:70,oop:144,open:184,oper:[55,102],oppos:161,option:[29,82,83,95,124,169,186,210,217,218,219],optionclass:562,optionhandl:563,origin:12,other:[12,23,44,51,54,59,93,143,145,149,157,200,205,217,220],our:[71,82,102,133,139,143,147,149,180,194,197],ourselv:139,out:[49,63,133,145,149,169],outgo:67,output:[19,77,446],outputcommand:70,outputfunc:40,over:217,overal:177,overload:[49,74],overrid:[9,170],overview:[0,4,69,124,137,138,178,193],own:[13,23,34,39,52,63,93,110,118,143,149,196,212,217,395],page:[54,74,83,165,193,197],paramet:100,parent:[69,100,168,171],pars:[1,65,141,143,186],parser:32,part:[132,142,148,158,164,166],parti:[2,200],pass:143,patch:161,path:[15,67,138],pathfind:124,paus:[23,102,172],pdb:6,penalti:149,percent:[118,395],perman:149,permiss:[35,41,47,58,100,169,192,196,589],perpetu:147,persist:[14,27,133,139,171,187],person:[134,149],philosophi:93,physic:149,picklefield:564,pictur:194,pip:[131,192,210,223],place:128,plai:[93,149],plan:[105,147,149],player:[149,151,156,168],playtim:81,plugin:52,pop:136,port:[217,219],portal:[0,42,45,67,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521],portalsess:67,portalsessionhandl:[67,510],possibl:172,post:149,postgresql:[205,223],practic:[186,219],prefix:23,prerequisit:[4,211],presenc:185,prevent:1,prioriti:[33,81],prison:149,privileg:149,pro:86,problem:71,process:[55,62,218],processor:[15,16,17,79,546],product:212,profil:[8,522,523,524,525,526,527,528,529],program:[6,130],project:[4,10],prompt:[29,173],pron:59,pronoun:572,prop:149,properti:[13,14,19,21,23,29,37,39,45,47,49,124,131,136],protfunc:[43,477],protocol:[0,63,70],prototyp:[0,43,124,367,475,476,477,478,479],proxi:[207,217,219],pseudo:113,pudb:6,pull:12,puppet:131,push:[12,134],put:[12,197,208],puzzl:[111,126,334,335,336],pvp:149,pycharm:[7,10],python:[15,100,130,138,143,144,168,200],quell:[41,58,141],queri:[49,136,139],queryset:136,quest:[149,159,187,414],quick:[4,81,149],quiet:186,quirk:9,race:[149,151],rais:140,random:[110,113,152],random_string_gener:[126,457,458,459],random_t:415,rate:[118,395],react:185,read:[55,61,74,193],real:[15,110],reboot:218,recapcha:194,receiv:[59,63,70],recip:[88,322,323],recog:59,red:114,red_button:[126,433,434],refer:[1,128],referenc:59,regard:100,regist:[210,217],registri:113,regular:149,rel:[137,145],relat:[100,175,176],releas:147,relev:217,reli:15,reload:[1,9,144,207,218],remark:191,rememb:[9,128],remind:197,remot:[205,217],remov:[1,47,81,100,141,155],repair:149,repeat:[29,34,44],replac:141,repositori:[12,131],reput:149,requir:[0,95,210,215],reset:[205,218,223],reshuffl:134,resourc:200,respawn:149,rest:[50,140,196],restart:[207,210],restrict:19,retriev:14,role:[149,169],roleplai:[59,112,149,169],roll:[90,161],roller:[90,161,169],rom:167,room:[1,39,94,102,105,121,135,147,149,160,169,181,182,190,306,416,442],root:590,router:124,rpg:[126,149,200,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395],rplanguag:390,rpsystem:[126,389,390,391,392],rss:[203,511],rst:128,rule:[21,110,149,161,177,178,417],run:[6,10,11,23,49,130,145,163,192,207,211,212,222],runner:11,safe:32,safeti:15,said:183,same:[29,101],samplebuff:377,save:[14,155,161,187],score:191,screen:25,script:[44,80,100,131,135,180,287,307,480,481,482,483,484,485,486,487,582],scripthandl:484,search:[20,21,47,69,129,136,145,181,186,565],searching_cal:32,season:149,secret:194,section:620,secur:[100,207,219],see:[9,100,197,210],select:[1,119],self:186,send:[59,63,70,143],separ:[82,140,149],sept:0,serial:[196,591],server:[0,42,45,62,66,138,191,205,207,210,217,220,222,447,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,583],serversess:[67,531],serversessionhandl:67,servic:495,session:[45,67,131,169,532],sessionhandl:[45,533],set:[0,10,12,21,29,35,76,93,97,99,110,139,141,149,175,182,189,191,192,196,201,202,203,204,209,217,219,220,221],setpow:191,settings_default:538,settings_mixin:526,setup:[4,189,205,214,215,217,222,620],sever:[101,181,186],sharedmemorymodel:69,sheet:[6,152,169],shoot:179,shop:[162,184,418],shortcut:129,should:149,show:[152,166,182,191],side:52,sidebar:128,signal:[46,274,534],silversmith:110,similar:149,simpl:[6,8,29,35,44,82,110,149,165],simpledoor:[115,126,354,355,356],singl:[14,174],singleton:129,sit:140,site:[74,131],sitekei:194,skill:[88,149,150],slot:[94,155],slow:116,slow_exit:[126,357,358,359],soft:71,softcod:[71,168],solut:71,solv:149,some:[41,143,149,167,181],someth:[149,176],somewher:130,sort:149,sourc:[10,33,128],space:[18,139],spawn:[43,168],spawner:[43,479],special:[32,149],specif:7,speed:175,spell:323,spuriou:206,sql:136,sqlite3:[205,223],ssh:[70,219,512],ssl:[217,513],stack:149,staff:149,stanc:59,standard:[0,73,175],start:[81,83,100,110,169,189,210,212,218],stat:198,state:[152,308],statement:133,statu:[12,149,218],status:149,step:[134,147,168,189,194,196,201,202,203,204,210,211],stop:[210,218],storabl:187,storag:[29,44,187],store:[14,29,43,149,152],strength:81,strikaco:0,string:[35,124,143,186,552],strip:186,structur:[100,128,151,163],studi:102,stuff:[130,134,191],style:[7,18,54,110,122],sub:82,subclass:39,submit:125,subtop:33,succe:149,suggest:217,suit:11,suitabl:125,summari:[56,129,133,141,144,145,151,155,161,163,213],superus:41,support:[70,99,206],suppress_ga:514,surround:6,swap:[49,152],sword:[141,323],syllabl:110,synchron:55,syntax:[128,168,218,546],syscommand:251,system:[22,23,33,35,57,59,76,78,88,91,100,103,106,111,112,120,123,147,149,176,177,178,191,197,252],tabl:[20,69,128,152,161],tag:[47,65,94,131,145,157,181,188,543,584],take:172,talk:117,talking_npc:[126,435,436,437],taskhandl:486,tb_basic:338,tb_equip:339,tb_item:340,tb_magic:341,tb_rang:342,teamciti:4,tech:147,technic:[33,76,78,93,114,434],teleport:124,telnet:[70,206,217,219,515],telnet_oob:516,telnet_ssl:517,templat:[4,29,95,194,196,197,552],templatetag:[595,596],tempmsg:37,temporari:29,term:144,termux:211,test:[8,11,94,130,143,151,155,157,161,163,191,253,263,266,269,275,278,282,288,294,297,299,309,314,317,320,324,327,330,333,336,343,347,350,353,356,359,361,368,378,382,385,388,392,394,401,419,420,421,422,423,424,425,426,427,428,429,437,443,448,453,456,459,461,518,528,560,573,592,603,609],test_charact:421,test_chargen:422,test_combat:423,test_command:424,test_dungeon:425,test_equip:426,test_queri:527,test_quest:427,test_resourc:566,test_rul:428,test_util:429,text2html:[52,567],text:[20,29,34,62,65,72,128,132,143,193],than:149,thei:149,them:149,theori:186,thi:[150,172,197],thing:[9,128,132,135,139,144,145,149,155,167,168],third:[2,200],those:149,thror:110,throttl:535,through:212,tick:[81,376],ticker:[48,131],tickerhandl:[48,487],tie:169,time:[20,23,44,71,94,100,149,172,175],time_format:20,timer:[8,44],timetrac:529,titl:[51,54],to_byt:20,to_str:20,togeth:[152,187,197,208],tool:[7,20,24,56,200],track:149,train:180,trait:[118,126,393,394,395],traithandl:[118,395],traitproperti:[118,395],transit:124,translat:[0,66],travi:5,treat:15,tree:[119,149,323],tree_select:[126,460,461,462],trigger:[81,376],troubleshoot:[12,211,215],ttype:519,tupl:[139,141],turn:[1,9,120,178],turnbattl:[126,337,338,339,340,341,342,343],tutori:[3,100,101,102,121,126,132,142,146,147,148,149,158,164,166,176,178,191,195,197,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,440,441,442,443,620],tutorial_world:[126,438,439,440,441,442,443],tutorialmirror:107,tweet:[198,204],twist:131,twitter:204,two:104,type:[13,14,39,118,157,395],typeclass:[0,9,49,75,100,129,131,133,138,139,140,145,168,289,358,539,540,541,542,543],under:12,understand:188,ungm:169,unimpl:224,uninstal:[76,146],unit:[11,151,155],univers:185,unix:122,unixcommand:[126,298,299,300],unloggedin:254,unmonitor:34,unquel:141,unrepeat:34,updat:[1,49,139,223],upgrad:216,upload:219,upstream:12,url:[128,165,192,194,196,197,585,593,597,605,610],usag:[15,16,27,50,51,78,79,82,83,84,88,89,90,95,96,97,98,104,110,111,112,113,115,123,124,205,362,380,384,390],use:[9,19,48,130,149],used:[23,323],useful:[23,93],user:[12,23,54,58,66,167,168,197,219],using:[6,12,102,139,143,145],utf:99,util:[0,10,18,20,23,24,32,126,129,163,172,290,310,369,430,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,467,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,586,598,599,600,601,602,603],valid:[35,155,536],validate_slot_usag:155,validatorfunc:569,valu:[29,43,149],vanilla:149,variabl:[6,100],variant:140,verb_conjug:[570,571,572,573],verbatim:128,version:[12,76,128],versu:55,vhost:207,via:149,view:[19,74,81,165,194,195,196,197,217,594,606,611,612,613,614,615,616,617,618,619],viewpoint:59,viewset:196,virtualenv:[131,213,215],vocabulari:100,voic:102,volum:149,vowel:110,wai:[29,124,141,143],want:[130,148,149,176,212,219],warn:[100,128],weapon:[149,155,157],weather:[149,190],web:[0,9,24,51,52,54,62,70,74,138,165,176,194,195,217,219,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619],webclient:[0,53,520,604,605,606],webclient_ajax:521,webclient_gui:52,webpag:54,webserv:[53,207,219,537],websit:[54,74,192,193,607,608,609,610,611,612,613,614,615,616,617,618,619],websocket:207,weight:[149,170],werewolf:136,what:[14,57,125,130,142,144,145,148,149,150,152,164,183,186,196,212,223],when:[1,9,48],where:[130,137,150],whisper:112,whitespac:144,who:[23,133],why:[139,170,174],wiki:192,wilder:[123,126,360,361,362],willing:130,window:[66,189,213,215],wizard:209,word:110,work:[23,49,76,100,124,130,149,152,172,186,197,212],workaround:206,world:[121,134,138,143,146,147,149,166],write:[11,52,63,128],xterm256:[61,188],xymap:[124,370],xymap_legend:371,xyzexit:124,xyzgrid:[124,126,181,363,364,365,366,367,368,369,370,371,372,373],xyzroom:[124,373],yield:[29,172],you:[130,132,140,141,146,149,219,223],your:[9,11,12,13,23,34,39,52,58,63,69,71,93,110,118,133,134,138,149,150,152,157,163,181,185,192,194,196,212,215,216,217,219,223,395],yourself:[134,147],yrinea:110,zcoord:124,zone:75}})
\ No newline at end of file