diff --git a/models/model.html b/models/model.html index 69b9f9b024..c9d016a13f 100644 --- a/models/model.html +++ b/models/model.html @@ -441,11 +441,14 @@ what table to use and how we can find the required records:

} -

$table

+
+

$table

Specifies the database table that this model primarily works with. This only applies to the built-in CRUD methods. You are not restricted to using only this table in your own queries.

-

$primaryKey

+
+
+

$primaryKey

This is the name of the column that uniquely identifies the records in this table. This does not necessarily have to match the primary key that is specified in the database, but is used with methods like find() to know what column to match the specified value to.

@@ -454,7 +457,9 @@ is used with methods like All Models must have a primaryKey specified to allow all of the features to work as expected.

-

$useAutoIncrement

+
+
+

$useAutoIncrement

Specifies if the table uses an auto-increment feature for $primaryKey. If set to false then you are responsible for providing primary key value for every record in the table. This feature may be handy when we want to implement 1:1 relation or use UUIDs for our model. The @@ -465,13 +470,17 @@ default value is tr key in the database to unique. This way you will make sure that all of Model’s features will still work the same as before.

-

$returnType

+
+
+

$returnType

The Model’s CRUD methods will take a step of work away from you and automatically return the resulting data, instead of the Result object. This setting allows you to define the type of data that is returned. Valid values are ‘array’ (the default), ‘object’, or the fully qualified name of a class that can be used with the Result object’s getCustomResultObject() method.

-

$useSoftDeletes

+
+
+

$useSoftDeletes

If true, then any delete() method calls will set deleted_at in the database, instead of actually deleting the row. This can preserve data when it might be referenced elsewhere, or can maintain a “recycle bin” of objects that can be restored, or even simply preserve it as @@ -480,58 +489,90 @@ the withDeleted()This requires either a DATETIME or INTEGER field in the database as per the model’s $dateFormat setting. The default field name is deleted_at however this name can be configured to any name of your choice by using $deletedField property.

-

$allowedFields

+
+
+

$allowedFields

This array should be updated with the field names that can be set during save(), insert(), or update() methods. Any field names other than these will be discarded. This helps to protect against just taking input from a form and throwing it all at the model, resulting in potential mass assignment vulnerabilities.

-

$useTimestamps

+
+
+

$useTimestamps

This boolean value determines whether the current date is automatically added to all inserts and updates. If true, will set the current time in the format specified by $dateFormat. This requires that the table have columns named created_at and updated_at in the appropriate data type.

-

$createdField

+
+
+

$createdField

Specifies which database field to use for data record create timestamp. Leave it empty to avoid updating it (even if $useTimestamps is enabled).

-

$updatedField

+
+
+

$updatedField

Specifies which database field should use for keep data record update timestamp. Leave it empty to avoid update it (even $useTimestamps is enabled).

-

$dateFormat

+
+
+

$dateFormat

This value works with $useTimestamps and $useSoftDeletes to ensure that the correct type of date value gets inserted into the database. By default, this creates DATETIME values, but valid options are: 'datetime', 'date', or 'int' (a PHP timestamp). Using useSoftDeletes or -useTimestamps with an invalid or missing dateFormat will cause an exception.

-

$validationRules

+useTimestamps with an invalid or missing dateFormat will cause an exception.

+
+
+

$validationRules

Contains either an array of validation rules as described in How to save your rules or a string containing the name of a validation group, as described in the same section. Described in more detail below.

-

$validationMessages

+
+
+

$validationMessages

Contains an array of custom error messages that should be used during validation, as described in Setting Custom Error Messages. Described in more detail below.

-

$skipValidation

+
+
+

$skipValidation

Whether validation should be skipped during all inserts and updates. The default value is false, meaning that data will always attempt to be validated. This is primarily used by the skipValidation() method, but may be changed to true so this model will never validate.

-

$beforeInsert -$afterInsert -$beforeUpdate -$afterUpdate -$afterFind -$afterDelete

+
+
+

$beforeInsert

+
+
+

$afterInsert

+
+
+

$beforeUpdate

+
+
+

$afterUpdate

+
+
+

$afterFind

+
+
+

$afterDelete

These arrays allow you to specify callback methods that will be run on the data at the time specified in the property name.

-

$allowCallbacks

+
+
+

$allowCallbacks

Whether the callbacks defined above should be used.

+

Working With Data

Finding Data

Several functions are provided for doing basic CRUD work on your tables, including find(), insert(), update(), delete() and more.

-

find()

+
+

find()

Returns a single row where the primary key matches the value passed in as the first parameter:

<?php
 
@@ -548,7 +589,9 @@ of just one:

If no parameters are passed in, will return all rows in that model’s table, effectively acting like findAll(), though less explicit.

-

findColumn()

+
+
+

findColumn()

Returns null or an indexed array of column values:

<?php
 
@@ -556,7 +599,9 @@ like findAll()

$column_name should be a name of single column else you will get the DataException.

-

findAll()

+
+
+

findAll()

Returns all results:

<?php
 
@@ -577,7 +622,9 @@ parameters, respectively:

$users = $userModel->findAll($limit, $offset);
-

first()

+
+
+

first()

Returns the first row in the result set. This is best used in combination with the query builder.

<?php
 
@@ -585,7 +632,9 @@ parameters, respectively:

->first();
-

withDeleted()

+
+
+

withDeleted()

If $useSoftDeletes is true, then the find*() methods will not return any rows where ‘deleted_at IS NOT NULL’. To temporarily override this, you can use the withDeleted() method prior to calling the find*() method.

<?php
@@ -597,7 +646,9 @@ To temporarily override this, you can use the $allUsers = $userModel->withDeleted()->findAll();
 
-

onlyDeleted()

+
+
+

onlyDeleted()

Whereas withDeleted() will return both deleted and not-deleted rows, this method modifies the next find*() methods to return only soft deleted rows:

<?php
@@ -606,9 +657,11 @@ the next find*() methods to return only soft deleted rows:

+

Saving Data

-

insert()

+
+

insert()

An associative array of data is passed into this method as the only parameter to create a new row of data in the database. The array’s keys must match the name of the columns in a $table, while the array’s values are the values to save for that key:

@@ -622,7 +675,9 @@ the array’s values are the values to save for that key:

$userModel->insert($data); -

update()

+
+
+

update()

Updates an existing record in the database. The first parameter is the $primaryKey of the record to update. An associative array of data is passed into this method as the second parameter. The array’s keys must match the name of the columns in a $table, while the array’s values are the values to save for that key:

@@ -656,7 +711,9 @@ update command, with the added benefit of validation, events, etc:

->update(); -

save()

+
+
+

save()

This is a wrapper around the insert() and update() methods that handle inserting or updating the record automatically, based on whether it finds an array key matching the primary key value:

<?php
@@ -752,9 +809,11 @@ model’s save()
 
+

Deleting Data

-

delete()

+
+

delete()

Takes a primary key value as the first parameter and deletes the matching record from the model’s table:

<?php
 
@@ -776,7 +835,9 @@ previously:

$userModel->where('id', 12)->delete();
-

purgeDeleted()

+
+
+

purgeDeleted()

Cleans out the database table by permanently removing all rows that have ‘deleted_at IS NOT NULL’.

<?php
 
@@ -784,6 +845,7 @@ previously:

+

Validating Data

For many people, validating data in the model is the preferred way to ensure the data is kept to a single @@ -1107,14 +1169,17 @@ provides methods that allow you to do just that.

These methods only change the return type for the next find*() method call. After that, it is reset to its default value.

-

asArray()

+
+

asArray()

Returns data from the next find*() method as associative arrays:

<?php
 
 $users = $userModel->asArray()->where('status', 'active')->findAll();
 
-

asObject()

+
+
+

asObject()

Returns data from the next find*() method as standard objects or custom class intances:

<?php
 
@@ -1126,6 +1191,7 @@ it is reset to its default value.

+

Processing Large Amounts of Data

Sometimes, you need to process large amounts of data and would run the risk of running out of memory. diff --git a/searchindex.js b/searchindex.js index 28085f74ab..f5c23ce9cd 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["changelogs/index","changelogs/v4.0.0","changelogs/v4.0.0-alpha.1","changelogs/v4.0.0-alpha.2","changelogs/v4.0.0-alpha.3","changelogs/v4.0.0-alpha.4","changelogs/v4.0.0-alpha.5","changelogs/v4.0.0-beta.1","changelogs/v4.0.0-beta.2","changelogs/v4.0.0-beta.3","changelogs/v4.0.0-beta.4","changelogs/v4.0.0-rc.1","changelogs/v4.0.0-rc.2","changelogs/v4.0.0-rc.3","changelogs/v4.0.0-rc.4","changelogs/v4.0.3","changelogs/v4.0.4","changelogs/v4.0.5","changelogs/v4.1.0","changelogs/v4.1.1","changelogs/v4.1.2","changelogs/v4.1.3","changelogs/v4.1.4","changelogs/v4.1.5","changelogs/v4.1.6","changelogs/v4.1.7","changelogs/v4.1.8","changelogs/v4.1.9","changelogs/v4.2.0","cli/cli","cli/cli_commands","cli/cli_generators","cli/cli_library","cli/cli_request","cli/index","concepts/autoloader","concepts/factories","concepts/http","concepts/index","concepts/mvc","concepts/security","concepts/services","concepts/structure","database/call_function","database/configuration","database/connecting","database/events","database/examples","database/helpers","database/index","database/metadata","database/queries","database/query_builder","database/results","database/transactions","database/utilities","dbmgmt/forge","dbmgmt/index","dbmgmt/migration","dbmgmt/seeds","extending/authentication","extending/basecontroller","extending/common","extending/contributing","extending/core_classes","extending/events","extending/index","general/ajax","general/caching","general/common_functions","general/configuration","general/environments","general/errors","general/helpers","general/index","general/logging","general/managing_apps","general/modules","general/urls","helpers/array_helper","helpers/cookie_helper","helpers/date_helper","helpers/filesystem_helper","helpers/form_helper","helpers/html_helper","helpers/index","helpers/inflector_helper","helpers/number_helper","helpers/security_helper","helpers/test_helper","helpers/text_helper","helpers/url_helper","helpers/xml_helper","incoming/content_negotiation","incoming/controllers","incoming/filters","incoming/incomingrequest","incoming/index","incoming/message","incoming/methodspoofing","incoming/request","incoming/restful","incoming/routing","index","installation/index","installation/installing_composer","installation/installing_manual","installation/repositories","installation/running","installation/troubleshooting","installation/upgrade_404","installation/upgrade_405","installation/upgrade_410","installation/upgrade_412","installation/upgrade_413","installation/upgrade_414","installation/upgrade_415","installation/upgrade_416","installation/upgrade_417","installation/upgrade_418","installation/upgrade_420","installation/upgrade_4xx","installation/upgrade_configuration","installation/upgrade_controllers","installation/upgrade_database","installation/upgrade_emails","installation/upgrade_encryption","installation/upgrade_file_upload","installation/upgrade_html_tables","installation/upgrade_localization","installation/upgrade_migrations","installation/upgrade_models","installation/upgrade_pagination","installation/upgrade_responses","installation/upgrade_routing","installation/upgrade_security","installation/upgrade_sessions","installation/upgrade_validations","installation/upgrade_view_parser","installation/upgrade_views","installation/upgrading","intro/credits","intro/index","intro/psr","intro/requirements","libraries/caching","libraries/cookies","libraries/curlrequest","libraries/email","libraries/encryption","libraries/files","libraries/honeypot","libraries/images","libraries/index","libraries/pagination","libraries/publisher","libraries/security","libraries/sessions","libraries/throttler","libraries/time","libraries/typography","libraries/uploaded_files","libraries/uri","libraries/user_agent","libraries/validation","license","models/entities","models/index","models/model","outgoing/alternative_php","outgoing/api_responses","outgoing/index","outgoing/localization","outgoing/response","outgoing/table","outgoing/view_cells","outgoing/view_decorators","outgoing/view_layouts","outgoing/view_parser","outgoing/view_renderer","outgoing/views","testing/benchmark","testing/controllers","testing/database","testing/debugging","testing/fabricator","testing/feature","testing/index","testing/mocking","testing/overview","testing/response","tutorial/conclusion","tutorial/create_news_items","tutorial/index","tutorial/news_section","tutorial/static_pages"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["changelogs/index.rst","changelogs/v4.0.0.rst","changelogs/v4.0.0-alpha.1.rst","changelogs/v4.0.0-alpha.2.rst","changelogs/v4.0.0-alpha.3.rst","changelogs/v4.0.0-alpha.4.rst","changelogs/v4.0.0-alpha.5.rst","changelogs/v4.0.0-beta.1.rst","changelogs/v4.0.0-beta.2.rst","changelogs/v4.0.0-beta.3.rst","changelogs/v4.0.0-beta.4.rst","changelogs/v4.0.0-rc.1.rst","changelogs/v4.0.0-rc.2.rst","changelogs/v4.0.0-rc.3.rst","changelogs/v4.0.0-rc.4.rst","changelogs/v4.0.3.rst","changelogs/v4.0.4.rst","changelogs/v4.0.5.rst","changelogs/v4.1.0.rst","changelogs/v4.1.1.rst","changelogs/v4.1.2.rst","changelogs/v4.1.3.rst","changelogs/v4.1.4.rst","changelogs/v4.1.5.rst","changelogs/v4.1.6.rst","changelogs/v4.1.7.rst","changelogs/v4.1.8.rst","changelogs/v4.1.9.rst","changelogs/v4.2.0.rst","cli/cli.rst","cli/cli_commands.rst","cli/cli_generators.rst","cli/cli_library.rst","cli/cli_request.rst","cli/index.rst","concepts/autoloader.rst","concepts/factories.rst","concepts/http.rst","concepts/index.rst","concepts/mvc.rst","concepts/security.rst","concepts/services.rst","concepts/structure.rst","database/call_function.rst","database/configuration.rst","database/connecting.rst","database/events.rst","database/examples.rst","database/helpers.rst","database/index.rst","database/metadata.rst","database/queries.rst","database/query_builder.rst","database/results.rst","database/transactions.rst","database/utilities.rst","dbmgmt/forge.rst","dbmgmt/index.rst","dbmgmt/migration.rst","dbmgmt/seeds.rst","extending/authentication.rst","extending/basecontroller.rst","extending/common.rst","extending/contributing.rst","extending/core_classes.rst","extending/events.rst","extending/index.rst","general/ajax.rst","general/caching.rst","general/common_functions.rst","general/configuration.rst","general/environments.rst","general/errors.rst","general/helpers.rst","general/index.rst","general/logging.rst","general/managing_apps.rst","general/modules.rst","general/urls.rst","helpers/array_helper.rst","helpers/cookie_helper.rst","helpers/date_helper.rst","helpers/filesystem_helper.rst","helpers/form_helper.rst","helpers/html_helper.rst","helpers/index.rst","helpers/inflector_helper.rst","helpers/number_helper.rst","helpers/security_helper.rst","helpers/test_helper.rst","helpers/text_helper.rst","helpers/url_helper.rst","helpers/xml_helper.rst","incoming/content_negotiation.rst","incoming/controllers.rst","incoming/filters.rst","incoming/incomingrequest.rst","incoming/index.rst","incoming/message.rst","incoming/methodspoofing.rst","incoming/request.rst","incoming/restful.rst","incoming/routing.rst","index.rst","installation/index.rst","installation/installing_composer.rst","installation/installing_manual.rst","installation/repositories.rst","installation/running.rst","installation/troubleshooting.rst","installation/upgrade_404.rst","installation/upgrade_405.rst","installation/upgrade_410.rst","installation/upgrade_412.rst","installation/upgrade_413.rst","installation/upgrade_414.rst","installation/upgrade_415.rst","installation/upgrade_416.rst","installation/upgrade_417.rst","installation/upgrade_418.rst","installation/upgrade_420.rst","installation/upgrade_4xx.rst","installation/upgrade_configuration.rst","installation/upgrade_controllers.rst","installation/upgrade_database.rst","installation/upgrade_emails.rst","installation/upgrade_encryption.rst","installation/upgrade_file_upload.rst","installation/upgrade_html_tables.rst","installation/upgrade_localization.rst","installation/upgrade_migrations.rst","installation/upgrade_models.rst","installation/upgrade_pagination.rst","installation/upgrade_responses.rst","installation/upgrade_routing.rst","installation/upgrade_security.rst","installation/upgrade_sessions.rst","installation/upgrade_validations.rst","installation/upgrade_view_parser.rst","installation/upgrade_views.rst","installation/upgrading.rst","intro/credits.rst","intro/index.rst","intro/psr.rst","intro/requirements.rst","libraries/caching.rst","libraries/cookies.rst","libraries/curlrequest.rst","libraries/email.rst","libraries/encryption.rst","libraries/files.rst","libraries/honeypot.rst","libraries/images.rst","libraries/index.rst","libraries/pagination.rst","libraries/publisher.rst","libraries/security.rst","libraries/sessions.rst","libraries/throttler.rst","libraries/time.rst","libraries/typography.rst","libraries/uploaded_files.rst","libraries/uri.rst","libraries/user_agent.rst","libraries/validation.rst","license.rst","models/entities.rst","models/index.rst","models/model.rst","outgoing/alternative_php.rst","outgoing/api_responses.rst","outgoing/index.rst","outgoing/localization.rst","outgoing/response.rst","outgoing/table.rst","outgoing/view_cells.rst","outgoing/view_decorators.rst","outgoing/view_layouts.rst","outgoing/view_parser.rst","outgoing/view_renderer.rst","outgoing/views.rst","testing/benchmark.rst","testing/controllers.rst","testing/database.rst","testing/debugging.rst","testing/fabricator.rst","testing/feature.rst","testing/index.rst","testing/mocking.rst","testing/overview.rst","testing/response.rst","tutorial/conclusion.rst","tutorial/create_news_items.rst","tutorial/index.rst","tutorial/news_section.rst","tutorial/static_pages.rst"],objects:{"":{"Table::addRow":[174,2,1,""],"Table::clear":[174,2,1,""],"Table::generate":[174,2,1,""],"Table::makeColumns":[174,2,1,""],"Table::setCaption":[174,2,1,""],"Table::setEmpty":[174,2,1,""],"Table::setFooting":[174,2,1,""],"Table::setHeading":[174,2,1,""],"Table::setTemplate":[174,2,1,""],"delete":[52,2,1,""],APPPATH:[69,0,1,""],DAY:[69,0,1,""],DECADE:[69,0,1,""],FCPATH:[69,0,1,""],HOUR:[69,0,1,""],MINUTE:[69,0,1,""],MONTH:[69,0,1,""],ROOTPATH:[69,0,1,""],SECOND:[69,0,1,""],SYSTEMPATH:[69,0,1,""],Table:[174,1,1,""],WEEK:[69,0,1,""],WRITEPATH:[69,0,1,""],YEAR:[69,0,1,""],__construct:[146,2,1,""],addColumn:[56,2,1,""],addField:[56,2,1,""],addForeignKey:[56,2,1,""],addKey:[56,2,1,""],addPrimaryKey:[56,2,1,""],addUniqueKey:[56,2,1,""],alternator:[90,3,1,""],anchor:[91,3,1,""],anchor_popup:[91,3,1,""],app_timezone:[69,3,1,""],appendBody:[98,2,1,""],appendHeader:[98,2,1,""],array_deep_search:[79,3,1,""],array_sort_by_multiple_keys:[79,3,1,""],ascii_to_entities:[90,3,1,""],attach:[148,2,1,""],audio:[84,3,1,""],autoTypography:[160,3,1,""],auto_link:[91,3,1,""],base_url:[91,3,1,""],cache:[69,3,1,""],call:[30,2,1,""],camelize:[86,3,1,""],character_limiter:[90,3,1,""],check:[158,2,1,""],clean:[145,2,1,""],clear:[148,2,1,""],convert_accented_characters:[90,3,1,""],cookie:[69,3,1,""],cookies:[69,3,1,""],countAll:[52,2,1,""],countAllResults:[52,2,1,""],counted:[86,3,1,""],createDatabase:[56,2,1,""],createKey:[149,4,1,""],createTable:[56,2,1,""],csp_script_nonce:[69,3,1,""],csp_style_nonce:[69,3,1,""],csrf_field:[69,3,1,""],csrf_hash:[69,3,1,""],csrf_header:[69,3,1,""],csrf_meta:[69,3,1,""],csrf_token:[69,3,1,""],current_url:[91,3,1,""],dasherize:[86,3,1,""],dataSeek:[53,2,1,""],db:[52,2,1,""],decrement:[52,2,1,""],decrypt:[149,2,1,""],deleteCookie:[173,2,1,""],delete_cookie:[80,3,1,""],delete_files:[82,3,1,""],directory_map:[82,3,1,""],directory_mirror:[82,3,1,""],distinct:[52,2,1,""],doctype:[84,3,1,""],dot_array_search:[79,3,1,""],dropColumn:[56,2,1,""],dropDatabase:[56,2,1,""],dropTable:[56,2,1,""],ellipsize:[90,3,1,""],embed:[84,3,1,""],emptyTable:[52,2,1,""],encode_php_tags:[88,3,1,""],encrypt:[149,2,1,""],entities_to_ascii:[90,3,1,""],env:[69,3,1,""],esc:[69,3,1,""],excerpt:[90,3,1,""],fail:[170,2,1,""],failForbidden:[170,2,1,""],failNotFound:[170,2,1,""],failResourceExists:[170,2,1,""],failResourceGone:[170,2,1,""],failServerError:[170,2,1,""],failTooManyRequests:[170,2,1,""],failUnauthorized:[170,2,1,""],failValidationErrors:[170,2,1,""],fake:[89,3,1,""],fetchGlobal:[100,2,1,""],findMigrations:[58,2,1,""],force:[58,2,1,""],force_https:[69,3,1,""],form_button:[83,3,1,""],form_checkbox:[83,3,1,""],form_close:[83,3,1,""],form_dropdown:[83,3,1,""],form_fieldset:[83,3,1,""],form_fieldset_close:[83,3,1,""],form_hidden:[83,3,1,""],form_input:[83,3,1,""],form_label:[83,3,1,""],form_multiselect:[83,3,1,""],form_open:[83,3,1,""],form_open_multipart:[83,3,1,""],form_password:[83,3,1,""],form_radio:[83,3,1,""],form_reset:[83,3,1,""],form_submit:[83,3,1,""],form_textarea:[83,3,1,""],form_upload:[83,3,1,""],formatCharacters:[160,3,1,""],freeResult:[53,2,1,""],fromCookieHeaders:[146,4,1,""],fromHeaderString:[146,4,1,""],fromSubquery:[52,2,1,""],function_usable:[69,3,1,""],getAgentString:[163,2,1,""],getBody:[98,2,1,""],getBrowser:[163,2,1,""],getCacheInfo:[145,2,1,""],getCompiledDelete:[52,2,1,""],getCompiledInsert:[52,2,1,""],getCompiledSelect:[52,2,1,""],getCompiledUpdate:[52,2,1,""],getCookie:[173,2,1,""],getCookies:[173,2,1,""],getCustomResultObject:[53,2,1,""],getCustomRowObject:[53,2,1,""],getEnv:[100,2,1,""],getFieldCount:[53,2,1,""],getFieldData:[53,2,1,""],getFieldNames:[53,2,1,""],getFilterCaller:[182,3,1,""],getFiltersForRoute:[182,3,1,""],getFirstRow:[53,2,1,""],getGet:[96,2,1,""],getGetPost:[96,2,1,""],getHeaderLine:[98,2,1,""],getIPAddress:[100,2,1,""],getId:[146,2,1,""],getLastRow:[53,2,1,""],getMetadata:[145,2,1,""],getMethod:[100,2,1,""],getMobile:[163,2,1,""],getNextRow:[53,2,1,""],getNumRows:[53,2,1,""],getPad:[30,2,1,""],getPath:[96,2,1,""],getPlatform:[163,2,1,""],getPost:[96,2,1,""],getPostGet:[96,2,1,""],getPreviousRow:[53,2,1,""],getProtocolVersion:[98,2,1,""],getReasonPhrase:[173,2,1,""],getReferrer:[163,2,1,""],getResult:[53,2,1,""],getResultArray:[53,2,1,""],getResultObject:[53,2,1,""],getRobot:[163,2,1,""],getRow:[53,2,1,""],getRowArray:[53,2,1,""],getRowObject:[53,2,1,""],getServer:[100,2,1,""],getStatusCode:[173,2,1,""],getTokentime:[158,2,1,""],getUnbufferedRow:[53,2,1,""],getUserAgent:[96,2,1,""],getVar:[96,2,1,""],getVersion:[163,2,1,""],getWhere:[52,2,1,""],get_cookie:[80,3,1,""],get_dir_file_info:[82,3,1,""],get_file_info:[82,3,1,""],get_filenames:[82,3,1,""],groupBy:[52,2,1,""],groupEnd:[52,2,1,""],groupStart:[52,2,1,""],hasCookie:[173,2,1,""],hasHeader:[98,2,1,""],has_cookie:[80,3,1,""],having:[52,2,1,""],havingGroupEnd:[52,2,1,""],havingGroupStart:[52,2,1,""],havingIn:[52,2,1,""],havingLike:[52,2,1,""],havingNotIn:[52,2,1,""],header:[98,2,1,""],headers:[98,2,1,""],helper:[69,3,1,""],highlight_code:[90,3,1,""],highlight_phrase:[90,3,1,""],humanize:[86,3,1,""],img:[84,3,1,""],img_data:[84,3,1,""],increment:[52,2,1,""],increment_string:[90,3,1,""],index_page:[91,3,1,""],initialize:[149,2,1,""],insert:[52,2,1,""],insertBatch:[52,2,1,""],isAJAX:[96,2,1,""],isBrowser:[163,2,1,""],isCLI:[96,2,1,""],isMobile:[163,2,1,""],isReferral:[163,2,1,""],isRobot:[163,2,1,""],isSecure:[96,2,1,""],isSupported:[145,2,1,""],isValidIP:[100,2,1,""],is_cli:[69,3,1,""],is_pluralizable:[86,3,1,""],is_really_writable:[69,3,1,""],lang:[69,3,1,""],latest:[58,2,1,""],like:[52,2,1,""],limit:[52,2,1,""],link_tag:[84,3,1,""],log_message:[69,3,1,""],mailto:[91,3,1,""],mb_url_title:[91,3,1,""],model:[69,3,1,""],modifyColumn:[56,2,1,""],nl2brExceptPre:[160,3,1,""],noCache:[173,2,1,""],notGroupStart:[52,2,1,""],notHavingGroupStart:[52,2,1,""],notHavingLike:[52,2,1,""],notLike:[52,2,1,""],now:[81,3,1,""],number_to_amount:[87,3,1,""],number_to_currency:[87,3,1,""],number_to_roman:[87,3,1,""],number_to_size:[87,3,1,""],object:[84,3,1,""],octal_permissions:[82,3,1,""],offset:[52,2,1,""],ol:[84,3,1,""],old:[69,3,1,""],orGroupStart:[52,2,1,""],orHaving:[52,2,1,""],orHavingGroupStart:[52,2,1,""],orHavingIn:[52,2,1,""],orHavingLike:[52,2,1,""],orHavingNotIn:[52,2,1,""],orLike:[52,2,1,""],orNotGroupStart:[52,2,1,""],orNotHavingGroupStart:[52,2,1,""],orNotHavingLike:[52,2,1,""],orNotLike:[52,2,1,""],orWhere:[52,2,1,""],orWhereIn:[52,2,1,""],orWhereNotIn:[52,2,1,""],orderBy:[52,2,1,""],ordinal:[86,3,1,""],ordinalize:[86,3,1,""],param:[84,3,1,""],parse:[163,2,1,""],pascalize:[86,3,1,""],plural:[86,3,1,""],populateHeaders:[98,2,1,""],prep_url:[91,3,1,""],prependHeader:[98,2,1,""],previous_url:[91,3,1,""],printDebugger:[148,2,1,""],quotes_to_entities:[90,3,1,""],random_string:[90,3,1,""],redirect:[69,3,1,""],reduce_double_slashes:[90,3,1,""],reduce_multiples:[90,3,1,""],regress:[58,2,1,""],remember:[145,2,1,""],removeHeader:[98,2,1,""],remove_invisible_characters:[69,3,1,""],renameTable:[56,2,1,""],render:[178,2,1,""],renderString:[178,2,1,""],replace:[52,2,1,""],resetQuery:[52,2,1,""],respond:[170,2,1,""],respondCreated:[170,2,1,""],respondDeleted:[170,2,1,""],respondNoContent:[170,2,1,""],route_to:[69,3,1,""],safe_mailto:[91,3,1,""],same_file:[82,3,1,""],sanitize_filename:[88,3,1,""],save:[145,2,1,""],script_tag:[84,3,1,""],selectAvg:[52,2,1,""],selectCount:[52,2,1,""],selectMax:[52,2,1,""],selectMin:[52,2,1,""],selectSubquery:[52,2,1,""],selectSum:[52,2,1,""],send:[148,2,1,""],service:[69,3,1,""],session:[69,3,1,""],set:[52,2,1,""],setAltMessage:[148,2,1,""],setAttachmentCID:[148,2,1,""],setBCC:[148,2,1,""],setBody:[98,2,1,""],setCC:[148,2,1,""],setCache:[173,2,1,""],setConditionalDelimiters:[178,2,1,""],setContentType:[173,2,1,""],setCookie:[173,2,1,""],setData:[178,2,1,""],setDate:[173,2,1,""],setDefaults:[146,4,1,""],setDelimiters:[178,2,1,""],setFrom:[148,2,1,""],setGlobal:[100,2,1,""],setGroup:[58,2,1,""],setHeader:[98,2,1,""],setInsertBatch:[52,2,1,""],setLastModified:[173,2,1,""],setMessage:[148,2,1,""],setMethod:[100,2,1,""],setNamespace:[58,2,1,""],setPath:[96,2,1,""],setProtocolVersion:[98,2,1,""],setReplyTo:[148,2,1,""],setResponseFormat:[170,2,1,""],setRow:[53,2,1,""],setStatusCode:[173,2,1,""],setSubject:[148,2,1,""],setTo:[148,2,1,""],setUpdateBatch:[52,2,1,""],setValidationMessage:[168,3,1,""],setValidationMessages:[168,3,1,""],setValidationRule:[168,3,1,""],setValidationRules:[168,3,1,""],setVar:[178,2,1,""],set_checkbox:[83,3,1,""],set_cookie:[80,3,1,""],set_radio:[83,3,1,""],set_realpath:[82,3,1,""],set_select:[83,3,1,""],set_value:[83,3,1,""],showError:[30,2,1,""],showHelp:[30,2,1,""],single_service:[69,3,1,""],singular:[86,3,1,""],site_url:[91,3,1,""],slash_item:[69,3,1,""],source:[84,3,1,""],stringify_attributes:[69,3,1,""],strip_image_tags:[88,3,1,""],strip_quotes:[90,3,1,""],strip_slashes:[90,3,1,""],symbolic_permissions:[82,3,1,""],timer:[69,3,1,""],timezone_select:[81,3,1,""],toArray:[146,2,1,""],toHeaderString:[146,2,1,""],track:[84,3,1,""],truncate:[52,2,1,""],ul:[84,3,1,""],underscore:[86,3,1,""],update:[52,2,1,""],updateBatch:[52,2,1,""],uri_string:[91,3,1,""],url_is:[91,3,1,""],url_title:[91,3,1,""],url_to:[91,3,1,""],validateKey:[145,4,1,""],video:[84,3,1,""],view:[69,3,1,""],view_cell:[69,3,1,""],where:[52,2,1,""],whereIn:[52,2,1,""],whereNotIn:[52,2,1,""],withDomain:[146,2,1,""],withExpired:[146,2,1,""],withExpires:[146,2,1,""],withHTTPOnly:[146,2,1,""],withName:[146,2,1,""],withNeverExpiring:[146,2,1,""],withPath:[146,2,1,""],withPrefix:[146,2,1,""],withRaw:[146,2,1,""],withSameSite:[146,2,1,""],withSecure:[146,2,1,""],withValue:[146,2,1,""],word_censor:[90,3,1,""],word_limiter:[90,3,1,""],word_wrap:[90,3,1,""],write_file:[82,3,1,""],xml_convert:[92,3,1,""]}},objnames:{"0":["php","const","PHP const"],"1":["php","class","PHP class"],"2":["php","method","PHP method"],"3":["php","function","PHP function"],"4":["php","staticmethod","staticmethod"]},objtypes:{"0":"php:const","1":"php:class","2":"php:method","3":"php:function","4":"php:staticmethod"},terms:{"001_create_us":130,"002_create_post":130,"013057_addblog":58,"0script":69,"100538_alterblogtrackview":58,"100pixel":152,"100x100":152,"10px":83,"1465965676_385e33f741":150,"1st":86,"20121031100537_addblog":58,"20121031100537_create_us":130,"20121031500638_create_post":130,"2012_10_31_100539_alterblogaddtransl":58,"2047b5a":4,"223112_create_auth_t":155,"23pm":159,"24gm":27,"27868b":4,"2d0b325":4,"2e698a":6,"2nd":86,"321a":170,"36fbb8":7,"37dbc1":7,"3a4ad":6,"3de":149,"3rd":[86,154],"404overrid":8,"4a1886":6,"4c7bfe":5,"4f4a37":7,"4ff1f5":7,"4th":[28,86],"4v37":27,"50x50":152,"549d7d":7,"5951c3":6,"5f305a":6,"6265bi":111,"6b8b8b":6,"6dab8f":6,"6e549a":7,"6g62":119,"6w75":27,"7993a7":6,"7jg5":119,"81d371":6,"895ae0":8,"8f205a":5,"8f305a":5,"964ede6e0ae8a680f7b8eab69136717d":83,"9e435c":6,"abstract":[20,37,49,54,61,144,146,194],"boolean":[20,36,44,45,50,51,52,65,69,82,83,84,91,100,113,148,152,154,155,157,159,161,163,164,166,168,173,178,179,183,190],"break":[4,10,12,16,20,22,32,52,83,95,102,105,106,110,111,113,157,160,174],"byte":[14,87,149,150],"case":[6,7,8,9,12,16,20,32,37,39,42,44,52,54,56,58,64,70,72,73,77,82,83,86,90,93,94,95,96,98,99,100,102,105,111,113,116,117,120,133,145,146,154,155,156,157,158,159,161,164,166,168,170,172,173,178,179,181,182,185,186,189,190,192,193,195],"catch":[4,5,30,58,72,75,82,102,152,155],"char":178,"class":[1,3,4,5,6,8,9,10,12,13,14,15,16,17,18,20,21,22,23,24,28,29,30,31,34,35,36,37,39,42,44,45,46,48,49,54,55,59,60,61,62,65,66,69,72,75,76,81,83,84,89,91,94,95,97,99,101,102,103,109,111,113,115,122,123,124,125,127,128,129,130,131,132,133,134,135,137,141,143,150,153,154,155,156,159,161,162,164,167,168,171,172,175,176,177,180,181,182,184,185,190,192,194,195],"default":[4,5,7,8,9,10,13,15,16,17,20,28,31,32,35,36,37,41,44,45,48,52,53,54,56,58,61,64,67,69,70,72,73,75,76,77,78,80,81,82,83,84,87,90,91,93,96,99,100,101,105,108,111,116,120,121,122,129,132,145,146,147,148,150,151,152,154,155,156,158,159,161,162,163,164,166,168,170,172,173,174,177,178,179,180,181,182,183,184,185,189,192,193,194,195],"enum":56,"export":[82,130,168],"final":[3,6,15,30,32,41,51,65,89,90,93,95,96,113,150,152,161,162,166,170,172,179,182,185,189,190,193],"float":[51,87,90,147,152,166],"function":[3,4,5,7,8,11,13,14,16,17,20,21,23,24,28,29,30,31,32,35,42,44,45,47,48,49,50,51,52,53,54,58,59,60,61,64,65,66,67,70,72,74,75,77,78,85,94,95,96,100,101,102,103,108,110,113,116,121,123,124,127,130,131,137,146,147,149,150,152,154,155,156,157,158,159,161,162,163,164,166,168,170,172,173,174,175,176,177,179,180,181,182,183,185,186,189,190,192,193,194,195],"import":[35,70,121,124,128,130,133,148,154,157,169,191],"instanceof":36,"int":[13,52,53,56,58,69,80,81,82,86,87,90,94,96,100,111,130,145,146,148,149,152,158,164,168,170,173,174,175,185,190,194],"long":[7,32,33,39,56,61,67,73,75,77,90,102,147,148,149,152,164,168,172,173,184],"new":[1,2,4,6,7,8,9,10,11,12,13,16,17,20,21,22,23,28,31,32,35,36,39,41,42,44,46,51,52,53,55,56,58,61,64,65,69,70,72,73,75,77,78,90,91,94,96,101,102,103,105,106,107,108,113,114,115,116,121,122,124,125,127,128,130,131,132,134,136,137,145,146,147,149,152,154,155,158,159,161,162,163,164,166,168,170,172,174,175,176,178,179,180,181,182,183,184,185,188,189,190,193,195],"null":[8,9,10,13,14,15,16,20,32,33,36,45,52,53,55,56,58,60,69,79,80,81,82,84,87,89,91,95,96,98,100,101,110,111,116,130,145,146,148,149,150,152,154,157,158,163,164,166,168,170,173,174,178,179,183,185,186,190,194],"public":[3,4,5,6,9,10,11,12,13,16,22,28,29,30,36,40,41,44,52,53,58,59,61,64,70,72,75,76,77,84,89,94,95,96,101,102,105,106,107,108,109,110,111,113,114,115,116,117,120,121,122,123,126,127,129,130,131,135,137,145,147,149,151,154,155,156,157,158,161,164,166,168,170,172,173,175,176,177,178,180,182,184,185,189,192,194,195],"return":[3,6,8,9,11,12,13,14,15,16,17,20,22,23,28,29,30,31,33,36,41,45,47,48,50,51,52,53,55,56,58,60,64,65,69,70,73,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,98,100,101,102,111,113,116,121,123,127,129,132,133,138,139,145,146,147,148,149,150,152,154,155,156,157,158,159,160,161,162,163,164,166,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,192,194,195],"short":[4,30,39,70,77,142,164,168,169,172,194],"static":[4,32,36,41,51,52,55,59,64,65,68,70,77,102,103,145,146,149,155,159,162,164,166,168,175,176,178,181,182,185,189,193,194],"switch":[44,45,95,105,128,133,148,166],"throw":[5,16,20,69,72,75,94,95,113,145,146,149,150,151,152,156,159,161,168,194,195],"transient":155,"true":[4,16,20,25,28,32,33,36,41,44,45,50,51,52,53,54,56,58,64,65,69,70,72,73,82,83,84,86,90,91,93,96,98,99,100,102,113,116,118,130,139,145,146,147,148,150,151,152,154,155,156,157,158,159,162,163,164,166,168,172,173,174,178,179,183,184,185,189,190,192],"try":[4,7,16,21,30,33,44,51,52,58,72,73,75,82,93,95,102,108,109,121,148,152,154,155,157,158,166,170,178,180,181,182,193,195],"var":[3,10,70,71,108,155,178,179],"void":[12,53,80,98,146,150,163,173,183,186,189],"while":[30,32,35,37,42,44,45,51,53,58,62,70,71,77,79,82,90,93,95,96,98,101,102,142,143,147,148,152,154,157,159,162,164,166,168,169,170,172,173,178,179,180,181,183,184,185,186,188,189],AES:149,AND:[51,52,54,159,165,190],Added:[3,7,8,10,11,13,14,15,16,20,21,23,28],Adding:[7,8,14,70,83,117,118,119,120],And:[24,32,36,41,76,95,117,149,154,157,158,173],BUT:165,Being:146,But:[24,36,67,70,94,102,116,157,166,180,194,195],FOR:165,For:[17,29,30,36,39,40,41,42,43,44,45,47,50,52,53,56,58,61,64,65,67,69,70,71,73,75,76,77,83,88,90,91,93,94,95,98,102,111,113,116,121,123,128,130,131,134,143,145,147,148,149,152,154,155,157,158,161,164,166,168,172,173,180,184,189,194],Has:51,IDE:184,IDEs:164,INTO:[47,51,52,59,194],Its:[41,101,142],NOT:[51,52,54,56,70,72,82,96,113,146,148,149,152,157,161,165,168,174,178,183,188,190,194],Not:[4,28,50,53,61,72,100,108,117,144,156,170,173,195],One:[69,70,77,83,95,108,152,164,173,195],Such:40,THAT:157,THE:165,THEN:52,That:[30,35,37,39,41,51,70,84,101,105,109,149,164,166,168,170,173,177,180,189,192,194],The:[1,3,4,5,6,7,8,9,10,11,12,13,15,16,17,20,22,23,24,28,30,31,32,35,36,38,40,41,42,43,44,45,47,48,49,50,52,53,54,55,56,58,59,60,61,64,65,67,68,69,70,72,73,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,98,99,100,101,102,105,106,107,108,110,111,113,114,115,116,117,120,121,122,124,125,126,127,128,130,131,133,135,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,154,155,157,159,160,163,166,168,170,172,173,174,175,177,178,179,181,185,187,188,190,192,194,195],Their:154,Then:[29,30,39,41,44,64,94,102,148,154,164,166,178,179,180],There:[10,29,41,51,52,53,56,58,60,62,65,70,71,73,75,84,90,95,107,111,113,114,116,117,120,121,146,147,148,152,157,159,163,164,168,172,173,178,189,192,193,195],These:[15,30,32,36,41,44,46,50,58,63,69,70,71,75,77,78,84,93,94,98,102,105,107,111,121,122,150,152,154,164,166,168,173,174,178,188,190],USE:165,Use:[4,5,9,10,13,14,28,30,31,51,52,53,65,83,84,100,105,111,145,147,148,155,157,173,185,189,191],Used:[44,56,69,79,96,100,173],Useful:[16,42,52,90,148],Uses:[6,89,150,159],Using:[9,25,29,70,80,94,96,103,118,155,161,162,167,173,180,194],WILL:157,WITH:165,Will:[36,56,69,90,102,147,148,164,184,195],With:[38,52,67,96,102,103,131,157,169,173,178,181,185,193,194],Yes:[84,164,194],__construct:[4,14,44,64,96,111,127,146,150,168,178],__dir__:76,__get:[6,12,53,166,168],__host:146,__isset:[11,12],__secur:146,__set:[6,53,166,168],__wakeup:22,_array_search_dot:20,_blank:91,_bootstrap:4,_config:9,_cooki:[95,96,146],_env:[70,75,96,100],_error:164,_errors_list:164,_fielddata:[22,115],_file:[96,161,164],_flatten:[22,115],_flip:[22,115],_foreignkeydata:[22,115],_get:[5,37,75,95,96,100,154,186],_helper:73,_indexdata:[22,115],_like_stat:[22,115],_listtabl:12,_method:99,_option:178,_post:[37,75,95,96,100,156,164,168,186],_remap:[13,28,29,94],_request:[37,96],_server:[9,21,70,71,96,100,157,184],_session:[14,75,136,157,186],_set:5,_suffix:145,_support:[4,10,11,12,13,42,183],_theme:7,_user:31,a0fc68:5,a_long_link_that_should_not_be_wrap:148,ab8b5b:5,abc123:126,abcd:173,abigsecret_ofatleast32charact:149,abil:[15,30,51,73,96,147,155,166],abl:[35,37,41,42,53,67,93,95,102,113,158,168,173,178,191],abm:164,about:[5,15,29,30,37,39,46,51,52,54,75,76,90,94,95,96,102,149,154,159,161,163,164,166,168,182,184,185,191,192,194,195],abov:[30,32,36,41,44,45,47,51,52,53,56,68,69,70,72,73,75,77,78,79,83,84,90,91,93,94,96,98,100,101,102,105,107,108,111,113,116,117,120,144,146,148,149,152,157,164,165,166,168,169,174,178,180,182,183,185,189,192,194,195],abs:178,absent:194,absolut:[5,17,20,82,91,102,145,150,157,178,189],accent:[90,91],accept:[8,20,32,37,41,44,52,53,56,63,83,90,91,93,94,96,98,100,101,102,118,143,146,147,148,150,152,154,156,157,159,164,170,173,174,178,186,190,195],access:[4,8,10,13,17,28,29,30,36,42,43,47,52,53,58,59,61,69,70,77,78,79,84,93,94,95,98,102,104,105,108,111,113,116,122,127,130,134,136,142,150,151,152,154,155,156,158,159,164,173,178,179,185,192,194,195],access_log:108,accessd:102,accessor:[157,168],accident:[39,182],accommod:7,accomplish:[56,70],accord:[30,67,109,122,123,131,147,170,172],accordingli:[79,113,115,186],account:[100,102,108,157,164,182,190],accumul:[178,179],accur:[14,181],achiev:[68,94,149,157],acm:[30,31,58,59,77,102],acquir:[82,141],across:[36,56,70,75,77,113,146,150,155,158,159,173,177,184,189],act:[39,41,51,70,80,95,154,168,177,180,185,195],action:[15,29,40,50,52,56,65,72,75,83,94,95,99,101,102,111,152,156,158,164,165,170,185,188,192],activ:[32,35,52,154,157,158,166,168,170,181,183],activeus:168,actual:[8,13,15,23,32,33,39,51,65,69,70,75,82,96,101,108,116,132,144,148,150,152,155,157,161,162,164,166,168,172,173,178,182,184,185,189,190,192,195],adapt:[52,143,145],add:[3,4,5,6,7,8,9,10,11,12,13,14,15,16,30,33,40,42,44,51,52,53,56,59,64,67,73,77,83,86,87,89,90,91,94,95,98,100,102,105,108,109,116,121,123,124,130,131,134,135,143,145,146,150,152,155,156,157,158,162,163,166,172,173,174,178,179,180,181,182,184,186,189,192,193,194,195],add_field:130,add_kei:130,add_row:128,addbaseuri:173,addblog:[58,130],addchildsrc:173,addcolumn:56,addconnectsrc:173,addcontextcolumn:58,adddai:159,adddirectori:[150,155],added:[5,6,8,9,11,16,17,22,42,43,44,52,56,61,70,82,83,84,86,89,90,91,99,100,102,105,106,111,113,123,131,147,148,149,155,156,166,168,172,173,174,178,180,181],addfield:[4,56,58,130],addfil:[150,155],addfontsrc:173,addforeignkei:[23,56],addformact:173,addframeancestor:173,addhour:159,addimagesrc:173,adding:[36,44,45,52,56,60,65,70,75,95,105,146,155,156,157,159,162,166,168,173,178,183,192,194],addit:[1,6,7,8,10,17,29,30,37,41,50,51,52,53,56,65,69,70,71,76,83,84,91,95,96,99,102,108,111,113,124,146,147,148,149,150,152,154,157,159,166,168,172,173,182,184,185,186,193,194],addition:[56,84,146,154,156,157,168,175,180],addkei:[56,58,130],addmanifestsrc:173,addmediasrc:173,addminut:159,addmonth:159,addobjectsrc:173,addpath:155,addplacehold:102,addplugintyp:173,addprimarykei:56,addqueri:162,addredirect:102,address:[4,40,70,71,75,79,83,84,91,100,108,129,131,137,148,157,158,164,168,172],address_info:83,addrow:[128,174],addsandbox:173,addscriptsrc:173,addsecond:159,addstylesrc:173,addtabl:130,adduniquekei:56,adduri:155,addyear:159,adher:[35,41,142,143],adjust:[3,77,105,109,111,113,115,116,117,120,124,152,155,162],admin:[4,5,6,9,10,11,12,13,31,69,70,91,95,101,102,146,178,182,186],admin_token:146,admincontrol:[61,95,102],administr:61,adodb:54,advanc:[41,164,178,185,193],advance_amount:52,advantag:[41,56,61,75,77,83,96,105,106,108,113,146,149,157,168,173,182,183,189,191,193],advis:[51,149],advisori:[24,26,27,119,157],aenean:90,affect:[15,23,48,52,54,58,68,71,87,102,111,115,116,117,146,155,166,168,184],affected_row:124,affectedrow:[47,48,52,124],after:[5,6,10,13,14,16,30,32,37,41,42,51,52,53,56,65,70,79,83,87,90,91,94,101,102,105,106,109,110,116,121,123,124,129,130,131,146,147,149,150,151,154,157,158,159,164,168,169,173,174,178,179,180,182,183,184,185,189,192,195],afterdelet:168,afterfind:168,afterinsert:168,afterupd:168,afterward:161,again:[6,41,45,109,149,157,158,162,164,170,184,193,194],against:[3,58,59,88,91,94,102,145,156,158,159,164,168,173,179,183,192],age:[52,79,124,159,173],agent:[37,96,103,147,148,153],ago:159,agre:[10,93],agreement:103,ahead:53,aid:[65,111,175,183],aim:152,air:174,ajax:[14,37,74,96,103,156,157],ak_my_design:90,alert:[69,75,164,168,178],alford:185,algorithm:[149,158],alia:[12,36,52,53,69,75,78,80,88,90,95,101,102,108,152,154,158,164,178,182],alias:[77,102,108,151,158,182],aliastest:6,align:[22,36,101,108,115,152],all:[0,4,10,11,13,14,15,16,20,22,28,29,30,31,32,35,37,40,41,42,43,44,46,47,50,51,52,53,54,58,61,64,65,67,69,70,71,72,73,76,77,78,79,80,81,82,83,84,90,91,92,93,94,95,96,98,99,100,101,102,105,107,108,115,119,121,122,123,124,125,130,131,133,139,143,144,145,146,147,148,149,150,154,155,157,158,159,160,162,165,166,168,170,172,173,174,175,177,178,181,182,183,184,185,186,189,191,192,193,194],allot:158,allow:[3,4,5,6,8,10,12,16,17,28,29,30,32,35,36,37,39,42,44,48,51,52,53,54,59,64,69,70,71,72,73,75,79,82,83,87,90,94,95,96,98,99,100,101,102,108,111,122,130,134,142,143,145,146,147,148,149,150,152,154,155,156,157,158,159,161,162,166,168,169,170,172,173,174,175,176,178,179,181,182,183,184,185,186,189,190,192,194],allow_failur:6,allowcallback:168,allowed_typ:127,allowedfield:[166,168,192],allowoverrid:108,allowrememb:185,allus:168,almost:[41,82,95,157,192],alnum:90,alon:[77,95],along:[67,78,93,102,105,121,146,147,152,154,158,161,164,180,193],alongsid:[70,77,95],alpha:[0,7,90,102,104,164],alpha_dash:164,alpha_numer:164,alpha_numeric_punct:[1,164],alpha_numeric_spac:[94,164,168],alpha_spac:164,alphabet:[30,102,164],alphanum:102,alphanumer:[90,164],alreadi:[4,30,42,50,51,52,53,56,58,69,70,71,77,82,96,98,108,131,146,147,148,152,154,155,157,161,168,170,178,179,192,193,194],also:[9,19,24,28,29,30,31,32,34,35,36,37,39,40,41,44,51,52,53,54,56,58,59,62,65,70,71,72,77,78,79,80,82,83,90,91,94,95,96,101,102,105,107,108,116,121,130,131,132,145,146,147,148,149,152,154,155,156,157,159,160,161,162,163,164,166,168,169,172,173,174,177,178,179,180,181,182,184,185,186,188,189,190,192,194,195],alt:[84,148],altconfig:91,alter:[20,56,58,62,64,70,102,113,152,155,156,157,164,182],altern:[36,58,71,83,84,90,91,103,108,109,131,146,148,155,157,162,164,166,171,172,174,178,179,181,184,185,189],alternate_db_group:58,altertablestest:10,altertabletest:7,although:[51,68,73,142,164],alwai:[4,15,20,23,28,29,30,35,36,37,41,51,56,65,69,70,73,77,82,83,91,93,94,95,96,102,108,121,145,146,148,149,150,152,155,156,157,161,162,163,164,166,168,170,172,175,181,182,183,185,186,190],ambigu:9,america:[81,159,182],american:[159,164,172],amet:90,amex:164,among:[60,147,157],amount:[39,52,54,68,77,142,147,152,155,158,164],amount_paid:52,amp:92,ampersand:[92,160,164],analysi:[21,46],analyz:[87,93,108,146,186],anchor:[73,91,161,162,164,190],anchor_popup:91,angl:152,angri:84,ani:[3,8,10,20,29,30,32,35,36,39,40,41,42,43,45,50,51,52,54,58,59,61,62,64,65,68,69,70,71,72,73,75,77,78,79,81,82,83,87,90,91,93,94,95,96,98,106,108,111,112,113,115,116,117,120,121,123,134,141,142,143,146,147,148,149,150,151,152,154,155,156,157,158,159,161,162,164,165,166,168,170,172,173,174,175,176,177,178,179,180,181,182,184,185,186,188,189,190,192,193,194,195],anim:32,anniversari:159,annoi:84,announc:141,anonym:[52,102],anoth:[4,7,30,32,36,42,51,52,54,56,58,75,77,93,94,108,125,148,149,157,158,159,161,162,163,164,168,169,170,178,181],another_field:56,another_nam:157,anotherclassmethod:186,anotherexampl:162,answer:[32,37,90],any_in_arrai:73,anybodi:157,anymor:[28,166],anyon:[29,102,107,162],anyth:[41,44,70,71,83,96,102,106,146,155,158,161,164,166,178,195],anywher:[30,36,59,68,69,73,94,150,164],apach:[93,109,193],apache2:[82,108],api:[2,3,6,8,9,11,15,16,20,26,41,69,70,75,93,95,101,102,103,119,147,155,156,158,171,182,186,190],api_respons:[11,12],apiauth:95,apibot:8,apiprep:95,apiresponsetrait:11,app:[1,4,5,6,7,8,9,10,11,12,13,17,20,28,29,30,31,32,35,36,37,39,41,44,58,59,61,62,64,65,68,69,70,72,73,75,76,77,80,84,87,89,90,91,94,95,96,100,101,102,103,104,106,107,109,111,113,114,116,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,134,135,137,139,145,146,147,148,149,150,151,152,154,155,156,157,158,161,162,163,164,166,168,170,172,173,175,176,177,178,180,182,183,184,185,186,189,192,193,194],app_cspen:70,app_forceglobalsecurerequest:70,app_namespac:[31,35,58,77,155],app_timezon:[69,166],appath:155,appconfig:36,appdirectori:76,appear:[30,51,68,90,102,160,164,184,190],append:[31,44,58,69,83,90,91,98,134,148,164,168,173,180],appendbodi:[96,98],appendhead:[96,98,173],appfiltershoneypot:4,appinfo:30,appl:[32,109,172],appli:[16,19,23,36,51,80,81,95,96,98,100,115,116,147,152,157,164,168,173,174,176,178],applic:[3,4,5,6,13,17,29,30,35,37,38,39,40,41,44,52,58,67,69,70,71,72,73,74,75,77,84,91,93,94,95,96,99,100,101,102,105,108,111,113,114,116,117,120,122,123,126,130,131,133,134,137,139,142,144,145,147,148,151,154,155,157,158,159,162,164,166,168,170,172,173,176,177,178,179,181,182,185,186,187,190,192,195],applicationconfigautoload:4,apppath:[30,35,41,58,69,71,77,82,150,155,195],approach:[77,78,102,113,156,164],appropri:[6,32,37,48,52,64,70,72,87,98,105,113,121,149,151,152,155,157,161,162,164,166,168,170,172,173,179,185,194,195],approv:156,appstart:[6,7,11,105,107,193],apptimezon:182,april:[8,159,166],aptli:[150,161],arbitrari:[44,51],architectur:[38,40,101,193],archiv:[148,177,194],arcu:90,area:[13,39,95,102],aren:[70,109],arg:[28,69,78,90,91,108,174,189],argument:[1,9,10,14,16,29,30,32,33,41,52,65,69,78,82,90,91,96,102,105,110,146,149,150,154,158,173,177,178,193,195],aria:154,aris:165,around:[36,45,51,67,77,90,145,168],arrai:[2,4,6,9,10,11,14,16,17,18,20,23,24,30,31,32,33,35,36,44,45,50,51,52,56,58,61,65,69,73,75,77,80,82,83,84,85,89,90,91,93,94,95,96,98,100,101,103,116,117,124,127,129,130,131,132,133,134,135,136,137,138,145,146,147,148,149,150,151,152,154,155,156,157,158,162,163,168,170,173,174,175,176,178,179,180,181,183,184,185,186,190,194,195],array_deep_search:79,array_filt:164,array_flatten_with_dot:79,array_help:[4,73],array_item:157,array_key_exist:164,array_map:32,array_pop:73,array_sort_by_multiple_kei:79,arrayhandl:[10,22,157],arraytoflatten:79,articl:[29,37,78,173,194],asarrai:[168,178],asc:[52,154,168],ascend:36,ascii:[69,90,146],ascii_to_ent:90,ask:[32,36,37,58,170,173,195],asobject:168,aspect:[51,93,152,181,189],assembl:52,assert:[3,20,183,186],assertcloseenough:189,assertcloseenoughstr:189,assertcooki:190,assertcookieexpir:190,assertcookiemiss:190,assertdontse:190,assertdontseeel:190,assertequ:[189,190],asserteventtrigg:189,assertfilt:182,assertha:188,asserthasfilt:182,asserthasvalu:188,asserthead:190,assertheaderemit:189,assertheadermiss:190,assertheadernotemit:189,assertinstanceof:182,assertisnumer:185,assertjsonexact:190,assertjsonfrag:190,assertlog:189,assertmiss:188,assertnotfilt:182,assertnothasfilt:182,assertnotok:190,assertnotredirect:190,assertok:190,assertredirect:190,assertredirectto:[20,190],assertsam:189,assertse:190,assertseeel:190,assertseeinfield:190,assertseelink:190,assertsessionha:190,assertsessionmiss:190,assertsessionmissin:190,assertstatu:190,asserttru:[89,96,182,190],assess:113,asset:[42,78],assetpublish:155,assign:[51,52,53,56,70,73,75,148,149,154,157,158,162,166,168,173,185,186,192,194,195],assist:[71,73,80,81,82,83,84,89,90,91,92,111,113,116,117,120,185],associ:[50,52,53,56,69,70,79,80,83,84,91,94,95,96,102,147,154,157,162,164,165,168,173,174,178,179,183,195],assum:[36,44,51,52,54,56,58,73,76,108,149,151,159,162,164,166,168,172,173,178,179,194,195],asterisk:[79,95,102,164],asynchron:156,atom:145,att:91,attach:[102,125,148,151,179],attack:[25,40,69,80,91,118,147,156,157,158,164,168,173,178,179,192,194,195],attempt:[10,36,53,58,62,64,77,94,96,102,145,147,150,152,156,158,162,163,168,172,185],attemptlogin:102,attr:[5,69,178,179],attribut:[5,6,14,17,20,21,28,53,56,69,82,83,84,91,111,125,132,173,174,178,179],auctor:90,audienc:107,audio:84,aug:172,augu:90,august:[159,172],australia:81,auth:[95,102,123,134,155,170,185],authcontrol:[102,155],authdatabas:36,authent:[7,36,39,66,95,102,103,147,149,155,157,168,173,186,189],authenticationfeaturetest:189,author:[40,44,51,56,60,165,170],authpublish:155,authtrait:189,auto:[4,6,28,29,54,83,95,111,116,120,152,157,158,166,168,173,174,175,192],auto_incr:[56,58,130,194],auto_link:91,auto_typographi:178,autoclear:148,autolaodertest:5,autoload:[2,4,5,6,8,9,10,11,13,18,20,28,30,31,36,38,41,53,58,59,64,73,75,76,94,103,111,112,113,121,143,150,155,164,175,180,184],autoloadconfig:[2,3,4,5,9,77],autoloadertest:6,autolod:76,autom:1,automat:[16,17,30,32,35,41,42,43,44,46,47,51,52,53,54,56,58,64,69,70,71,73,75,77,83,91,93,94,95,96,100,102,105,107,108,121,131,135,148,154,156,157,159,164,166,168,170,172,173,174,177,181,184,185],autononc:[28,173],autorout:13,autotypographi:160,avail:[16,20,28,30,32,36,41,50,51,52,53,58,61,62,65,69,71,72,73,75,77,93,94,96,98,102,108,111,113,116,117,120,121,136,142,143,145,146,147,148,152,155,156,157,158,162,163,166,170,172,173,178,183,194],avatar:[161,164,185],averag:52,avg:52,avoid:[4,37,83,96,148,164,168,173,178,182],awai:[146,168],awar:[53,87,96,113,154,159,161,164,168,179,190,194],awesom:195,awkwardencryptedfilenam:173,axi:152,axio:67,babi:168,back:[9,32,35,36,37,39,54,58,69,90,95,102,146,147,156,164,166,168,170,172,173,183,185,186,189,190,192,194],backend:[70,145,154,155],background:[8,32,37,90,152,164,178,179],backslash:[8,77,79,102],backtick:51,backtrac:[24,184,193],backup:[10,29],backuphandl:145,backward:[17,53,58,102,116,121],bad:[25,80,90,95,118,155],badfunctioncallexcept:87,badmethodcallexcept:173,balanc:52,ban:154,banana:[32,172,189],bank:164,bar:[30,32,33,55,65,76,79,84,93,95,96,133,147,154,162,164,166,178,179,182,184,189,190],barbaz:79,bare:31,barrier:32,base64:[84,149,164,166],base64_decod:166,base64_encod:[149,166],base:[2,8,11,17,21,22,23,28,29,32,37,39,40,43,47,52,53,54,56,58,59,61,64,69,71,73,75,78,81,82,83,87,90,91,93,94,95,96,101,102,105,108,115,121,123,141,148,149,150,152,154,156,157,158,159,161,162,164,166,168,170,172,173,174,177,178,179,183,185,190,192,194],base_dir:70,base_url:[91,132],basebuild:[2,3,4,5,6,7,8,9,10,11,12,13,23,24,52],basebuildertest:3,basebuld:52,basecast:166,basecollector:[9,28,184],basecommand:[2,12,17,155],baseconfig:[2,5,6,8,9,11,70,72,75,95,109,116,122,129,135,145,147,149,151,154,156,157,158,170,172,173,184,192],baseconfigtest:[6,8,9],baseconnect:[2,4,6,7,8,9,10,12,14,20,45,113],baseconnectiontest:12,basecontrol:[8,11,31,61,94,102,111,113,121,123,127,161,172,177,192,194,195],basefactori:36,basehandl:[4,6,9,11,12,23,64,145],basemodel:20,basemodul:77,basenam:[36,150,155],basepath:[4,5,122,130,134,183],basepreparedqueri:2,basequerytest:[7,9],baseresult:[2,4,9,10,53,113],baseroutecollect:64,baseservic:[2,4,6,17,41,64,111],baseuri:147,baseurl:[5,7,69,91,96,108,162,184],baseutil:[2,3,9],baseview:[176,178],bash:32,basi:[68,168,173,189],basic11:84,basic:[11,30,31,37,39,42,52,54,71,84,90,102,107,113,124,131,143,147,148,150,155,157,158,159,164,168,178,181,185,191,193,194,195],bat:15,batch:[13,23,52,58,148,154],batch_siz:52,baz:[30,65,79,95,96,147,162,164,178,184,189],bcc:[125,148],bccbatchmod:148,bccbatchsiz:148,bcit:4,bcp:172,bdb:54,bea1dd:6,bear:156,becam:143,becaus:[4,20,23,24,25,35,42,51,52,53,54,56,67,77,83,91,94,95,102,104,108,116,131,146,148,154,155,156,157,158,164,170,172,173,178,182,183,186,191,192,194,195],becom:[20,39,67,73,77,91,98,102,106,111,113,128,148,156,172,173,174,195],beef:[4,8,10,12,13],been:[1,6,7,8,10,15,17,20,23,24,28,30,32,36,37,41,46,52,53,56,58,65,66,69,70,73,77,81,91,98,101,102,111,113,116,120,121,142,144,147,149,158,161,168,170,172,173,174,178,179,180,181,182,184,189,194],beep:[32,90],befor:[10,13,16,32,36,39,40,42,45,50,51,52,56,62,64,65,68,70,72,73,76,90,101,102,104,108,110,121,124,131,135,139,146,147,149,151,152,154,156,157,158,159,164,168,170,173,178,180,181,182,183,185,189,192,193,194,195],beforedelet:168,beforefind:168,beforehand:162,beforeinsert:168,beforeupd:168,begin:[35,68,82,83,90,108,166,173,193],behav:[30,33,189],behavior:[20,28,82,91,94,102,116,146,147,155,156,157,178,189],behaviour:148,behind:[37,38,113,152,154,161,181],being:[16,29,30,35,37,43,52,65,68,69,70,72,75,77,83,91,94,95,99,102,105,111,113,114,115,116,117,120,142,145,146,150,152,154,157,158,159,160,162,164,168,173,174,176,177,181,184],believ:157,belingadon142:185,belong:[6,164],below:[22,36,39,41,44,45,47,52,53,54,56,83,90,96,102,105,113,115,121,123,129,130,131,132,144,148,149,150,151,154,157,164,168,173,174,179,180,182,194],benchmark:[65,68,69,82,103,145,187],benefici:[53,102],benefit:[51,52,54,81,83,102,164,168],berlin:70,best:[36,37,51,70,72,77,91,96,98,152,157,158,168,173,181,182],beta:[0,6,104],better:[1,8,10,14,16,22,64,73,109,113,115,166,170,172,175,184],between:[23,36,39,43,44,52,54,58,68,69,70,71,77,86,90,102,105,143,147,148,152,159,162,164,168,170,172,173,177,178,180,181,185,189],beyond:[52,184],bgcolor:179,bia:157,bigger:15,biggest:159,bill:90,billion:87,bimagehandlerinterfac:11,bin2hex:149,bin:[108,168,189],binari:[17,84,149],bind:[4,5,6,23,55,82,116,166],bionic64:108,birthdai:159,bit:[51,101,149,157,166,168,193],bitnami:108,black:32,blank:[32,58,91,148,173],blaze:157,bleed:180,blindli:91,blob:157,block:[3,6,7,32,72,78,148,149,157,164,169,173,174,178],blocksiz:149,blog:[31,36,39,41,52,58,59,73,77,91,95,102,124,130,134,138,168,175,177,178,180],blog_descript:[58,130],blog_entri:178,blog_head:[138,178],blog_help:73,blog_id:[56,58,130],blog_id_site_id:56,blog_id_uri:56,blog_label:56,blog_nam:56,blog_name_blog_label:56,blog_templ:[138,178],blog_titl:[58,130,138,178],blog_view:180,bloglib:77,blogmodel:175,blue:[32,84,128,152,164,174],bmo:164,bmoabm:164,bmp:155,bobbi:185,bobbyus:185,bodi:[52,53,96,98,111,113,135,137,139,148,155,161,164,170,173,177,178,179,180,182,189,190,192,194,195],boldlist:84,book:172,bool:[45,52,53,56,58,64,69,79,80,82,83,84,86,90,91,92,96,98,100,111,113,116,145,146,148,150,152,155,158,160,163,164,166,173,174],boost:173,boot:[3,12,111,150,184],bootstrap:[4,5,6,8,11,40,77,155,182],bootstrapfcpathtest:4,bootstrappublish:155,border:174,borrow:141,boss:[52,166,178,179],bot:[91,151,163],both:[7,28,35,36,37,49,52,58,65,70,72,76,77,82,91,93,95,96,98,100,101,108,113,121,146,152,155,157,159,161,164,166,168,170,172,178,182,184,189,195],bottom:[152,193,195],bound:[51,102],box:[1,83,108,149,157,168,170],brace:[14,75,169,178,193],bracket:[164,166,168,178],bradley72:185,branch:[1,6,105],brand:[130,163],breach:156,brief:[40,161],bring:[22,58,115,189,193],british:[141,165],broad:15,broken:[32,148,164],brought:16,brows:[73,94,157,163],browsabl:155,browser:[15,17,20,23,29,37,40,42,65,68,69,71,75,80,84,90,91,93,94,96,98,99,100,102,108,109,116,146,157,163,173,192,193,194,195],brute:158,bsc:178,bucket:[10,158],buffer:[4,40,53,148,149,189],bug:[4,6,7,11,12,13,15,16,17,18,19,20,21,91,110,111,113,116,117,120],bugfix:[4,10,13,14],build:[3,9,15,29,30,44,52,66,72,76,82,91,94,102,105,108,139,142,150,168,170,178,179],builder:[2,3,6,7,8,11,12,13,14,22,44,48,49,51,59,102,103,115,124,146,154,194],builderbas:11,built:[40,69,71,83,96,102,107,108,109,121,131,132,147,149,154,159,168,173,183,189,193,195],bunch:185,bundl:[2,37,95,105,108,147,149,151,155,157,184],busi:[14,35,39,40,42,164,168],button:[69,83,96,107,161],buzz:[79,96],bypass:[27,40,58,61,94,95,102,116,156,158,166,168,188,192],bytea:157,cach:[2,4,7,8,10,11,12,16,17,21,23,28,29,30,37,42,69,70,74,95,96,103,108,111,113,114,116,121,143,153,157,158,160,168,176,177,178,179,184,189],cache_dir:70,cache_item_id:145,cache_nam:[178,179,180],cacheexcept:4,cachefactori:[2,10,188],cachefactorytest:8,cacheinterfac:[2,20],cachenam:69,cachepag:68,cafe:194,caffein:194,calcul:[13,30,152,159,181],calendar:121,calibri:152,call:[3,4,14,16,17,24,29,32,35,36,37,39,41,49,50,51,52,53,56,58,59,65,69,72,73,75,77,83,90,91,96,102,103,131,141,146,147,148,149,150,152,154,155,156,157,158,159,161,162,164,166,168,170,173,174,175,176,177,178,179,180,181,183,185,186,188,189,192,193,194,195],callabl:[8,65,137,175,178,182],callback:[8,16,102,137,145,185,189],caller:182,came:146,camel:86,camelcas:[124,128,130,133,166],camino:163,campaign:70,can:[4,7,8,10,14,15,16,20,23,24,28,29,30,31,32,34,35,36,37,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,58,59,61,64,65,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,87,90,91,93,94,95,96,98,99,100,101,102,104,105,106,107,108,109,121,124,127,130,131,132,133,134,138,139,140,142,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,166,168,169,170,172,173,174,175,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195],canada:164,cancel:52,candid:70,cannot:[4,10,32,36,44,51,56,62,70,72,73,77,82,87,93,94,95,98,99,102,146,147,154,157,162,164,170,172,182,194,195],capabl:[77,149,154,164,172],capac:158,capit:[4,86,94,123,178,195],caption:174,captur:[4,30,95,150,189],card:[4,40,164],care:[45,51,77,95,145,155,157,164,166,168,173,178,185,192],career:166,cart:[121,146],cartebl:164,carteblanch:164,cascad:[56,164],cascadedata:178,cast:[3,4,5,6,9,16,20,51,96,102,116,162,178],casta:20,castasjson:20,castbase64:166,castexcept:3,casthandl:166,catalog:[102,134],categori:[30,42,73,175,182],catgif:155,caught:[72,155],caus:[4,54,58,65,71,77,82,83,90,91,102,147,148,155,157,168,173,180,184,189,195],caveat:157,cbe4b1d:9,cccxxiv:87,cdn:173,cdt:172,ceil:178,cell:[2,69,103,139,171,174],cell_alt_end:174,cell_alt_start:174,cell_end:174,cell_start:174,cellpad:174,cellspac:174,censor:90,center:[77,152,195],central:[41,59,90,172],cert:8,certain:[11,16,32,36,39,52,94,95,102,142,146,150,152,158,168,189],certif:[44,147],cgi:[21,108],chain:[16,56,98,148,152,154,155,168,174,178],chainabl:179,challeng:[93,173],chanc:[35,157,172],chang:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,32,35,36,41,42,44,45,51,53,56,58,61,68,70,72,73,76,77,82,83,86,91,95,102,103,104,105,106,108,109,110,114,115,121,143,146,147,149,151,152,154,155,157,162,163,164,173,180,181,183,185,193],changeabl:173,changelog:[1,3,4,5,6,7,11,15,20,23,24,25,28,117],channel:[148,156],chapter:37,charact:[4,16,17,23,30,32,40,44,51,56,69,82,83,90,91,92,94,95,98,102,113,145,146,148,149,157,160,162,164,173,178,192],character_limit:90,charg:165,charlim:90,charset:[37,44,45,56,83,93,96,148,173],chdir:3,cheat:[40,156],check:[3,4,6,7,8,9,10,11,12,14,17,22,29,30,31,37,40,41,48,56,58,69,80,82,83,86,91,94,96,99,100,105,106,109,111,113,117,127,145,147,150,155,156,157,158,159,161,162,168,173,185,188,189,191,192,193,195],checkbox:[83,190],checkcach:168,checkexist:82,checklist:121,chicago:[159,182],child:[72,79,150,155,164,177,185],china:164,chmod:157,choic:[31,32,84,90,93,145,157,166,168,173,189,193,194],choos:[30,45,52,54,58,75,95,98,102,104,113,152,157,160,164,168,179],chose:[58,157],chosen:[54,145,157,178,179],chown:157,chrome:[37,75],chromelogg:[2,75],chunk:[8,69,168,178],ci3:[8,11,14,121,122,123,124,130,131,132,136,137,138,139],ci3_:51,ci4:[8,9,11,44,121,122,124,127,129,130,131,132,134,135,137,139,164],ci4_:51,ci4tutori:194,ci_control:[121,123,127,137],ci_debug:184,ci_environ:[7,9,70,71,72,100,193],ci_migr:130,ci_model:[121,131],ci_sess:[31,58,157,190],ci_sessions_timestamp:157,ci_vers:[30,140],cibc:164,cid:148,cidatabasetestcas:[2,11,12,20,113],cidatabaseunittestcas:12,cipher:[40,44,149],ciphertext:[126,149],circl:84,circumst:[53,161,173],citeststreamfilt:[2,4,22,189],cithem:7,citi:[70,168,178],citizen:166,ciunittest:5,ciunittestcas:[2,3,4,10,89,96,113,182,183,185,186,189],claim:[143,165],clarifi:[41,164,168],clariti:[101,166,194],class_nam:53,classic:98,classmap:[3,9,28],classmat:91,classnam:[23,58,77,94,102],classnotfound:4,claus:[12,52,56],clean:[3,4,5,6,11,13,28,145,168,178,179,180,188,189,194],clean_path:28,cleanclon:24,cleanfilenam:28,cleanpath:28,cleanup:[6,9,13,14,28,72],clear:[5,16,30,32,49,52,125,142,146,147,148,157,158,166,174,180,193],clearattach:148,clearer:[41,181,186],clearli:173,cli:[1,2,3,4,5,6,7,8,10,11,12,15,16,21,27,28,34,59,77,95,96,102,103,108,111,130,155,157,189],cli_command:[5,8],cli_librari:8,cli_request:3,click:[73,83,91,96,161,193],clickabl:148,client:[17,36,37,40,42,44,93,95,96,98,145,147,148,149,161,164,170,173,182,194],clientextens:11,clirequest:[2,3,9,10,34,64,103],clirequesttest:3,clitest:[4,8],clone:[14,105,107],close:[8,10,11,14,15,30,51,52,83,90,157,169,177,178,182,195],closer:[6,39,68],closest:106,closur:[10,28,51,52,55,65,69,145,168,178,181,182],club:164,cmd:29,coalesc:9,code:[4,6,7,8,9,11,13,15,16,20,21,22,28,29,30,35,36,37,39,40,41,42,45,50,51,52,54,56,58,59,63,64,65,67,69,70,72,73,74,79,80,81,82,83,84,86,87,88,89,90,92,94,95,102,103,105,107,108,110,111,114,115,117,121,141,142,143,145,147,152,154,155,156,157,161,164,166,168,169,170,172,173,175,178,179,180,181,182,184,185,188,189,190,191,192,193,194,195],codebas:[107,108],codec:84,codeignit:[2,3,4,5,8,10,11,13,14,17,18,20,22,23,28,29,30,31,32,34,35,36,37,39,41,42,43,44,45,46,49,51,52,53,55,56,57,58,59,60,61,62,64,65,68,69,71,72,73,74,75,77,81,82,84,88,89,91,93,94,95,96,98,99,100,101,102,103,104,105,106,108,110,111,112,113,115,116,117,120,121,140,141,143,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],codeigniter3:104,codeigniter4:[0,1,3,4,5,6,8,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,31,42,60,63,76,95,104,107,108,117,118,119,120,121,143,144,151,155,172,192,193],codeigniter4project:107,codeigniterconfigservic:14,codeignitercontrol:10,codeigniterdatabaseforg:56,codeigniterdebugtim:69,codeigniterent:20,codeigniterentityent:20,codeigniterimagesimageexcept:152,codeigniterload:3,codeignitertest:[4,5,10],coffe:194,col:[83,192],collabor:105,collat:[44,56],collect:[10,42,46,51,58,70,72,73,85,98,103,146,153,162,164,181,182,184,186],collector:[2,5,6,8,9,10,13,28,46,157],collid:189,collis:[30,82,155,173],colon:[30,44,51,102,157,164,169,193],color:[8,15,16,28,29,30,83,84,90,128,152,166,174,179,184],colspan:174,columbia:[141,165],column:[4,8,12,16,32,39,50,51,52,53,58,102,116,159,164,166,168,174,177,183],column_1:56,column_2:56,column_nam:[50,56,168],column_to_drop:56,columnlimit:174,com:[5,29,37,51,59,70,78,80,83,84,90,91,94,96,98,102,107,108,119,122,125,145,147,148,154,155,157,161,162,164,166,168,172,173,178,180,182,183,185,186,193],combin:[52,53,69,83,95,96,102,147,159,164,168,173,179],come:[30,31,33,35,39,40,41,42,49,57,70,71,75,77,105,108,121,145,151,155,157,166,167,168,170,178,182,189,193,195],comfort:[77,121],comma:[56,69,82,101,148,157,164,166,175,178],command:[2,3,4,6,8,9,10,11,12,14,15,16,17,27,28,32,33,52,64,69,73,76,77,95,96,103,105,108,109,130,142,145,148,150,155,157,168,170,172,178,180,185,189,193,194,195],command_on:30,command_two:30,commandclasstest:12,commandrunn:[2,3,5,11,28,102],commandrunnertest:6,commandstest:[3,6],comment:[3,4,6,8,14,52,73,91,94,109,111,113,116,117,120,124,184,193],commit:[4,54,193],common:[3,4,5,6,7,8,10,11,12,13,36,39,54,66,67,75,76,77,78,83,87,93,95,98,100,101,102,103,108,109,145,147,154,155,157,161,163,164,166,170,178,185,189,192,193],common_funct:[3,5,8,13],commonfunctionssendtest:4,commonfunctionstest:[4,5,13],commonli:[32,142,145,147,159,163,166,168],commun:[15,40,44,60,63,141,147,148],compani:[30,39,77,185],companion:90,compar:[3,52,82,91,105,121,157],comparison:[52,159,178],compat:[4,17,22,23,35,41,60,69,75,77,81,102,111,113,116,121,143,147,178,189],compil:[51,52,184],compiledinsert:168,complain:56,complement:47,complet:[1,4,20,23,24,25,28,32,40,47,54,65,72,75,84,90,96,113,142,145,147,148,150,154,157,158,163,166,174,183,191,192],complex:[1,32,36,37,52,79,84,93,95,142,145,162,164,166,172,173],compli:148,complianc:[103,111],complic:[157,186],compon:[31,36,58,75,94,121,131,143,155,157,171,182,184,188,189],compos:[3,4,5,6,7,9,14,28,31,42,58,60,75,76,103,104,106,111,113,117,118,119,120,121,145,155,172,193],composer_path:76,composerscript:[4,5,8],composit:[7,23],compound:[50,52],comprehens:[149,164,191],compress:[16,44,45,93,96,98,156],compromis:[40,185],comput:[29,52,173],con:108,concaten:181,concept:[4,5,6,8,10,12,37,38,121,143,157,166,194],concern:[99,146,156,157,159,164],concis:36,conclud:[157,194],conclus:[103,193],concret:36,cond:52,condit:[11,14,51,52,71,75,154,157,165,172,185,192],condition:148,conf:[71,108,109],confer:14,config:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,20,21,23,28,29,35,41,42,44,45,46,47,51,52,54,56,58,59,61,64,65,68,69,70,71,72,73,75,76,80,81,82,83,84,90,91,93,94,95,96,102,105,108,109,111,113,114,116,117,120,121,122,124,125,126,127,129,132,134,135,145,146,149,150,151,152,154,155,157,158,160,162,163,166,170,172,173,176,178,179,180,181,182,183,184,185,188,189,190,192,194,195],configapp:182,configcollect:150,configcooki:146,configdatabas:12,configemail:14,configexcept:[6,11],configservic:[5,111],configtest:[6,8],configur:[3,5,6,8,13,20,28,40,41,42,45,47,49,51,56,58,68,69,74,76,77,78,82,84,91,94,96,99,103,104,109,113,120,121,134,140,142,146,148,151,156,157,175,176,184,185,192,194,195],confirm:[32,58,137,164],conflict:[36,58,106,164,168,170],conform:4,confus:[4,6,39,178],congu:90,conjunct:[69,173],conn:[36,69],connect:[2,4,5,6,7,8,9,10,12,22,28,36,43,44,47,49,50,51,52,53,56,58,59,72,82,96,103,113,115,131,145,147,148,157,165,183,184],connect_timeout:44,connectioninterfac:[2,52,69,113,168],connecttest:[4,6],connid:43,connor:90,consid:[40,45,51,52,70,83,94,101,102,146,149,150,157,160,174,178,185,190],consider:[121,152],consist:[5,30,35,37,58,60,90,113,157,178,186],consol:[2,15,20,75,147,173],consoletest:10,consolid:[20,113,189],constant:[5,12,14,28,35,41,42,65,74,76,77,81,94,100,103,108,111,140,146,149,152,158,184],constantli:41,constrainprefix:12,constraint:[4,40,56,58,130],constraint_nam:50,construct:[21,37,78,146,178,184,193],constructor:[36,41,44,45,61,64,69,73,111,123,146,147,150,155,159,162,166,168,174,175,178,179,185],consum:41,consumpt:53,cont:148,contact:[24,91,117,164,173,182,186],contain:[15,20,28,30,31,35,37,41,42,44,45,46,47,50,51,52,53,55,56,59,69,70,71,73,75,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,102,121,137,147,148,152,154,155,156,157,160,162,163,164,168,170,172,173,174,177,178,184,186,189,190,192,193,195],contant:4,content:[9,11,15,16,28,37,39,40,42,52,67,69,73,82,83,84,90,92,95,97,103,106,124,139,147,148,155,156,157,160,168,170,177,178,179,180,184,185,186,190,191,194,195],content_typ:[96,186],contentsecuritypolici:[2,5,6,28,64,111,113,173],contentsecuritypolicytest:[5,6,8],contenttyp:96,context:[25,28,40,69,80,111,118,146,157,168,173,178,194],continu:[16,32,162,164,166,180,184,192,193],contract:165,contrast:54,contribut:[3,6,8,11,12,66,103,107,113],contributor:107,contriv:166,control:[3,4,7,8,10,11,12,14,15,17,29,30,32,35,36,38,41,42,52,58,59,64,65,66,68,69,70,73,76,82,83,84,91,96,103,104,108,110,111,113,116,127,132,134,137,138,140,145,146,147,151,152,154,155,156,157,158,159,162,163,170,172,173,175,177,178,179,180,186,187,189,190,191,192,193,194],controller_load:69,controllerrespons:[7,20,113],controllertest:[7,8,11,14,20,113],controllertestertest:8,controllertesttrait:[20,113,182],conveni:[30,33,45,58,69,73,84,94,96,101,102,150,154,164,166,168,179,182,189],convent:[30,33,37,94,101,102,107,121,131,143,157,172,178,179],convers:[71,121,164,166],convert:[7,11,13,17,69,83,87,88,90,91,92,94,96,98,99,121,144,159,160,164,166,168,173,178],convert_accented_charact:90,cooki:[2,3,4,11,16,17,20,21,22,28,69,73,85,96,100,103,111,113,149,153,155,156,157,173,189],cookie_help:[3,73],cookie_prefix:96,cookieconfig:146,cookiedomain:157,cookieexcept:[20,69,146],cookiehelpertest:3,cookiehttponli:157,cookienam:17,cookiepath:157,cookieprefix:[80,157],cookiesamesit:157,cookiesav:147,cookiesecur:157,cookiestor:[20,22,24,69,146],cool:183,cop:180,copi:[12,15,16,59,69,70,82,90,96,105,106,108,121,122,138,149,152,155,165,172,193,195],copypast:14,copyright:[6,13,152,165],core:[14,32,35,39,41,61,62,65,66,75,77,103,111,121,142,166,185,194],core_class:[4,8],corner:152,correct:[4,5,7,8,9,10,12,13,14,15,25,28,36,37,40,44,48,61,70,80,95,96,99,102,118,152,154,160,161,162,164,168,172,183,184,186,189,193],correctli:[7,16,30,90,102,143,159,162,166,173,184,188,189,195],correl:68,correspond:[36,70,75,90,94,96,101,102,105,107,117,118,119,120,121,140,152,157,161,164,172,178,180,185,194],cosmet:[22,115],cost:158,could:[16,29,30,32,36,40,42,43,44,46,52,56,58,70,73,76,84,95,96,98,102,108,113,116,127,128,142,154,156,157,158,161,164,166,172,173,175,177,178,179,180,182,185,189,192,194],couldn:145,count:[4,13,28,30,32,47,53,86,90,148,150,154,157,162,174],count_al:[124,132],countabl:[86,150],countal:[3,48,52,124],countallresult:[6,11,48,52],countdown:32,counter:65,countri:[51,52,59,70,81],countryseed:59,counttest:12,coupl:[30,39,109,164,173,182,183,193,194],cours:[42,77,83,157,161],cover:[17,111,113,116,117,120,143,191],coverag:[6,8,16,108],cra:90,crash:[14,156],cratemigr:4,crazi:52,creat:[4,6,7,13,15,16,17,29,31,32,35,36,39,41,42,45,46,51,52,61,62,65,66,67,69,71,72,73,75,76,77,82,83,84,89,90,91,94,98,101,102,103,105,122,130,132,134,143,147,148,149,150,152,155,157,170,173,174,178,179,182,185,189,190,193,195],create_link:132,create_news_item:[4,6],create_t:130,createcisessionst:58,created_at:[8,166,168,178,185],createdatabas:56,createdfield:168,createfakeus:189,createfromformat:[53,173],createfrominst:20,createkei:149,createmigr:[2,4,11],createsettingst:58,createt:[56,58,130],createuristr:162,createus:170,creation:[6,31,41,56,146,152],creativ:142,credenti:[40,70,124,170,183],credit:[40,103,164],creditcardrul:[2,4,164],crisp:32,criteria:[102,164,170,183],critic:[14,58,69,72,75],crlf:148,cron:[16,29,52,102],cronjob:[30,168],cross:[6,27,84,111,146,179],crucial:77,crud:[101,131,168],cruft:4,crypto:90,cryptograph:[149,150],cryptographi:149,csp:[6,14,28,69],csp_script_nonc:[28,69,173,178],csp_style_nonc:[28,69,173,178],cspenabl:[70,173],csrf:[6,11,12,13,17,23,27,69,83,94,95,102,111,135,151],csrf_field:[5,6,69,83,135,156,192],csrf_hash:[69,156],csrf_header:[69,156],csrf_id:83,csrf_meta:[69,156],csrf_token:[69,156],csrfcookienam:17,csrfexpir:17,csrfheadernam:[13,17],csrfprotect:156,csrfredirect:17,csrfregener:17,csrfsamesit:17,csrftest:6,csrftokennam:17,csrfverifi:17,css:[3,5,7,42,69,84,90,91,111,113,150,154,155,173,178,179],csv:[53,150,173],ctr:149,cubird:56,cubrid:144,cumbersom:[54,150],cumul:56,curabitur:90,curl:[12,13,29,104,147,155],curl_cookiefil:147,curl_cookiejar:147,curl_log:147,curlfil:147,curli:[14,75,160,164,168],curlopt_verbos:147,curlrequest:[2,3,4,9,10,12,13,16,21,23,100,103,144,153,155,189],curlrequesttest:[3,4,10,12,13],currenc:[87,172,178],current:[3,7,10,16,17,24,28,30,32,35,40,43,44,46,50,51,52,53,56,58,60,65,68,69,72,75,77,81,82,83,91,93,95,96,98,100,102,105,107,140,144,146,147,149,150,154,155,157,159,161,163,164,166,168,173,175,183,184,185,186,189,194],current_timestamp:157,current_url:[14,20,91,113,162,178],currentag:163,currentsect:20,currstep:32,cursor:32,custom:[9,15,16,20,28,34,35,41,49,52,71,77,80,81,94,95,100,103,108,122,132,145,147,148,155,163,168,170,172,173,175,176,180,182,185,186,194,195],customclass:[70,122],customiz:44,customlog:108,customset:174,cut:53,cyan:32,cycl:[68,90,148,186],d08b68:8,d2b377:6,d7dfc5:5,dai:[65,69,75,155,159,174,178,191],daili:[109,155],daily_photo:155,dailyphoto:155,damag:[149,165],danger:[162,164,168],dankort:164,dark:1,dark_blu:32,dark_grai:32,darn:90,darth:[59,168],dash:[16,33,58,86,91,92,98,160,164,192],dasher:86,data1:178,data:[6,10,13,14,16,17,18,23,24,36,39,42,44,46,47,50,51,53,58,59,61,65,69,78,79,82,83,84,87,89,90,92,93,95,96,98,100,101,103,111,116,121,127,130,131,132,136,137,138,139,145,146,147,148,149,151,154,161,162,164,170,172,173,174,175,181,183,187,188,192,194,195],data_to_cach:145,databas:[2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,22,24,28,30,31,36,39,40,42,43,52,53,54,55,65,69,72,75,77,82,89,90,102,104,108,111,115,121,130,131,140,144,145,155,157,159,164,166,167,174,178,179,180,184,185,186,187,189,192,193],database2_nam:45,database_nam:44,databasebaseresult:4,databasebaseutil:3,databaseexcept:7,databasehandl:[4,5,13,22],databasetestcas:113,databasetesttrait:[20,113,182,183,186,189],dataexcept:168,datamap:166,dataseek:53,datatyp:56,date:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,31,37,47,52,58,69,73,82,85,103,104,111,124,153,155,164,168,172,173,178,184,185],date_help:[7,8,10,81],date_modifi:178,dateformat:[10,168],datehelpertest:4,datestr:166,datetim:[9,10,53,146,159,166,168,173],datetimecast:20,datetimeinterfac:[20,146],datetimezon:[81,146,159],daylight:[159,172],dayofweek:159,dayofyear:159,db1:45,db2:45,db_connect:[11,36,45,51,124,168],db_name:56,dbcollat:[44,45,56],dbdebug:[20,44,45,113],dbdriver:[44,45,183,194],dbforg:130,dbgroup:[4,5,6,13,31,58,168],dbm:[56,113],dbmgmt:[4,7,8,9,10,11,12,13],dbmgt:5,dbname:[44,56],dbprefix:[12,44,45,51],dbqueri:[46,65],dbutilstest:[9,10],de_d:87,deal:[73,149,165,192],debub:181,debug:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,23,24,28,41,46,51,54,64,69,70,75,103,108,109,111,113,140,148,182,187],debugbar:[9,14],debugtoolbar:[6,11,95],debugtoolbartest:6,dec:5,decad:69,decid:[41,42,95,181],decim:[8,87,164,178,181],decis:148,declar:[3,8,17,53,56,61,64,70,82,84,94,110,113,164],decod:156,decor:[28,103,171],decrement:[7,52,145,185],decrypt:[126,149],dedic:[31,56,59,71],deem:33,deeper:79,default_ful:[4,154],default_head:4,default_method:94,default_simpl:[4,154],defaultfix:9,defaultformatt:185,defaultgroup:[5,44,45,58],defaultlocal:[129,172,185],defeat:84,defin:[3,4,5,6,12,13,17,23,30,31,35,42,45,53,56,58,60,61,62,67,69,70,72,73,76,77,78,83,84,90,93,95,108,122,130,134,146,150,154,155,161,162,164,166,170,172,174,177,178,179,181,183,184,189,194,195],definit:[4,8,20,29,50,56,83,94,102,110,116,123,130,155,172,173,195],defint:15,deflat:96,degre:[152,178],deject:84,deldir:82,deleg:195,delet:[6,9,10,11,15,23,37,48,51,53,56,80,82,95,96,99,101,102,116,145,146,147,156,157,161,170,173,185,186],delete_cooki:[80,146],delete_fil:[16,82],deletecooki:[111,146,173],deleted_at:[10,166,168],deletedfield:168,deletedus:168,deletematch:145,deletetest:[6,12],delimit:[56,91,102,148,164],deliveri:174,demand:54,demo:[30,158],demonstr:[30,84,90,94,148,154,161,189,192],deni:[108,168],denot:86,depend:[6,17,20,28,36,37,41,44,51,56,58,71,72,73,90,96,100,105,107,113,116,145,147,149,157,178,179,184,185,194],deploi:[5,58,70,108,148],deploy:[70,107],deprec:[1,14,17,18,20,31,75,100,111,113,116,117,120,126,149,157],depress:84,depth:[79,82,96,174],deriv:[149,164,192],desc:[52,175],descend:96,describ:[30,32,36,37,38,39,41,47,52,69,71,75,77,79,93,94,98,101,102,105,106,108,111,147,148,149,154,164,168,172,174,178,182,183,194],descript:[30,31,32,36,40,44,56,58,75,80,102,107,146,148,155,157,164,168,170,178,179],deseri:24,design:[39,40,51,66,70,78,101,149,174,178,181,182,191],desir:[36,39,42,52,53,56,70,71,93,96,102,142,152,155,159,164,172,174,179,180],destin:[31,59,82,102,155,161,173,186,190],destroi:[16,162],detail:[1,28,29,36,39,44,47,58,69,70,72,75,77,80,94,96,100,102,145,147,149,154,157,161,162,164,168,173,178,182,185,190],detect:[21,44,58,77,79,91,96,100,155,163,177,182,189],detecturi:[22,115],determin:[10,15,32,37,39,42,48,51,52,54,58,75,83,86,91,93,94,98,102,145,147,148,150,151,152,154,158,159,162,163,164,168,170,172,183,184,185,190,192],dev:[11,108,149,189],develop:[3,7,30,31,37,39,41,44,58,59,60,70,71,72,75,102,105,106,107,109,111,113,130,141,142,155,157,161,168,170,173,178,183,184,192,193,195],developtoolbar:150,devic:163,devis:149,devkit:107,devstart:1,devuserseed:30,dgvzda:166,diacrit:13,diam:90,dictum:90,did:[29,52,75,78,94,111,116,161,164,170,180,191,192,195],didn:[5,9,23,116,157,172],die:13,dies:[72,184],diff:159,differ:[5,11,17,24,30,31,32,35,37,39,41,43,45,51,52,56,58,69,71,75,76,77,78,82,91,93,95,99,102,104,105,108,113,116,121,125,128,133,139,146,148,149,154,155,157,162,163,164,168,170,172,173,174,177,178,179,181,182,185,189,192,194],differenti:[32,71],difficult:189,dig:96,digest:[147,149],digit:[14,53,87],dignissim:90,dimens:[152,164],dimension:[84,174,178,180,190],diner:164,dinersclub:164,dinner:[90,159],dir:[82,152],dirac:84,direct:[6,10,36,42,52,78,107,108,122,130,134,149,156,161,164,166,173,177,190,195],directli:[20,30,36,40,52,56,68,90,93,96,107,111,113,131,143,145,146,150,154,155,156,157,159,161,163,164,166,168,172,173,177,178,179,180,185,188,190,194],directori:[4,5,6,12,29,30,35,39,41,44,58,59,62,69,70,73,77,78,82,88,102,105,108,123,131,145,150,154,155,156,157,164,166,168,172,177,183,189,194,195],directory_map:82,directory_mirror:[21,82],directory_nam:[121,139,180],directorydepth:82,disabl:[11,14,16,28,36,58,69,71,72,94,95,102,108,116,120,147,157,158,183,184,192],disableforeignkeycheck:58,disallow:[20,90],discard:[168,181],discov:[41,102,155,161,164],discover:77,discovercomposernamespac:28,discoveri:[6,17,36,70,111,182],discoverincompos:[28,77],discret:[73,80,173,174],discuss:[37,39,52,93,146,178],dishearten:84,disk:[145,147,161,194],disp:148,dispatch:[20,24],displai:[7,24,30,32,37,39,42,44,46,48,56,58,68,69,71,72,75,83,84,94,95,98,102,109,137,146,148,152,154,155,156,161,162,166,168,172,174,177,178,179,192,195],display404error:14,display_error:127,displi:164,disposit:148,dissert:101,dist:[5,8,9,76,105,108,111,113,155,189],distinct:52,distinguish:[70,101],distribut:[7,44,70,101,157,165,180],div:[73,83,137,154,164,168,178,179,194],dnt:96,do_upload:127,doc:[1,3,4,5,6,7,8,9,10,11,14,20,94,111,172],docblock:[8,9,20],docbot:[4,5],doctyp:[84,111,161,177,195],docu:6,document:[4,6,8,12,13,14,39,52,63,67,77,84,88,94,96,98,100,105,106,108,121,142,147,165,185,191,195],documentroot:108,doe:[23,25,28,30,32,35,37,39,41,42,45,50,51,52,53,54,60,62,64,70,72,73,75,78,79,80,82,83,84,90,93,95,96,102,109,113,118,142,143,145,146,147,148,150,152,155,157,158,159,161,162,164,166,168,177,180,181,182,183,184,185,186,188,190,194,195],doesn:[3,14,28,32,52,53,69,75,96,98,105,109,149,152,157,158,159,161,164,166,172,173,192,195],dog:86,doing:[16,45,48,52,62,64,91,152,168,180,193],dollar:[102,164],domain:[6,69,80,102,111,146,147,154,157,162,173],dompars:[7,8],domparsertest:[7,8],don:[4,6,7,13,14,24,32,35,40,42,45,51,59,71,73,77,79,87,94,95,96,99,102,105,109,116,121,123,140,145,148,149,154,156,157,158,164,166,168,173,179,181,185,192,194,195],done:[30,32,35,51,70,75,93,95,102,108,121,145,147,151,157,159,166,173,177,178,181,185,189,194,195],donec:90,donload:4,dont:8,dontse:190,dontseeel:190,dontseeindatabas:[183,185],dosendcooki:24,dot:[70,79,96,162,164],dot_array_search:[14,20,79,96],dotenv:[2,64,70],doubl:[5,7,77,83,90,92,102,156,160,166,181],down:[53,58,75,83,94,95,130,158,189,192],downcount:185,downgrad:58,download:[3,4,5,6,11,19,104,106,107,108,111,155,172,189,193,195],downloadexcept:[3,4],downloadrespons:[3,4,5,11,111],downloadresponsetest:[3,4,5,11],downsid:157,dox:4,draft:[56,143],drastic:178,drive:10,driven:63,driver:[4,7,10,28,43,44,45,48,50,51,53,56,103,108,113,116,134,143,144,149,152,153],drop:[6,10,12,18,58,75,83,126,130,149,157],drop_tabl:130,dropcolumn:56,dropdatabas:56,dropdown:[83,107,164],dropforeignkei:56,dropkei:[23,56],droptabl:[7,56,58,130],dry:101,dsn:[44,45,148],dst:159,dtd:84,dual:[95,102],duckduckgo:193,due:[17,23,52,91,111,113,114,116,117,119,120,145,147,157,170,185],dummi:[2,32,70,158,188],dump:[76,184],dupe:11,duplic:[3,4,14,79,90,155,168],durat:[51,69,94,172,178,181,184],dure:[5,6,9,10,16,30,32,40,41,46,51,59,65,69,70,102,108,147,152,157,158,161,162,166,168,170,172,173,176,178,182,183,184,186,188,189,190,193],dynam:[68,78,108,145,149,155,157,164,168,194],e21823:10,each:[17,24,28,30,31,35,36,37,39,40,41,42,44,47,50,51,52,53,54,58,69,70,73,75,76,77,78,79,81,82,83,86,90,93,94,95,98,102,107,108,121,130,134,147,148,149,150,152,154,155,157,158,161,162,163,164,166,168,169,172,173,174,178,179,180,181,182,183,185,186,189,193,194,195],earli:[62,65],earlier:[8,52,105,157,164,172,178,179,180,192,194,195],eas:[31,96,186],easi:[1,29,36,37,39,40,41,66,69,70,78,94,101,102,105,146,155,157,162,180,184,185],easier:[7,11,58,77,81,94,101,107,113,131,161,164,169,172,178],easiest:[51,154],easili:[29,30,40,41,51,59,69,70,75,78,93,95,96,98,102,104,142,146,147,154,159,162,164,166,178,181,184,194],eat:84,echo:[30,33,39,47,48,50,51,52,53,55,56,69,72,77,81,82,83,84,86,87,90,91,92,96,98,100,102,121,123,124,126,128,129,132,137,139,140,145,147,149,150,152,154,159,161,162,163,164,166,172,173,174,179,180,181],edg:[32,102],edit:[14,35,58,61,68,77,91,101,147,154,156,158,164,170,173,178,183,192],editor:[29,94,108,161,164,180],effect:[32,52,58,69,70,78,108,111,113,116,117,120,146,155,157,168,178,179],effici:[53,67,146,163],effortlessli:149,eget:90,eight:[75,174],either:[15,32,40,41,43,52,69,70,75,81,83,84,91,95,96,98,102,114,145,147,148,149,150,151,152,154,156,157,159,161,162,164,166,168,170,173,175,178,179,186,188,189,190],eke:35,eleg:168,element:[24,39,55,70,73,77,79,83,84,93,108,147,149,154,162,164,168,170,172,174,178,186,190,194,195],eleven:[90,174],elimin:[20,51,169,178,195],elips:84,ellips:[84,90],ellipsi:90,ellislab:141,els:[29,51,52,54,65,71,82,100,109,127,137,146,163,164,168,169,170,178,193,194],elseif:[163,169,178],elsewher:[31,168],elvi:194,email:[2,4,6,11,14,32,47,51,53,59,65,69,82,83,91,94,96,103,104,111,121,129,131,135,137,140,153,157,164,166,168,170,172,178,183,185,186,188,189],emb:[84,148],embark:121,embed:[155,180],embrac:101,emerg:[69,75],emit:189,empti:[4,5,6,12,20,24,53,56,69,70,82,83,84,91,93,94,95,102,137,145,146,148,162,163,164,168,170,173,174,178,183,190,194],emptyt:52,emptytest:[8,12],emul:[94,157,182,188],en_gb:87,en_u:[87,159,178],enabl:[6,9,29,40,43,48,51,52,54,58,70,78,90,95,99,104,108,111,116,121,135,142,144,147,148,149,154,155,157,162,164,168,172,173,174,181,182,189],enablefilt:116,enableforeignkeycheck:58,enact:155,enclos:[52,178],encod:[5,39,40,69,84,91,96,98,113,121,146,147,156,162,166],encode_php_tag:88,encount:[32,51,170],encourag:[60,91,170],encrypt:[7,11,12,13,14,16,17,40,44,45,90,103,104,111,121,140,148,150,153,157],encrypterinterfac:[11,149],encryption_kei:126,encryptionexcept:[11,149],encryptiontest:[11,12],end:[32,40,44,51,52,53,65,70,72,90,95,102,105,108,111,145,149,152,155,156,158,162,164,166,169,173,178,180,181,189],end_char:90,endfor:169,endforeach:[139,154,161,164,168,169,180,194],endif:[154,168,169,178,194],endpoint:[93,95,156,170,186],endsect:177,endwhil:169,enforc:[39,40,56,93,158,166],engin:[6,16,51,56,68,69,78,108,109,145,157,169,175,178],english:[86,90,93,172],enhanc:[1,5,6,8,10,11,12,13,14,15,16,17,20,21,105,106,139,189],enim:90,enjoi:[108,193],enough:[20,102,149,158,166,172,177,185],ensur:[3,4,7,8,10,11,14,16,17,32,36,40,41,44,58,64,70,75,91,95,101,111,141,146,147,149,159,162,166,168,173,178,182,183,185,186,188,189,190,192],enter:[32,44,151,193],entir:[53,64,71,73,75,96,145,147,148,157,158,164,178,181,182,186,189,190,193],entiti:[3,4,5,6,7,8,9,10,11,14,16,17,20,35,42,77,88,90,92,103,141,160,167,168,178,185],entities_to_ascii:90,entitit:10,entitl:40,entityexcept:9,entitytest:[3,5,7,9,10,11],entri:[52,84,91,102,164,173,178,189],env:[7,14,16,17,20,69,70,72,75,76,84,105,108,109,111,113,149,151,183,184,193,194],environ:[4,5,7,17,20,21,23,30,44,45,56,58,69,72,74,75,103,108,109,130,134,145,157,182,184,192,193,195],eol:[32,164],eot:155,epoch:[20,145],equal:[9,52,69,70,79,131,147,164,174],equip:[31,86],equival:[90,96,101,109,112,155,185,195],eras:[32,157],ero:90,errand:180,errata:13,error:[3,4,5,7,8,9,10,11,12,13,14,16,20,28,30,35,41,44,52,53,58,69,74,75,77,82,94,95,102,103,108,111,113,117,127,129,137,147,148,152,155,156,157,161,168,170,172,173,178,189,192,193,195],error_404:[3,72,111,113],error_email_miss:129,error_except:[111,113,117],error_log:[20,75,108],error_pag:108,error_url_miss:129,error_username_miss:129,erroremailmiss:[129,172],errorlog:[75,108],errorloghandl:20,errorurlmiss:[129,172],errorusernamemiss:[129,172],esc:[5,25,40,69,80,83,118,123,139,161,164,178,179,180,192,194,195],escap:[2,3,4,6,7,12,14,16,23,47,52,69,79,91,113,116,124,164,168,194],escapelikestr:51,escapelikestringdirect:12,escapeshellarg:8,escapestr:51,escapetest:12,eschew:142,eskdikejidojdk978ad8jf:[69,173],esm:155,especi:[6,32,59,69,93,102,147,150,157,164,166,168,178,186,189,190],essenti:[150,186],establish:45,etag:173,etc:[5,7,29,31,35,37,39,41,44,46,48,50,51,52,56,61,69,71,72,73,75,77,82,83,86,87,90,95,96,100,102,105,108,148,149,156,159,162,163,164,168,172,173,177,178,180,188,190,193],etiam:90,eur:[87,178],europ:[159,166],eval:178,even:[15,29,30,31,32,35,39,46,51,54,64,73,76,77,83,95,96,102,108,113,146,149,154,156,157,161,164,168,173,184],evenerror:164,event:[2,4,5,6,8,10,14,49,59,60,64,66,72,75,77,83,91,95,103,111,113,161,164,165,182,184,189],event_priority_high:65,event_priority_low:65,event_priority_norm:65,eventnam:189,eventstest:8,eventtest:6,ever:[6,32,83,158,172,184],everi:[16,32,35,36,39,45,51,52,58,61,64,69,70,75,77,91,94,95,121,125,128,129,132,136,139,149,150,154,155,156,157,158,161,164,168,170,172,173,176,183,186,189,191,195],everybodi:70,everyth:[29,37,39,56,65,78,95,121,149,150,157,173,192,193],everywher:[122,124,157],exact:[10,39,51,77,90,108,147,152,159,162,164,168,172,173,184,189,190],exact_length:[8,164],exactli:[29,30,32,36,41,52,53,56,58,70,95,102,157,159,164,173,177,178,179,185,189],examin:52,exampl:[5,8,14,29,32,39,40,41,42,43,44,45,46,48,49,50,51,52,53,56,61,64,65,67,69,70,71,72,73,75,76,77,78,79,82,83,84,86,87,88,89,90,91,92,93,94,95,96,98,103,107,108,113,121,146,147,148,149,150,152,154,156,157,158,160,161,162,164,166,168,169,172,173,175,178,180,182,183,184,185,186,189,194],example_field:51,example_t:51,exce:[145,161,164],exceed:[45,148],excel:[172,184],except:[2,3,4,5,6,7,8,9,10,11,12,13,16,20,22,28,30,32,52,53,56,64,69,75,78,80,83,90,91,94,95,96,101,102,111,113,115,116,117,120,121,125,142,145,146,149,152,156,157,159,160,164,168,169,173,174,178,184,193,194,195],excerpt:[90,178],excess:90,exchang:[37,149],exclam:[51,164,178],exclud:[12,50,78,82,95,148,189],exclus:82,exec:152,execut:[4,7,8,22,27,30,35,40,46,52,53,56,65,69,72,82,94,95,102,108,115,121,143,147,154,155,157,158,168,170,178,182,183,184,188,189],exempt:95,exhibit:146,exif:12,exist:[3,4,6,9,11,12,13,14,16,30,31,32,35,45,52,53,56,59,62,64,69,70,73,75,78,79,80,82,84,92,96,98,101,102,111,115,117,118,119,120,121,130,145,146,148,149,150,154,155,157,158,159,161,162,166,168,170,172,173,177,178,179,183,185,186,188,190,192,195],exit:[4,10,11,72,122,130,134],exmampl:162,expand:[3,75,83,155,191,192,193],expect:[20,35,56,70,73,95,96,102,108,109,111,113,116,148,156,157,158,161,162,166,168,178,180,183,186,189,191,192,193,195],expectedmessag:189,expens:173,experi:[72,102,156,157,164,168],experienc:[72,152,157],expir:[17,20,68,80,111,145,146,157,173,190],expiri:[145,157,173],explain:[12,94,108,149,157,164,193],explan:154,explicit:[17,36,67,111,168],explicitli:[45,70,82,102,105,149,164,173,195],explod:[164,166],exploit:40,explor:[111,113,116,117,120,193],expos:[40,70,157,178],express:[16,52,95,156,164,165,174,195],expressionengin:141,ext:[4,56,150,161],ext_in:[127,164],extend:[3,4,8,10,11,12,14,16,17,28,29,30,31,32,36,41,42,44,55,58,59,70,72,75,77,89,95,96,98,100,101,102,103,109,111,113,116,122,123,127,129,130,131,135,137,142,143,145,147,149,150,151,154,155,156,157,158,159,161,162,164,166,168,170,172,173,176,177,178,179,180,182,183,184,185,186,189,192,194,195],extens:[4,10,12,14,17,35,36,44,56,61,73,75,78,102,104,109,113,121,144,145,149,150,152,155,157,159,161,164,172,173,178,180],extern:[20,58,155,156,157],extra:[13,35,83,94,108,147,164,168,185,192],extract:[9,90,106,148,166,178,179],extran:12,f699c7fd18a8e082d0228932f3acd40e1ef5ef92efcedda32842a211d62f0aa6:146,fabric:[16,89],fabricatormodel:185,fabricon:185,face:106,facebook:173,facilit:[69,111,150],fact:[36,157,180],factor:[52,185],factori:[17,38,41,77,103],fail:[7,8,9,20,51,54,56,82,113,116,127,143,145,147,148,152,155,156,158,161,164,168,170],failforbidden:170,failnotfound:170,failov:[44,45],failresourceexist:170,failresourcegon:170,failservererror:170,failtoomanyrequest:170,failunauthor:170,failur:[11,51,52,53,54,56,58,70,82,145,148,149,152,155,168,170,174,190],failvalidationerror:[20,170],fair:[54,70],fairli:[30,157,164,166,168],fake:[89,189],fakeext:173,faker:[24,185],fall:[32,172,185],fallback:[5,10,11,16,17],fals:[17,20,32,36,41,44,45,50,51,52,53,54,56,58,65,69,70,73,77,80,82,83,84,86,87,90,91,92,96,98,100,102,111,113,132,137,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,162,163,164,166,168,170,173,174,178,179,180,181,183,184,185,189,190,194],fame:157,familiar:[30,54,77,157,159,169,193,194],far:[67,99,164],fashion:[39,105,106,180,193],fast:[49,68,145,157,193],fastcgi:[71,108],fastcgi_param:71,fastcgi_pass:108,faster:[23,51,142,157,173,178],fatal:[5,102,145],faucibu:90,faulti:40,favicon:[84,155],favor:[17,20,23,142],favorit:[32,56],fcgi:21,fcpath:[4,69,76,82,150,155],featur:[4,6,9,12,14,16,32,40,49,51,52,53,65,69,77,78,94,102,116,145,148,157,159,161,164,166,168,172,178,180,182,183,184,190,193],featurerespons:[2,5,7,9,20,113],featureresponsetest:5,featuretestcas:[2,3,4,5,9,10,20,113],featuretestcasetest:[4,5,9,10],featuretesttrait:[20,113,186],feb:[146,159,173],februari:[1,14,19,27,159],feed:[51,84,102,155],feedback:40,feel:[42,178],fetch:[37,50,53,69,96,100,122,145,146,149,157,180],fetchabl:51,fetchglob:[16,96,100],few:[4,8,16,46,62,69,72,77,94,95,96,102,114,147,157,161,168,172,191],fewer:[102,109],ff0000:152,ff0:90,fff:152,field1:[52,96,164],field2:[52,96,164],field3:52,field:[4,8,9,14,24,28,37,40,44,51,52,53,81,82,101,116,117,135,147,151,156,161,164,166,178,185,190,192,195],field_nam:[50,53,164],fielddata:50,fieldexist:50,fieldmessag:168,fieldnam:[56,168,178],fieldnotexist:9,fieldrul:168,fieldset:83,fieldvalidationmessag:168,fifth:[52,154,159],fig:143,figur:[121,155],file1:[82,161],file2:[82,161],file:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,20,21,28,29,31,32,36,38,39,40,41,42,45,46,48,51,52,53,54,56,62,65,68,69,72,73,75,76,80,81,82,83,84,86,87,88,89,90,91,92,94,95,98,102,103,104,105,108,109,121,122,123,129,130,131,134,139,140,143,146,147,149,151,152,153,154,156,157,159,162,163,165,166,168,171,177,178,179,180,182,183,184,188,189,192,193,194,195],file_1:90,file_4:90,file_5:90,file_exist:134,file_get_cont:155,file_nam:[121,139,180],file_put_cont:155,file_upload:82,filea:32,filecollect:[2,4,12,150,155],filecollectiontest:[4,12],fileexcept:6,filehandl:[4,5,6,8,13,17,22,64,75,182],filehandlertest:[4,5,8,13],fileloc:[2,4,5,6,8,10,11,13],filelocatortest:[5,6],filemovingtest:[3,4],filenam:[4,58,69,82,88,96,111,147,148,150,154,156,161,172,173],filenotfoundexcept:150,filepath:[28,156,161],fileperm:82,filerhandlertest:13,filerul:[2,12,164],files:82,filesystem:[2,85,103,150,155],filesystem_help:4,filesystemhelpertest:7,filetest:5,fill:[5,16,70,146,151,158,159,164,168,184],fillplacehold:[18,112],filter:[2,3,4,5,6,8,9,10,11,12,14,16,22,23,25,28,36,40,42,64,69,80,81,83,94,96,97,98,100,103,110,111,117,118,135,151,155,156,162,164,166,173,184],filter_sanitize_email:96,filter_sanitize_full_special_char:[25,96,118],filter_sanitize_str:[25,118],filter_sanitize_url:98,filter_validate_url:164,filter_var:96,filterinfo:116,filterinterfac:[2,16,36,95,110,158,182],filterpublish:155,filtersconfig:182,filtersinfo:116,filterstest:6,filtertest:9,filtertestcas:182,filtertesttrait:182,find:[5,8,30,32,39,41,54,58,59,61,64,65,70,72,73,76,77,79,91,93,94,101,102,104,108,109,121,131,133,143,149,152,154,156,157,159,161,163,164,166,178,179,189,194],findal:[101,168,194],findcolumn:168,findmigr:58,fine:[29,56,71,99,102,185],finer:102,finfo_open:11,finger:6,finish:162,fire:[65,147],firebird:144,first:[5,6,7,16,30,32,33,35,36,37,41,43,45,48,51,52,53,54,56,58,65,68,70,73,75,78,80,82,83,84,86,90,91,93,94,96,101,102,105,108,109,121,123,130,131,134,139,145,146,147,148,150,152,154,156,158,159,161,162,164,166,168,170,172,173,174,178,179,181,182,183,185,186,189,192,194],first_nam:79,firstlett:178,firstnam:[178,185],fit:[11,32,42,77,145,165,166,185,189],five:[42,52,90,101,154,174],fix:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,26,27,90,101,109,110,111,113,116,117,120,143,152,166,174,193],fixat:157,fixex:8,fizz:[79,96],flag:[10,31,52,56,79,96,100,146,162,173],flame:193,flasdata:136,flash:[69,84,156],flashdata:40,flat:[94,166],flatten:79,flaw:161,fledg:191,flesh:[4,5],flexibl:[29,35,42,78,95,108,142,145,147,154,166,168,177,180],flinston:164,flintson:164,flintston:186,flintyfr:186,floor:178,flow:[39,42,72],fluent:[146,155],fly:[36,148,173],focu:[142,193],focus:[22,115],folder:[5,8,16,29,31,35,36,40,42,44,70,73,76,77,82,94,105,106,108,121,123,130,131,139,152,155,156,161,164,172,185,189,192,193],follow:[3,4,5,6,7,8,9,10,11,12,13,22,24,28,29,30,31,32,36,38,40,41,42,44,45,47,50,51,52,53,54,55,56,58,60,64,65,67,68,69,70,71,72,73,75,76,77,79,80,81,82,83,84,86,87,88,89,90,91,92,94,95,101,102,105,108,109,111,113,114,115,116,117,120,121,124,125,126,130,131,132,133,136,137,143,144,145,146,147,148,149,152,154,155,156,157,158,159,160,161,163,164,165,166,168,170,172,173,178,180,183,184,185,187,188,189,190,192,193,194,195],followsymlink:108,font:[152,155,173],fontpath:152,fontsiz:152,foo:[30,33,37,55,56,65,69,70,75,76,79,83,84,92,93,95,96,133,145,147,154,162,164,166,168,178,179,182,184,189,190],foo_:79,foo_other_detail:79,foo_person:79,foobar:[79,168],foobarbaz:145,foot:[9,174],footer:[39,180,192,194,195],footest:189,footing_cell_end:174,footing_cell_start:174,footing_row_end:174,footing_row_start:174,footprint:142,fopen:82,forbidden:170,forc:[31,32,35,40,44,52,58,59,67,72,77,82,91,94,109,142,147,158,168,185],force_http:[10,16,69,96],forceglobalsecurerequest:[70,162],forcehttp:164,foreach:[4,30,32,47,50,52,53,73,139,147,148,150,154,155,161,164,168,169,178,180,194],foreground:32,foreign:[10,12,23,50],foreign_column_nam:50,foreign_table_nam:50,foreigncharact:[2,90,111],foreignkeycheck:12,foremptyinputgiven:8,forfindcolumnhavemultiplecolumn:8,forg:[2,3,4,6,7,8,9,10,12,13,21,23,57,58,59,103,130],forgeri:27,forget:[109,172],forgetest:[4,6,7,9,10,12,13],form:[2,4,11,20,40,51,53,59,63,65,69,73,77,81,85,94,95,96,99,101,103,107,113,117,127,135,137,141,145,147,151,158,168,170,173,178,180,186,193],form_button:83,form_checkbox:83,form_clos:83,form_dropdown:83,form_fieldset:83,form_fieldset_clos:83,form_help:[3,4,5,6,8],form_hidden:[3,6,83],form_input:[3,83],form_label:83,form_multiselect:83,form_open:[3,15,83,116,135,137,156,164],form_open_multipart:[83,161],form_password:83,form_radio:83,form_reset:83,form_submit:83,form_textarea:83,form_upload:83,form_valid:137,format:[2,3,4,7,9,10,13,15,17,23,28,30,37,39,44,45,51,53,58,69,73,81,84,87,88,91,93,94,98,100,101,111,113,116,117,120,137,147,148,152,154,157,159,160,162,164,166,168,169,170,172,173,178,184,185,189,194],formatcharact:160,formatrul:[2,4,8,9,164],formatrulestest:[4,8,9],formatt:[3,170],formatterinterfac:[2,9,170],formattimelinedata:184,former:157,formhelpertest:[5,6],formsuccess:137,forpagenotfound:[8,72,94],forth:39,forum:[182,191],forumcontrol:182,forward:[6,36,53,58,102,156],found:[7,15,24,28,35,37,41,58,62,69,72,73,75,77,79,80,81,82,87,90,93,94,96,98,100,102,108,145,148,149,154,155,157,159,164,168,170,172,173,175,183,190,195],foundat:[13,141,154,165],foundation_ful:154,four:[90,93,95,98,146,172,174,184,189],fourth:[83,90,147,148,154,159,164,175],fowler:101,foz:162,fpm:108,fputcsv:[53,150],fr_fr:[87,185],fraction:87,fragil:102,fragment:[32,58,179,180,190],frame:[84,146],frameset:84,framework:[2,4,5,7,9,11,17,19,35,36,37,39,41,42,60,62,64,65,70,72,76,77,91,95,105,106,107,108,111,114,115,141,142,143,145,147,150,152,154,155,172,180,181,182,183,185,188,189,191,193,194,195],frameworkexcept:3,frameworkpublish:155,franc:172,frank:[52,79],fred:[90,128,164,166,174,186],free:[39,42,53,143,165,166,173,189],freeresult:53,french:[93,172],frequent:[155,162,185,186,190],fresh:[36,42,52,71],fret:31,fri:146,friend:164,friendli:[78,91,109,149,194],friendlier:[80,157],from:[1,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,20,21,22,23,24,28,29,30,31,33,37,39,40,41,42,43,44,45,47,50,51,53,58,59,63,64,65,69,70,72,75,76,77,78,79,80,83,84,87,88,90,91,93,94,95,96,98,100,101,102,103,104,105,108,109,122,125,126,127,128,129,130,133,136,138,139,141,142,143,145,146,147,148,149,150,151,152,154,155,156,157,159,161,163,164,165,166,168,169,172,173,174,177,178,179,180,181,182,183,184,185,189,190,192,193,194,195],fromcookiehead:146,fromheaderstr:146,fromsubqueri:52,front:[3,69,76,82,102,108],front_ful:154,frontend:[70,154,155],fruit:[32,172],ftp:[121,162],ful:99,fulfil:60,full:[16,24,28,30,31,37,44,47,49,52,69,70,76,77,78,82,84,91,95,96,101,147,149,150,152,154,155,159,161,162,163,166,168,172,174,185,191],full_nam:166,fulldat:172,fulli:[31,59,68,75,77,82,95,102,108,159,164,168,170,182,184],fulltext:50,fulltim:172,function_exist:4,function_nam:69,function_us:69,furnish:165,further:[30,45,70,79,84,94,102,147,157,175,178,184,185,193],furthermor:[121,149],furthest:162,futur:[20,21,31,113,114,141,145,157,159],fuzzifi:4,fzaninotto:185,gain:[40,145,161],galleri:[101,102],game:[70,146],garbag:157,gather:[50,163],gave:[181,191],gbp:87,gc_maxlifetim:157,gd2:152,gdhandler:[22,115],gdhandlertest:11,gear:[101,159],gecko:163,gener:[1,3,5,6,8,9,12,13,14,15,16,23,28,30,34,37,39,49,51,52,54,56,58,59,69,70,72,75,81,83,84,87,90,91,101,102,111,116,128,148,150,152,154,156,157,161,162,164,170,172,173,174,175,176,178,180,187,191,192,193],generator_command:31,gentler:101,geo:59,georg:[70,178,179],german:93,germani:70,gerri:185,get:[1,4,5,6,7,8,11,13,14,16,20,24,28,29,30,35,36,37,39,40,42,45,47,49,51,53,65,67,69,70,77,78,80,83,93,94,95,96,98,99,100,101,102,108,116,124,136,140,143,145,147,148,149,154,155,156,157,159,161,162,166,168,172,173,175,178,181,185,186,187,188,189,190,191,192,194,195],get_class:155,get_client_info:43,get_compiled_select:52,get_cooki:[25,80,96,118,146],get_csrf_hash:135,get_csrf_token_nam:135,get_dir_file_info:82,get_file_info:82,get_filenam:[28,82],get_included_fil:30,get_us:132,get_var:75,get_wher:124,getactivelink:96,getaffectedrow:8,getagentstr:163,getauthor:[96,162],getbasenam:[150,161],getbodi:[96,98,113,147],getbrows:163,getcacheditem:168,getcacheinfo:145,getclientextens:[17,161],getclientmimetyp:161,getclientnam:161,getcod:72,getcompileddelet:52,getcompiledinsert:52,getcompiledselect:52,getcompiledupd:52,getcompiledx:6,getconnectstart:14,getcooki:[20,80,96,111,146,173],getcookiestor:146,getcount:185,getcreatedat:166,getcsrfhash:17,getcsrtokennam:17,getcurrentpagenumb:154,getcustomresultobject:[53,168],getcustomrowobject:53,getdai:159,getdayofweek:159,getdayofyear:159,getdomain:146,getdur:51,getelapsedtim:[181,189],getencod:4,getenv:[17,70,96,100],geterror:[13,28,94,155,161,164,170],geterrorcod:51,geterrormessag:51,geterrorstr:161,getexpiresstr:146,getexpirestimestamp:146,getextens:17,getfieldcount:53,getfielddata:[16,50,53],getfieldnam:[50,53],getfil:[96,127,152,161],getfilemultipl:[96,161],getfilt:116,getfiltercal:182,getfilterforrout:116,getfiltersforrout:[116,182],getfirst:154,getfirstpagenumb:154,getfirstrow:53,getflashdata:[156,157,192],getforeignkeydata:[12,50],getformatt:17,getfrag:162,getget:[37,96],getgetpost:96,getglob:[69,146],gethash:17,gethead:[17,37,111,147],getheaderlin:[96,98,147],gethost:[96,162],gethour:159,getid:146,getindexdata:50,getipaddress:[75,96,100,158],getiter:22,getjson:[37,96,111,186,190],getjsonvar:96,getlast:154,getlastpagenumb:154,getlastqueri:[48,51],getlastrow:53,getlocal:[15,172,185],getmaxag:146,getmessag:[72,152,155],getmetadata:[20,145],getmethod:[37,96,100,111,156,192],getmimetyp:[150,161],getminut:159,getmobil:163,getmock:189,getmockbuild:189,getmonth:159,getmtim:150,getnam:[146,159,161],getnamespac:155,getnew:194,getnext:154,getnextpag:154,getnextpagenumb:154,getnextrow:53,getnumrow:53,getoffset:159,getopt:[33,146],getoptionstr:33,getoriginalqueri:[23,51,116],getpad:[17,30],getpagecount:154,getpath:[33,37,96,146,162],getperm:150,getplatform:[48,163],getport:[96,162],getpost:[37,96,166,170,192],getpostget:96,getprefix:[12,51,146],getprefixednam:146,getprevi:154,getpreviouspag:154,getpreviouspagenumb:154,getpreviousrow:53,getprivatemethodinvok:189,getprivateproperti:189,getproperti:152,getprotocolvers:[96,98],getpublish:155,getquart:159,getqueri:[51,96,162],getquerystr:51,getrandomnam:[150,161],getrawinput:96,getrealpath:150,getreason:[111,147],getreasonphras:[111,173],getredirecturl:190,getreferr:163,getresourc:16,getresult:[47,52,53,124],getresultarrai:[47,52,53,124,178],getresultobject:53,getrobot:163,getrow:[47,53],getrowarrai:[47,53],getrowobject:53,getrulegroup:164,getsamesit:146,getschem:[96,162],getscratch:155,getsecond:159,getseg:[16,33,96,162],getserv:[37,96,100],getshar:[36,41,45,64,69],getsharedinst:[41,64],getsiz:150,getsizebyunit:[150,161],getstarttim:51,getstat:179,getstatuscod:[111,147,173],gettempdata:157,gettempnam:161,getter:[17,113,146,157,166,189],gettest:[9,11,12],gettim:181,gettimestamp:159,gettitledetail:184,gettokentim:158,gettotalseg:[96,162],getunbufferedrow:53,geturi:[37,96],getuserag:[96,163],getuserinfo:[96,162],getvalidationrul:[13,168],getvalu:[98,146],getvaluelin:98,getvar:[37,94,96,156],getvardata:184,getvers:[48,163],getweek:159,getweekofmonth:159,getweekofyear:159,getwher:[12,52,124],getx:[159,166],getxml:[111,190],getxmlfromresult:55,getyear:159,ghsa:[27,119],giant:178,gif:[12,98,127,155,161,164],git:[70,104,105],gitattribut:19,github:[4,8,63,107,119,145,147,157],gitignor:[4,8,11,70],gitkeep:[4,150],give:[4,37,47,52,56,73,80,91,96,121,146,154,155,157,164,168,172,178,179,181,193],given:[17,54,65,79,82,86,87,91,96,102,142,146,149,152,154,157,159,164,168,172,173,178,182,186,190],glanc:184,glob:[145,150],global:[16,44,45,62,65,73,74,100,103,121,135,146,151,156,157,158,161,164,181,182,184,189,195],glue:[39,195],gmail:185,gmt:[37,146,172],goal:[37,142],goe:[32,72,184,189],going:[29,93,192,194,195],golli:90,gone:170,good:[36,39,40,41,44,51,54,71,73,102,109,152,168,173,182,184,185],googl:[147,173],got:127,governor:40,grab:[41,59,69,93,96,145,154,157,158,168,179],grabfromdatabas:183,gracefulli:45,grammar:[3,13],grant:[108,165],grape:172,graphic:84,grasp:77,gravida:90,great:[31,32,35,36,39,41,59,60,61,70,95,102,122,166,168,172,173,175,185],greater:[92,147,149,154,164],greater_than:164,greater_than_equal_to:164,greatli:54,green:[30,32,84,128,152,164,166,174,178],greet:193,grid:155,group1:154,group2:154,group:[6,7,15,30,31,39,44,45,54,56,73,77,94,141,150,154,155,157,168,183,185],group_id:[52,185],group_nam:[45,124,168],group_on:45,group_two:45,groupbi:52,groupbuild:168,groupend:52,groupnam:[154,157],groupstart:[12,52],grouptest:[6,11,12],grow:107,grup:10,guarante:[96,157],guess:[17,84,156,185],guessextens:[4,11,17,150,161],guessextensionfromtyp:17,guessextenst:4,guid:[3,4,6,7,8,9,10,11,12,13,14,15,77,82,104,105,107,108,121,143,173],guidelin:[6,38,60,103,113],guzzl:147,gzip:[93,96],h554:27,habit:39,hack:[48,65,164],had:[12,91,113,161,164,166,168,172],half:157,halign:152,halit:149,halt:[72,157],han:185,hand:[24,32,36,39,58,70,83,101,107,155,157,164],handi:[17,41,72,79,102,108,147,154,156,164,168,186],handier:102,handl:[1,3,5,10,12,13,16,17,24,30,32,37,39,41,52,56,60,69,74,75,78,79,87,90,93,94,97,98,102,111,116,121,147,152,155,156,159,164,168,173,178,180,182,184,185,186,189,192,195],handlder:11,handler:[2,4,5,6,7,8,9,10,11,12,13,16,20,22,23,64,69,72,102,113,114,115,145,152,157,158,166,173,182,188],handlerequest:116,handlerinterfac:2,hang:191,happen:[36,41,46,51,65,69,72,75,77,95,98,102,148,157,158,166,172,173,176,178,179,180],happi:84,hard:[35,41,83,114,145,149,150,157,168],harden:40,harvest:91,has:[1,4,7,10,11,16,17,20,24,28,30,32,35,36,37,39,41,42,44,46,48,50,51,52,53,56,58,59,61,62,64,66,68,69,70,71,73,86,90,96,98,101,102,107,109,111,113,116,120,121,142,145,146,147,149,155,156,157,158,159,161,162,164,166,168,169,170,172,173,174,177,178,179,180,181,182,183,184,185,189,190,192,193,194,195],has_cooki:[80,146],hasalert:178,haschang:[10,166],hascooki:[80,111,146,173],haserror:[14,51,164],hash:[11,40,69,82,90,102,135,145,149,166,168],hashead:[96,98],hashpassword:168,hasindatabas:183,hasmov:161,hasn:[69,91],hasnext:154,hasnextpag:154,hasprevi:154,haspreviouspag:154,hassl:[146,155],hastabcont:184,hastimelin:184,hasvardata:184,have:[1,6,8,9,11,12,15,16,17,22,23,28,30,31,32,35,36,37,39,40,41,42,44,45,50,51,52,53,54,56,58,59,61,62,64,65,68,69,70,72,73,75,76,77,78,79,80,81,84,91,94,95,96,98,99,100,101,102,104,105,108,111,113,116,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,166,168,172,173,175,178,179,180,181,182,183,184,185,186,188,189,190,191,192,194,195],haven:[157,164,172,192],havinggroupend:52,havinggroupstart:52,havingin:52,havinglik:52,havingnotin:52,haystack:73,head:[3,7,14,30,37,96,102,137,138,139,147,161,162,164,174,177,178,180,184,193,195],head_img:[127,161],headach:35,header1:148,header2:148,header:[2,4,8,10,13,14,16,17,23,30,32,37,39,67,69,87,93,94,95,98,111,146,148,156,170,180,184,189,192,193,194,195],headeremit:3,headerlin:173,headernam:17,headers_s:146,heading_cell_end:174,heading_cell_start:174,heading_row_end:174,heading_row_start:174,heart:[94,98],heavi:[45,157,170],heavili:61,height:[84,91,152,164],held:[69,70],hellip:90,hello:[4,84,86,123,154,177,178,190,195],hello_world:86,hellow:190,helloworld:[94,102,123],help:[2,11,29,31,32,36,39,46,50,51,52,55,56,58,65,69,73,77,84,87,90,91,96,98,102,113,121,141,143,146,147,148,149,152,154,155,158,160,161,163,164,166,168,170,172,173,178,181,182,184,187,189,190,192,193,194,195],helper:[1,2,3,4,5,6,7,8,10,11,12,13,14,16,17,20,21,42,49,61,62,69,74,78,96,102,113,127,135,137,141,146,156,157,159,161,164,168,172,178,189,191,192,194],helpera:12,hendrerit:90,here:[29,31,32,41,42,51,52,53,58,61,64,67,72,73,75,77,78,82,83,84,90,91,92,94,95,96,98,100,102,105,108,109,111,113,116,117,120,121,124,131,133,145,147,148,154,155,157,158,159,161,164,166,168,169,172,173,174,176,178,180,182,183,184,189,192,193,194,195],herebi:165,hex2bin:[16,17,149],hex:[14,149,152,164],hexadecim:164,hexcod:184,hhiiss:58,hidden:[16,69,82,83,94,99,108,135,151,154,156,192],hiddenemail:83,hide:[80,149],hierarch:[79,94],hierarchi:180,high:[90,157],higher:[102,152,157],highest:[65,148],highli:115,highlight:[5,6,7,8,9,10,14,23,90,174,178],highlight_cod:[90,178],highlight_phras:90,highlight_str:90,hint:[4,5,9],his:101,his_:58,histor:[90,147],histori:[5,8,9],hit:[32,35,51,95,109,158,168,184,186,193],hkdf:149,hmac:149,hmvc:121,hobbi:157,hoffset:152,hold:[30,41,42,69,70,95,105,106,121,149,154,158,164,172,173,183,190],holder:165,home:[8,10,11,61,91,94,102,108,111,155,163,193,195],homepag:[107,155],honeypot:[2,3,4,6,8,11,95,103,111,135,153,156],honeypotexcept:151,honeypottest:[3,6],honor:152,hood:73,hook:121,hope:[6,191],hoppifur:185,horizont:152,host:[13,14,37,44,71,84,96,98,102,145,147,157],hostnam:[44,45,164,194],hotfix:13,hotlink:9,hour:[69,146,157,159,178],hous:180,housekeep:7,hover:193,how:[4,30,37,39,42,43,47,52,56,67,69,71,73,77,79,84,91,93,94,95,96,108,111,116,129,132,145,147,148,152,154,155,158,159,162,166,168,170,173,174,178,182,184,185,186,192,193],howev:[17,29,30,39,51,52,53,64,65,67,76,90,91,95,99,102,104,121,146,150,154,157,158,159,164,166,168,172,178,179,185,190,192],href:[84,91,102,154,178,179,194],hreflang:84,hsbc:164,ht5a822:84,htaccess:[3,4,8,9,14,16,42,71,78,82,109,111,113,155,195],htdoc:[82,108],htm:[108,155],html4:84,html5:[83,84,90],html5rock:173,html:[2,5,9,14,28,37,39,40,42,61,69,72,81,82,83,85,90,91,93,96,98,99,101,102,103,104,108,111,113,117,121,135,137,139,140,148,151,154,155,160,161,162,164,170,171,173,175,176,177,178,179,180,181,184,190,194,195],html_escap:83,html_helper:[6,8],htmlspecialchar:174,http:[2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,20,29,38,39,40,64,69,72,78,80,83,84,90,91,93,94,95,96,97,100,103,104,108,109,111,116,119,121,140,143,145,146,147,148,152,154,155,156,157,158,161,162,163,164,170,171,172,182,185,187,189,190,192,193],http_:98,http_accept_languag:98,http_client_ip:100,http_host:98,http_ok:37,http_refer:[69,91],http_user_ag:157,http_x_client_ip:100,http_x_cluster_client_ip:100,http_x_forwarded_for:100,httpd:[108,109],httpexcept:[3,161],httpincomingrequest:4,httponli:[80,111,146,157,173],httprequest:4,httprespons:4,huge:173,human:[78,86,87,91,151,164,166],humor:194,hundr:[65,163,181],hyperlink:91,hypertext:37,i18n:[2,3,4,5,7,12,22,81,159,166],iana:[37,148,170],ibas:144,ico:[84,155],icon:[84,91],icu:172,id_:102,idea:[51,109,113,168,172,185],ideal:164,ident:[32,43,52,53,56,64,69,73,80,82,83,84,91,95,96,100,152,159,160,173,178,184],identif:21,identifi:[23,40,52,60,67,70,90,113,146,163,168,169,173,194],idl:45,ids:102,ie11:9,if_exist:[56,164],if_not_exist:56,ifmodul:108,ifnotexist:56,ignor:[4,5,8,14,52,72,75,90,91,92,101,105,152,157,160,164,166,168,178,179],ignore_field:164,ignore_valu:164,ignorecas:189,ignoredcod:72,illustr:52,imag:[2,4,9,11,12,16,22,42,45,82,84,88,91,93,96,98,103,111,115,127,146,147,148,150,153,155,161,164,173,185,192],image_lib:82,image_librari:152,imageexcept:152,imagefil:161,imagehandlerinterfac:[2,11],imagejpeg:152,imagemagick:[2,11,16,152],imagemagickhandl:[4,11,22,115],imageproperti:84,imagetyp:[96,152],imagetype_png:152,imageurl:185,imagick:152,imagin:[41,166],img:[6,84,148,161],img_data:84,img_without_extens:84,immedi:[65,68,75,102,149,154,168],immut:[159,166],impact:[6,178,179],implement:[6,9,16,17,21,22,30,36,41,52,54,60,64,67,70,95,101,102,110,111,113,121,131,135,138,143,145,148,149,155,157,158,164,166,168,170,173,176,178,179,184,185,186,189],impli:[165,170,184],implic:[62,64,95],implicit:164,implicitli:[146,164],implod:[150,166,172],importantli:[8,37,113],impos:147,imposs:14,improc:9,improp:[40,161],improv:[1,4,8,10,14,16,21,23,28,113],in_arrai:73,in_list:164,inaccess:[29,102],inadequ:40,inappropri:40,includ:[8,11,15,20,28,29,30,31,32,37,39,40,42,43,51,52,56,58,59,70,71,73,75,77,78,82,90,91,96,98,102,107,108,110,111,113,116,117,120,121,131,148,150,152,155,156,157,159,162,164,165,166,168,173,178,179,180,181,182,183,184,185,186,190,192,193,194,195],includedir:[28,82],includepath:82,inclus:69,incom:[3,6,8,10,11,12,13,95,96,97,100,158,164,168,195],incomingrequest:[2,3,4,8,10,12,15,20,37,64,67,80,91,93,97,98,99,100,103,121,157,161,163,172,182],incomingrequestdetectingtest:5,incomingrequesttest:[4,5,6],incompat:17,incorpor:[14,40,70,106,172],incorrect:[14,16,21,24,113,170],incorrectli:[113,166],increas:[16,90,95,102,157,195],increment:[7,52,90,145,152,168,185,192],increment_str:90,indefinit:147,indent:5,independ:[43,52,54],index:[3,4,5,6,7,9,28,29,33,42,46,47,52,53,56,58,76,77,79,80,82,83,84,90,91,94,95,96,100,101,102,108,111,113,120,123,127,132,134,137,146,150,154,155,157,161,162,164,168,172,174,177,180,192,194,195],index_pag:91,indexdata:4,indexpag:[20,84,91,109,113,162],indic:[58,60,75,102,150,152,155,166,185,186],indirect:40,indispens:184,individu:[31,35,47,82,161,162,168,173,174,194],industri:32,ineffici:53,inet:157,inexist:3,inflector:[2,13,85,103],inflector_help:[11,13],inflectorhelpertest:[11,13],influenc:149,info:[4,6,30,69,75,82,88,102,148,149,152,162,163],inform:[14,24,26,27,28,29,30,31,32,37,39,44,45,50,51,52,54,58,59,67,68,69,70,74,77,82,83,91,94,96,102,103,107,109,111,119,121,131,143,145,146,147,148,149,157,159,161,163,168,173,174,181,183,184,192,193,194,195],ing:77,ingredi:77,inherit:[22,94,96,166,173],ini:[82,90,104,157,161,164],ini_set:[12,157],init:14,initcontrol:[14,61],initi:[4,28,35,61,64,70,79,81,90,96,102,124,132,146,148,149,150,168,173,178,185],inject:[51,52,91,93,121,146,155,173],injectmock:189,inlin:[14,148],inner:[52,65,102,178,184],innodb:[54,56],input:[8,36,39,40,51,69,82,83,86,88,90,91,92,95,99,100,117,121,135,137,149,151,155,156,159,160,161,164,168,174,182,190,192],insecur:147,insensit:[6,37,52,96,98,146,156],insensitivesearch:52,insert:[4,5,7,10,14,16,32,40,48,51,59,69,75,90,123,131,135,156,164,166,168,170,175,177,183,185,188,192,194],insertbatch:[23,52,116],insertid:[48,52],inserttest:[6,12],insid:[32,41,42,52,76,84,94,102,105,106,107,108,121,145,146,157,164,172,178,179,189,195],insight:191,inspect:[79,168,190],instal:[3,4,5,6,7,9,10,12,14,20,42,44,71,75,77,103,107,108,117,118,119,120,121,144,147,149,152,157,192,193,194,195],install_manu:7,installing_compos:[6,9,10],installing_git:6,installing_manu:6,instanc:[4,8,17,20,24,32,36,41,45,46,50,51,52,53,56,58,65,69,70,71,77,89,90,91,93,94,95,96,98,101,102,104,108,121,134,145,146,147,148,149,152,154,155,157,158,159,160,161,163,164,166,168,170,172,173,174,178,179,182,185,186,188,190,194],instanti:[3,36,41,53,65,70,77,121,146,147,149,155,157,166,168,173,174,178,179],instead:[4,6,7,15,16,18,20,21,23,24,28,29,31,32,41,42,45,50,51,52,53,61,64,69,70,71,72,73,75,83,84,86,91,92,93,96,98,102,111,112,113,116,121,131,136,139,147,148,149,152,154,155,157,159,161,162,166,168,169,173,174,175,177,178,183,190,192,194,195],institut:[141,165],instruct:[69,105,106,117,118,119,120,121,188],insuffici:40,intanc:168,intead:5,integ:[5,8,30,48,52,53,56,69,82,86,87,90,94,102,145,152,157,158,161,162,164,166,168,172],integr:[5,29,32,69,77,90,121,155,173,189],intel:163,intellig:[45,149,173,180],intend:[61,62,73,76,79,81,91,102,106,108,111,121,143,146,148,152,157,164,175,177,178,179,193],intens:[82,160],intent:157,intention:60,interact:[29,32,37,143,146,156,166,168],interbas:[48,144],intercept:168,interest:[75,107,142,152,156,168,194],interf:182,interfac:[22,29,37,41,52,61,64,77,98,111,142,143,146,161,168,179,185],interfer:[157,182,189],interject:168,intermedi:[155,191],intermingl:58,intern:[6,17,20,36,40,51,53,60,79,91,94,98,152,157,166,170,178,179,185],internation:87,internet:194,interoper:143,interpay:164,interpret:[101,121,178],interrupt:31,interv:[32,158],intervent:[111,113,114,116,117,120],intl:[104,144,159,172],intldateformatt:159,intro:[3,7],introduc:[8,111,116,191,193,194],introduct:[101,172,173,193],intrus:189,invalid:[5,10,12,20,72,95,113,145,146,156,157,164,168,170],invalidargumentexcept:[145,159,162],invalidargumentexept:159,invalidchar:102,invalidtyp:6,invers:190,invis:4,invoc:33,invoice_id:52,invoice_rul:117,invok:[64,70,102,123,139,145,181,189],involv:[39,61,161],ip_address:[75,116,157],ipaddress:111,iphon:163,ipsum:[32,90],ipv4:[100,164],ipv6:[100,164],is_arg:[78,108],is_arrai:[73,194],is_ban:166,is_banned_nul:166,is_cli:[4,29,69],is_fil:[35,195],is_imag:[161,164],is_natur:164,is_natural_no_zero:164,is_not_uniqu:[14,16,164],is_numer:8,is_pluraliz:86,is_really_writ:69,is_uniqu:[4,16,94,164,168],isajax:[14,37,67,96],isbrows:163,iscli:96,isexpir:[20,146],ishttponli:146,isjson:111,isloggedin:95,ismobil:163,isn:[52,56,93,102,164,170,194],isnt:194,iso:[81,148,178],isok:[182,190],isol:108,isp:[148,157],israw:146,isredirect:190,isreferr:163,isrobot:163,issecur:[37,94,96,146],isset:[14,53,157,166,168],issu:[6,8,9,10,12,13,14,15,19,21,58,63,71,91,119,148,152,157,180,184,189,194],issupport:145,isvalid:[96,127,137,161],isvalidip:[96,100,111],iswrit:150,iswritetyp:[51,113],item1:157,item2:157,item3:157,item:[4,6,9,14,16,24,32,39,52,69,70,73,78,83,86,89,90,94,96,100,103,113,117,122,132,136,139,145,148,154,157,159,163,164,168,169,170,172,180,184,185,188,193,194],item_nam:122,iter:[2,79,90,145,149,150,174,178],iteratoraggreg:150,its:[3,5,20,21,30,31,32,36,37,41,51,52,53,58,73,80,82,83,86,91,94,96,101,102,105,107,108,112,113,116,130,143,146,149,150,152,154,155,157,158,161,162,164,166,168,172,173,177,178,179,182,184,185,188,189,191,194,195],itself:[30,35,36,42,51,52,53,60,69,70,75,77,91,102,147,149,154,157,158,159,162,164,166,168,178,180,181,182,184,185,189,190,195],ja_jp:87,jame:52,jan:6,januari:[17,18,24,25,26,159],java:69,javascript:[37,42,67,69,80,83,84,91,96,121,146,170,173,177,178,179],jcb:164,jimmi:90,job:[16,29,30,39,51,52,102,168],job_id:52,jobmodel:168,jobseed:59,joe:[52,83,90,102,164,169,178,179,183],john:[29,51,79,83,128,174,178,190],johndo:[83,157],join:[9,16,98,124,157],journal:[102,134],jpeg:[98,152,155,161],jpg:[84,90,93,96,127,148,150,152,155,161,164,173],json:[3,4,5,6,7,9,10,12,15,16,37,60,67,76,93,96,98,101,105,111,113,133,144,155,156,164,170,173,182,186],json_decod:[96,147,166],json_encod:[133,147,166,170,182],jsoncast:20,jsonformatt:[2,9,170],jul:10,juli:[16,159],june:21,just:[16,17,29,31,32,39,41,51,52,54,56,64,67,69,70,73,90,91,92,96,99,102,123,124,130,131,146,148,151,154,155,157,159,161,162,164,166,168,172,173,176,177,178,182,183,184,185,192,194],keep:[8,30,32,35,36,39,41,42,51,52,54,58,59,69,70,72,77,94,95,98,104,108,115,145,146,149,150,154,155,157,166,168,172,180,183,185,193],keepflashdata:157,keepqueri:162,kei:[4,5,6,7,8,9,10,12,13,15,16,17,20,23,28,30,32,35,36,40,44,50,51,52,53,69,70,75,79,83,95,96,100,113,116,117,126,131,145,147,148,155,157,158,162,163,166,168,172,173,174,175,178,179,180,183,184,185,186,188,190,192,194,195],kept:[41,142,147,156,157,168],keyword:[23,52,70,102],kill:157,kilobyt:[150,164],kind:[84,90,157,164,165],kindel:185,king:[56,185],kint:[1,2,12,24,111,116],know:[15,29,37,41,50,56,62,64,65,70,79,94,95,96,102,140,143,144,149,157,162,164,166,168,170,177,181,184,192,193,194],known:[64,77,91,104,149,154,157,162,163,183],label:[56,83,84,151,154,161,192],label_text:83,lack:[53,157],lacu:90,lamina:[14,69],lamp:108,lang:[12,69,77,93,129,154,161,164,172,178],languag:[2,3,4,5,6,7,8,9,10,11,13,15,17,20,29,37,42,82,87,96,98,102,106,129,142,147,159,164,178,194],languagekei:172,languagetest:[4,5,6],laoreet:90,larg:[35,53,70,83,84,94,128,142,148,158,166,174,182],larger:[77,152,164],largest:194,last:[4,6,8,35,41,48,51,53,69,73,95,102,121,148,150,154,155,157,164,169,173,179,194,195],last_act:157,last_login:[53,168],last_nam:79,lastli:121,lastlogin:53,lastnam:178,later:[39,52,95,98,102,109,146,147,148,157,168,178,179,181,194,195],latest:[1,17,58,65,106,107,155,183],latin:173,latta:185,launch:[64,108],lax:[17,20,111,146,157,173],layer:[37,111,143,144,166,168,194],layout:[7,14,20,103,139,171,174],lead:[40,102,155,173],lean:121,learn:[5,46,54,102,108,142],least:[20,113,145,164,182],leav:[4,77,88,91,95,102,114,148,159,162,168,192],lectu:90,left:[32,41,52,70,90,95,102,146,152,158,162,178,184,194,195],leftdelimit:178,leftjoin:6,legaci:[8,11,14,112,147,157],legal:179,legend:83,legend_text:83,lemon:172,len:90,length:[4,9,14,16,32,50,68,90,113,145,164],less:[5,17,67,75,90,92,102,158,164,166,168],less_than:164,less_than_equal_to:164,lesson:5,let:[30,31,39,41,43,44,50,51,52,65,68,76,77,80,81,83,84,96,105,142,143,145,147,148,152,154,157,158,164,166,172,174,177,178,180,192,193],letter:[81,86,90,94,123,178,195],level:[1,69,70,71,75,79,82,96,121,157,164,178,189],leverag:[108,155],liabil:165,liabl:165,lib:77,libcurl:144,liber:162,libero:90,librari:[3,4,6,7,8,9,10,11,12,13,16,30,34,35,40,41,42,58,61,64,65,67,69,75,78,80,82,88,94,107,113,116,125,126,127,128,132,136,138,141,142,143,145,152,158,159,163,172,175,179,184,189,191,192,194],libsodium:149,licens:[6,103,111],life:[10,42,156,173,186],lift:45,light:32,light_blu:32,light_cyan:32,light_grai:32,light_green:32,light_purpl:32,light_r:32,light_yellow:32,lightbox:84,lightweight:147,like:[15,16,17,20,24,29,30,31,32,35,36,37,39,41,42,43,44,45,48,50,51,52,53,54,55,58,59,62,63,64,65,67,69,70,71,72,75,76,77,83,87,90,91,92,93,94,95,96,98,99,100,101,102,104,108,109,116,117,121,122,123,125,126,128,129,131,136,139,142,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,163,164,166,168,169,170,172,173,174,175,177,178,179,180,182,183,184,185,189,192,193,194,195],liketest:6,likewis:[28,79],limit:[11,36,43,47,53,59,65,90,95,108,124,145,146,147,148,152,154,157,161,164,165,168,170,175,178,180,185,189],limit_char:178,limit_word:178,limitexcept:108,line:[8,13,14,22,28,30,32,33,44,45,52,54,61,64,69,75,76,94,95,96,101,103,104,105,108,109,115,121,123,125,128,129,130,131,134,136,137,142,145,147,148,154,157,158,160,164,172,173,183,189,193,194,195],link:[4,7,8,15,35,69,73,82,84,91,102,107,132,146,148,157,162,172,178,179,190,193,194],link_tag:84,linkifi:91,linux:[29,157,163],lis:164,list:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,20,23,24,25,28,30,31,32,36,37,44,53,58,60,65,73,75,77,83,84,90,91,93,95,96,100,101,102,111,113,116,117,120,125,139,143,144,148,150,152,154,155,159,163,164,166,168,169,170,172,173,174,175,180,182,184,186,192,193,194],listal:102,listcommand:2,listen:[102,108],listerror:[137,164,192],listidentifi:81,listnamespacefil:11,listtabl:[12,50],liter:[83,102],littl:[30,35,39,147,157,158,178,181,193],live:[3,4,5,6,7,8,9,10,11,12,13,42,51,71,73,102,105,145,157,159,178,180,182,193],load:[4,5,7,9,20,29,30,32,36,39,41,47,53,56,58,61,62,64,65,68,69,70,71,77,94,102,108,124,125,126,127,128,129,131,132,134,136,137,138,139,145,146,149,150,152,157,172,175,178,183,184,192,193,194,195],loader:[56,73,82,121,129],loadhelp:17,loadlegaci:[18,112],loadmodul:108,loadutil:55,local:[4,5,11,15,16,40,69,70,75,81,83,87,91,102,103,104,121,140,147,159,166,171,178,182,189,192,194],local_curr:178,local_numb:178,localhost1:44,localhost2:44,localhost:[44,45,71,108,109,157,193,194,195],locat:[4,10,14,15,16,24,32,35,36,39,41,44,51,58,59,64,65,70,71,76,77,78,79,94,108,121,123,131,147,150,152,154,155,157,161,163,164,166,168,173,175,177,178,183,184,189,195],locatefil:10,lock:[53,76,82,157],log:[2,4,5,6,7,13,14,28,41,42,46,54,64,69,74,102,103,104,108,121,146,147,157,173,182,184,189],log_messag:[14,28,54,69,75],logcach:6,logged_in:[157,186,190],logger:[2,5,6,14,20,28,30,41,61,64,69,94,109,111,113,143,182,189,194],loggerawaretrait:[2,14],loggerconfig:189,loggerinterfac:75,logic:[11,14,16,21,35,39,40,44,52,68,71,87,142,168,172,182],logicexcept:98,login:[31,60,95,102,134,146,166,178,182,185],login_token:146,loginmodel:155,loginus:189,logo:7,logout:[60,102,157],london:[159,166],longdat:172,longer:[23,24,28,32,53,67,68,111,113,116,121,130,134,149,157,158,164,166,170],longest:32,longjohn:189,longtim:172,look:[30,35,36,37,39,41,50,51,58,70,73,77,78,82,92,93,94,95,96,98,102,108,109,121,123,125,129,131,132,135,139,152,154,155,157,158,161,164,168,170,177,178,180,183,185,189,190,192,193,194,195],lookup:102,loop:[4,39,53,69,70,73,90,148,161,181,194],loos:[73,84,164],lorem:[32,90],lorempixel:185,lose:[159,183],loss:157,lost:72,lot:[6,15,37,42,53,62,64,70,95,121,127,131,147,149,160,168,178,185,192],low:90,lower:[20,52,65,90,96,100,102,146,178],lowercas:[7,30,52,70,91,94,95,100,178,192],lowest:148,lru:145,lsp:[28,164],lump:30,lunch:159,mac:[29,149,163],machin:[37,58,70,102,108,193],macintosh:163,made:[23,52,53,63,70,95,96,111,113,116,117,120,146,148,151,155,158,168,170,178,180,182,186,192,194,195],maestro:164,magenta:32,magic:[12,36,70,121,123,157,166],magna:90,mai:[9,15,17,20,24,30,31,32,35,41,44,50,52,53,56,58,60,61,65,70,71,72,77,79,82,83,90,91,94,95,96,98,102,104,105,108,111,113,114,115,145,146,147,148,149,150,152,154,155,156,157,159,160,161,162,163,164,166,168,172,173,179,180,185,189,194],mail:[91,148,155,157],mailpath:148,mailto:[91,162,178],mailtyp:148,main:[1,31,39,42,44,52,58,59,75,76,77,82,83,94,96,102,108,113,157,168,172,173,194,195],mainli:[32,146,160],maintain:[23,30,39,90,96,107,141,147,152,155,157,168],maintainratio:152,mainten:95,major:[23,51,52,111,113,116,117,120,121,161],make:[1,3,10,11,15,16,17,28,29,30,32,35,36,37,39,41,42,45,52,53,54,56,58,59,61,62,64,65,67,69,70,71,77,78,81,83,90,93,94,95,98,99,101,102,104,107,108,113,118,120,121,123,131,132,142,143,145,146,148,149,151,154,155,157,158,161,162,164,166,168,169,170,172,173,177,178,180,181,182,184,185,186,189,192,193,194],makearrai:185,makecolumn:174,makelink:[10,154],makeobject:185,malici:[40,155],malleabl:142,man:[147,168],manag:[6,39,42,55,56,69,74,103,121,141,146,155,157,172,191],managing_app:[3,6],mandat:40,mandatori:[95,111,113,116,117],mani:[29,35,36,39,40,41,42,44,51,54,56,69,70,75,77,81,84,90,95,108,111,113,116,117,120,141,143,147,148,152,154,157,158,161,162,164,166,168,170,173,174,181,184],manipul:[57,103,153,157,162,178],manner:[13,43,44,58,77,87,96,149,154,157,159,161],manual:[5,7,14,44,52,67,68,93,94,96,100,102,103,104,105,116,117,118,119,120,146,147,148,152,156,160,173,179,183,185,193],map:[5,35,40,59,82,94,134,154,155,172,173,180,195],mar:[7,178],march:159,margin:83,mari:[128,174],maria:79,mariadb:4,marin:79,mark:[4,20,51,83,90,109,136,152,157,166,178,184],mark_as_flash:136,markasflashdata:[136,157],markastempdata:157,markdown:35,marker:157,markup:[84,178],marshal:39,martin:101,mask:[28,156,164],mass:[168,192],massiv:35,master:81,mastercard:164,masterdim:152,match:[3,4,6,10,15,17,22,28,36,44,45,48,51,52,58,59,69,70,71,73,75,78,91,93,94,95,96,98,101,113,115,127,145,150,152,155,157,164,168,170,172,175,177,181,183,184,186,189,190,192,195],matchsimplebind:8,math:[84,155],mathml1:84,mathml2:84,mathml:84,matrix:21,matter:[16,51,69,109,147,157,162,164],matur:101,mauri:90,max:[32,50,52,145,147,173],max_dim:[127,161,164],max_height:127,max_length:[50,90,94,137,164,192],max_siz:[127,161,164],max_width:127,maxag:173,maximum:[32,50,52,53,68,90,102,111,147,148,152,164,182],maxlen:32,maxlength:83,maxqueri:6,mayb:[41,102,149],mayeditwidget:182,maynard:185,mb_:4,mb_strlen:4,mb_url_titl:[16,91],mbstring:144,mcrypt:[126,149],md5:[82,90,158],mdn:111,mean:[37,39,41,47,54,58,65,70,75,102,121,155,157,159,164,168,170,178,179,192,193,195],meaning:170,meant:[42,100,143,147,157],measur:[42,61,108,181],mechan:[56,121,149,157],med:83,media:[84,96,98,102,150,162,173],medium:[83,128,172,174],mediumd:172,mediumtim:172,meet:[39,41,42,70,102,104,143,164,173],megabyt:150,melissa:185,member:[141,143,164],member_ag:52,member_id:83,memcach:[2,6,20,157,158],memcachedhandl:[4,6,8,10,13,22],memcachedhandlertest:[4,8],memepublish:155,memori:[23,36,52,53,56,68,94,145,152,158,168,181,184],men:172,mention:[8,96,107,146,157],menu:[77,83,96,180],menuitem:178,menusfilt:77,merchant:165,merg:[15,36,70,102,106,111,113,114,116,117,120,155,165],mess:[62,64,193],messag:[2,4,6,7,8,9,10,11,12,13,14,17,20,28,29,32,37,51,54,56,64,69,72,84,94,96,97,103,105,106,107,109,111,125,126,129,143,148,152,155,156,157,161,168,170,173,178,180,189,192],messageformatt:172,messagetest:11,messi:164,met:[145,157],meta:[50,53,69,156],metadata:[12,40,49,103,145],metadatatest:12,metal:155,method:[1,3,4,5,6,7,8,10,11,12,13,14,16,18,20,22,23,24,28,29,30,31,32,33,35,37,39,41,42,45,55,56,58,59,64,65,67,68,69,70,71,72,73,75,77,78,79,83,91,93,96,97,98,100,101,103,105,108,110,111,112,113,115,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,143,145,146,147,148,149,150,154,157,158,159,160,161,162,164,166,168,170,172,173,174,175,176,177,178,181,184,185,186,189,190,192,194,195],method_exist:94,methodnam:178,methodspoof:6,metraxalon:185,metub:173,microsecond:51,microtim:[51,184],middl:[90,147,152,184],middlenam:168,midnight:159,might:[3,30,32,35,36,39,40,41,42,44,46,53,56,58,65,68,70,71,72,75,77,78,79,80,90,93,94,95,96,101,102,108,109,113,116,117,147,148,149,154,155,156,158,159,161,162,164,168,170,172,173,174,178,179,180,184,185,186,188,189,191,194],migrat:[2,4,5,6,7,8,9,10,11,12,13,14,17,18,30,42,57,59,65,102,103,104,111,121,131,140,155,157,166,168,194],migratecurr:[2,4],migratedatabas:183,migratelatest:[2,4],migrateonc:183,migraterefresh:[2,11],migraterollback:[2,4,11],migratestatu:[2,4,11],migratevers:[2,4,11],migration_add_blog:130,migrationrollback:6,migrationrunn:[2,4,5,6,7,8,10,11,12,13,58,65],migrationrunnertest:[6,7,9,10,11],migrationtest:9,migratiopnrollback:10,million:87,millisecond:147,mime:[3,4,17,28,84,111,113,117,148,150,152,161,164,170,173],mime_in:[127,161,164],mimic:[77,185],min:[52,155],min_length:[137,164,168,192],mind:[51,149,155,156,157],mini:77,minim:[28,52,58,83,96,142,155,164,169,193],minimum:[52,75,113,158,164],minor:[3,7,13],minu:178,minut:[69,145,157,158,159,166,175,189],mir:164,mircrotim:184,mirror:[82,155],mis:101,misc:16,miscod:[94,102],misconfigur:[94,102],misinterpret:178,misplac:7,miss:[3,4,6,8,9,10,11,12,14,20,39,44,46,91,111,145,161,163,164,168,172,184,190],missingt:6,mission:58,mistak:40,mitig:[149,156],mix:[52,53,56,58,69,79,80,83,84,87,90,91,96,98,100,102,145,146,148,158,170,173,174,178,179,194],mkdir:157,mmdxxxiv:87,mmm:159,mobil:[152,163],mock:[16,22,42,103,115,185,187],mockappconfig:13,mockcach:188,mockemail:189,mockfilehandl:4,mockincomingrequest:[22,115],mockrespons:4,mocksecur:[22,115],mocksess:189,mockusermodel:189,mod:108,mod_rewrit:[78,108,109],mod_vhost_alia:108,mode:[1,9,17,21,44,52,53,82,109,145,148,157,193],model:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,29,35,38,40,41,42,55,61,69,70,79,82,89,94,101,102,103,104,112,132,140,147,154,155,164,170,189,191,193],modelexcept:[8,10],modelfactori:17,modelnam:101,models_info:82,modeltest:[3,5,6,7,8,9,10,11,12],moder:178,modern:[20,69,94,146,170],modif:[146,157,176],modifi:[5,11,22,28,35,39,41,44,64,65,69,70,71,76,82,94,95,98,101,102,108,116,146,147,150,151,154,162,164,165,166,173,176,178,182,184,189,192,194],modifycolumn:56,modifyt:7,modul:[6,8,13,28,31,36,41,58,60,64,70,73,74,81,102,103,108,111,113,114,116,117,120,143,145,168,180,182],modular:[58,59,77,175],module_pag:70,molesti:90,mom:180,moment:[159,181],mondai:174,monitor:75,monolith:142,monolog:4,month:[58,69,94,159],mood:84,moon:189,more:[1,3,4,6,8,11,13,15,24,26,27,28,29,31,32,35,36,37,39,40,44,45,46,52,53,54,56,58,59,61,69,72,73,75,77,79,83,84,88,90,91,93,94,95,96,98,99,100,101,102,107,108,109,119,120,121,123,131,143,145,146,147,148,149,150,154,157,158,161,162,164,166,168,172,173,177,178,179,180,181,182,183,184,186,188,190,191,192,193,194,195],more_entropi:4,most:[4,30,32,35,37,39,42,45,51,53,54,58,62,64,65,67,68,70,73,78,83,90,93,99,101,102,108,113,121,124,128,133,144,145,147,148,150,152,154,155,156,157,158,163,164,170,173,181,182,185,186,189,193],mostli:[96,116,121],mov:84,move:[4,6,7,8,20,24,28,53,76,81,101,102,111,113,121,123,126,127,129,130,131,139,147,154,173],movi:84,mozilla:163,mp4:84,mssql:144,mt_rand:[90,185],much:[37,40,68,93,96,102,108,121,122,124,131,139,142,152,154,157,159,161,166,168,170,183,184,185],muffin:146,multi:[4,10,14,32,84,96,145,157,164,170,174,178,180,190],multidimension:[79,83],multipart:[16,83,161],multipl:[8,12,23,24,29,30,32,36,41,42,44,51,52,54,56,58,65,69,70,74,83,86,90,93,95,96,98,100,103,117,124,145,148,149,156,157,160,168,174,178,181,183],multiplefilt:116,multiplerout:102,multiselect:83,multiview:108,must:[10,14,16,28,30,31,37,40,41,43,44,45,51,52,56,58,59,64,68,70,71,75,77,78,82,83,84,94,95,98,99,102,108,110,113,120,121,123,129,131,146,147,148,149,150,152,154,157,158,159,162,164,166,168,170,172,173,175,176,177,178,179,180,181,182,183,184,186,189,195],mutat:10,mutated:[20,166],mvc:[5,39,121,180,193],my_:121,my_arrai:83,my_articl:78,my_cached_item:145,my_cached_view:180,my_control:123,my_db:[56,70],my_dog_spot:86,my_error:102,my_list:164,my_low_quality_p:152,my_singl:164,my_tabl:[47,48,52,53,124,174],my_token:146,my_x:121,mybutton:83,mycheck:83,myclass:[52,65,121],myclassmethod:186,mycollector:184,mycompani:58,myconfig:70,myconfigfil:122,mycontrol:[32,94,177],mycustomclass:83,mydatabasetest:113,mydecor:176,mydefault:146,mydirectori:82,mydogspot:86,myentiti:166,myerror:164,myfield:83,myfilt:95,myforg:56,myform:[83,137],myfunct:[65,121],myisam:[53,54],mylist:84,mymenu:96,mymenutest:96,mymodel:[168,185],mymodul:[70,155],mynamespac:184,mynewconfig:70,mypag:109,mypic:152,mypic_thumb:152,myprefix_:173,myproject:108,myradio:83,myrout:41,myrul:164,mysalesconfig:70,myseed:59,myselect:83,mysql:[4,5,8,10,14,21,44,48,50,51,52,54,56,116,144,157,194],mysql_:43,mysql_get_client_info:43,mysqli:[2,3,4,5,8,10,12,13,22,44,45,53,115,144,183,194],mysqli_store_result:53,mysqli_use_result:53,mysqlnd:144,mystyl:84,mysubmit:83,mytabl:[47,52,124,174],mytest:183,mytestclass:89,mytext:173,myth:102,mytim:159,myview:[178,179],name:[3,4,6,7,8,10,12,13,14,20,21,24,30,31,32,35,36,37,39,41,43,44,45,47,48,50,52,53,55,56,59,64,65,69,70,71,72,73,75,76,77,79,80,82,83,84,88,89,90,91,94,95,96,98,99,100,101,111,117,121,122,123,124,125,128,130,131,133,135,136,137,143,145,147,148,150,151,152,154,155,156,157,158,159,162,163,164,166,168,170,172,173,174,175,177,178,179,180,181,182,183,184,185,186,188,189,190,192,195],named_rout:69,namedappl:172,namespac:[2,4,5,6,7,8,10,13,14,15,18,20,29,30,31,32,36,39,41,42,44,59,61,64,72,73,75,76,94,95,96,101,109,113,116,122,123,127,129,130,131,134,135,137,143,145,147,149,151,154,155,156,157,158,159,161,164,166,168,170,172,173,176,177,178,182,183,184,185,186,189,192,194,195],namespacenam:94,nativ:[43,44,51,54,64,73,75,96,143,149,157,160,161,162,164,173,174,195],natur:[52,58,146,149,164],nav:154,navbar:107,navig:[29,146,154,156,164],nbsp:174,nearest:32,nearli:[64,91,95,142],necessari:[20,37,52,62,67,83,111,116,149,155,157,164,185],necessarili:[75,102,157,158,168],need:[3,4,10,17,23,29,30,31,32,35,36,37,39,41,42,43,44,45,51,52,54,58,59,61,62,64,65,67,69,70,73,75,76,77,78,80,83,90,91,93,94,95,96,99,100,101,102,104,105,106,108,109,111,113,116,121,124,130,132,134,142,144,145,146,147,148,149,150,152,154,155,156,157,158,159,160,161,162,163,164,166,168,170,172,173,174,177,178,179,180,181,182,183,184,185,186,189,190,191,192,193,194,195],needl:73,neg:[58,78,102,159],negat:[77,145],negoti:[2,3,15,95,97,103,170,173],negotiatecharset:173,negotiateencod:173,negotiatelanguag:[147,173],negotiatelocal:172,negotiatemedia:173,negotiatetest:3,neither:185,neon:113,nest:[14,15,20,52,54,79,102,108,121,129,164,166,177,194],net:[145,152],network:[40,101],never:[20,37,42,51,62,64,102,108,137,145,146,156,157,162,164,168,170,177,180,183,188,192,193],new_nam:56,new_table_nam:56,new_york:81,newcacheid:175,newdata:157,newer:[72,144,154],newfil:82,newlin:[4,148,160,178],newlist:174,newnam:[148,150,161],newprefix_:51,newprefix_tablenam:51,newqueri:52,news_item:194,news_sect:[5,6,12],newslett:83,newsmodel:[192,194],newus:157,next:[4,5,6,11,15,36,53,58,71,75,90,102,111,113,116,117,120,121,136,145,154,156,157,158,159,168,170,182,193,194,195],nexusphp:21,nginx:[37,193],nice:[14,32,90,164,168,192],nicer:156,night:84,nine:174,nisl:90,nl2br:[160,178],nl2brexceptpr:160,nocach:[37,173],nodateformat:10,node:79,noe:111,non:[9,18,20,40,42,53,56,82,90,94,95,105,145,155,157,164,168,174,180,185],non_existent_directori:82,non_existent_fil:82,nonc:[6,28,69,173],none:[25,58,98,106,117,120,145,146,148,152,157,173],nonexist:8,noninfring:165,nopars:178,nope:173,noprimarykei:8,nor:[51,137,149],noreturn:[95,102],normal:[4,29,39,53,56,65,67,68,72,75,77,90,94,96,105,108,146,147,148,154,166,168,169,174,177,178,188,189],norwegian:84,not_equ:9,not_found:102,not_in_list:164,notabl:[53,113],notat:[70,79,82,96],note:[3,5,19,22,25,39,45,51,52,56,65,70,79,84,94,96,102,105,111,113,115,116,117,118,120,140,154,173,174,182,189,193,194],notgroupstart:52,noth:[16,69,70,77,90,146,148,157,164,170,172,173,178,194],nothavinggroupstart:52,nothavinglik:52,notic:[52,69,70,75,94,149,152,161,164,165,166,169,174,178,182,185,190,192,194],notifi:[12,148],notlik:52,notther:33,nov:37,novemb:[4,23],now:[1,5,6,7,8,10,11,15,16,17,20,23,24,25,28,29,31,36,41,75,77,79,81,93,94,102,108,111,113,116,117,118,119,121,122,124,125,127,128,129,130,131,133,135,145,146,150,155,157,158,164,166,168,172,173,176,180,185,191,192,193,194,195],nowackipawel:14,nowher:82,nozero:90,nrk:145,nspk:164,nulla:90,nullabl:[6,11,14,111,166],num:[87,101,102],number:[2,3,4,5,6,7,8,9,10,11,12,13,16,23,32,35,37,40,44,48,51,52,53,56,58,60,65,68,69,70,75,80,83,85,86,90,91,92,94,102,103,104,108,111,116,132,143,145,147,148,152,154,157,158,159,162,163,164,166,168,172,173,174,175,178,179,180,181,182,183,184,185,187,189,190,193],number_appl:172,number_format:178,number_help:[7,8],number_to_amount:87,number_to_curr:87,number_to_roman:87,number_to_s:87,numberformatt:178,numer:[5,7,12,13,21,52,58,70,79,82,87,90,102,111,113,116,117,120,137,164,172],nunc:90,nutshel:[29,94],ob_end_flush:8,ob_get_clean:189,ob_get_level:8,ob_start:189,obfusc:91,obj:189,object:[16,31,33,36,37,43,48,50,52,56,65,69,70,73,75,79,83,84,89,94,95,96,98,100,113,123,146,147,149,157,159,162,164,166,168,170,172,173,174,178,179,185,190,194,195],obscur:[164,168],observ:159,obtain:[40,154,165],obviou:[29,39],obvious:[37,39,43,93,172],occas:41,occasion:168,occassion:15,occur:[6,40,51,71,90,178],occurr:[75,90],oci8:[28,51,144],oct:[3,13],octal:82,octal_permiss:82,odbc:[44,144],odio:90,off:[4,7,23,32,48,54,72,77,83,147,156,162,168,173],offer:[49,93],offic:79,offici:[14,67,141,157,172,173],offset:[11,52,53,124,132,145,152,168],offsetexist:22,offsetset:22,offsetunset:22,often:[30,39,43,44,51,58,71,75,77,96,102,146,150,152,157,158,168,173,178,179,182,185,188,189,191],ogg:84,ogv:84,old:[4,8,24,69,102,130,146,157],old_nam:56,old_table_nam:56,olddefault:146,older:[90,154],oldfil:82,omit:[52,105,157,166,178,180],onc:[4,37,47,51,52,65,68,73,77,95,102,108,109,121,122,145,146,150,154,155,157,158,159,161,162,164,168,172,176,178,179,181,182,183,185,189,193,194],onchang:83,onclick:83,ondelet:56,one:[4,17,28,29,30,31,35,36,37,39,40,41,44,45,50,51,52,53,54,56,58,61,64,65,69,71,73,75,77,79,83,84,90,91,93,94,95,96,98,100,101,102,105,108,113,121,142,145,146,147,148,149,152,154,155,156,157,158,159,161,162,163,164,166,168,169,173,174,175,177,178,179,180,181,182,183,185,188,189,190,192,194,195],oneofmymodelstest:189,ones:[64,90,91,94,102,121,144,178,193],onli:[4,5,7,8,12,13,14,15,17,28,30,32,36,39,40,41,44,45,46,51,52,53,56,58,61,64,65,69,70,72,75,76,77,80,82,83,84,87,90,91,93,94,95,96,98,99,100,101,105,108,113,114,116,124,125,128,130,132,136,143,144,145,146,147,148,149,150,152,155,156,157,158,159,161,162,163,164,166,168,172,173,174,175,177,178,179,181,182,183,184,185,188,189,190,192,194,195],onlin:[54,104,105],onlydelet:168,onsit:194,onto:[152,157],onupd:56,oop:189,opac:152,open:[29,40,51,52,76,77,83,90,91,94,102,107,108,109,121,123,130,131,148,149,157,161,164,173,174,178,180,184,192,193,194,195],open_basedir:147,openfil:[53,150],opensslhandl:11,opensslhandlertest:11,oper:[8,9,50,52,60,73,82,101,108,121,145,147,149,152,155,157,161,163,172,178,193,194],opportun:62,opposit:[90,159,190],opt:[108,155,157],optgroup:83,optim:[23,36,51,77,94,116,184],option:[1,3,4,10,12,17,20,21,30,32,33,37,41,44,45,51,52,53,54,56,58,59,62,64,68,69,77,79,81,82,83,84,87,90,91,93,94,96,100,101,105,108,111,113,116,117,120,124,130,131,139,142,145,146,148,149,150,152,156,157,159,162,163,164,166,168,172,173,174,177,181,184,186,189],options_arrai:166,options_object:166,oracl:[28,44,144],orang:[32,172],order:[6,7,14,20,30,37,40,41,46,51,53,56,58,65,68,70,71,73,79,82,83,84,93,95,96,101,102,108,113,123,132,144,145,146,148,149,152,154,155,157,158,164,168,172,176,178,183,184,189,195],orderbi:[52,168,175],ordin:[86,91,172,178],org:[4,84,107,148,185],organ:[4,30,35,39,58,59,77,102,107,143,155,164,168,180],orgroupstart:52,orhav:52,orhavinggroupstart:52,orhavingin:52,orhavinglik:52,orhavingnotin:52,orient:[37,73,96,100,152,162],origin:[3,11,28,51,82,90,102,112,113,141,146,148,149,150,152,155,159,161,166,168,173,178,189,195],originalnam:161,orlik:52,orm:40,ornotgroupstart:52,ornothavinggroupstart:52,ornothavinglik:52,ornotlik:52,orwher:52,orwherein:52,orwherenotin:52,other:[4,12,16,24,29,30,35,36,37,39,40,41,42,44,50,52,54,58,59,65,67,69,70,71,72,73,75,76,77,78,80,81,82,83,84,90,91,94,95,96,98,99,102,105,108,121,141,146,147,149,152,154,155,157,158,159,162,164,165,166,168,170,172,173,174,177,178,179,180,182,183,185,189,193,194],other_db:56,other_detail:79,otherwis:[31,51,52,56,58,69,71,80,84,91,96,98,101,147,148,152,156,157,162,165,181,183,184],ounc:[16,35],ouput:14,our:[6,17,29,30,31,39,41,52,58,63,73,77,108,134,143,146,154,157,164,166,168,173,182,191,192,194],ourself:41,ourtub:173,out:[1,4,5,6,7,14,30,35,37,39,42,51,65,77,94,95,102,109,121,142,148,149,152,154,155,157,159,165,166,168,169,170,172,181,184,186,191,192,193],outcom:52,outer:[16,52,79,102,178,184],outgo:[3,4,5,7,8,9,10,11,12,13,100],outlin:[185,194],outperform:157,output:[4,16,25,28,29,30,32,37,40,48,51,56,59,68,69,71,82,90,91,92,95,96,98,100,102,118,121,126,127,133,145,147,148,149,154,159,166,169,176,178,179,181,189,190,194,195],outsid:[6,39,40,73,77,78,87,90,111,113,114,116,117,120,150,155,166,175,189],outstand:144,oval:84,over:[37,39,62,64,65,69,70,81,83,84,96,101,111,146,147,172,173,178,179,181,182,184,189,193,194],overflow:40,overkil:[64,73],overlai:152,overlap:182,overnight:174,overrid:[11,14,30,36,44,64,72,73,77,82,89,94,95,108,113,134,146,162,164,168,178,184,185,186,189],overridden:[16,70,94,147,173],overview:[3,4,5,9,12,37,72,172,184,191,194],overwrit:[6,8,31,32,52,59,70,82,146,147,155,162],overwritten:[32,70,164],owasp:[95,156],own:[5,15,17,20,23,30,31,35,51,52,54,58,60,64,71,73,75,76,79,81,82,83,91,93,94,96,102,107,113,115,116,143,146,148,149,150,151,155,157,158,166,168,172,173,174,176,177,178,184,185,186,189,190,191,195],owner:157,packag:[2,5,77,99,149,157,180,193],packagist:[60,107,111,113,116,117,120],pad:[30,32],page1:52,page2:52,page:[3,4,7,12,13,14,15,29,30,37,38,39,47,52,65,69,72,74,75,82,83,84,90,91,95,96,102,103,107,108,132,139,147,148,156,157,158,160,162,170,173,177,178,180,182,184,190,192,194],page_:154,page_titl:180,pagemodel:[72,154],pagenavig:154,pagenotfoundexcept:[8,94,194,195],pagenumb:154,pager:[2,4,10,12,14,20,70,111,113,132,154],pagerinterfac:[2,4,111],pagerrender:[2,4],pagerrenderertest:4,pagertest:[4,12],pages:70,pagin:[4,8,10,12,15,82,103,104,121,131,140,153,168],pain:[96,173],painless:[70,189],pair:[52,53,69,70,102,157,166,168,173,174,175,178,179,183,184,186],pane:24,paragraph:[92,154],param1:[43,96,166,189],param2:[43,96,166,189],param3:166,param:[4,10,14,30,52,65,69,84,94,149,155,158,164,166,174,175,178,182,186],paramet:[3,4,8,10,12,13,16,17,20,23,24,28,29,30,32,43,46,48,51,52,53,54,56,58,65,69,70,72,75,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,96,98,100,101,111,116,145,146,147,148,149,150,152,154,156,157,158,159,160,161,162,163,166,170,173,174,178,179,180,181,182,183,184,185,186,188,189,190,194,195],parameter:40,parent:[22,56,61,64,94,96,98,115,127,131,173,178,183,186,189],parenthes:[52,149,178],parenthesi:52,pars:[14,30,91,98,138,149,162,163,176,190],parse_str:162,parsepair:[4,14],parser:[2,4,6,8,10,12,14,20,103,104,113,121,139,140,142,171,194],parserequesturi:3,parserplugintest:[5,6],parsertest:[3,4,5,6,10,12],part:[6,7,10,11,33,37,39,42,48,51,52,59,64,70,73,82,90,91,92,96,98,102,107,123,138,142,143,148,149,155,164,166,168,170,174,185,193,195],parti:[17,35,36,40,60,69,70,95,100,108,111,113,116,117,120,143,146,149,158,194],partial:[8,40,51,161,162,174],particular:[17,31,45,48,50,52,53,54,65,70,73,77,90,104,157,162,165,177,180],particularli:[52,54,108,156,160,195],pascal:[58,86],pascalcas:166,pass:[6,10,14,16,17,20,24,29,30,31,32,33,36,39,41,45,51,52,53,65,69,71,72,73,79,82,83,84,89,90,91,93,95,96,98,100,101,102,113,116,146,147,148,149,150,152,154,155,156,157,159,161,162,164,166,168,170,172,173,174,175,177,178,179,180,181,182,184,185,186,190,192,193,194,195],pass_confirm:[164,168],passconf:[137,164],password:[5,44,45,70,83,90,96,102,135,137,145,147,148,149,162,164,166,168,183,194],password_bcrypt:166,password_default:168,password_hash:[166,168],past:[12,149,159],patch:[10,14,23,96,101,102,116,147,156,186],path:[3,4,5,6,10,12,20,28,29,30,32,33,35,36,41,42,44,58,69,73,76,77,78,80,82,84,91,96,102,105,108,111,122,123,127,130,131,134,137,139,146,147,148,150,152,154,155,156,157,161,173,178,179,183,186,195],pathinfo:9,pathsconfig:76,pattern:[39,42,47,49,52,65,95,102,145,150,154,155,156,166,170,181,191,194],paus:147,payment:52,pconnect:[44,45],pdf:[148,173],pdo:[44,48,53,144],pear:142,pecl:157,pem:[44,147],pencil:155,pend:56,peopl:[39,45,142,148,152,168],per:[4,40,68,108,148,154,158,164,168,173],per_pag:132,perceiv:190,percent:[32,164,172,178],perfect:[30,102,159,168,192],perfectli:[25,80,118],perform:[4,16,35,37,41,48,50,51,52,65,68,70,72,73,77,94,95,102,141,142,145,152,157,158,168,172,173,176,178,181,182,184,186,190,193,194,195],perhap:[58,64,73,157,164],period:[56,82,102,150,158,164,172,173],perm:82,perman:[157,162,166,168,173],permiss:[17,29,82,108,150,152,157,161,165,182],permit:[43,44,48,52,56,70,83,84,86,94,95,102,116,137,148,156,157,158,164,165,174,192],permit_empti:164,perpag:[70,154],perpetu:141,persist:[44,69,146,148,157,166,168,185,189],person:[79,148,165,166],pertain:[39,105,111],pg_exec:51,pgsql:44,phase:[31,51,183],phasellu:90,phd:[101,178],philosophi:121,phone:[137,152,185],phonenumb:185,phooei:90,photo1:148,photo2:148,photo3:148,photo:[101,102,147,152,155,173],photograph:152,php5:82,php7:108,php:[3,4,5,6,7,9,10,11,12,13,14,17,18,20,22,24,25,28,29,30,31,32,33,35,36,37,39,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,58,59,61,62,64,65,68,69,70,71,72,73,75,76,77,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,98,100,101,102,103,104,105,108,111,113,114,115,116,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,166,168,170,171,172,173,174,176,177,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195],php_eol:[29,150],php_error:4,php_version:30,phpc:4,phpcbf:4,phpdoc:[3,4,8,9],phpdocumentor:8,phpinfo:70,phpmyadmin:194,phpredi:[145,157],phpstan:113,phpunit:[8,9,71,76,105,111,113,183],phrase:[86,90,147,173,178],physic:148,pick:[75,113,172],pictur:[84,148,181],piec:[6,39,51,77,96,121,139,145,146,157,162,166,178,179,184,194],pig:173,ping:45,pipe:[164,178],pixel:152,pizza:[84,164],place:[29,32,41,52,56,58,61,62,64,65,68,70,71,72,90,94,95,102,143,145,146,147,148,152,154,155,161,164,166,168,170,172,173,178,181,188,189,194],placehold:[4,28,51,69,75,83,172,173,177],plai:[39,42],plain:[32,88,126,149,173,178],plain_text:126,plaintext:[126,148,149],plan:[108,184],planet:178,platform:[17,43,44,48,52,54,108,157,163,195],player:79,playground:107,pleas:[31,42,47,52,63,82,88,90,94,108,109,117,118,119,120,140,143,145,147,149,154,157,164,168,184,185],pleasant:[29,164,166],plu:[83,84,143,154,164],plugin:[2,6,10,14],plump:32,plural:[31,86,172],png:[84,91,93,96,98,127,150,152,155,161,164],podunk:194,point:[42,69,75,83,87,101,102,105,121,145,155,164,166,168,192,193,194],pointer:[53,193],pointless:14,polici:[28,69],polish:13,poll:101,poly1305:149,poor:75,pop:91,popul:[59,96,154,166,174,183,186],popular:[54,145,155,157],populatehead:[96,98,173],popup:91,port:[11,44,45,108,145,148,157,195],portabl:[43,83,91,164],portal:61,portion:[42,52,98,152,159,162,165,178],porttitor:90,pose:71,posit:[40,53,56,79,86,90,102,145,152,159,178,179,182],possibl:[4,22,30,32,40,51,52,56,64,67,70,72,76,79,102,142,147,149,150,151,152,154,156,164,166,173,178,180,185,189,194,195],post:[9,12,16,29,37,39,41,75,83,91,95,96,99,100,101,102,108,116,132,134,147,156,158,164,168,175,186,192,194],post_controller_constructor:[65,121],post_data:147,post_imag:84,post_system:65,post_var:75,postgr:[2,4,6,7,8,10,12,13,16,22,44,48,115,144],postgresql:[14,16,44,48,51,116,144,157],postmanag:41,postmodel:77,potenti:[6,46,58,92,102,107,145,158,161,168,179,180],pound:[90,162],power:[37,95,123,147,150,155,173,192],pqueri:51,practic:[25,40,51,70,71,73,80,96,108,118,152,172,182,185],prais:191,pre:[4,6,61,84,107,108,160,164,189],pre_system:[5,8,65],preced:[56,62,98,111,149,162,189],precis:[87,178,181],predefin:[32,150,166],predetermin:164,predi:2,predishandl:[8,10],prefer:[45,56,83,91,93,96,102,105,125,146,149,152,154,161,166,168,170,173,174,178,180,194],preferapp:[36,77],prefersapp:36,prefetch:53,prefix:[5,16,17,43,44,52,58,70,73,80,90,91,102,111,125,145,147,166,173,178,190],prefix_:145,prefix_tablenam:51,prefixedkei:145,prefixt:51,preformat:81,prematur:173,prep:164,prep_url:91,prepar:[4,17,37,162,182,189],preparedqueri:[2,51],preparedqueryinterfac:2,prepend:[31,51,58,79,80,96,98,102,145,146,149,150,173,180],prependhead:[96,98,173],prescrib:[173,189],presenc:192,present:[11,31,39,40,44,77,94,95,102,146,154,164,170,172,178,183],preserv:[157,159,168],press:32,presum:84,pretti:[32,37,39,51,93,96,121,122,124,173,190],prettier:178,prev:154,prevent:[7,9,10,11,14,17,19,20,25,36,42,52,58,69,80,91,94,102,118,155,156,157,158,162,173,189,194,195],preview:152,previou:[15,23,24,28,53,58,69,103,104,116,125,147,152,154,156,157,159,164,174,190],previous:[17,18,20,69,81,91,98,146,157,164,168,170,178,179],previous_url:[14,91,178],price:172,primari:[5,8,9,15,16,17,35,42,44,50,51,52,56,77,131,145,157,164,168,185,192,194],primarili:[15,58,69,102,168,190,193],primary_kei:50,primarykei:[55,168],prime:155,principl:[101,193],print:[8,29,52,82,84,86,90,91,148,162,169,190],print_r:185,printdebugg:[125,148],printer:84,prior:[3,28,65,91,95,102,111,113,149,164,168,176,183],priorit:14,prioriti:[14,20,36,70,93,148,157],privat:[44,61,70,111,168,173],privatemethod:189,privileg:40,pro:108,probabl:[24,37,41,157,179,181,192],problem:[4,9,14,37,39,40,58,67,69,70,77,90,96,102,109,147,155,157,164],problemat:186,procedur:[73,77,85,130],process:[3,9,16,17,20,23,24,28,40,45,51,53,54,61,65,68,77,101,108,109,149,155,156,157,164,176,178,179,182,189,195],process_:94,processor:160,produc:[47,48,51,52,53,54,56,83,84,90,91,162,164,181,195],product:[3,42,44,45,58,65,70,71,72,94,102,108,109,111,130,134,150,152,157,170,184,185,193],product_lookup:134,productcontrol:102,productlookup:[102,134],productlookupbyid:102,productlookupbynam:102,profil:[33,39,102,162,184],program:[34,42,144,145,193],programat:16,programm:[72,191,194],programmat:[51,73,194],progress:32,prohibit:95,project:[21,29,30,35,40,41,44,60,61,63,69,70,76,77,89,95,106,108,109,118,119,121,122,130,141,142,143,145,150,155,162,172,178,181,182,185,189,192,193,195],project_root:106,promis:17,prompt:[29,30,32,173],prone:[35,41],prop:9,propag:[17,178],proper:[7,17,39,52,58,101,111,149,161,173,186],properli:[3,6,9,16,39,51,52,109,116,155,157,178,185,192,194,195],properti:[4,5,6,12,13,14,17,20,23,28,30,36,44,45,53,56,58,65,70,75,77,95,96,101,111,113,116,121,122,146,148,149,154,155,157,159,164,168,170,173,178,182,183,184,185,192,194,195],property_exist:[4,168],propos:[3,17,143],prose:178,protect:[4,5,22,23,27,30,40,52,53,55,58,61,88,91,92,94,95,96,101,102,113,115,119,135,148,150,155,161,166,173,178,179,182,183,184,185,186,192,194],protect_al:92,protectidentifi:51,protocol:[14,37,84,90,91,98,100,109,146,147,157],protocolvers:173,prototyp:[44,164,166,174],prove:[56,184],proven:166,provid:[4,6,7,16,17,23,29,30,35,36,37,40,41,42,44,45,50,52,53,56,58,60,61,65,69,70,71,72,73,75,77,79,81,84,87,88,93,94,96,98,99,100,101,102,108,113,116,121,123,141,142,143,146,147,148,149,150,152,154,155,156,157,158,159,161,162,163,164,165,166,168,170,172,173,174,175,179,180,181,182,183,185,188,189,190,192,194,195],provis:60,proxi:173,proxyip:[100,111],prune:29,pseudo:[149,150,178],psr4:[4,6,13,31,35,58,77],psr:[2,7,17,22,35,73,75,76,77,94,103,111,113,115,121,177,180],psrlog:5,public_html:108,publicli:[70,157],publish:[56,103,116,153,165,194],published_on:175,pull:[4,15,39,41,63,84,96,105,143,166,172,173,180],punctuat:164,pure:[45,53,169,178],purg:168,purgedelet:[168,189],purgerow:189,purpl:32,purpos:[30,94,96,102,146,157,165,168,178],puru:90,purview:39,put:[16,23,29,37,39,51,52,53,54,68,70,73,76,77,83,91,94,95,96,99,101,102,109,116,146,147,148,149,156,174,180,186,194],qrj7:27,quadrillion:87,qualifi:[59,70,77,95,102,164,168,170,182,184],qualiti:11,quantiti:83,quarter:159,queri:[2,3,4,5,6,7,8,10,12,14,20,23,24,40,43,44,45,46,49,50,54,56,59,65,75,78,82,103,113,124,128,157,174,178,184,193,194],query2:53,query_build:[3,10,11,12,82],querybuild:[24,154],queryinterfac:2,question:[32,51,58,90,109,166,189,191],queue:[6,77],qui:90,quick:[14,41,49,51,69,72,103,184],quickli:[39,101,102,187],quicktim:84,quisqu:90,quit:[51,62,68,73,84],quot:[4,7,13,51,69,83,90,92,160],quotes_to_ent:90,r0lgodl:84,rachel:185,radio:83,radiu:[90,178],rain:32,rais:[24,51,178],rambl:178,ran:[30,58,192],rand:52,random:[29,40,52,89,90,149,150,161,185],random_byt:90,random_el:73,random_str:90,rang:[65,83,87,90,152,159,162],rapid:166,rapidli:168,rare:[51,111,113,116,117,120,157],rate:[95,170],rather:[51,54,56,78,83,102,113,121,157,168,173,178,185],ratifi:143,ratio:152,raw:[10,30,39,51,56,69,93,96,145,146,147,148,161,166,178,179,181],rbc:164,rdfa:84,reach:194,reachabl:102,reactor:141,read:[6,9,13,42,47,51,52,56,73,82,101,105,106,108,121,140,147,154,155,157,166,172,173,178,180,184,191,192,193,194,195],readabl:[7,65,82,84,87,102,157,158,159,172,173,175],readi:[47,84,121,150,154,155,178,185,195],readm:[4,6,8,11,13,111,157],real:[94,141,148,150,173,180],realli:[37,51,54,91,145,146,162,168],reason:[29,35,44,51,52,70,90,91,94,147,157,170,173],reboot:155,rec:84,receiv:[37,39,65,70,93,98,111,113,114,116,117,120,121,148,155,164,166,168,190],recent:[58,67,146,159],recentpost:175,recipi:[14,148],recogn:[16,31,65,91,152,168],recogniz:184,recommend:[25,35,41,53,54,58,70,75,77,80,84,90,94,95,102,104,108,109,111,113,114,116,117,118,120,121,143,148,149,158,164,169,172,186,189,191,193],reconfigur:149,reconstruct:33,record:[17,36,40,52,53,146,154,156,157,164,167,168,178,181,194],recreat:[64,155],rector:[21,113],recurs:[82,150,155,166],recycl:168,red:[32,84,128,152,155,164,166,174,178,192,193],redefin:77,redi:[2,7,11,157,158],redirect:[3,4,5,13,14,16,17,39,69,72,78,95,111,121,147,148,190],redirectexcept:[4,13],redirectrespons:[3,4,14,69,121,182,190],redirectresponsetest:[3,4,5],redishandl:[4,7,8,9,10,11,13,22],redishandlertest:[4,8],redisplai:164,reduc:[23,36,77,90,102,145,158,160],reduce_double_slash:90,reduce_linebreak:160,reduce_multipl:90,redund:14,ref:[12,84],refactor:[3,5,6,7,10,11,12],refer:[3,4,7,8,11,14,70,75,76,79,80,81,94,102,103,105,117,118,119,120,121,124,161,164,168,181,191,193,194,195],referenc:[35,81,107,164,168,178],referr:163,refil:158,refin:175,reflect:3,reflectionhelp:2,reformat:115,refresh:[6,58,68,183,185],refus:173,regard:52,regardless:[51,58,90,94,148,149,152,164,173],regener:[11,17,157],regenerationerbiag:11,regex:[4,102,150,164],regex_match:164,region:70,regionalsal:70,regist:[4,35,65,123,157,166,176],registrar:[9,77],regress:[14,58,65],regressdatabas:183,regul:146,regular:[16,56,70,95,149,155,156,157,164,195],reilli:90,reject:[146,158,173],rel:[36,58,69,72,82,84,91,96,102,105,147,148,155,156,162,189],relat:[8,16,17,20,21,22,35,56,70,73,84,88,111,154,156,157,164,168,192],relationship:56,relativepath:156,releas:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,31,105,106,107,114,115,145,193],relev:[44,77,113,160,178],reli:[7,41,56,96,114,115,157,173,186,188],reliabl:[67,90,157],reload:[109,164],reloc:[8,42,150],remain:[4,17,53,68,150,152,155,172,178,192],remaind:70,rememb:[29,51,56,70,145,146,149,159,170,180,189],remember_token:146,remot:[27,40,147,155],remote_addr:157,remov:[3,4,5,6,7,8,9,11,12,14,16,18,23,28,30,31,32,52,56,68,69,71,76,90,98,101,105,111,112,113,116,129,130,135,136,137,149,150,155,158,161,162,164,168,173,178,183,184,189,193],remove_invisible_charact:69,removedotseg:20,removefil:150,removehead:[96,98,173],removepattern:150,removerelativedirectori:20,removetempdata:157,renam:[5,13,42,44,52,70,105,121,130,133,150,166,193],renamet:56,render:[4,8,13,14,41,65,68,69,71,103,138,154,171,176,178,181,184,194],rendererinterfac:[2,69,178,179],rendersect:177,renderstr:[178,179],rendertimelin:13,reorgan:[1,4],reorient:152,repeat:[16,39,106,164,168,178],repeatedli:158,replac:[4,6,8,14,15,28,31,41,50,51,52,66,69,73,79,86,90,94,95,102,103,106,111,112,113,114,121,123,124,125,126,128,129,131,136,138,142,145,146,149,154,155,159,164,168,169,173,178,179,180,189,192],replacetest:12,repli:[148,170],replyto:148,repo:[1,4,19,20,23,24,25,28,105,143],report:[4,30,41,46,54,72,100,108,146,148,163,173,192],reportonli:173,repositori:[6,42,63,70,77,103,104,105,106,166,172],repres:[37,42,48,53,70,79,96,98,102,143,146,147,152,159,161,162,166,168,170,173,178,182,185],represent:[15,37,69,96,98,100,101,146,149,162,178],reproduc:77,request:[2,3,4,7,10,11,12,14,15,16,23,27,33,36,38,39,41,52,53,61,63,64,68,69,74,75,78,83,87,91,93,94,95,97,98,99,102,108,109,110,111,113,116,123,127,136,143,146,148,151,155,157,158,161,162,163,164,166,168,170,172,173,180,182,184,185,189,192,194,195],request_filenam:78,request_method:100,request_uri:[96,100,109],requestinterfac:[2,69,95,96,110,158],requir:[3,7,8,10,14,28,30,31,32,35,36,39,41,44,47,48,51,52,54,56,58,65,69,70,71,75,77,79,94,96,100,102,103,104,105,108,111,134,137,138,142,143,145,146,147,148,149,152,155,157,159,161,164,166,168,170,172,173,174,176,178,184,186,189,192,194],require_with:164,required_with:[7,8,164,168],required_without:[7,8,164],requiredfield:164,res:147,reserv:[23,92,102,113,164,166],reserved_charact:23,reset:[11,13,14,83,109,147,148,150,158,164,168,183,185,189],reset_data:52,resetcount:185,resetqueri:52,resetselect:3,resetsingl:189,resid:31,resist:41,resiz:91,resolut:101,resolv:[8,13,82,147,150,155,162],resort:157,resourc:[4,7,31,40,51,52,53,54,60,68,69,84,97,98,102,103,152,155,157,170,193,194],resourcecontrol:11,resourcecontrollertest:11,resourcepresent:[11,12],resourcepresentertest:[11,12],respect:[5,6,14,20,40,58,59,79,83,95,111,113,150,154,155,159,164,168,170,173],respond:[37,101,159,170,173],respondcr:170,responddelet:170,respondnocont:170,respons:[2,3,4,5,11,12,14,15,16,20,24,28,39,51,58,61,64,69,72,80,94,95,98,103,104,106,110,111,113,121,123,139,140,146,155,156,158,166,168,180,184,187,189,194],responsecookietest:4,responseinterfac:[2,3,4,69,95,110,111,158,182,190],responsesendtest:4,responsetest:[3,4,5],responsetrait:[2,9,11,20,26,111,119,170],responsetraittest:[3,6,11],rest:[11,12,13,31,44,75,94,95,97,99,103,155,166,191],restart:108,restor:[14,168],restrict:[10,13,32,39,95,101,142,147,155,158,165,168,175],restrictor:52,restructur:[4,57],result:[2,4,9,10,16,23,24,30,40,43,48,49,50,51,54,70,79,82,84,87,90,95,96,98,102,103,105,113,124,145,147,150,152,155,156,157,159,161,164,166,168,170,172,173,174,175,176,178,179,181,182,184,185,186,189,190,194,195],result_arrai:124,resultid:43,resultinterfac:[2,52],resultmod:53,retain:[121,146,150,155,178,179,180],retainpattern:[150,155],retriev:[37,39,47,51,52,68,69,98,100,146,147,154,159,161,162,163,164,166,178,179,180,181,189,190,194],retroact:19,returndata:168,returned_email:148,returnedvalu:82,returnobject:91,returnpath:148,returntyp:[166,168],reus:[36,70,157,164,177,178,194],reusabl:77,rev:14,revalid:173,reveal:193,revers:[12,17,69],reverse_nam:53,reversenam:53,reverserout:10,revert:[3,4,13,14,58,105],review:[4,113],revis:[11,14,111,164,168],revisit:6,rework:6,rewrit:[2,9,78,108,121],rewrite_modul:108,rewritecond:78,rewriteengin:78,rewriterul:78,rewritten:144,rfc:[4,75,111,147,148],rgb:152,rgba:152,rich:[142,167],richardson:101,rick:51,rid:164,ridden:[84,173],ride:[101,178,179,189],right:[29,32,52,65,72,77,90,94,102,104,107,121,146,152,164,165,178,181,184,193,194,195],rightdelimit:178,ripe:32,risk:[17,67,96,157,168,178],risu:90,robot:[155,163],robust:[148,155],roi:101,role:[39,40,95,164,178],roll:[54,58,183],rollback:[12,54,58],roman:87,root:[8,29,30,31,40,41,42,44,55,58,59,69,70,71,76,77,78,82,94,96,102,105,106,108,109,111,113,114,116,117,120,121,145,157,173,183,189,193,194,195],rootpath:[30,35,58,69,76,77,105,150,155],roughli:113,round:[84,178],rout:[2,3,4,5,6,7,8,9,10,11,12,13,20,23,28,30,41,42,64,65,69,72,78,84,91,95,99,103,104,108,109,111,120,121,140,158,178,184,191,193],routabl:[8,61],route_to:[69,102,178],routecollect:[2,3,4,6,7,8,9,10,11,41,64,101,102,116,134,182],routecollectioninterfac:[2,4,41,64],routecollectiontest:[4,6,8,10,11],router:[2,3,4,5,6,7,8,9,10,11,13,14,16,28,41,64,72,102,116],routercollect:41,routercollectioninterfac:41,routercollectiontest:5,routerinterfac:[2,10],routertest:[4,5,6,10],routescollect:102,routetest:3,routin:[73,164,182],row:[23,32,35,47,48,52,83,116,150,164,166,168,174,178,180,183,192],row_alt_end:174,row_alt_start:174,row_end:174,row_start:174,royal:164,rpc:121,rss:[84,102],rssfeeder:102,rst:[6,8,10,12,14,113],rsync:155,rtl:155,rtype:52,rule:[1,2,3,4,7,8,9,10,14,18,23,24,28,31,32,39,40,58,78,83,94,95,96,107,109,117,137,142,147,148,161,162,170,178,179,192,194,195],ruleset:164,rulestest:[6,8,9],run:[4,6,7,9,14,16,23,31,32,34,41,42,43,44,46,48,49,50,51,52,53,56,58,59,61,64,65,69,70,71,72,75,77,81,93,95,96,101,102,103,104,105,106,116,121,124,130,137,140,147,148,152,155,156,157,158,159,166,170,173,174,175,178,180,182,183,184,185,188,189,194],runner:10,runtim:[16,28,36,70,75,111,113,116,117,120,146,149,164],runtimeexcept:[72,161],s3_bucket:[70,100],safari:163,safe:[14,54,69,83,88,90,91,146,149,157,160,161,162,164,166,182,183,192],safe_mailto:[14,91,178],safe_mod:147,safer:[51,52,147],safest:[95,96,157],safeti:[6,39,51,157,162,193],sai:[31,36,43,76,77,91,94,101,154,157,158,164,166,172,194,195],said:[70,157],sake:194,sale:70,salli:169,salt:9,same:[8,23,29,30,32,33,35,36,41,43,51,52,53,56,58,65,69,70,72,73,75,77,78,79,82,91,94,96,98,102,105,108,116,121,122,124,130,145,146,147,149,152,155,156,157,159,161,164,166,168,170,173,174,177,178,180,182,189,195],same_fil:[21,82],samesit:[17,20,80,111,157,173],samesite_lax:146,samesite_non:146,samesite_strict:146,sampl:[56,59,70,105,151,178,185],samsonasik:16,sandal:94,sane:146,sanit:[5,40,69,88,91,96,156,162,164],saniti:40,sanitize_filenam:88,sanitizefilenam:[88,156],saturdai:174,save:[4,8,11,13,16,29,39,41,44,52,53,68,69,70,94,96,102,135,145,146,147,148,149,152,155,156,157,159,161,166,170,178,179,180,185,192,194,195],save_handl:157,save_path:[6,157],savedata:[69,178,179],sbin:148,scalar:178,scale:142,scan:[58,73,77,98,102,177,195],scelerisqu:90,scenario:[108,149,164,185],scene:[113,154],schema:[44,58,164,166,183],scheme:130,school:91,scientif:178,scientist:194,scope:[77,111,113,114,115,116,117,119,120,150,178,185],score:146,scotia:164,scotiabank:164,scrambl:156,scratch:[142,155],screen:[32,184,193],screeni:91,screenx:91,script:[3,4,5,9,16,28,29,30,32,52,53,65,69,71,72,84,95,105,108,121,122,130,134,139,147,152,157,158,164,170,173,178,179,181,184],script_nam:96,script_tag:84,scriptnoncetag:[28,173],scrollbar:91,scss:155,sdch:96,seamlessli:168,search:[10,14,17,36,51,52,78,79,90,94,96,108,109,147,154,155,163,164,168,190,193],second:[3,16,32,36,41,43,45,51,52,53,56,65,68,69,75,80,82,83,84,87,90,91,93,94,95,96,98,100,101,102,108,114,121,145,146,147,148,149,150,152,154,156,157,158,159,161,162,164,168,170,172,173,175,178,179,180,181,182,185,186,189,190,194,195],secondari:[51,107],secret:149,secret_kei:70,section:[6,9,14,20,28,37,52,63,71,72,73,75,77,93,94,95,96,103,105,108,111,113,116,117,120,147,149,154,157,162,168,177,178,184,187,191,192,193,195],secur:[2,4,8,11,12,13,17,20,28,38,42,51,61,69,70,71,80,85,91,94,95,96,102,103,104,109,111,113,116,117,119,120,121,140,146,148,149,150,153,157,161,164,168,178,179,192,193],securehead:102,security_help:[7,8],securitytest:13,sed:90,see:[0,1,9,17,20,23,24,25,26,27,28,29,30,36,37,39,44,45,47,52,53,54,56,58,63,69,71,73,76,77,81,82,84,88,90,91,93,94,95,96,98,100,102,107,109,111,116,117,119,121,129,132,145,147,149,152,154,155,157,158,161,162,164,168,173,178,179,180,181,182,184,185,186,189,190,192,193,194,195],seecheckboxischeck:190,seed:[2,4,5,7,12,16,30,31,42,52,57,103,168,185,194],seeder:[2,7,14,16,24],seedonc:183,seeelement:190,seeindatabas:183,seeinfield:190,seelink:190,seem:[68,102,109],seen:161,seenumrecord:183,seg1:102,seg2:102,seg3:102,segment:[4,29,78,79,83,91,95,101,172,182,192,194],seldom:148,select:[7,8,10,16,28,32,47,50,51,53,81,83,98,107,124,149,156,157,161,164,174,178],select_max:124,selectavg:52,selectcount:[11,14,52],selectmax:[52,124],selectmin:52,selectsubqueri:52,selectsum:52,selecttest:[6,8,11],self:[4,158,173],sell:165,sem:90,semant:160,semi:[51,193],semicolon:169,send:[4,10,23,28,37,40,42,45,65,67,78,80,82,83,93,100,111,116,125,146,147,149,154,156,170,173,181,186,189],sendbodi:111,sendcooki:[22,24,115],sendhead:111,sendmail:148,sens:[73,158,166,186,194],sensit:[70,157,173,181,193,195],sent:[37,51,56,65,67,68,72,95,96,102,146,148,154,157,161,164,170,173,188],sentenc:178,seo:194,sep:11,separ:[4,20,23,24,30,36,39,44,45,52,56,58,59,69,70,79,82,86,90,91,101,102,108,111,121,141,143,146,154,157,159,164,166,168,172,175,178,181,184,185,189,195],seper:70,sept:12,septemb:[2,22],sequenc:[35,44,48,50,58,178],sequenti:[130,178],seri:[35,95,154],serial:166,serious:40,serv:[2,3,4,8,14,70,84,93,94,98,108,109,147,170,173,193,195],server:[2,3,7,8,9,10,14,37,40,42,44,45,67,68,70,71,73,76,81,82,90,93,94,96,98,99,100,102,103,104,109,121,145,146,147,148,149,152,157,170,173,193,195],server_nam:[71,108],server_path:82,server_protocol:[96,100],servernam:108,servic:[2,3,4,5,6,7,8,10,11,14,17,37,38,58,60,61,64,75,77,93,95,96,103,111,121,125,126,134,138,145,146,147,148,152,153,154,155,156,157,158,160,162,164,172,174,178,179,181,182,188,192],serviceinst:4,servicestest:[5,6],sess_expire_on_clos:157,session:[2,3,4,5,6,8,9,10,11,12,13,17,20,22,23,28,31,58,61,69,91,103,104,121,140,146,149,153,156,189,192],session_destroi:157,session_id:157,session_regener:13,session_var:75,session_write_clos:157,sessioncommandstest:4,sessioncookienam:157,sessiondbgroup:157,sessiondiv:157,sessiondriv:157,sessionexpir:157,sessionhandlerinterfac:22,sessionhandlersbasehandl:4,sessioninterfac:2,sessionmatchip:157,sessionregeneratedestroi:157,sessionsavepath:157,sessiontest:[4,12,13],sessiontimetoupd:157,set404overrid:102,set:[4,5,6,7,8,10,11,12,13,16,17,20,23,24,28,29,30,32,35,36,40,41,42,44,47,48,51,52,53,54,56,58,59,68,69,70,71,72,73,75,76,77,78,80,81,82,83,87,90,91,94,95,96,98,100,107,109,111,113,125,134,136,137,142,143,145,146,147,150,151,152,155,156,157,158,159,161,162,166,168,170,172,174,176,178,179,180,181,182,185,190,192,193,195],set_:83,set_checkbox:[16,83],set_content_typ:133,set_cooki:[80,146],set_head:128,set_output:133,set_radio:[16,83],set_realpath:82,set_select:83,set_status_head:133,set_userdata:136,set_valu:[4,83],setaltmessag:148,setattachmentcid:148,setautorout:102,setbcc:[125,148],setbodi:[37,96,98,113,147,156,173],setcach:173,setcapt:174,setcc:[125,148],setconditionaldelimit:178,setcontenttyp:[133,173],setcooki:[24,80,111,146,173,189],setcount:185,setcreatedat:[4,166],setcreatedon:4,setdai:159,setdat:173,setdata:[138,178,179],setdatabas:45,setdefault:146,setdefaultcontrol:[28,94,102],setdefaultmethod:102,setdefaultnamespac:[14,102],setdefaultsrc:173,setdelimit:178,setempti:174,setenv:71,setescapeflag:7,setfil:8,setfilenam:[11,173],setflashdata:157,setfoot:174,setformatt:185,setfrag:162,setfrom:[125,148],setglob:[96,100],setgroup:58,sethead:[11,37,96,98,128,147,148,173,174],sethost:162,sethour:159,setinsertbatch:52,setjson:[111,133,173],setlastmodifi:[111,173],setlink:111,setlocal:[172,182],setmessag:[125,148],setmethod:[96,100,189],setmim:111,setminut:159,setmodel:12,setmonth:159,setnamespac:58,setoverrid:[89,185],setpad:17,setpassword:166,setpath:[96,154,162],setport:162,setprefix:51,setpriorit:102,setprivateproperti:189,setprotocolvers:[96,98,173],setqueri:[51,162],setqueryarrai:162,setrawcooki:[24,146],setreplyto:148,setreporturi:173,setresponseformat:170,setrow:53,setrul:[6,28],setrulegroup:164,setschem:[4,162],setsecond:159,setsil:[16,162],setstatuscod:[37,133,156,158,173],setsubject:[125,148],setsurroundcount:154,settempdata:157,settempl:174,setter:[41,189],settimezon:[16,166],setto:[125,148],settranslateuridash:102,setup:[4,5,7,12,13,70,71,72,132,145,157,168,182,183,186,188,189,194],setupauthtrait:189,setupbeforeclass:189,setupdatebatch:[23,52],setupmethod:189,setuprequest:3,setvalidationmessag:[8,168],setvalidationrul:168,setvar:[178,179],setx:[159,166],setxml:[111,173],setyear:159,seven:[152,174],sever:[6,12,16,32,37,39,51,52,53,56,58,64,69,70,71,75,76,77,79,94,96,102,105,107,146,159,161,162,164,168,172,173,178,179,181,183,184,188,193,195],sha1:90,sha512:149,shadow:152,shadowcolor:152,shadowoffset:152,shall:165,shape:84,share:[36,44,45,69,70,76,96,102,149,157,168,173,189],shareopt:147,sharona:179,she:40,sheet:[40,156],sheme:162,ship:[31,58,70,174,184,187],shipment:67,shirt:[83,102],shirts_on_sal:83,shockwav:84,shoe:94,shop:[121,146,194,195],shortcom:161,shortcut:[36,84,147],shortdat:172,shorten:11,shorter:[32,164],shorthand:186,shortnam:77,shorttim:172,should:[6,7,8,9,10,13,14,15,16,20,28,29,30,31,32,35,36,37,39,41,42,44,45,51,52,53,56,58,60,61,68,69,70,72,75,77,83,84,86,87,90,93,94,95,96,98,99,101,102,105,108,109,110,111,112,113,116,122,123,125,129,131,144,145,146,147,148,149,152,154,155,156,157,158,161,164,166,168,170,172,173,174,177,178,179,180,182,183,184,185,186,187,188,189,191,192,193,194,195],shouldn:[8,168],shove:166,show404:102,show:[14,28,30,32,47,51,52,71,72,78,82,83,93,94,101,102,109,144,145,152,154,161,162,164,166,168,170,174,178,192,193,194,195],show_404:3,showcas:107,showcategori:182,showerror:[30,155,164],showhelp:30,shown:[3,4,5,6,7,8,9,10,11,12,13,52,73,90,91,152,154,161,164,172,173,178,181,184,192,195],showpassword:162,showusergalleri:102,shuck:90,shuffl:73,side:[9,32,52,70,107,147,152,154,156,195],sidebar:[177,180],sift:32,sight:194,sign:[52,70,83,90,109,162,164],signal:72,signatur:[7,12,22,28,110,146,164],signifi:164,signific:[75,111,113,116,117,120,121,164],significantli:[62,64],signup:164,signup_error:164,silent:14,similar:[29,54,83,94,101,102,105,106,109,121,135,150,157,161,164,169,180,182,185,189,190,194],similarli:[80,149,157],simpl:[7,16,29,30,32,37,39,41,49,52,58,59,61,65,69,70,73,77,78,83,84,90,91,94,95,102,104,105,111,113,116,117,120,121,130,142,148,149,154,155,157,158,161,162,164,166,168,170,172,173,177,178,180,181,186,189,192,193],simple_queri:124,simplecach:143,simpleconfig:70,simplelink:154,simplequeri:[51,124],simpler:[1,30,69,77,94,127,152,154,161,164,166,168,182,194],simpleseed:59,simplest:[36,39,41,71,75,166,168,178],simpli:[30,32,36,37,39,41,51,52,54,64,65,69,70,72,73,75,76,90,91,94,95,96,98,102,108,140,147,148,150,152,154,156,157,159,162,164,166,168,170,172,173,174,175,178,180,186,190,195],simplic:52,simplifi:[4,9,12,13,47,52,54,79,94,121,152,158,166,169,189],simul:[182,189],simultan:45,sinc:[10,11,18,25,32,37,41,51,52,54,56,58,65,68,70,73,77,83,93,95,96,99,101,102,112,123,131,145,147,148,152,154,155,156,157,159,161,162,164,166,168,170,172,173,177,178,182,186,189,192,195],sing:168,singl:[4,13,24,31,32,35,36,39,41,44,51,52,53,56,58,65,69,70,75,76,79,90,92,93,96,98,101,102,148,149,154,157,158,160,162,166,168,170,173,174,176,178,179,180,181,183,185,186,188,189],single_concat:181,single_servic:69,singleton:[1,168],singular:86,sit:90,site:[7,14,27,29,42,58,70,72,81,82,83,84,91,93,94,95,98,102,108,109,122,142,146,147,157,158,161,162,163,164,172,173,179,180,186,189,193],site_id:56,site_url:[5,14,91,95,178,190],siteemail:[70,122],sitenam:[70,122,179],sitepoint:[172,173],siteurl:178,situat:[44,52,154,161,166,173],six:174,size:[32,82,83,87,128,137,149,150,152,161,164,174,185],skeleton:[16,41,58,95,105],skip:[52,53,65,82,83,157,168,186],skipev:186,skipvalid:168,slack:191,slash:[4,6,8,9,10,11,13,35,69,90,102,108,146,162,195],slash_item:69,slate:[58,188],sleep:170,slice:84,slight:102,slightli:[52,90,124,125,128,133],slow:[21,46,65,158],slower:157,slowest:156,slug:[90,192,194],small:[4,15,16,37,39,41,48,77,83,102,125,128,136,142,146,148,161,174,193],smaller:[12,32,168,184],smart:[29,54,152,166,172,177],smartphon:37,smith:[29,79,164],smooth:146,smtp:14,smtpcrypto:148,smtphost:148,smtpkeepal:148,smtppass:148,smtpport:148,smtptimeout:148,smtpuser:148,snag:109,snake_cas:166,snippet:108,snoopi:96,snow:190,sock:108,socket:108,sodal:90,sodium_crypto_secretbox_keybyt:149,sodium_crypto_secretbox_keygen:149,sodium_memzero:149,sodium_pad:149,sodium_unpad:149,sodiumhandl:149,soft:[6,9,10,11,168],softwar:[101,149,165],sole:75,solid:168,solut:[67,109,142,149,157,162,168,181],solv:[70,102,155],some:[6,8,9,10,12,15,16,30,31,32,33,37,39,41,43,44,45,50,51,52,53,56,58,64,65,70,71,72,73,75,77,78,82,83,90,91,93,94,95,96,98,99,102,108,109,111,113,116,117,120,121,124,143,145,147,148,149,150,152,155,156,157,161,162,163,164,166,168,170,173,178,179,181,182,184,185,189,191,192,193,194,195],some_attribut:166,some_cooki:96,some_cookie2:96,some_data:[96,100],some_ev:65,some_funct:[43,65,83],some_method:94,some_nam:[136,157],some_t:[50,51,53],some_valu:157,some_var:75,some_view:177,someclass:[65,96,166],somefil:178,somefilt:[36,102],somefunct:36,somehandl:166,somemethod:65,someon:[125,148,159,164],someotherclass:36,sometest:189,someth:[30,32,37,44,51,52,58,71,72,75,91,93,94,95,96,98,102,122,124,147,150,154,155,157,161,163,164,166,168,170,178,180,183,185,189,193,194,195],something_uniqu:178,sometim:[31,32,50,94,149,168,184,185,189],somewher:135,soon:[121,162],sorri:[157,168],sort:[7,30,58,65,79,102,157,184],sort_asc:79,sortcolumn:79,sought:[52,172],sound:[109,164,168,173],sourc:[3,4,5,40,42,44,58,82,84,91,105,107,149,150,155,161,173,178,179],source_imag:152,sourcedir:82,space:[30,32,75,86,111,113,114,115,116,117,120,146,160,164,166,174,192],spain:32,spam:91,span:[90,154,164],spark:[3,4,5,6,8,11,28,30,31,56,58,59,76,95,102,105,108,109,111,113,114,120,130,147,150,155,157,193,195],spatial:50,speak:56,special:[16,17,39,51,56,71,72,77,83,95,149,156,157,162,166,168,179,182,183,185,189],specif:[7,15,20,33,36,37,39,42,45,53,56,65,69,70,72,73,75,77,78,79,84,95,96,98,100,102,108,111,113,129,132,145,146,148,150,155,156,157,164,170,172,173,183,184,185,190,193,194],specifi:[1,7,14,20,30,32,44,45,48,51,52,53,56,58,69,70,72,73,75,76,78,82,83,84,87,90,91,93,94,95,96,100,101,102,108,129,145,147,148,149,150,152,155,157,161,163,166,170,173,174,175,176,177,178,182,183,190,195],speed:[68,157,181],speex:84,spell:[8,10,172],spelledout:172,spellout:[172,178],spent:158,sphere:84,sphinx:[3,8,14],spin:184,spl:72,spl_autoload_regist:35,splfileinfo:150,split:[90,193],splitquerypart:14,spoof:[6,96,97,100,103],sport:157,spot:[46,86],sql:[11,23,28,40,44,47,48,51,52,54,58,75,113,116,157,194],sqlite3:[2,4,7,8,9,10,12,13,14,16,21,22,44,50,53,56,115,144],sqlite:[4,7,9,10,12,16,44,56,144],sqlite_:12,sqlsrv:[22,28,44,115,144],squar:[84,152,166,193],squash:152,src:[70,84,148,155],srclang:84,ssl:[8,147],ssl_ca:44,ssl_capath:44,ssl_cert:44,ssl_cipher:44,ssl_kei:44,ssl_verifi:44,sslmode:44,stabil:16,stabl:105,stack:[3,40],staff:194,stage:[65,155,166,185,186],stai:[142,147,152,178],stand:37,standalon:[42,65,170,189],standard:[22,32,37,39,51,52,54,67,72,76,77,78,82,83,90,91,95,98,102,107,108,113,115,143,148,149,154,161,164,168,170,177,178,179],start:[1,4,8,30,32,42,49,52,54,56,69,70,77,90,91,94,95,98,101,102,105,108,121,125,128,132,136,145,148,149,152,155,158,159,162,173,181,182,184,187,189,192,193,194,195],starter:[4,5,6,7,9,11,107,117,118,119,120,149],starttl:148,stash:10,state:[7,36,52,58,68,83,101,146,148,157,164,168,183,189],stateless:146,statement:[4,5,6,28,32,51,52,56,123,169,178,180,194],static_pag:[4,5,6,7,12],statist:181,statu:[14,20,30,32,37,51,52,56,58,72,91,102,143,147,157,158,168,170,173],statuscod:170,stdclass:53,stderr:[32,147,189],stdout:[32,46,189],steal:157,step:[10,30,32,41,73,105,109,121,145,152,164,168,183,193],stick:41,still:[17,20,44,56,67,68,70,72,75,77,91,95,96,102,105,107,109,121,139,145,149,156,157,161,164,166,168,184,185,191,194],stop:[65,69,72,95,114,147,148,157,161,181,184,185],storag:[39,145,149,155,157],store:[3,6,13,24,30,36,39,40,42,44,51,58,59,69,70,73,77,90,91,98,102,105,109,122,127,145,148,154,157,164,166,168,172,173,178,179,183,192,194],storecontrol:94,storepath:17,storepreviousurl:11,str:[69,88,90,91,92,148,160,164,181],str_pad:30,str_repeat:[32,178],str_replac:155,str_to_upp:111,strai:166,straight:[56,172],straightforward:[121,157,184],strang:161,stranger:178,strategi:40,strawberri:172,stream:96,stream_filt:189,stream_filter_append:189,stream_filter_remov:189,streamlin:[11,182],stretch:152,strict:[22,28,40,44,69,84,93,94,146,147,173],stricter:156,strictli:[17,146,189],stricton:[44,45],strictrul:164,strike:185,string:[4,5,9,10,15,17,20,23,24,28,30,32,33,36,42,44,45,48,51,52,53,58,69,75,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,96,98,100,101,102,111,113,116,137,145,146,147,148,149,150,152,155,158,159,160,163,164,166,168,170,172,173,174,175,176,178,179,181,182,184,185,189,190,192,195],stringify_attribut:69,strip:[3,88,90,148,192],strip_image_tag:88,strip_quot:90,strip_slash:90,strip_tag:178,stripqueri:162,stripslash:90,strive:143,strlen:[4,8,32],strong:[40,90,174],strpo:147,strtolow:[4,156],strtotim:[159,178,189],strtoupper:96,structur:[4,5,6,7,12,13,35,38,49,58,76,77,82,94,103,108,123,131,142,145,154,155,162,164,166,189],style:[3,4,8,22,28,69,83,90,101,107,115,121,143,145,150,154,155,164,166,173,179,189],styleguid:8,stylenoncetag:[28,173],stylesheet:[84,90,91,173],suar:84,sub:[6,73,76,82,102,123,131,141,150,154,155,172,173,183],subarrai:79,subclass:111,subdai:159,subdirectori:155,subfold:[14,31,91,108,121],subhour:159,subject:[77,125,148,150,165,168,172,173],sublicens:165,subminut:159,submiss:[40,156,164],submit:[48,51,53,69,80,83,96,101,129,135,137,143,148,156,161,164,172,174,186,192],submitt:69,submonth:159,subnamespacenam:94,subqueri:[8,11,24,28],subrequest:146,subscrib:65,subsecond:159,subsequ:[53,68,173,178,179,180,182],subset:[168,173],substanti:[64,139,165],substitut:69,substr:32,subtitl:84,subtitles_no:84,subtitles_y:84,subtot:174,subtract:[159,178],subyear:159,succeed:155,success:[37,46,51,52,53,54,56,58,60,65,79,82,94,145,148,155,158,173,174,192],successfulli:[56,65,69,127,161,164,170,173,192],suffici:[157,181],suffix:[31,58,59,86,87,90,102,164],suggest:[7,73,109,149],suit:[42,58,77,105,149],suitabl:[151,194],sum:52,sundai:172,super_secret_kei:70,superglob:[157,161,186],superobject:121,supersed:113,supplement:143,suppli:[15,31,36,40,43,44,47,50,52,59,70,72,75,79,81,82,83,91,96,102,146,150,156,164,168,185,189],supplier:164,support:[1,5,6,7,10,11,12,14,16,17,18,20,24,28,31,32,37,42,43,49,50,51,52,53,54,56,75,77,78,79,81,83,84,90,93,94,95,96,98,99,109,111,112,113,121,123,126,130,131,139,144,145,147,148,149,152,154,156,157,159,162,164,166,170,172,173,177,178,179,180,182,186,189,194],supportedlocal:172,supportedresponseformat:170,supportingpackageregistrar:70,supportlocal:172,supportpath:155,suppress:[4,30],sure:[31,32,36,39,52,53,54,58,62,64,70,77,78,94,99,104,105,108,118,123,145,146,148,157,161,162,168,172,178,182,189,192,194],surpris:182,surround:[51,154,164,168],susan:155,svg10:84,svg11:84,svg:[84,155],swap:[44,51,64,172],swappr:[44,45],swapprefix:51,sweep:21,swf:84,symbol:[82,164,178],symbolic_permiss:82,symmetr:149,sync:105,synchron:156,synonym:78,syntax:[4,32,49,51,52,80,83,103,121,122,129,130,134,136,137,139,145,147,157,161,164,166,171,178,184],sysadmin:75,system32:108,system:[3,4,5,6,7,8,9,10,11,12,13,14,17,20,30,35,40,44,50,51,52,54,61,62,65,66,69,70,71,72,73,75,76,77,78,82,84,91,94,95,102,103,105,106,107,108,111,113,114,116,117,120,121,134,141,142,145,147,149,151,152,157,159,163,164,168,170,172,177,181,184,186,191,193,194,195],systemdirectori:[4,76,105],systempath:[5,30,35,69,134],tab:[30,32,91,95,107,146,156,193],tabl:[4,5,7,9,10,13,14,15,17,24,30,31,39,44,47,48,51,52,53,54,55,58,59,73,101,103,104,121,124,130,140,157,164,166,167,168,171,181,183,184,192,194],table_clos:174,table_nam:[47,50,51,53,56],table_open:174,tabledata:174,tableexist:50,tablefield:56,tablenam:[24,51,56],tablename_users_foreign:56,tablenotfound:7,tabletest:9,tachycardia:21,tada5hi:14,tag:[11,28,68,69,83,84,88,90,91,121,123,130,131,148,156,160,161,164,169,173,174,178,190],tag_clos:90,tag_open:90,tail:9,tailor:[4,108,148,164,182],take:[6,30,32,36,37,39,40,41,45,51,53,56,58,61,62,65,67,69,70,75,77,79,82,86,91,92,95,100,102,105,106,108,111,113,146,147,149,152,154,155,157,158,159,161,164,166,168,173,174,176,177,178,181,182,183,185,186,188,189,192,193],taken:[51,58,75,87,164,168,188],talk:[37,147],tap:[46,65],tarbal:121,tardi:173,target:[6,16,52,70,79,82,83,91,105,155,185],targetbatch:58,task1:32,task1a:32,task1abc:32,task:[29,30,32,39,59,73,95,102,121,142,155,168,184],tbodi:[32,174],tbody_clos:174,tbody_open:174,tcp:157,tdtrust:164,teach:193,team:[58,79,134,141,183],team_id:79,tear:189,teardown:[12,183,186,189],teardownafterclass:189,teardownmethod:189,technic:[157,164,195],techniqu:[40,105,106,108,149],technolog:[141,165],tediou:164,tell:[30,37,44,52,58,65,69,93,99,146,152,154,155,157,158,166,172,173,186],temp:[161,178],tempfil:[4,161],templat:[4,7,15,70,101,132,137,138,139,142,151,154,169,174,192,194,195],template1:178,template2:178,template_nam:154,temporari:[72,102,155,161],temporarili:[58,72,168],tempt:31,ten:[40,174],tenni:157,terabyteabbr:178,term:[37,43,70,73,157],termin:[29,31,32,56,121],ternari:4,terribl:164,test:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,20,21,22,28,44,52,56,58,65,71,72,76,77,84,85,91,96,102,103,105,107,111,113,115,116,125,147,148,150,157,159,163,164,166,168,172,173,181,184,188,195],testabl:[3,12],testactivelinkusescurrenturl:96,testbadrow:113,testcas:189,testcaseemissionstest:[3,4],testcasetest:[3,4,5],testcontrollera:182,testdbconnect:185,tester:182,testfilterfailsonadminrout:182,testfoo:186,testfoonotbar:189,testing13:5,testing3:3,testlogg:28,testmigr:30,testmod:[12,23,116],testpostseed:77,testrespons:[20,113,182,186,190],testseed:[59,183],testshowcategori:182,testsomeoutput:189,testsometh:189,testssupport:4,testunauthorizedaccessredirect:182,testus:185,testuseraccess:89,text:[2,7,12,29,32,37,52,56,58,61,69,70,73,83,84,85,87,88,91,92,93,94,96,103,108,109,117,126,130,135,137,148,149,151,160,161,164,172,173,178,179,180,184,189,190,192,194,195],text_help:[7,8],textarea:[83,192],tfoot:174,tfoot_clos:174,tfoot_open:174,than:[10,32,36,40,45,51,52,53,54,56,61,72,73,76,77,78,83,90,91,92,94,95,96,98,101,102,108,121,123,131,142,145,146,147,148,149,150,152,154,156,157,158,161,164,166,168,172,173,178,180,181,183,185,188],thank:[15,16,157],thead:[32,174],thead_clos:174,thead_open:174,theempir:[59,168],thei:[6,10,29,30,32,35,36,39,40,41,51,52,53,54,56,58,65,68,69,70,71,73,75,76,77,82,83,84,90,91,92,94,95,96,98,100,101,102,105,106,107,111,113,114,116,117,120,121,139,147,148,152,154,155,157,159,160,161,164,166,168,170,172,173,177,178,180,181,184,185,189,190,193,194,195],them:[23,24,28,30,31,35,37,39,41,44,52,53,54,56,58,59,64,65,70,73,75,77,86,94,95,96,98,101,102,106,108,109,113,115,116,121,125,147,148,155,156,157,158,159,162,163,164,166,168,172,173,178,181,182,185,186,194,195],theme:[146,154],themselv:154,therefor:[154,157],thi:[6,8,15,16,17,18,19,20,22,23,29,30,31,32,35,36,37,39,40,41,42,43,44,45,46,48,50,51,52,53,54,55,56,58,59,60,61,62,64,65,67,68,69,70,71,72,73,75,76,77,78,93,95,96,98,99,100,101,102,105,106,108,109,111,112,113,114,115,116,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,143,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195],thing:[29,32,41,52,56,58,75,91,109,121,125,128,136,147,155,157,158,164,166,172,173,178,186,189,191,192,193,194,195],think:[31,39,95,121],third:[17,32,35,36,40,52,56,60,65,69,70,82,83,87,90,91,95,96,100,102,105,108,111,113,116,117,120,143,146,147,148,149,154,157,158,159,164,170,172,173,175,180,185,186,189,190,194,195],third_parti:35,thirdparti:[2,42,189],thirti:172,this_string_is_:90,this_string_is_entirely_too_long_and_might_break_my_design:90,thisdb:53,thorough:[142,173],thoroughli:[187,191],those:[22,35,36,56,58,62,64,65,70,76,77,78,90,91,101,102,113,115,122,123,130,131,154,155,157,158,162,164,166,168,172,173,174,178,181,183,192,195],though:[30,39,41,42,51,65,71,93,96,102,108,121,154,156,157,158,159,160,166,168,170,173,181,185,193,195],thought:77,thousand:[87,181],threat:156,three:[36,39,51,58,65,75,82,83,90,105,108,146,148,152,159,164,174,178,179,182,185,192],threshold:[75,109],throttl:[2,4,10,158,170],throttler:[2,6,10,95,103,153],throttlerinterfac:2,throttletest:[4,10],through:[10,13,14,15,28,30,32,35,36,39,40,41,51,52,53,58,59,61,69,71,72,73,75,77,79,80,83,87,90,93,94,96,102,113,145,147,149,150,152,154,155,156,157,158,159,161,162,166,168,170,172,173,174,178,181,182,190,193,194],throughout:[9,39,41,62,156,164,166],throwabl:[30,58,82,155],thrown:[20,72,87,98,145,146,159,162,173],thu:[37,62,67,102,121,146,161],thumb:[39,40,152],thumbnail:152,tidi:[7,166],tied:194,tif:155,tiff:155,tild:164,time1:159,time2:159,time:[2,3,4,5,7,8,10,11,12,14,16,20,22,30,32,36,39,41,45,51,58,61,64,68,70,73,75,77,81,83,84,91,94,95,103,145,146,147,148,149,150,153,154,155,157,158,162,164,166,168,170,172,173,178,179,180,182,184,185,189,193,194,195],time_refer:81,timediffer:[2,12,159],timedifferencetest:[5,12],timelin:[23,51],timeout:[45,145,148],timer:[2,41,51,64,69,184,189],timertest:3,timestamp:[10,20,58,81,116,130,146,150,157,159,166,168,184,185,192],timestampformat:58,timestamptz:157,timetest:[3,4,5,7,12],timezon:[10,69,81,159,164,166],timezone_identifiers_list:164,timezone_select:81,timezonenam:159,tincidunt:90,tini:84,tint:7,tion:150,tip:[40,64],titl:[32,47,48,51,52,53,56,58,84,90,91,124,137,138,139,154,161,164,174,177,178,180,184,190,192,194,195],tld:154,tls1:40,tls:148,tmp:70,tmp_dir:70,tmpf:157,toarrai:[146,166],todai:70,todatestr:[14,166],todd:52,todo:[139,169,180],todo_list:[139,180],togeth:[51,52,73,77,98,152,178,179,180,182,195],toggl:13,toheaderstr:146,token:[13,23,40,69,116,135,158,170,192],tokennam:17,tokenrandom:156,told:[94,164],toler:[4,189],too:[32,44,51,95,102,105,108,148,149,158,164,168,170,173],toobar:9,tool:[29,30,46,57,59,71,102,108,113,142,148,150,167,172,173,181,182,183,184,186,187,189,194],toolbar:[1,2,3,4,5,6,8,9,10,11,13,14,23,24,28,46,69,102,109,111,117,140,151,181,182,193],toolbarload:[5,9],toolkit:[107,142],top:[40,82,102,121,143,152,164,168,172,177,178,193,195],topic:191,toplevelonli:82,torawarrai:166,tort:165,tortor:90,total:[32,47,145,154,162,184],total_row:132,totalstep:32,touch:[152,173,185],tourint:13,toward:[101,111,157,159],town:56,tpl:[4,5,9,13],trace:[12,184],track:[35,54,58,70,79,84,96,146,157,166,185],trackback:121,trade:23,tradeoff:53,tradit:[28,49,73,154],tradition:54,traffic:180,trail:[11,35,70,108,146,168],trait:[15,103,111,113,119,171,186],tran:84,transact:[6,39,49,103],transbegin:54,transcommit:54,transcomplet:54,transfer:[37,42,101,173],transform:[51,91,173],transit:[14,18,84,111,112],translat:[10,16,56,93,107],translateuridash:6,transliter:90,transmiss:[40,149],transmit:[36,40,149],transoff:54,transpar:152,transport:[40,69,94],transrollback:54,transstart:54,transstatu:54,transstrict:54,travers:[82,88,156],travi:[4,6,7,9],treat:[54,69,78,84,99,147,158,170,178],treatment:173,tri:[4,109,142,156,158,172],trick:[157,193],trigger:[10,46,60,65,82,168,178,182,189],trillion:87,trim:90,troi:164,troubleshoot:[3,6,12,103,104,148,155],truli:[73,164],truncat:[28,52,90],truncatetest:12,trust:[40,44,91,105,150,161,164],trustworthi:40,truth:70,truthi:[4,184],try_fil:[78,108],trytorouteit:116,ttf:[152,155],ttl:[21,69,114,145],tuesdai:159,turn:[4,7,48,54,72,77,83,86,90,91,156,162,168,178,179,185],tut:3,tutori:[3,4,5,6,7,12,161,191,193,194,195],twb:155,tweak:[3,4,5,6,15],twelv:174,twice:[16,51,164],twig:69,two:[4,33,35,36,37,39,41,50,51,52,53,54,64,70,73,76,78,79,81,82,83,90,94,95,102,105,113,121,146,147,148,149,154,157,160,164,166,168,170,172,173,174,177,178,179,181,189,192,194,195],txt:[82,111,147,155,156,173],type:[3,4,5,8,9,10,12,13,14,16,17,20,22,23,31,36,37,39,40,41,44,48,50,51,52,53,54,56,58,67,69,70,72,75,77,79,80,81,82,83,84,86,87,88,89,90,91,92,93,98,99,100,102,108,111,113,116,117,130,135,137,145,146,147,148,149,150,151,152,156,157,158,160,161,163,164,166,172,173,174,178,179,180,182,185,186,189,190,192,193,195],typeerror:[4,24],typehint:[17,28,164],typeset:32,typic:[37,39,41,51,53,73,75,77,81,82,93,94,95,98,102,108,146,147,155,157,161,162,163,168,170,173,177,180],typo:[4,6,7,8,9,10,11,12,14],typograph:160,typographi:[2,41,103,153],uatp:164,ubiquit:157,ubuntu:[108,155],ucfirst:195,ucword:98,udpat:4,ultrici:90,unabl:[82,194],unalt:162,unauthor:170,unavail:[69,75,91],unbuff:53,uncertain:79,unchang:[17,70,146,172],uncom:[104,108,151,193,194,195],undeclar:90,undefin:[3,178],undeliv:148,under:[7,14,21,30,31,35,42,44,52,70,71,72,73,78,94,102,108,145,150,154,157,161,178,180,184],underli:[44,96,172],underneath:[154,192],underscor:[58,86,91,98,102,128,133,164],understand:[37,42,54,73,148,154,157,159,173],understood:159,undesir:75,unecessari:4,unencod:111,unescaped_var:178,unexpect:[75,157],unfamiliar:192,unfilt:182,unguess:150,unicod:16,unidentifi:163,unionpai:164,uniqid:4,uniqu:[50,52,56,58,60,70,90,113,148,164,168,178,179,184],unit:[4,6,7,8,91,108,185,189],univers:[44,61],unix:[81,108,146,157,159],unknown:[150,169],unknown_cooki:146,unknownfileexcept:72,unless:[20,52,53,56,72,79,80,102,123,135,157,160,166,168,170,173,190],unlik:[70,73,91,95,96,115,145,154,166,170],unlimit:56,unmatch:8,unmodifi:113,unnecessari:[11,147,154],unned:4,unneed:[4,7],unord:84,unrecover:109,unrel:36,unreleas:105,unsaf:[90,157],unsanit:51,unseri:166,unset:[136,157,166,168],unset_userdata:136,unsign:[56,58,130,194],unsolicit:3,unstabl:105,unsuccess:54,unsupport:147,unsupportedmessag:84,until:[4,41,53,79,80,111,113,116,117,120,146,157,158,162,164,178,179,181],untouch:[152,159,178],untrust:24,unus:[4,6,75,101,157,168],unwant:40,unwieldi:39,unwrap:148,upcount:185,updat:[1,3,4,5,6,7,8,9,10,11,12,13,14,16,20,24,28,32,39,40,44,48,51,56,58,71,94,96,101,102,105,106,110,111,113,114,115,116,117,120,134,146,155,157,164,166,168,194],updatebatch:[23,52,116],updated_at:[8,166,168,185],updatedfield:168,updatetest:[6,12,13],updateus:[94,168],upgrad:[10,14,58,103,104,148,173,190],upgradeinsecurerequest:173,upkeep:155,upload:[12,17,42,82,83,103,104,121,140,147,150,153,155],upload_data:127,upload_file_path:127,upload_form:[127,161],upload_max_files:[161,164],upload_path:127,upload_success:[127,161],uploaded_fil:[3,10],uploaded_flleinfo:161,uploadedfil:[2,4,6,7,11,13,17,96,161],uploadedfileinterfac:2,uploadedfiletest:3,uploadedimag:82,uploaderr:7,uploadfil:10,upon:[66,69,95,152,164,172,173,178,179,191],upper:[100,111,178],uppercas:[90,94,96,98,100,178],upsel:190,upset:84,urandom:149,uri:[2,3,4,6,10,12,14,16,20,21,28,37,56,64,69,72,73,77,78,82,83,84,91,95,96,97,98,103,108,109,111,113,134,153,155,156,166,182,186,190,192,194,195],uri_seg:132,uri_str:91,uristr:162,uritest:[4,12],url:[2,5,9,14,16,17,29,40,44,67,69,72,73,74,83,84,85,88,90,94,95,102,103,108,127,129,137,146,147,148,154,158,161,162,164,172,173,178,179,180,182,184,190,192,193,194,195],url_help:[3,5,7,8,12,13,162],url_i:[17,91],url_titl:[13,16,91,192],url_to:[17,91],urldecod:6,urlencod:[69,147],urlhelpertest:[5,12,13],usabl:[58,156],usag:[4,11,23,30,46,49,50,52,53,56,70,79,83,89,90,91,93,100,101,103,147,149,157,160,168,177,181,182],usd:87,use:[4,5,6,7,8,10,12,13,14,15,16,17,18,20,21,23,28,29,30,31,32,35,36,37,39,40,42,44,45,46,50,51,52,53,54,56,58,59,61,62,64,65,67,69,70,71,72,73,75,76,77,78,79,80,83,84,86,87,89,90,91,93,94,95,96,98,99,101,102,105,106,108,109,111,112,113,116,121,122,123,124,127,129,130,131,132,135,136,137,138,139,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,164,165,166,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,192,193,194,195],useautoincr:[17,168],used:[4,10,16,18,20,23,24,28,30,31,32,34,35,36,37,39,41,42,43,44,45,46,47,51,52,54,56,58,64,69,70,71,72,73,77,80,83,84,86,87,90,91,93,94,95,96,98,99,100,101,102,105,108,112,114,116,121,124,126,130,145,146,147,148,149,150,151,152,154,156,157,158,159,161,162,164,166,168,170,171,172,173,174,175,177,178,179,181,182,183,184,185,186,188,189,192,194,195],useful:[32,43,44,52,53,59,69,71,84,85,91,93,95,102,108,114,145,147,148,149,150,152,156,157,164,166,178,184,186,189,190,194],usefulness:154,useless:70,user:[3,4,6,7,8,10,11,12,13,14,15,17,20,28,29,31,33,36,37,39,40,42,44,51,52,53,56,59,60,62,64,65,68,69,72,75,77,79,81,82,89,91,94,95,96,100,102,104,105,107,108,121,123,131,132,146,147,148,153,154,155,157,158,161,162,164,166,168,169,170,171,172,173,178,181,182,183,185,186,189,190,192,194,195],user_ag:157,user_contact:131,user_galleri:102,user_guide_src:[3,4,5,6,7,8,9,10,11,12,13],user_id:[52,60,124,164,168],user_link:178,user_model:132,user_nam:[127,161,168],user_profil:69,user_styl:178,useraccount:164,useraccountrul:164,userag:[2,8,111,148,163],userarrai:185,userauthmodel:168,userawquerystr:162,usercontact:131,usercontrol:[94,96,154,172,186],userdata:[136,157],userdir:108,userent:185,userfabr:185,userfil:[96,127,147,161],userguid:[14,107],userhasaccess:89,userid:94,userinfo:186,usermodel:[11,36,72,89,132,154,155,166,168,170,185,189],usernam:[5,44,45,52,53,59,83,129,137,147,148,157,162,164,166,168,169,172,183,194],userobject:185,userrul:94,users_foreign:56,users_id:56,users_index:56,users_job:52,users_nam:56,userseed:59,uses:[4,20,22,25,28,36,39,41,45,46,51,61,67,69,70,77,78,79,82,83,90,94,96,98,113,115,116,118,130,132,147,149,154,155,157,158,159,162,164,166,168,172,173,178,179,182,185,189,190],usesoftdelet:168,usetimestamp:[166,168],using:[4,5,6,8,16,17,20,25,28,29,30,31,32,33,35,36,37,40,42,43,44,45,48,50,51,52,53,54,56,58,67,68,69,70,71,72,73,75,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,96,99,101,102,104,105,108,109,113,118,121,122,135,142,145,146,147,148,149,150,152,154,155,156,157,158,159,161,162,163,164,166,168,169,170,172,173,174,177,178,179,180,181,182,183,184,185,186,188,189,190,192,193,194,195],usr:[108,147,148],usual:[17,39,70,80,90,91,102,138,149,154,157,160,164,173,182,184,190],utc:[146,159,166],utf8:[44,45,56],utf8_general_ci:[44,45,56],utf:[37,83,93,95,96,98,113,148,173],uti:12,util:[2,3,6,8,10,30,31,39,42,49,52,54,68,94,96,98,103,145,155,169],uuid:[17,102,164,168],vader:168,vagrantfil:[5,108],val:[52,174],valid:[1,2,4,5,6,7,8,9,10,12,13,14,16,18,23,28,30,32,40,44,54,56,58,69,70,82,83,96,98,100,101,102,103,104,111,112,113,121,127,131,140,145,147,148,150,152,153,156,157,161,162,170,172,173,174,175,178,179,182,185,190,192,193],valid_base64:164,valid_cc_numb:164,valid_d:164,valid_email:[32,137,164,168],valid_ip:[111,164],valid_json:164,valid_url:164,valid_url_strict:[23,164],validaiton:10,validatekei:145,validation_error:[137,178],validationinterfac:2,validationmessag:168,validationrul:[8,161,168],validationtest:[5,7],valign:152,valu:[3,5,6,8,9,11,13,16,17,20,23,29,30,31,32,33,35,36,41,45,47,51,52,53,56,59,65,69,70,71,72,73,75,79,80,81,82,84,87,90,91,93,95,96,98,99,100,102,108,111,113,114,116,122,135,137,145,146,147,148,149,150,151,152,154,155,156,161,162,166,168,170,172,173,174,175,178,179,181,182,183,184,185,188,189,190,192,194,195],value1:[96,148],value2:[96,148],valuei:178,var_dump:[70,96,145,166],varchar:[52,56,58,130,157,194],vari:[44,75,108,159,168,173],variabl:[3,4,13,15,17,20,23,37,39,44,51,52,69,71,72,73,75,76,77,90,91,94,96,102,105,109,122,147,148,149,154,157,161,162,164,169,175,178,179,180,186,190,194,195],variant:[172,185],variat:[52,53,181],varib:154,varieti:37,variou:[10,14,42,71,73,113,143,162,163,164,185,189],vastli:79,vector:[40,149],vel:90,vendor:[35,42,76,105,155,189,193],vendorpublish:155,verb:[3,10,99,156,186],verbos:[71,147],veri:[30,32,35,37,39,41,42,49,51,52,54,65,70,80,84,111,113,116,117,120,121,146,147,148,152,154,157,158,159,163,164,166,168,172,173,177,178,181,184,190],verif:[147,182,186],verifi:[17,44,96,145,157,164,168,190],version:[30,32,37,44,48,51,58,62,64,69,70,73,86,87,91,96,98,102,103,104,105,106,107,108,111,112,113,114,115,116,117,120,121,144,155,157,158,159,161,163,166,178,181,182,183,188,189,193],vertic:[152,164],verv:164,vestibulum:90,vet:40,vfsstream:7,vhost:108,vhost_alias_modul:108,via:[5,14,16,17,21,32,34,37,40,51,52,56,69,77,82,83,90,94,96,102,103,111,144,146,147,148,149,154,155,156,157,160,161],victoria:81,video:84,view:[1,2,3,4,5,6,7,8,9,10,12,13,14,20,25,28,31,38,40,41,42,52,60,64,68,69,70,72,73,80,82,91,94,101,102,103,104,108,111,113,116,117,118,127,128,132,134,137,140,145,156,161,163,168,171,174,184,186,192,193,194,195],view_cel:[14,69,175],view_layout:[7,8,12],view_pars:[5,10,12],viewabl:102,viewdecoratorinterfac:176,viewdirectori:6,viewer:[109,166],viewpath:[3,41,178,179],viewsdirectori:7,viewtest:[5,7,8],viewview:8,violat:146,virtual:[71,146,157],virtualbox:108,virtualhost:108,visa:164,visibl:151,visit:[29,52,91,94,102,143,161,163,164,172,173,180,182,195],visitor:[69,163],visual:[111,113,116,117,120],vita:90,voffset:152,vtt:84,vulner:[26,27,94,102,168,179,192],w3c:[84,172,173],w3school:193,wai:[6,7,10,23,29,32,35,36,37,39,41,50,52,53,58,59,65,69,70,71,73,75,77,79,84,93,94,95,96,99,101,102,104,105,108,109,121,123,142,143,145,146,147,149,152,154,156,157,158,159,160,161,162,164,166,168,169,172,173,175,177,178,180,182,184,189,193,194],wait:[37,147,158,170],walk:[53,158,166],want:[15,17,31,32,35,36,37,41,43,44,51,52,53,54,56,59,61,65,67,69,70,71,72,75,76,77,82,83,87,90,91,93,94,95,96,98,99,101,102,105,106,108,109,113,115,116,123,132,137,142,146,147,148,149,154,155,157,158,160,162,163,164,166,168,172,173,177,179,181,182,183,184,185,186,189,193,194,195],warn:[20,69,75,145,157],warranti:165,wasn:[37,94,194],watch:[32,72],web:[20,29,37,39,40,42,69,70,74,75,84,90,93,94,99,102,103,108,109,111,142,144,146,147,148,155,158,163,164,172,173,180,186,194,195],webapp:[76,105,108,109],webmanifest:155,webmast:[70,75,122],webp:[16,28,155,161],webroot:70,websaf:[4,7,101],websit:[75,93,95,107,146,147,157,173],webvtt:84,wednesdai:174,week:[69,159,178],weekofmonth:159,weekofyear:159,weight:[145,157],welcom:[1,102,103,109,178,180,195],welcome_messag:[3,7,113,116,195],well:[4,6,16,29,41,42,51,52,60,65,69,70,72,73,75,81,82,84,90,94,102,107,108,111,142,148,154,155,157,161,162,166,169,184,189,194],welome_messag:7,went:[56,194],were:[6,15,16,22,51,65,83,84,94,95,102,111,115,116,142,143,146,156,157,159,161,164,166,178,180,188,193],weren:164,wget:29,what:[30,32,39,42,44,46,51,62,64,65,69,70,75,77,81,82,83,90,91,93,96,113,140,147,149,152,154,155,162,164,166,168,170,171,172,173,177,185,190,192,193,195],whatev:[51,70,91,121],whats_wrong_with_css:91,when:[4,6,7,8,9,10,11,13,14,15,16,17,20,23,24,25,28,30,31,32,35,36,37,39,40,41,44,45,48,51,52,53,54,56,58,60,65,68,69,70,71,72,75,76,77,79,83,90,93,94,95,98,99,100,101,102,105,106,107,108,111,116,117,118,145,146,147,148,149,150,151,152,154,155,157,158,159,161,162,163,164,166,168,170,172,173,175,177,178,179,180,181,182,183,184,186,188,189,190,191,193,194,195],whenev:[22,37,39,46,65,77,94,105,108,166,168,177,184],whenver:8,where:[3,6,13,16,17,19,21,24,28,30,31,35,39,40,41,42,44,45,51,52,53,56,59,65,68,69,70,71,73,75,77,90,94,95,96,101,102,114,116,121,123,124,131,139,142,145,147,154,155,156,157,161,164,166,168,172,173,175,178,179,180,182,183,185,192,193,194,195],where_field:164,where_valu:164,wherea:[101,168,189],wherein:[6,11,52,168],wherenotin:52,wheretest:[6,8,10,11],wherev:[32,39,68,126,136,138,177],whether:[30,31,36,44,45,46,50,52,54,58,67,69,71,79,80,82,83,84,90,91,92,93,96,100,113,145,146,148,149,152,154,157,159,160,163,164,165,166,168,170,173,177,183,185,190,192,195],which:[16,17,20,30,32,33,36,37,40,41,43,44,45,48,51,52,53,54,56,58,67,68,69,70,71,72,73,75,76,77,78,81,83,86,90,91,93,94,95,96,98,100,101,102,104,105,107,108,109,111,113,121,122,132,135,136,137,145,146,147,148,149,152,154,155,156,157,159,161,162,164,166,168,170,173,174,175,177,178,180,181,182,184,185,191,193,194,195],whip:166,white:32,whitelist:[156,173],who:[39,62,64,72,102,105,106,142,148,157,178],whole:[24,40,53,108,149,166],wholist:11,whom:165,whoop:[12,195],whose:[30,70,168,179],why:[94,157],wide:[7,32,37,108,147,148,154,168,173],wider:32,widget:[36,166,182],width:[32,83,84,91,152,164],wierd:13,wikipedia:[29,37,93],wildcard:[28,51,52,77,79,91,95,102,164,195],wildli:113,willing:[105,149],wilma:164,wincach:[2,20],wincachehandl:8,window:[13,15,16,17,29,32,75,91,108,145,156,163],window_nam:91,winter:70,wip:[3,13],wipe:[149,155],wise:[8,155,168],wish:[52,53,56,58,68,70,73,82,83,90,91,102,105,106,121,145,146,152,157,173,177,180],wishfulli:31,withbodi:[182,186],withbodyformat:186,withconfig:182,withcooki:[16,69],withdelet:168,withdomain:146,withexpir:146,withfil:152,withhead:[16,69,186],withhttponli:146,within:[4,16,30,32,36,37,39,41,43,44,52,56,58,59,65,68,69,70,72,73,75,77,79,82,83,90,94,96,102,108,121,122,125,126,128,129,130,132,135,137,145,148,154,155,157,158,159,160,162,164,168,170,172,173,175,177,178,179,181,182,183,184,186,188,189,190,191,195],withinput:69,withlogg:182,withnam:146,withneverexpir:146,without:[10,11,14,29,30,36,41,43,51,52,53,54,56,58,65,67,70,73,75,82,91,94,96,102,108,111,113,114,116,117,120,127,146,150,152,157,159,162,164,165,166,168,182,185,194,195],withpath:146,withprefix:146,withraw:146,withrequest:182,withresourc:[16,152],withrespons:182,withrout:186,withsamesit:146,withsecur:146,withsess:186,withshadow:152,withuri:182,withvalu:146,wll:36,woff2:155,woff:155,won:[39,52,53,148,152,157,158,170,173],wonderland:70,word:[32,44,45,53,86,90,91,95,96,102,164,166,178],word_censor:90,word_limit:90,word_wrap:90,wordwrap:148,work:[4,5,6,7,8,14,15,16,23,29,30,31,35,36,38,39,41,42,47,52,54,58,65,71,78,80,81,82,83,84,87,90,91,92,94,96,98,99,100,101,102,103,104,105,107,108,116,117,121,123,124,140,142,146,148,149,152,153,154,155,158,167,175,178,179,182,184,186,193,195],workaround:109,workbench:194,worker:14,workflow:168,workspac:155,world:[78,84,86,141,177,190,194,195],worri:[37,146,149,166,184],worth:[157,158],would:[14,16,21,23,29,30,31,32,36,37,39,41,42,44,51,52,54,58,62,64,65,70,71,73,75,76,77,83,84,90,91,93,94,95,96,100,101,102,104,105,106,108,109,113,116,131,134,148,150,152,154,155,157,158,159,161,163,164,166,168,169,170,172,174,177,178,179,180,182,186,189,192],wouldn:162,wrap:[9,51,70,75,90,96,150,154,164,178],wrapchar:148,wrapper:[31,45,53,77,145,168],writabl:[4,16,44,69,76,77,82,105,106,107,108,109,111,113,114,116,117,120,121,127,145,150,155,157,161],write:[20,30,33,42,48,51,52,53,60,69,75,82,91,102,113,142,146,150,152,155,157,164,168,178,189,191,192,193,194],write_fil:82,writeabl:82,writepath:[53,56,69,147,150,161],writeup:[4,9,11],written:[32,42,44,68,72,73,82,91,107,113,141,147,157,161,169,192,194],wrong:[75,91,157,161,173],wrote:194,www:[71,84,91,102,108,145,147,148,152,157,162,173],x1351:185,x23546:185,x3767:185,xdebug:184,xhr:[37,67,96],xhtml11:84,xhtml1:84,xhtml:[84,148],xjp4:27,xlarg:83,xml:[8,9,15,40,76,84,85,93,96,98,103,105,111,113,121,144,155,166,170,173,186,189],xml_convert:[3,92],xml_helper:[3,6,8],xmlformatt:[2,4,9,170],xmlhelpertest:6,xmlhttprequest:67,xoffset:152,xs25519:149,xsalsa20:149,xss:[25,26,69,80,91,118,164,173,178,194,195],xssclean:[25,80,118],xxiii:87,year:[58,69,94,141,159],yellow:[30,32,84,166],yen:87,yes:[84,91,146,149,194],yet:[4,36,54,56,58,146,164,172,177,184,192,194],yml:[4,6],yoffset:152,you:[8,15,16,17,23,29,30,31,32,35,36,37,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,86,87,90,91,93,94,95,96,98,99,100,101,102,104,105,106,108,109,111,113,114,115,116,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,166,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],your:[16,17,23,29,30,31,32,35,36,37,40,41,42,43,44,47,51,52,53,54,55,56,57,58,59,60,61,64,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,89,90,91,93,95,96,99,101,102,104,105,106,109,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,135,137,138,139,142,144,145,146,147,148,150,151,152,154,155,156,157,158,160,161,162,163,166,167,169,170,172,173,175,176,177,178,179,180,182,185,186,187,188,190,191,192,195],your_lang:87,yourdomain:80,yourself:[51,72,73,77,116,135,146,157,162,168,189,190],youtub:173,yyyi:[58,159],yyyymmdd:161,zend:14,zendescap:2,zero:[10,90,102,142,149,154,157,164,173],zip:[76,106,121]},titles:["Change Logs","Version 4.0.0","Version 4.0.0-alpha.1","Version 4.0.0-alpha.2","Version 4.0.0-alpha.3","Version 4.0.0-alpha.4","Version 4.0.0-alpha.5","Version 4.0.0-beta.1","Version 4.0.0-beta.2","Version 4.0.0-beta.3","Version 4.0.0-beta.4","Version 4.0.0-rc.1","Version 4.0.0-rc.2","Version 4.0.0-rc.3","Version 4.0.0-rc.4","Version 4.0.3","Version 4.0.4","Version 4.0.5","Version 4.1.0","Version 4.1.1","Version 4.1.2","Version 4.1.3","Version 4.1.4","Version 4.1.5","Version 4.1.6","Version 4.1.7","Version 4.1.8","Version 4.1.9","Version 4.2.0","Running via the Command Line","Custom CLI Commands","CLI Generators","CLI Library","CLIRequest Class","Command Line Usage","Autoloading Files","Factories","Working With HTTP Requests","CodeIgniter4 Overview","Models, Views, and Controllers","Security Guidelines","Services","Application Structure","Custom Function Calls","Database Configuration","Connecting to your Database","Database Events","Database Quick Start: Example Code","Query Helper Methods","Working With Databases","Database Metadata","Queries","Query Builder Class","Generating Query Results","Transactions","Utilities","Database Forge Class","Managing Databases","Database Migrations","Database Seeding","Authentication","Extending the Controller","Replacing Common Functions","Contributing to CodeIgniter","Creating Core System Classes","Events","Extending CodeIgniter","AJAX Requests","Web Page Caching","Global Functions and Constants","Configuration","Handling Multiple Environments","Error Handling","Helper Functions","General Topics","Logging Information","Managing your Applications","Code Modules","CodeIgniter URLs","Array Helper","Cookie Helper","Date Helper","Filesystem Helper","Form Helper","HTML Helper","Helpers","Inflector Helper","Number Helper","Security Helper","Test Helper","Text Helper","URL Helper","XML Helper","Content Negotiation","Controllers","Controller Filters","IncomingRequest Class","Controllers and Routing","HTTP Messages","HTTP Method Spoofing","Request Class","RESTful Resource Handling","URI Routing","CodeIgniter4 User Guide","Installation","Composer Installation","Manual Installation","CodeIgniter Repositories","Running Your App","Troubleshooting","Upgrading from 4.0.x to 4.0.4","Upgrading from 4.0.4 to 4.0.5","Upgrading from 4.0.5 to 4.1.0 or 4.1.1","Upgrading from 4.1.1 to 4.1.2","Upgrading from 4.1.2 to 4.1.3","Upgrading from 4.1.3 to 4.1.4","Upgrading from 4.1.4 to 4.1.5","Upgrading from 4.1.5 to 4.1.6","Upgrading from 4.1.6 to 4.1.7","Upgrading from 4.1.7 to 4.1.8","Upgrading from 4.1.9 to 4.2.0","Upgrading from 3.x to 4.x","Upgrade Configuration","Upgrade Controllers","Upgrade Database","Upgrade Emails","Upgrade Encryption","Upgrade Working with Uploaded Files","Upgrade HTML Tables","Upgrade Localization","Upgrade Migrations","Upgrade Models","Upgrade Pagination","Upgrade HTTP Responses","Upgrade Routing","Upgrade Security","Upgrade Sessions","Upgrade Validations","Upgrade View Parser","Upgrade Views","Upgrading From a Previous Version","Credits","Welcome to CodeIgniter4","PSR Compliance","Server Requirements","Caching Driver","Cookies","CURLRequest Class","Email Class","Encryption Service","Working with Files","Honeypot Class","Image Manipulation Class","Library Reference","Pagination","Publisher","Security","Session Library","Throttler","Times and Dates","Typography","Working with Uploaded Files","Working with URIs","User Agent Class","Validation","The MIT License (MIT)","Using Entity Classes","Modeling Data","Using CodeIgniter\u2019s Model","Alternate PHP Syntax for View Files","API Response Trait","Building Responses","Localization","HTTP Responses","HTML Table Class","View Cells","View Decorators","View Layouts","View Parser","View Renderer","Views","Benchmarking","Testing Controllers","Testing Your Database","Debugging Your Application","Generating Test Data","HTTP Feature Testing","Testing","Mocking System Classes","Testing","Testing Responses","Conclusion","Create News Items","Build Your First Application","News Section","Static Pages"],titleterms:{"break":[23,24,25,28,116,117,118,119,120],"class":[32,33,41,47,51,52,53,56,58,64,70,77,93,96,98,100,116,121,145,146,147,148,149,151,152,157,158,163,166,170,173,174,178,179,183,186,188,189],"default":[42,71,94,102,109,149,157],"function":[36,40,41,43,62,69,73,79,80,81,82,83,84,86,87,88,89,90,91,92,160,178],"new":[30,150,157,192,194],"public":42,"return":168,"static":[160,195],"throw":162,"try":[29,94,161,164],"var":184,Adding:[56,105,146,152,157,180,195],And:164,PRs:[3,4,5,6,7,8,9,10,11,12,13,14],TLS:148,That:[29,94],The:[29,37,39,46,51,71,96,109,156,158,161,162,164,165,180,182,183,184,186,189,193],Use:102,Used:101,Using:[30,40,59,72,73,75,102,146,147,148,149,157,163,164,166,168,174,177,178,179,181,184],With:[37,44,47,49,70,75,77,108,161,164,166,168,172,190],a10:40,about:[48,157],access:[40,96,146,157,161,166,168,189,190],accessor:[33,69],add:164,addit:[33,61,188,189],adjust:121,advanc:103,advantag:150,after:95,agent:163,ajax:67,alias:95,aliv:45,all:[111,113,116,117,120,161,164],allow:[41,164],allow_redirect:147,alpha:[2,3,4,5,6],altern:169,amount:168,ani:102,apach:[71,78,108],api:[67,170],app:[42,105,108,195],appli:[102,158],applic:[42,76,103,121,184,189,193],approach:54,argument:[31,95],arrai:[47,53,70,79,102,161,164,166,172],assert:[182,188,189,190],asset:155,assign:102,attribut:[146,166],auth:147,authent:[40,60],author:162,auto:[77,94,102,156],autoload:[35,77],autom:155,avail:[45,79,80,81,82,83,84,86,87,88,89,90,91,92,160,164,188],base:[145,147],basebuild:116,basecommand:30,basic:[29,51,172],been:[122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],befor:95,behavior:[36,71,149],benchmark:[181,184],beta:[7,8,9,10],bind:51,bodi:[147,186],bonu:157,boot:71,bootstrap:108,bug:[23,24,25,28],build:[103,171,193],builder:[47,52,116,168],built:31,bulk:166,busi:166,bypass:186,cach:[68,145,173,175,180,188],call:[30,43,94,182],callabl:102,callback:168,callfunct:43,cascad:178,cast:166,cell:175,cert:147,chain:[52,179],chang:[0,23,24,25,28,101,111,113,116,117,118,119,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,166,168,174,178],charact:93,check:[146,164,166,182,186,190],choos:184,classmap:35,clearscreen:32,cli:[29,30,31,32],clirequest:33,close:45,closur:102,code:[31,47,77,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,158],codeignit:[40,54,63,66,70,76,78,107,109,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,142,168],codeigniter4:[38,103,105,142],collect:150,collector:184,color:32,column:56,command:[29,30,31,34,56,58,59,102],comment:178,common:62,compar:159,comparison:101,complet:31,complianc:143,compon:[39,40,61],compos:[35,77,105,107,189],con:[105,106],concept:155,conclus:191,concurr:157,condit:178,config:[31,36,77,147,148,156,164],configexcept:72,configur:[35,36,44,70,72,75,95,102,108,122,145,149,154,164,168,172,173,178,182,189],confirm:[95,102],congratul:192,connect:[45,168,194],connect_timeout:147,constant:[69,71],content:[93,96,98,111,113,116,117,120,172,173],context:[75,179],contribut:63,control:[31,39,40,61,77,94,95,97,101,102,121,123,161,164,169,182,195],conveni:[36,41],convert:152,cooki:[24,80,146,147,190],core:[64,69],count:[52,185],creat:[30,56,58,59,64,70,95,146,154,159,161,162,164,166,168,172,176,177,180,181,184,192,194],createfromd:159,createfromformat:159,createfrominst:159,createfromtim:159,createfromtimestamp:159,creation:168,credit:141,crop:152,cross:[40,156],csp:173,csrf:[40,116,156,192],csv:166,curlrequest:[116,147],current:[162,172],custom:[30,43,45,53,72,102,151,154,164,166,178,184],dash:102,data:[40,52,70,94,157,166,167,168,178,179,180,184,185],databas:[44,45,46,47,48,49,50,51,56,57,58,59,103,116,124,154,168,183,194],databaseexcept:72,databasehandl:[116,157],date:[81,159,166],debug:[147,184,193],decor:176,defin:[41,65,94,102,168,185],definit:163,delai:147,delet:[52,68,168],delimit:178,demand:155,depend:155,deploy:155,deprec:[23,24,25,28],destroi:157,detect:172,determin:[50,96],dev:105,develop:108,differ:[36,70,159,186],direct:40,directli:149,directori:[42,76,94,161,180],disabl:[54,77,156,162],discov:77,discoveri:[41,77,155],dispatch:146,displai:[159,164,180,181,184,194],document:[122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],doe:[68,178,179],dom:190,download:[121,173],driver:[145,157],drop:56,dummi:145,dynam:180,echo:169,effect:71,email:[125,148],enabl:[65,68,77,102,151,156,184,192],encod:[93,149],encrypt:[126,149],enhanc:[23,24,25,28,116,117,120],entiti:[31,166],env:[44,71],environ:[70,71,102],equal:159,error:[32,51,54,71,72,109,164],escap:[51,83,178,179],event:[46,65,121,168,186],everywher:109,exampl:[30,36,47,58,102,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,145,155,163,170,174],except:[72,162],execut:[48,51,181],exist:[50,105,164],expect:154,explan:[44,164],explicit:70,exposur:40,express:102,extend:[61,64,66,73,94,121],fabric:185,factori:[36,189],failur:156,fake:185,fallback:172,featur:[150,186],feedback:32,fetch:67,field:[50,56,83,168],file:[30,35,44,58,59,70,71,77,78,96,111,113,114,115,116,117,120,127,145,148,150,155,161,164,169,172,173],filehandl:157,filesystem:82,fill:166,filter:[31,77,95,102,116,150,158,178,182,189,192],find:168,first:[103,193,195],fit:152,fix:[23,24,25,28],flashdata:157,flatten:152,flip:152,forc:173,forcehttp:94,foreign:[56,58],forg:56,forgeri:[40,156],form:[83,156,161,164,192],form_param:147,format:186,formatt:185,forward:40,fragment:[162,178],framework:[71,121],from:[32,36,48,52,55,56,73,110,111,112,113,114,115,116,117,118,119,120,121,140],gener:[31,53,74,103,121,185],generatortrait:31,get:[32,41,52,55,103,146,150,164,193],getag:159,getdst:159,getloc:159,getter:159,gettimezon:159,gettimezonenam:159,getutc:159,give:109,global:[69,95,102],group:[52,58,102,164],guid:[103,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],guidelin:40,handl:[51,70,71,72,101,103,166,170],handler:[75,149],has:[122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],have:109,header:[96,116,147,173,186,190],hello:[29,94],help:[30,156],helper:[48,53,73,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,103,121,182,183,185,190],honeypot:151,host:[108,162],hostnam:102,how:[41,68,109,157,164],htaccess:108,html:[84,128,156,174],http:[37,98,99,102,133,173,186],http_error:147,human:159,identifi:51,imag:152,immut:146,implicit:70,includ:[94,109,177],incomingrequest:96,index:[50,78,109],individu:159,inflector:86,info:161,inform:[48,75],initi:[32,47,56,108,152,157,163,174],inject:40,inlin:173,input:[32,96,150],insecur:40,insert:[47,52],instal:[76,104,105,106,109,189],instanc:[150,162,189],instanti:159,introduct:[31,36,41],invalidchar:95,isaft:159,isbefor:159,item:[77,192],iter:181,join:52,jqueri:67,json:[147,166,190],keep:45,kei:[56,58,149,164],kint:184,know:109,known:40,label:164,languag:[77,93,172],larg:168,latest:105,layout:177,length:149,let:[29,94,195],level:40,librari:[29,32,77,103,121,137,147,148,149,153,154,155,156,157,160,164],licens:165,limit:[52,101,102,158],line:[29,34,56,58,59,102],link:154,list:[50,64],load:[52,73,79,80,81,82,83,84,86,87,88,89,90,91,92,93,109,121,147,154,155,156,160,164,180,185],local:[108,129,172,185],locat:[30,42,73],log:[0,72,75,109],logger:75,logic:[166,178,195],look:[52,174],loop:[178,180],made:101,make:[31,147,195],manag:[40,54,57,76],mandatori:120,manipul:152,manual:[45,51,54,106,154,168],map:[102,166],match:102,media:93,memcach:145,memcachedhandl:157,merg:[3,4,5,6,7,8,9,10,11,12,13,14],messag:[75,98,149,164,172],metadata:[50,157],method:[36,48,51,52,53,61,94,95,99,102,116,152,155,156,179,182,183,188],migrat:[31,58,77,130,183],miscellan:69,misconfigur:40,miss:40,mit:165,mock:[188,189],mod_userdir:108,mode:54,model:[31,36,39,77,116,121,131,166,167,168,185,192,194],modifi:[42,56,75,159,168],modul:[77,155],move:[150,161],multipart:147,multipl:[45,47,71,75,76,102,116,154,161,164,180],mutat:166,name:[51,58,102,146,161],namespac:[35,58,70,77,102,121,180],nativ:178,negoti:[93,96,98,172],nest:[59,70,172,178],newlin:32,nginx:[71,78,108],non:[73,77],notat:161,note:[149,157,178],now:[73,159],number:87,object:[40,47,51,53],offset:102,one:76,onli:[29,102,109,154],openssl:149,option:[31,36,61,102,147,178,179,180],order:[52,156],organ:94,other:[51,61,156,161],our:195,output:[155,173],overrid:[102,148],overview:[38,103,158,164,193],owasp:40,own:65,packag:107,pad:149,page:[68,109,154,161,164,186,193,195],pagenotfoundexcept:72,pagin:[132,154],paramet:[36,41,45,102,164,168,172,175],pars:[159,178],parser:[138,178],part:162,parti:75,partial:177,pass:[56,94],path:162,person:146,phar:189,php:[78,109,169,178],phpunit:189,placehold:[101,102,164,168],plugin:178,point:[65,181,184],polici:173,port:162,predi:145,prefer:[58,148,157],prefix:[51,146,149],preload:61,prepar:51,prerequisit:156,present:[50,101],prevent:178,previou:140,print:32,prioriti:[65,102],privat:[94,189],pro:[105,106],process:[102,152,161,168],project:[105,107,111,113,114,115,116,117,120],promptbykei:32,properti:[94,166,189],protect:[51,116,156,168,189],protocol:148,provid:[32,95,178,184],provis:40,psr:143,publish:[65,155],push:157,qualiti:152,queri:[47,48,51,52,53,116,147,154,162,168],queue:102,quick:47,quickli:166,random:156,rate:158,react:67,recommend:[40,60],reconnect:45,redi:145,redirect:[40,102,156],redirectexcept:72,redishandl:157,refer:[40,52,53,56,58,96,98,100,145,146,148,149,153,155,158,163,170,173,174,178,179],regener:156,regist:178,registrar:70,regular:[51,102],reloc:76,remap:94,remov:[78,146,157],renam:[56,76],render:[177,179],replac:[62,64,70,130,172,184],report:71,repositori:107,request:[37,40,67,96,100,103,147,156,186,190],requir:144,reset:52,resiz:152,resourc:101,resourcecontrol:101,resourcepresent:101,respons:[37,133,147,170,171,173,182,186,190],rest:101,restrict:102,result:[47,52,53,55,117,149,154],retriev:[50,96,150,157,168,172],revers:102,review:148,right:142,rotat:152,rout:[29,77,94,97,101,102,116,134,156,172,182,186,192,194,195],row:53,rule:[102,164,168],run:[29,30,54,76,108,164,168,181,193,195],runtim:[168,173],same:45,samea:159,samesit:146,save:[164,168],savedata:180,scaffold:31,scheme:162,script:40,search:130,section:194,secur:[24,26,27,40,88,135,155,156,173],securehead:95,seed:[59,77,183],seeder:[31,59],segment:[94,102,154,162],select:52,send:[24,148],sensit:40,sent:156,server:[78,108,144],servic:[36,41,69,149,189],session:[40,116,136,157,186,190],set:[31,45,65,93,102,105,106,108,116,148,149,154,164,173,183,184,186,189,194],setopt:36,setrul:164,setter:159,settimestamp:159,settimezon:159,share:[41,108,147],show:184,showprogress:32,similar:52,simplest:161,simplifi:51,simul:65,singl:[47,161,164],single_servic:41,site:[40,156],smtp:148,sodium:149,specif:52,specifi:[77,154,164,168,172,185],spl:150,spoof:99,ssl:148,stage:189,standard:[47,73],start:[47,103,150],starter:105,statu:190,stock:31,store:[146,149,161,180],stream:189,strict:[54,164],string:[56,162],structur:[42,105,106,121,169],sub:[94,180],subdomain:102,subqueri:52,substitut:178,success:[161,164],support:[35,155,185],sync:155,syntax:[102,169],system:[42,64,188,189],tab:184,tabl:[32,50,56,116,128,174,185],take:150,task:181,tempdata:157,templat:[164,178],test:[42,54,89,108,182,183,185,186,187,189,190],text:[90,152],thi:[79,80,81,82,83,84,86,87,88,89,90,91,92,94],thing:87,third:75,throttler:158,time:[69,159,181],timelin:184,timeout:147,timer:181,tip:157,todai:159,todatestr:159,todatetim:159,todatetimestr:159,token:156,tolocalizedstr:159,tomorrow:159,tool:58,toolbar:184,topic:[74,103],totimestr:159,tradit:164,trait:[170,182,189],transact:54,translat:[102,105,106,164,172],treat:70,troubleshoot:109,turn:173,tutori:[109,164],two:159,type:[96,168,170],typographi:160,unhelp:109,unvalid:40,updat:[52,192],upgrad:[105,106,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140],upload:[96,127,161,164],uri:[94,102,147,154,162],url:[78,91,96,109],usag:[31,34,58,145,155,161,166,170,172,178],use:41,user:[32,103,156,163],user_ag:147,userinfo:162,util:55,vagrant:108,valid:[24,31,94,117,137,146,164,168],validatedata:94,valu:[44,83,157,159,164,186],var_dump:184,variabl:70,variat:178,verb:102,verifi:[147,161],version:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,47,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,147],versu:148,via:29,view:[39,77,121,138,139,154,159,164,169,175,176,177,178,179,180,181],virtual:108,vuej:67,vulner:40,wait:32,watermark:152,weak:40,web:[68,78],welcom:[142,193],what:[29,36,37,41,73,94,98,102,109,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,157,178,179,184],when:[87,156],whoop:109,why:[29,41],wincach:145,within:180,withrequest:164,word:148,work:[37,49,51,68,70,77,109,127,147,150,157,159,161,162,164,166,168,172,173,190,194],world:[29,94],wrap:[32,148],writabl:42,write:32,wrong:87,xml:[55,92,190],xss:40,yesterdai:159,you:142,your:[45,48,50,65,76,94,103,108,149,164,168,174,181,183,184,189,193,194]}}) \ No newline at end of file +Search.setIndex({docnames:["changelogs/index","changelogs/v4.0.0","changelogs/v4.0.0-alpha.1","changelogs/v4.0.0-alpha.2","changelogs/v4.0.0-alpha.3","changelogs/v4.0.0-alpha.4","changelogs/v4.0.0-alpha.5","changelogs/v4.0.0-beta.1","changelogs/v4.0.0-beta.2","changelogs/v4.0.0-beta.3","changelogs/v4.0.0-beta.4","changelogs/v4.0.0-rc.1","changelogs/v4.0.0-rc.2","changelogs/v4.0.0-rc.3","changelogs/v4.0.0-rc.4","changelogs/v4.0.3","changelogs/v4.0.4","changelogs/v4.0.5","changelogs/v4.1.0","changelogs/v4.1.1","changelogs/v4.1.2","changelogs/v4.1.3","changelogs/v4.1.4","changelogs/v4.1.5","changelogs/v4.1.6","changelogs/v4.1.7","changelogs/v4.1.8","changelogs/v4.1.9","changelogs/v4.2.0","cli/cli","cli/cli_commands","cli/cli_generators","cli/cli_library","cli/cli_request","cli/index","concepts/autoloader","concepts/factories","concepts/http","concepts/index","concepts/mvc","concepts/security","concepts/services","concepts/structure","database/call_function","database/configuration","database/connecting","database/events","database/examples","database/helpers","database/index","database/metadata","database/queries","database/query_builder","database/results","database/transactions","database/utilities","dbmgmt/forge","dbmgmt/index","dbmgmt/migration","dbmgmt/seeds","extending/authentication","extending/basecontroller","extending/common","extending/contributing","extending/core_classes","extending/events","extending/index","general/ajax","general/caching","general/common_functions","general/configuration","general/environments","general/errors","general/helpers","general/index","general/logging","general/managing_apps","general/modules","general/urls","helpers/array_helper","helpers/cookie_helper","helpers/date_helper","helpers/filesystem_helper","helpers/form_helper","helpers/html_helper","helpers/index","helpers/inflector_helper","helpers/number_helper","helpers/security_helper","helpers/test_helper","helpers/text_helper","helpers/url_helper","helpers/xml_helper","incoming/content_negotiation","incoming/controllers","incoming/filters","incoming/incomingrequest","incoming/index","incoming/message","incoming/methodspoofing","incoming/request","incoming/restful","incoming/routing","index","installation/index","installation/installing_composer","installation/installing_manual","installation/repositories","installation/running","installation/troubleshooting","installation/upgrade_404","installation/upgrade_405","installation/upgrade_410","installation/upgrade_412","installation/upgrade_413","installation/upgrade_414","installation/upgrade_415","installation/upgrade_416","installation/upgrade_417","installation/upgrade_418","installation/upgrade_420","installation/upgrade_4xx","installation/upgrade_configuration","installation/upgrade_controllers","installation/upgrade_database","installation/upgrade_emails","installation/upgrade_encryption","installation/upgrade_file_upload","installation/upgrade_html_tables","installation/upgrade_localization","installation/upgrade_migrations","installation/upgrade_models","installation/upgrade_pagination","installation/upgrade_responses","installation/upgrade_routing","installation/upgrade_security","installation/upgrade_sessions","installation/upgrade_validations","installation/upgrade_view_parser","installation/upgrade_views","installation/upgrading","intro/credits","intro/index","intro/psr","intro/requirements","libraries/caching","libraries/cookies","libraries/curlrequest","libraries/email","libraries/encryption","libraries/files","libraries/honeypot","libraries/images","libraries/index","libraries/pagination","libraries/publisher","libraries/security","libraries/sessions","libraries/throttler","libraries/time","libraries/typography","libraries/uploaded_files","libraries/uri","libraries/user_agent","libraries/validation","license","models/entities","models/index","models/model","outgoing/alternative_php","outgoing/api_responses","outgoing/index","outgoing/localization","outgoing/response","outgoing/table","outgoing/view_cells","outgoing/view_decorators","outgoing/view_layouts","outgoing/view_parser","outgoing/view_renderer","outgoing/views","testing/benchmark","testing/controllers","testing/database","testing/debugging","testing/fabricator","testing/feature","testing/index","testing/mocking","testing/overview","testing/response","tutorial/conclusion","tutorial/create_news_items","tutorial/index","tutorial/news_section","tutorial/static_pages"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":1,"sphinx.domains.index":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["changelogs/index.rst","changelogs/v4.0.0.rst","changelogs/v4.0.0-alpha.1.rst","changelogs/v4.0.0-alpha.2.rst","changelogs/v4.0.0-alpha.3.rst","changelogs/v4.0.0-alpha.4.rst","changelogs/v4.0.0-alpha.5.rst","changelogs/v4.0.0-beta.1.rst","changelogs/v4.0.0-beta.2.rst","changelogs/v4.0.0-beta.3.rst","changelogs/v4.0.0-beta.4.rst","changelogs/v4.0.0-rc.1.rst","changelogs/v4.0.0-rc.2.rst","changelogs/v4.0.0-rc.3.rst","changelogs/v4.0.0-rc.4.rst","changelogs/v4.0.3.rst","changelogs/v4.0.4.rst","changelogs/v4.0.5.rst","changelogs/v4.1.0.rst","changelogs/v4.1.1.rst","changelogs/v4.1.2.rst","changelogs/v4.1.3.rst","changelogs/v4.1.4.rst","changelogs/v4.1.5.rst","changelogs/v4.1.6.rst","changelogs/v4.1.7.rst","changelogs/v4.1.8.rst","changelogs/v4.1.9.rst","changelogs/v4.2.0.rst","cli/cli.rst","cli/cli_commands.rst","cli/cli_generators.rst","cli/cli_library.rst","cli/cli_request.rst","cli/index.rst","concepts/autoloader.rst","concepts/factories.rst","concepts/http.rst","concepts/index.rst","concepts/mvc.rst","concepts/security.rst","concepts/services.rst","concepts/structure.rst","database/call_function.rst","database/configuration.rst","database/connecting.rst","database/events.rst","database/examples.rst","database/helpers.rst","database/index.rst","database/metadata.rst","database/queries.rst","database/query_builder.rst","database/results.rst","database/transactions.rst","database/utilities.rst","dbmgmt/forge.rst","dbmgmt/index.rst","dbmgmt/migration.rst","dbmgmt/seeds.rst","extending/authentication.rst","extending/basecontroller.rst","extending/common.rst","extending/contributing.rst","extending/core_classes.rst","extending/events.rst","extending/index.rst","general/ajax.rst","general/caching.rst","general/common_functions.rst","general/configuration.rst","general/environments.rst","general/errors.rst","general/helpers.rst","general/index.rst","general/logging.rst","general/managing_apps.rst","general/modules.rst","general/urls.rst","helpers/array_helper.rst","helpers/cookie_helper.rst","helpers/date_helper.rst","helpers/filesystem_helper.rst","helpers/form_helper.rst","helpers/html_helper.rst","helpers/index.rst","helpers/inflector_helper.rst","helpers/number_helper.rst","helpers/security_helper.rst","helpers/test_helper.rst","helpers/text_helper.rst","helpers/url_helper.rst","helpers/xml_helper.rst","incoming/content_negotiation.rst","incoming/controllers.rst","incoming/filters.rst","incoming/incomingrequest.rst","incoming/index.rst","incoming/message.rst","incoming/methodspoofing.rst","incoming/request.rst","incoming/restful.rst","incoming/routing.rst","index.rst","installation/index.rst","installation/installing_composer.rst","installation/installing_manual.rst","installation/repositories.rst","installation/running.rst","installation/troubleshooting.rst","installation/upgrade_404.rst","installation/upgrade_405.rst","installation/upgrade_410.rst","installation/upgrade_412.rst","installation/upgrade_413.rst","installation/upgrade_414.rst","installation/upgrade_415.rst","installation/upgrade_416.rst","installation/upgrade_417.rst","installation/upgrade_418.rst","installation/upgrade_420.rst","installation/upgrade_4xx.rst","installation/upgrade_configuration.rst","installation/upgrade_controllers.rst","installation/upgrade_database.rst","installation/upgrade_emails.rst","installation/upgrade_encryption.rst","installation/upgrade_file_upload.rst","installation/upgrade_html_tables.rst","installation/upgrade_localization.rst","installation/upgrade_migrations.rst","installation/upgrade_models.rst","installation/upgrade_pagination.rst","installation/upgrade_responses.rst","installation/upgrade_routing.rst","installation/upgrade_security.rst","installation/upgrade_sessions.rst","installation/upgrade_validations.rst","installation/upgrade_view_parser.rst","installation/upgrade_views.rst","installation/upgrading.rst","intro/credits.rst","intro/index.rst","intro/psr.rst","intro/requirements.rst","libraries/caching.rst","libraries/cookies.rst","libraries/curlrequest.rst","libraries/email.rst","libraries/encryption.rst","libraries/files.rst","libraries/honeypot.rst","libraries/images.rst","libraries/index.rst","libraries/pagination.rst","libraries/publisher.rst","libraries/security.rst","libraries/sessions.rst","libraries/throttler.rst","libraries/time.rst","libraries/typography.rst","libraries/uploaded_files.rst","libraries/uri.rst","libraries/user_agent.rst","libraries/validation.rst","license.rst","models/entities.rst","models/index.rst","models/model.rst","outgoing/alternative_php.rst","outgoing/api_responses.rst","outgoing/index.rst","outgoing/localization.rst","outgoing/response.rst","outgoing/table.rst","outgoing/view_cells.rst","outgoing/view_decorators.rst","outgoing/view_layouts.rst","outgoing/view_parser.rst","outgoing/view_renderer.rst","outgoing/views.rst","testing/benchmark.rst","testing/controllers.rst","testing/database.rst","testing/debugging.rst","testing/fabricator.rst","testing/feature.rst","testing/index.rst","testing/mocking.rst","testing/overview.rst","testing/response.rst","tutorial/conclusion.rst","tutorial/create_news_items.rst","tutorial/index.rst","tutorial/news_section.rst","tutorial/static_pages.rst"],objects:{"":{"Table::addRow":[174,2,1,""],"Table::clear":[174,2,1,""],"Table::generate":[174,2,1,""],"Table::makeColumns":[174,2,1,""],"Table::setCaption":[174,2,1,""],"Table::setEmpty":[174,2,1,""],"Table::setFooting":[174,2,1,""],"Table::setHeading":[174,2,1,""],"Table::setTemplate":[174,2,1,""],"delete":[52,2,1,""],APPPATH:[69,0,1,""],DAY:[69,0,1,""],DECADE:[69,0,1,""],FCPATH:[69,0,1,""],HOUR:[69,0,1,""],MINUTE:[69,0,1,""],MONTH:[69,0,1,""],ROOTPATH:[69,0,1,""],SECOND:[69,0,1,""],SYSTEMPATH:[69,0,1,""],Table:[174,1,1,""],WEEK:[69,0,1,""],WRITEPATH:[69,0,1,""],YEAR:[69,0,1,""],__construct:[146,2,1,""],addColumn:[56,2,1,""],addField:[56,2,1,""],addForeignKey:[56,2,1,""],addKey:[56,2,1,""],addPrimaryKey:[56,2,1,""],addUniqueKey:[56,2,1,""],alternator:[90,3,1,""],anchor:[91,3,1,""],anchor_popup:[91,3,1,""],app_timezone:[69,3,1,""],appendBody:[98,2,1,""],appendHeader:[98,2,1,""],array_deep_search:[79,3,1,""],array_sort_by_multiple_keys:[79,3,1,""],ascii_to_entities:[90,3,1,""],attach:[148,2,1,""],audio:[84,3,1,""],autoTypography:[160,3,1,""],auto_link:[91,3,1,""],base_url:[91,3,1,""],cache:[69,3,1,""],call:[30,2,1,""],camelize:[86,3,1,""],character_limiter:[90,3,1,""],check:[158,2,1,""],clean:[145,2,1,""],clear:[148,2,1,""],convert_accented_characters:[90,3,1,""],cookie:[69,3,1,""],cookies:[69,3,1,""],countAll:[52,2,1,""],countAllResults:[52,2,1,""],counted:[86,3,1,""],createDatabase:[56,2,1,""],createKey:[149,4,1,""],createTable:[56,2,1,""],csp_script_nonce:[69,3,1,""],csp_style_nonce:[69,3,1,""],csrf_field:[69,3,1,""],csrf_hash:[69,3,1,""],csrf_header:[69,3,1,""],csrf_meta:[69,3,1,""],csrf_token:[69,3,1,""],current_url:[91,3,1,""],dasherize:[86,3,1,""],dataSeek:[53,2,1,""],db:[52,2,1,""],decrement:[52,2,1,""],decrypt:[149,2,1,""],deleteCookie:[173,2,1,""],delete_cookie:[80,3,1,""],delete_files:[82,3,1,""],directory_map:[82,3,1,""],directory_mirror:[82,3,1,""],distinct:[52,2,1,""],doctype:[84,3,1,""],dot_array_search:[79,3,1,""],dropColumn:[56,2,1,""],dropDatabase:[56,2,1,""],dropTable:[56,2,1,""],ellipsize:[90,3,1,""],embed:[84,3,1,""],emptyTable:[52,2,1,""],encode_php_tags:[88,3,1,""],encrypt:[149,2,1,""],entities_to_ascii:[90,3,1,""],env:[69,3,1,""],esc:[69,3,1,""],excerpt:[90,3,1,""],fail:[170,2,1,""],failForbidden:[170,2,1,""],failNotFound:[170,2,1,""],failResourceExists:[170,2,1,""],failResourceGone:[170,2,1,""],failServerError:[170,2,1,""],failTooManyRequests:[170,2,1,""],failUnauthorized:[170,2,1,""],failValidationErrors:[170,2,1,""],fake:[89,3,1,""],fetchGlobal:[100,2,1,""],findMigrations:[58,2,1,""],force:[58,2,1,""],force_https:[69,3,1,""],form_button:[83,3,1,""],form_checkbox:[83,3,1,""],form_close:[83,3,1,""],form_dropdown:[83,3,1,""],form_fieldset:[83,3,1,""],form_fieldset_close:[83,3,1,""],form_hidden:[83,3,1,""],form_input:[83,3,1,""],form_label:[83,3,1,""],form_multiselect:[83,3,1,""],form_open:[83,3,1,""],form_open_multipart:[83,3,1,""],form_password:[83,3,1,""],form_radio:[83,3,1,""],form_reset:[83,3,1,""],form_submit:[83,3,1,""],form_textarea:[83,3,1,""],form_upload:[83,3,1,""],formatCharacters:[160,3,1,""],freeResult:[53,2,1,""],fromCookieHeaders:[146,4,1,""],fromHeaderString:[146,4,1,""],fromSubquery:[52,2,1,""],function_usable:[69,3,1,""],getAgentString:[163,2,1,""],getBody:[98,2,1,""],getBrowser:[163,2,1,""],getCacheInfo:[145,2,1,""],getCompiledDelete:[52,2,1,""],getCompiledInsert:[52,2,1,""],getCompiledSelect:[52,2,1,""],getCompiledUpdate:[52,2,1,""],getCookie:[173,2,1,""],getCookies:[173,2,1,""],getCustomResultObject:[53,2,1,""],getCustomRowObject:[53,2,1,""],getEnv:[100,2,1,""],getFieldCount:[53,2,1,""],getFieldData:[53,2,1,""],getFieldNames:[53,2,1,""],getFilterCaller:[182,3,1,""],getFiltersForRoute:[182,3,1,""],getFirstRow:[53,2,1,""],getGet:[96,2,1,""],getGetPost:[96,2,1,""],getHeaderLine:[98,2,1,""],getIPAddress:[100,2,1,""],getId:[146,2,1,""],getLastRow:[53,2,1,""],getMetadata:[145,2,1,""],getMethod:[100,2,1,""],getMobile:[163,2,1,""],getNextRow:[53,2,1,""],getNumRows:[53,2,1,""],getPad:[30,2,1,""],getPath:[96,2,1,""],getPlatform:[163,2,1,""],getPost:[96,2,1,""],getPostGet:[96,2,1,""],getPreviousRow:[53,2,1,""],getProtocolVersion:[98,2,1,""],getReasonPhrase:[173,2,1,""],getReferrer:[163,2,1,""],getResult:[53,2,1,""],getResultArray:[53,2,1,""],getResultObject:[53,2,1,""],getRobot:[163,2,1,""],getRow:[53,2,1,""],getRowArray:[53,2,1,""],getRowObject:[53,2,1,""],getServer:[100,2,1,""],getStatusCode:[173,2,1,""],getTokentime:[158,2,1,""],getUnbufferedRow:[53,2,1,""],getUserAgent:[96,2,1,""],getVar:[96,2,1,""],getVersion:[163,2,1,""],getWhere:[52,2,1,""],get_cookie:[80,3,1,""],get_dir_file_info:[82,3,1,""],get_file_info:[82,3,1,""],get_filenames:[82,3,1,""],groupBy:[52,2,1,""],groupEnd:[52,2,1,""],groupStart:[52,2,1,""],hasCookie:[173,2,1,""],hasHeader:[98,2,1,""],has_cookie:[80,3,1,""],having:[52,2,1,""],havingGroupEnd:[52,2,1,""],havingGroupStart:[52,2,1,""],havingIn:[52,2,1,""],havingLike:[52,2,1,""],havingNotIn:[52,2,1,""],header:[98,2,1,""],headers:[98,2,1,""],helper:[69,3,1,""],highlight_code:[90,3,1,""],highlight_phrase:[90,3,1,""],humanize:[86,3,1,""],img:[84,3,1,""],img_data:[84,3,1,""],increment:[52,2,1,""],increment_string:[90,3,1,""],index_page:[91,3,1,""],initialize:[149,2,1,""],insert:[52,2,1,""],insertBatch:[52,2,1,""],isAJAX:[96,2,1,""],isBrowser:[163,2,1,""],isCLI:[96,2,1,""],isMobile:[163,2,1,""],isReferral:[163,2,1,""],isRobot:[163,2,1,""],isSecure:[96,2,1,""],isSupported:[145,2,1,""],isValidIP:[100,2,1,""],is_cli:[69,3,1,""],is_pluralizable:[86,3,1,""],is_really_writable:[69,3,1,""],lang:[69,3,1,""],latest:[58,2,1,""],like:[52,2,1,""],limit:[52,2,1,""],link_tag:[84,3,1,""],log_message:[69,3,1,""],mailto:[91,3,1,""],mb_url_title:[91,3,1,""],model:[69,3,1,""],modifyColumn:[56,2,1,""],nl2brExceptPre:[160,3,1,""],noCache:[173,2,1,""],notGroupStart:[52,2,1,""],notHavingGroupStart:[52,2,1,""],notHavingLike:[52,2,1,""],notLike:[52,2,1,""],now:[81,3,1,""],number_to_amount:[87,3,1,""],number_to_currency:[87,3,1,""],number_to_roman:[87,3,1,""],number_to_size:[87,3,1,""],object:[84,3,1,""],octal_permissions:[82,3,1,""],offset:[52,2,1,""],ol:[84,3,1,""],old:[69,3,1,""],orGroupStart:[52,2,1,""],orHaving:[52,2,1,""],orHavingGroupStart:[52,2,1,""],orHavingIn:[52,2,1,""],orHavingLike:[52,2,1,""],orHavingNotIn:[52,2,1,""],orLike:[52,2,1,""],orNotGroupStart:[52,2,1,""],orNotHavingGroupStart:[52,2,1,""],orNotHavingLike:[52,2,1,""],orNotLike:[52,2,1,""],orWhere:[52,2,1,""],orWhereIn:[52,2,1,""],orWhereNotIn:[52,2,1,""],orderBy:[52,2,1,""],ordinal:[86,3,1,""],ordinalize:[86,3,1,""],param:[84,3,1,""],parse:[163,2,1,""],pascalize:[86,3,1,""],plural:[86,3,1,""],populateHeaders:[98,2,1,""],prep_url:[91,3,1,""],prependHeader:[98,2,1,""],previous_url:[91,3,1,""],printDebugger:[148,2,1,""],quotes_to_entities:[90,3,1,""],random_string:[90,3,1,""],redirect:[69,3,1,""],reduce_double_slashes:[90,3,1,""],reduce_multiples:[90,3,1,""],regress:[58,2,1,""],remember:[145,2,1,""],removeHeader:[98,2,1,""],remove_invisible_characters:[69,3,1,""],renameTable:[56,2,1,""],render:[178,2,1,""],renderString:[178,2,1,""],replace:[52,2,1,""],resetQuery:[52,2,1,""],respond:[170,2,1,""],respondCreated:[170,2,1,""],respondDeleted:[170,2,1,""],respondNoContent:[170,2,1,""],route_to:[69,3,1,""],safe_mailto:[91,3,1,""],same_file:[82,3,1,""],sanitize_filename:[88,3,1,""],save:[145,2,1,""],script_tag:[84,3,1,""],selectAvg:[52,2,1,""],selectCount:[52,2,1,""],selectMax:[52,2,1,""],selectMin:[52,2,1,""],selectSubquery:[52,2,1,""],selectSum:[52,2,1,""],send:[148,2,1,""],service:[69,3,1,""],session:[69,3,1,""],set:[52,2,1,""],setAltMessage:[148,2,1,""],setAttachmentCID:[148,2,1,""],setBCC:[148,2,1,""],setBody:[98,2,1,""],setCC:[148,2,1,""],setCache:[173,2,1,""],setConditionalDelimiters:[178,2,1,""],setContentType:[173,2,1,""],setCookie:[173,2,1,""],setData:[178,2,1,""],setDate:[173,2,1,""],setDefaults:[146,4,1,""],setDelimiters:[178,2,1,""],setFrom:[148,2,1,""],setGlobal:[100,2,1,""],setGroup:[58,2,1,""],setHeader:[98,2,1,""],setInsertBatch:[52,2,1,""],setLastModified:[173,2,1,""],setMessage:[148,2,1,""],setMethod:[100,2,1,""],setNamespace:[58,2,1,""],setPath:[96,2,1,""],setProtocolVersion:[98,2,1,""],setReplyTo:[148,2,1,""],setResponseFormat:[170,2,1,""],setRow:[53,2,1,""],setStatusCode:[173,2,1,""],setSubject:[148,2,1,""],setTo:[148,2,1,""],setUpdateBatch:[52,2,1,""],setValidationMessage:[168,3,1,""],setValidationMessages:[168,3,1,""],setValidationRule:[168,3,1,""],setValidationRules:[168,3,1,""],setVar:[178,2,1,""],set_checkbox:[83,3,1,""],set_cookie:[80,3,1,""],set_radio:[83,3,1,""],set_realpath:[82,3,1,""],set_select:[83,3,1,""],set_value:[83,3,1,""],showError:[30,2,1,""],showHelp:[30,2,1,""],single_service:[69,3,1,""],singular:[86,3,1,""],site_url:[91,3,1,""],slash_item:[69,3,1,""],source:[84,3,1,""],stringify_attributes:[69,3,1,""],strip_image_tags:[88,3,1,""],strip_quotes:[90,3,1,""],strip_slashes:[90,3,1,""],symbolic_permissions:[82,3,1,""],timer:[69,3,1,""],timezone_select:[81,3,1,""],toArray:[146,2,1,""],toHeaderString:[146,2,1,""],track:[84,3,1,""],truncate:[52,2,1,""],ul:[84,3,1,""],underscore:[86,3,1,""],update:[52,2,1,""],updateBatch:[52,2,1,""],uri_string:[91,3,1,""],url_is:[91,3,1,""],url_title:[91,3,1,""],url_to:[91,3,1,""],validateKey:[145,4,1,""],video:[84,3,1,""],view:[69,3,1,""],view_cell:[69,3,1,""],where:[52,2,1,""],whereIn:[52,2,1,""],whereNotIn:[52,2,1,""],withDomain:[146,2,1,""],withExpired:[146,2,1,""],withExpires:[146,2,1,""],withHTTPOnly:[146,2,1,""],withName:[146,2,1,""],withNeverExpiring:[146,2,1,""],withPath:[146,2,1,""],withPrefix:[146,2,1,""],withRaw:[146,2,1,""],withSameSite:[146,2,1,""],withSecure:[146,2,1,""],withValue:[146,2,1,""],word_censor:[90,3,1,""],word_limiter:[90,3,1,""],word_wrap:[90,3,1,""],write_file:[82,3,1,""],xml_convert:[92,3,1,""]}},objnames:{"0":["php","const","PHP const"],"1":["php","class","PHP class"],"2":["php","method","PHP method"],"3":["php","function","PHP function"],"4":["php","staticmethod","staticmethod"]},objtypes:{"0":"php:const","1":"php:class","2":"php:method","3":"php:function","4":"php:staticmethod"},terms:{"001_create_us":130,"002_create_post":130,"013057_addblog":58,"0script":69,"100538_alterblogtrackview":58,"100pixel":152,"100x100":152,"10px":83,"1465965676_385e33f741":150,"1st":86,"20121031100537_addblog":58,"20121031100537_create_us":130,"20121031500638_create_post":130,"2012_10_31_100539_alterblogaddtransl":58,"2047b5a":4,"223112_create_auth_t":155,"23pm":159,"24gm":27,"27868b":4,"2d0b325":4,"2e698a":6,"2nd":86,"321a":170,"36fbb8":7,"37dbc1":7,"3a4ad":6,"3de":149,"3rd":[86,154],"404overrid":8,"4a1886":6,"4c7bfe":5,"4f4a37":7,"4ff1f5":7,"4th":[28,86],"4v37":27,"50x50":152,"549d7d":7,"5951c3":6,"5f305a":6,"6265bi":111,"6b8b8b":6,"6dab8f":6,"6e549a":7,"6g62":119,"6w75":27,"7993a7":6,"7jg5":119,"81d371":6,"895ae0":8,"8f205a":5,"8f305a":5,"964ede6e0ae8a680f7b8eab69136717d":83,"9e435c":6,"abstract":[20,37,49,54,61,144,146,194],"boolean":[20,36,44,45,50,51,52,65,69,82,83,84,91,100,113,148,152,154,155,157,159,161,163,164,166,168,173,178,179,183,190],"break":[4,10,12,16,20,22,32,52,83,95,102,105,106,110,111,113,157,160,174],"byte":[14,87,149,150],"case":[6,7,8,9,12,16,20,32,37,39,42,44,52,54,56,58,64,70,72,73,77,82,83,86,90,93,94,95,96,98,99,100,102,105,111,113,116,117,120,133,145,146,154,155,156,157,158,159,161,164,166,168,170,172,173,178,179,181,182,185,186,189,190,192,193,195],"catch":[4,5,30,58,72,75,82,102,152,155],"char":178,"class":[1,3,4,5,6,8,9,10,12,13,14,15,16,17,18,20,21,22,23,24,28,29,30,31,34,35,36,37,39,42,44,45,46,48,49,54,55,59,60,61,62,65,66,69,72,75,76,81,83,84,89,91,94,95,97,99,101,102,103,109,111,113,115,122,123,124,125,127,128,129,130,131,132,133,134,135,137,141,143,150,153,154,155,156,159,161,162,164,167,168,171,172,175,176,177,180,181,182,184,185,190,192,194,195],"default":[4,5,7,8,9,10,13,15,16,17,20,28,31,32,35,36,37,41,44,45,48,52,53,54,56,58,61,64,67,69,70,72,73,75,76,77,78,80,81,82,83,84,87,90,91,93,96,99,100,101,105,108,111,116,120,121,122,129,132,145,146,147,148,150,151,152,154,155,156,158,159,161,162,163,164,166,168,170,172,173,174,177,178,179,180,181,182,183,184,185,189,192,193,194,195],"enum":56,"export":[82,130,168],"final":[3,6,15,30,32,41,51,65,89,90,93,95,96,113,150,152,161,162,166,170,172,179,182,185,189,190,193],"float":[51,87,90,147,152,166],"function":[3,4,5,7,8,11,13,14,16,17,20,21,23,24,28,29,30,31,32,35,42,44,45,47,48,49,50,51,52,53,54,58,59,60,61,64,65,66,67,70,72,74,75,77,78,85,94,95,96,100,101,102,103,108,110,113,116,121,123,124,127,130,131,137,146,147,149,150,152,154,155,156,157,158,159,161,162,163,164,166,168,170,172,173,174,175,176,177,179,180,181,182,183,185,186,189,190,192,193,194,195],"import":[35,70,121,124,128,130,133,148,154,157,169,191],"instanceof":36,"int":[13,52,53,56,58,69,80,81,82,86,87,90,94,96,100,111,130,145,146,148,149,152,158,164,168,170,173,174,175,185,190,194],"long":[7,32,33,39,56,61,67,73,75,77,90,102,147,148,149,152,164,168,172,173,184],"new":[1,2,4,6,7,8,9,10,11,12,13,16,17,20,21,22,23,28,31,32,35,36,39,41,42,44,46,51,52,53,55,56,58,61,64,65,69,70,72,73,75,77,78,90,91,94,96,101,102,103,105,106,107,108,113,114,115,116,121,122,124,125,127,128,130,131,132,134,136,137,145,146,147,149,152,154,155,158,159,161,162,163,164,166,168,170,172,174,175,176,178,179,180,181,182,183,184,185,188,189,190,193,195],"null":[8,9,10,13,14,15,16,20,32,33,36,45,52,53,55,56,58,60,69,79,80,81,82,84,87,89,91,95,96,98,100,101,110,111,116,130,145,146,148,149,150,152,154,157,158,163,164,166,168,170,173,174,178,179,183,185,186,190,194],"public":[3,4,5,6,9,10,11,12,13,16,22,28,29,30,36,40,41,44,52,53,58,59,61,64,70,72,75,76,77,84,89,94,95,96,101,102,105,106,107,108,109,110,111,113,114,115,116,117,120,121,122,123,126,127,129,130,131,135,137,145,147,149,151,154,155,156,157,158,161,164,166,168,170,172,173,175,176,177,178,180,182,184,185,189,192,194,195],"return":[3,6,8,9,11,12,13,14,15,16,17,20,22,23,28,29,30,31,33,36,41,45,47,48,50,51,52,53,55,56,58,60,64,65,69,70,73,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,98,100,101,102,111,113,116,121,123,127,129,132,133,138,139,145,146,147,148,149,150,152,154,155,156,157,158,159,160,161,162,163,164,166,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,192,194,195],"short":[4,30,39,70,77,142,164,168,169,172,194],"static":[4,32,36,41,51,52,55,59,64,65,68,70,77,102,103,145,146,149,155,159,162,164,166,168,175,176,178,181,182,185,189,193,194],"switch":[44,45,95,105,128,133,148,166],"throw":[5,16,20,69,72,75,94,95,113,145,146,149,150,151,152,156,159,161,168,194,195],"transient":155,"true":[4,16,20,25,28,32,33,36,41,44,45,50,51,52,53,54,56,58,64,65,69,70,72,73,82,83,84,86,90,91,93,96,98,99,100,102,113,116,118,130,139,145,146,147,148,150,151,152,154,155,156,157,158,159,162,163,164,166,168,172,173,174,178,179,183,184,185,189,190,192],"try":[4,7,16,21,30,33,44,51,52,58,72,73,75,82,93,95,102,108,109,121,148,152,154,155,157,158,166,170,178,180,181,182,193,195],"var":[3,10,70,71,108,155,178,179],"void":[12,53,80,98,146,150,163,173,183,186,189],"while":[30,32,35,37,42,44,45,51,53,58,62,70,71,77,79,82,90,93,95,96,98,101,102,142,143,147,148,152,154,157,159,162,164,166,168,169,170,172,173,178,179,180,181,183,184,185,186,188,189],AES:149,AND:[51,52,54,159,165,190],Added:[3,7,8,10,11,13,14,15,16,20,21,23,28],Adding:[7,8,14,70,83,117,118,119,120],And:[24,32,36,41,76,95,117,149,154,157,158,173],BUT:165,Being:146,But:[24,36,67,70,94,102,116,157,166,180,194,195],FOR:165,For:[17,29,30,36,39,40,41,42,43,44,45,47,50,52,53,56,58,61,64,65,67,69,70,71,73,75,76,77,83,88,90,91,93,94,95,98,102,111,113,116,121,123,128,130,131,134,143,145,147,148,149,152,154,155,157,158,161,164,166,168,172,173,180,184,189,194],Has:51,IDE:184,IDEs:164,INTO:[47,51,52,59,194],Its:[41,101,142],NOT:[51,52,54,56,70,72,82,96,113,146,148,149,152,157,161,165,168,174,178,183,188,190,194],Not:[4,28,50,53,61,72,100,108,117,144,156,170,173,195],One:[69,70,77,83,95,108,152,164,173,195],Such:40,THAT:157,THE:165,THEN:52,That:[30,35,37,39,41,51,70,84,101,105,109,149,164,166,168,170,173,177,180,189,192,194],The:[1,3,4,5,6,7,8,9,10,11,12,13,15,16,17,20,22,23,24,28,30,31,32,35,36,38,40,41,42,43,44,45,47,48,49,50,52,53,54,55,56,58,59,60,61,64,65,67,68,69,70,72,73,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,98,99,100,101,102,105,106,107,108,110,111,113,114,115,116,117,120,121,122,124,125,126,127,128,130,131,133,135,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,154,155,157,159,160,163,166,168,170,172,173,174,175,177,178,179,181,185,187,188,190,192,194,195],Their:154,Then:[29,30,39,41,44,64,94,102,148,154,164,166,178,179,180],There:[10,29,41,51,52,53,56,58,60,62,65,70,71,73,75,84,90,95,107,111,113,114,116,117,120,121,146,147,148,152,157,159,163,164,168,172,173,178,189,192,193,195],These:[15,30,32,36,41,44,46,50,58,63,69,70,71,75,77,78,84,93,94,98,102,105,107,111,121,122,150,152,154,164,166,168,173,174,178,188,190],USE:165,Use:[4,5,9,10,13,14,28,30,31,51,52,53,65,83,84,100,105,111,145,147,148,155,157,173,185,189,191],Used:[44,56,69,79,96,100,173],Useful:[16,42,52,90,148],Uses:[6,89,150,159],Using:[9,25,29,70,80,94,96,103,118,155,161,162,167,173,180,194],WILL:157,WITH:165,Will:[36,56,69,90,102,147,148,164,184,195],With:[38,52,67,96,102,103,131,157,169,173,178,181,185,193,194],Yes:[84,164,194],__construct:[4,14,44,64,96,111,127,146,150,168,178],__dir__:76,__get:[6,12,53,166,168],__host:146,__isset:[11,12],__secur:146,__set:[6,53,166,168],__wakeup:22,_array_search_dot:20,_blank:91,_bootstrap:4,_config:9,_cooki:[95,96,146],_env:[70,75,96,100],_error:164,_errors_list:164,_fielddata:[22,115],_file:[96,161,164],_flatten:[22,115],_flip:[22,115],_foreignkeydata:[22,115],_get:[5,37,75,95,96,100,154,186],_helper:73,_indexdata:[22,115],_like_stat:[22,115],_listtabl:12,_method:99,_option:178,_post:[37,75,95,96,100,156,164,168,186],_remap:[13,28,29,94],_request:[37,96],_server:[9,21,70,71,96,100,157,184],_session:[14,75,136,157,186],_set:5,_suffix:145,_support:[4,10,11,12,13,42,183],_theme:7,_user:31,a0fc68:5,a_long_link_that_should_not_be_wrap:148,ab8b5b:5,abc123:126,abcd:173,abigsecret_ofatleast32charact:149,abil:[15,30,51,73,96,147,155,166],abl:[35,37,41,42,53,67,93,95,102,113,158,168,173,178,191],abm:164,about:[5,15,29,30,37,39,46,51,52,54,75,76,90,94,95,96,102,149,154,159,161,163,164,166,168,182,184,185,191,192,194,195],abov:[30,32,36,41,44,45,47,51,52,53,56,68,69,70,72,73,75,77,78,79,83,84,90,91,93,94,96,98,100,101,102,105,107,108,111,113,116,117,120,144,146,148,149,152,157,164,165,166,168,169,174,178,180,182,183,185,189,192,194,195],abs:178,absent:194,absolut:[5,17,20,82,91,102,145,150,157,178,189],accent:[90,91],accept:[8,20,32,37,41,44,52,53,56,63,83,90,91,93,94,96,98,100,101,102,118,143,146,147,148,150,152,154,156,157,159,164,170,173,174,178,186,190,195],access:[4,8,10,13,17,28,29,30,36,42,43,47,52,53,58,59,61,69,70,77,78,79,84,93,94,95,98,102,104,105,108,111,113,116,122,127,130,134,136,142,150,151,152,154,155,156,158,159,164,173,178,179,185,192,194,195],access_log:108,accessd:102,accessor:[157,168],accident:[39,182],accommod:7,accomplish:[56,70],accord:[30,67,109,122,123,131,147,170,172],accordingli:[79,113,115,186],account:[100,102,108,157,164,182,190],accumul:[178,179],accur:[14,181],achiev:[68,94,149,157],acm:[30,31,58,59,77,102],acquir:[82,141],across:[36,56,70,75,77,113,146,150,155,158,159,173,177,184,189],act:[39,41,51,70,80,95,154,168,177,180,185,195],action:[15,29,40,50,52,56,65,72,75,83,94,95,99,101,102,111,152,156,158,164,165,170,185,188,192],activ:[32,35,52,154,157,158,166,168,170,181,183],activeus:168,actual:[8,13,15,23,32,33,39,51,65,69,70,75,82,96,101,108,116,132,144,148,150,152,155,157,161,162,164,166,168,172,173,178,182,184,185,189,190,192,195],adapt:[52,143,145],add:[3,4,5,6,7,8,9,10,11,12,13,14,15,16,30,33,40,42,44,51,52,53,56,59,64,67,73,77,83,86,87,89,90,91,94,95,98,100,102,105,108,109,116,121,123,124,130,131,134,135,143,145,146,150,152,155,156,157,158,162,163,166,172,173,174,178,179,180,181,182,184,186,189,192,193,194,195],add_field:130,add_kei:130,add_row:128,addbaseuri:173,addblog:[58,130],addchildsrc:173,addcolumn:56,addconnectsrc:173,addcontextcolumn:58,adddai:159,adddirectori:[150,155],added:[5,6,8,9,11,16,17,22,42,43,44,52,56,61,70,82,83,84,86,89,90,91,99,100,102,105,106,111,113,123,131,147,148,149,155,156,166,168,172,173,174,178,180,181],addfield:[4,56,58,130],addfil:[150,155],addfontsrc:173,addforeignkei:[23,56],addformact:173,addframeancestor:173,addhour:159,addimagesrc:173,adding:[36,44,45,52,56,60,65,70,75,95,105,146,155,156,157,159,162,166,168,173,178,183,192,194],addit:[1,6,7,8,10,17,29,30,37,41,50,51,52,53,56,65,69,70,71,76,83,84,91,95,96,99,102,108,111,113,124,146,147,148,149,150,152,154,157,159,166,168,172,173,182,184,185,186,193,194],addition:[56,84,146,154,156,157,168,175,180],addkei:[56,58,130],addmanifestsrc:173,addmediasrc:173,addminut:159,addmonth:159,addobjectsrc:173,addpath:155,addplacehold:102,addplugintyp:173,addprimarykei:56,addqueri:162,addredirect:102,address:[4,40,70,71,75,79,83,84,91,100,108,129,131,137,148,157,158,164,168,172],address_info:83,addrow:[128,174],addsandbox:173,addscriptsrc:173,addsecond:159,addstylesrc:173,addtabl:130,adduniquekei:56,adduri:155,addyear:159,adher:[35,41,142,143],adjust:[3,77,105,109,111,113,115,116,117,120,124,152,155,162],admin:[4,5,6,9,10,11,12,13,31,69,70,91,95,101,102,146,178,182,186],admin_token:146,admincontrol:[61,95,102],administr:61,adodb:54,advanc:[41,164,178,185,193],advance_amount:52,advantag:[41,56,61,75,77,83,96,105,106,108,113,146,149,157,168,173,182,183,189,191,193],advis:[51,149],advisori:[24,26,27,119,157],aenean:90,affect:[15,23,48,52,54,58,68,71,87,102,111,115,116,117,146,155,166,168,184],affected_row:124,affectedrow:[47,48,52,124],after:[5,6,10,13,14,16,30,32,37,41,42,51,52,53,56,65,70,79,83,87,90,91,94,101,102,105,106,109,110,116,121,123,124,129,130,131,146,147,149,150,151,154,157,158,159,164,168,169,173,174,178,179,180,182,183,184,185,189,192,195],afterward:161,again:[6,41,45,109,149,157,158,162,164,170,184,193,194],against:[3,58,59,88,91,94,102,145,156,158,159,164,168,173,179,183,192],age:[52,79,124,159,173],agent:[37,96,103,147,148,153],ago:159,agre:[10,93],agreement:103,ahead:53,aid:[65,111,175,183],aim:152,air:174,ajax:[14,37,74,96,103,156,157],ak_my_design:90,alert:[69,75,164,168,178],alford:185,algorithm:[149,158],alia:[12,36,52,53,69,75,78,80,88,90,95,101,102,108,152,154,158,164,178,182],alias:[77,102,108,151,158,182],aliastest:6,align:[22,36,101,108,115,152],all:[0,4,10,11,13,14,15,16,20,22,28,29,30,31,32,35,37,40,41,42,43,44,46,47,50,51,52,53,54,58,61,64,65,67,69,70,71,72,73,76,77,78,79,80,81,82,83,84,90,91,92,93,94,95,96,98,99,100,101,102,105,107,108,115,119,121,122,123,124,125,130,131,133,139,143,144,145,146,147,148,149,150,154,155,157,158,159,160,162,165,166,168,170,172,173,174,175,177,178,181,182,183,184,185,186,189,191,192,193,194],allot:158,allow:[3,4,5,6,8,10,12,16,17,28,29,30,32,35,36,37,39,42,44,48,51,52,53,54,59,64,69,70,71,72,73,75,79,82,83,87,90,94,95,96,98,99,100,101,102,108,111,122,130,134,142,143,145,146,147,148,149,150,152,154,155,156,157,158,159,161,162,166,168,169,170,172,173,174,175,176,178,179,181,182,183,184,185,186,189,190,192,194],allow_failur:6,allowed_typ:127,allowedfield:[166,192],allowoverrid:108,allowrememb:185,allus:168,almost:[41,82,95,157,192],alnum:90,alon:[77,95],along:[67,78,93,102,105,121,146,147,152,154,158,161,164,180,193],alongsid:[70,77,95],alpha:[0,7,90,102,104,164],alpha_dash:164,alpha_numer:164,alpha_numeric_punct:[1,164],alpha_numeric_spac:[94,164,168],alpha_spac:164,alphabet:[30,102,164],alphanum:102,alphanumer:[90,164],alreadi:[4,30,42,50,51,52,53,56,58,69,70,71,77,82,96,98,108,131,146,147,148,152,154,155,157,161,168,170,178,179,192,193,194],also:[9,19,24,28,29,30,31,32,34,35,36,37,39,40,41,44,51,52,53,54,56,58,59,62,65,70,71,72,77,78,79,80,82,83,90,91,94,95,96,101,102,105,107,108,116,121,130,131,132,145,146,147,148,149,152,154,155,156,157,159,160,161,162,163,164,166,168,169,172,173,174,177,178,179,180,181,182,184,185,186,188,189,190,192,194,195],alt:[84,148],altconfig:91,alter:[20,56,58,62,64,70,102,113,152,155,156,157,164,182],altern:[36,58,71,83,84,90,91,103,108,109,131,146,148,155,157,162,164,166,171,172,174,178,179,181,184,185,189],alternate_db_group:58,altertablestest:10,altertabletest:7,although:[51,68,73,142,164],alwai:[4,15,20,23,28,29,30,35,36,37,41,51,56,65,69,70,73,77,82,83,91,93,94,95,96,102,108,121,145,146,148,149,150,152,155,156,157,161,162,163,164,166,168,170,172,175,181,182,183,185,186,190],ambigu:9,america:[81,159,182],american:[159,164,172],amet:90,amex:164,among:[60,147,157],amount:[39,52,54,68,77,142,147,152,155,158,164],amount_paid:52,amp:92,ampersand:[92,160,164],analysi:[21,46],analyz:[87,93,108,146,186],anchor:[73,91,161,162,164,190],anchor_popup:91,angl:152,angri:84,ani:[3,8,10,20,29,30,32,35,36,39,40,41,42,43,45,50,51,52,54,58,59,61,62,64,65,68,69,70,71,72,73,75,77,78,79,81,82,83,87,90,91,93,94,95,96,98,106,108,111,112,113,115,116,117,120,121,123,134,141,142,143,146,147,148,149,150,151,152,154,155,156,157,158,159,161,162,164,165,166,168,170,172,173,174,175,176,177,178,179,180,181,182,184,185,186,188,189,190,192,193,194,195],anim:32,anniversari:159,annoi:84,announc:141,anonym:[52,102],anoth:[4,7,30,32,36,42,51,52,54,56,58,75,77,93,94,108,125,148,149,157,158,159,161,162,163,164,168,169,170,178,181],another_field:56,another_nam:157,anotherclassmethod:186,anotherexampl:162,answer:[32,37,90],any_in_arrai:73,anybodi:157,anymor:[28,166],anyon:[29,102,107,162],anyth:[41,44,70,71,83,96,102,106,146,155,158,161,164,166,178,195],anywher:[30,36,59,68,69,73,94,150,164],apach:[93,109,193],apache2:[82,108],api:[2,3,6,8,9,11,15,16,20,26,41,69,70,75,93,95,101,102,103,119,147,155,156,158,171,182,186,190],api_respons:[11,12],apiauth:95,apibot:8,apiprep:95,apiresponsetrait:11,app:[1,4,5,6,7,8,9,10,11,12,13,17,20,28,29,30,31,32,35,36,37,39,41,44,58,59,61,62,64,65,68,69,70,72,73,75,76,77,80,84,87,89,90,91,94,95,96,100,101,102,103,104,106,107,109,111,113,114,116,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,134,135,137,139,145,146,147,148,149,150,151,152,154,155,156,157,158,161,162,163,164,166,168,170,172,173,175,176,177,178,180,182,183,184,185,186,189,192,193,194],app_cspen:70,app_forceglobalsecurerequest:70,app_namespac:[31,35,58,77,155],app_timezon:[69,166],appath:155,appconfig:36,appdirectori:76,appear:[30,51,68,90,102,160,164,184,190],append:[31,44,58,69,83,90,91,98,134,148,164,168,173,180],appendbodi:[96,98],appendhead:[96,98,173],appfiltershoneypot:4,appinfo:30,appl:[32,109,172],appli:[16,19,23,36,51,80,81,95,96,98,100,115,116,147,152,157,164,168,173,174,176,178],applic:[3,4,5,6,13,17,29,30,35,37,38,39,40,41,44,52,58,67,69,70,71,72,73,74,75,77,84,91,93,94,95,96,99,100,101,102,105,108,111,113,114,116,117,120,122,123,126,130,131,133,134,137,139,142,144,145,147,148,151,154,155,157,158,159,162,164,166,168,170,172,173,176,177,178,179,181,182,185,186,187,190,192,195],applicationconfigautoload:4,apppath:[30,35,41,58,69,71,77,82,150,155,195],approach:[77,78,102,113,156,164],appropri:[6,32,37,48,52,64,70,72,87,98,105,113,121,149,151,152,155,157,161,162,164,166,168,170,172,173,179,185,194,195],approv:156,appstart:[6,7,11,105,107,193],apptimezon:182,april:[8,159,166],aptli:[150,161],arbitrari:[44,51],architectur:[38,40,101,193],archiv:[148,177,194],arcu:90,area:[13,39,95,102],aren:[70,109],arg:[28,69,78,90,91,108,174,189],argument:[1,9,10,14,16,29,30,32,33,41,52,65,69,78,82,90,91,96,102,105,110,146,149,150,154,158,173,177,178,193,195],aria:154,aris:165,around:[36,45,51,67,77,90,145,168],arrai:[2,4,6,9,10,11,14,16,17,18,20,23,24,30,31,32,33,35,36,44,45,50,51,52,56,58,61,65,69,73,75,77,80,82,83,84,85,89,90,91,93,94,95,96,98,100,101,103,116,117,124,127,129,130,131,132,133,134,135,136,137,138,145,146,147,148,149,150,151,152,154,155,156,157,158,162,163,168,170,173,174,175,176,178,179,180,181,183,184,185,186,190,194,195],array_deep_search:79,array_filt:164,array_flatten_with_dot:79,array_help:[4,73],array_item:157,array_key_exist:164,array_map:32,array_pop:73,array_sort_by_multiple_kei:79,arrayhandl:[10,22,157],arraytoflatten:79,articl:[29,37,78,173,194],asarrai:178,asc:[52,154,168],ascend:36,ascii:[69,90,146],ascii_to_ent:90,ask:[32,36,37,58,170,173,195],aspect:[51,93,152,181,189],assembl:52,assert:[3,20,183,186],assertcloseenough:189,assertcloseenoughstr:189,assertcooki:190,assertcookieexpir:190,assertcookiemiss:190,assertdontse:190,assertdontseeel:190,assertequ:[189,190],asserteventtrigg:189,assertfilt:182,assertha:188,asserthasfilt:182,asserthasvalu:188,asserthead:190,assertheaderemit:189,assertheadermiss:190,assertheadernotemit:189,assertinstanceof:182,assertisnumer:185,assertjsonexact:190,assertjsonfrag:190,assertlog:189,assertmiss:188,assertnotfilt:182,assertnothasfilt:182,assertnotok:190,assertnotredirect:190,assertok:190,assertredirect:190,assertredirectto:[20,190],assertsam:189,assertse:190,assertseeel:190,assertseeinfield:190,assertseelink:190,assertsessionha:190,assertsessionmiss:190,assertsessionmissin:190,assertstatu:190,asserttru:[89,96,182,190],assess:113,asset:[42,78],assetpublish:155,assign:[51,52,53,56,70,73,75,148,149,154,157,158,162,166,168,173,185,186,192,194,195],assist:[71,73,80,81,82,83,84,89,90,91,92,111,113,116,117,120,185],associ:[50,52,53,56,69,70,79,80,83,84,91,94,95,96,102,147,154,157,162,164,165,168,173,174,178,179,183,195],assum:[36,44,51,52,54,56,58,73,76,108,149,151,159,162,164,166,168,172,173,178,179,194,195],asterisk:[79,95,102,164],asynchron:156,atom:145,att:91,attach:[102,125,148,151,179],attack:[25,40,69,80,91,118,147,156,157,158,164,168,173,178,179,192,194,195],attempt:[10,36,53,58,62,64,77,94,96,102,145,147,150,152,156,158,162,163,168,172,185],attemptlogin:102,attr:[5,69,178,179],attribut:[5,6,14,17,20,21,28,53,56,69,82,83,84,91,111,125,132,173,174,178,179],auctor:90,audienc:107,audio:84,aug:172,augu:90,august:[159,172],australia:81,auth:[95,102,123,134,155,170,185],authcontrol:[102,155],authdatabas:36,authent:[7,36,39,66,95,102,103,147,149,155,157,168,173,186,189],authenticationfeaturetest:189,author:[40,44,51,56,60,165,170],authpublish:155,authtrait:189,auto:[4,6,28,29,54,83,95,111,116,120,152,157,158,166,168,173,174,175,192],auto_incr:[56,58,130,194],auto_link:91,auto_typographi:178,autoclear:148,autolaodertest:5,autoload:[2,4,5,6,8,9,10,11,13,18,20,28,30,31,36,38,41,53,58,59,64,73,75,76,94,103,111,112,113,121,143,150,155,164,175,180,184],autoloadconfig:[2,3,4,5,9,77],autoloadertest:6,autolod:76,autom:1,automat:[16,17,30,32,35,41,42,43,44,46,47,51,52,53,54,56,58,64,69,70,71,73,75,77,83,91,93,94,95,96,100,102,105,107,108,121,131,135,148,154,156,157,159,164,166,168,170,172,173,174,177,181,184,185],autononc:[28,173],autorout:13,autotypographi:160,avail:[16,20,28,30,32,36,41,50,51,52,53,58,61,62,65,69,71,72,73,75,77,93,94,96,98,102,108,111,113,116,117,120,121,136,142,143,145,146,147,148,152,155,156,157,158,162,163,166,170,172,173,178,183,194],avatar:[161,164,185],averag:52,avg:52,avoid:[4,37,83,96,148,164,168,173,178,182],awai:[146,168],awar:[53,87,96,113,154,159,161,164,168,179,190,194],awesom:195,awkwardencryptedfilenam:173,axi:152,axio:67,babi:168,back:[9,32,35,36,37,39,54,58,69,90,95,102,146,147,156,164,166,168,170,172,173,183,185,186,189,190,192,194],backend:[70,145,154,155],background:[8,32,37,90,152,164,178,179],backslash:[8,77,79,102],backtick:51,backtrac:[24,184,193],backup:[10,29],backuphandl:145,backward:[17,53,58,102,116,121],bad:[25,80,90,95,118,155],badfunctioncallexcept:87,badmethodcallexcept:173,balanc:52,ban:154,banana:[32,172,189],bank:164,bar:[30,32,33,55,65,76,79,84,93,95,96,133,147,154,162,164,166,178,179,182,184,189,190],barbaz:79,bare:31,barrier:32,base64:[84,149,164,166],base64_decod:166,base64_encod:[149,166],base:[2,8,11,17,21,22,23,28,29,32,37,39,40,43,47,52,53,54,56,58,59,61,64,69,71,73,75,78,81,82,83,87,90,91,93,94,95,96,101,102,105,108,115,121,123,141,148,149,150,152,154,156,157,158,159,161,162,164,166,168,170,172,173,174,177,178,179,183,185,190,192,194],base_dir:70,base_url:[91,132],basebuild:[2,3,4,5,6,7,8,9,10,11,12,13,23,24,52],basebuildertest:3,basebuld:52,basecast:166,basecollector:[9,28,184],basecommand:[2,12,17,155],baseconfig:[2,5,6,8,9,11,70,72,75,95,109,116,122,129,135,145,147,149,151,154,156,157,158,170,172,173,184,192],baseconfigtest:[6,8,9],baseconnect:[2,4,6,7,8,9,10,12,14,20,45,113],baseconnectiontest:12,basecontrol:[8,11,31,61,94,102,111,113,121,123,127,161,172,177,192,194,195],basefactori:36,basehandl:[4,6,9,11,12,23,64,145],basemodel:20,basemodul:77,basenam:[36,150,155],basepath:[4,5,122,130,134,183],basepreparedqueri:2,basequerytest:[7,9],baseresult:[2,4,9,10,53,113],baseroutecollect:64,baseservic:[2,4,6,17,41,64,111],baseuri:147,baseurl:[5,7,69,91,96,108,162,184],baseutil:[2,3,9],baseview:[176,178],bash:32,basi:[68,168,173,189],basic11:84,basic:[11,30,31,37,39,42,52,54,71,84,90,102,107,113,124,131,143,147,148,150,155,157,158,159,164,168,178,181,185,191,193,194,195],bat:15,batch:[13,23,52,58,148,154],batch_siz:52,baz:[30,65,79,95,96,147,162,164,178,184,189],bcc:[125,148],bccbatchmod:148,bccbatchsiz:148,bcit:4,bcp:172,bdb:54,bea1dd:6,bear:156,becam:143,becaus:[4,20,23,24,25,35,42,51,52,53,54,56,67,77,83,91,94,95,102,104,108,116,131,146,148,154,155,156,157,158,164,170,172,173,178,182,183,186,191,192,194,195],becom:[20,39,67,73,77,91,98,102,106,111,113,128,148,156,172,173,174,195],beef:[4,8,10,12,13],been:[1,6,7,8,10,15,17,20,23,24,28,30,32,36,37,41,46,52,53,56,58,65,66,69,70,73,77,81,91,98,101,102,111,113,116,120,121,142,144,147,149,158,161,168,170,172,173,174,178,179,180,181,182,184,189,194],beep:[32,90],befor:[10,13,16,32,36,39,40,42,45,50,51,52,56,62,64,65,68,70,72,73,76,90,101,102,104,108,110,121,124,131,135,139,146,147,149,151,152,154,156,157,158,159,164,168,170,173,178,180,181,182,183,185,189,192,193,194,195],beforedelet:168,beforefind:168,beforehand:162,begin:[35,68,82,83,90,108,166,173,193],behav:[30,33,189],behavior:[20,28,82,91,94,102,116,146,147,155,156,157,178,189],behaviour:148,behind:[37,38,113,152,154,161,181],being:[16,29,30,35,37,43,52,65,68,69,70,72,75,77,83,91,94,95,99,102,105,111,113,114,115,116,117,120,142,145,146,150,152,154,157,158,159,160,162,164,168,173,174,176,177,181,184],believ:157,belingadon142:185,belong:[6,164],below:[22,36,39,41,44,45,47,52,53,54,56,83,90,96,102,105,113,115,121,123,129,130,131,132,144,148,149,150,151,154,157,164,168,173,174,179,180,182,194],benchmark:[65,68,69,82,103,145,187],benefici:[53,102],benefit:[51,52,54,81,83,102,164,168],berlin:70,best:[36,37,51,70,72,77,91,96,98,152,157,158,168,173,181,182],beta:[0,6,104],better:[1,8,10,14,16,22,64,73,109,113,115,166,170,172,175,184],between:[23,36,39,43,44,52,54,58,68,69,70,71,77,86,90,102,105,143,147,148,152,159,162,164,168,170,172,173,177,178,180,181,185,189],beyond:[52,184],bgcolor:179,bia:157,bigger:15,biggest:159,bill:90,billion:87,bimagehandlerinterfac:11,bin2hex:149,bin:[108,168,189],binari:[17,84,149],bind:[4,5,6,23,55,82,116,166],bionic64:108,birthdai:159,bit:[51,101,149,157,166,168,193],bitnami:108,black:32,blank:[32,58,91,148,173],blaze:157,bleed:180,blindli:91,blob:157,block:[3,6,7,32,72,78,148,149,157,164,169,173,174,178],blocksiz:149,blog:[31,36,39,41,52,58,59,73,77,91,95,102,124,130,134,138,168,175,177,178,180],blog_descript:[58,130],blog_entri:178,blog_head:[138,178],blog_help:73,blog_id:[56,58,130],blog_id_site_id:56,blog_id_uri:56,blog_label:56,blog_nam:56,blog_name_blog_label:56,blog_templ:[138,178],blog_titl:[58,130,138,178],blog_view:180,bloglib:77,blogmodel:175,blue:[32,84,128,152,164,174],bmo:164,bmoabm:164,bmp:155,bobbi:185,bobbyus:185,bodi:[52,53,96,98,111,113,135,137,139,148,155,161,164,170,173,177,178,179,180,182,189,190,192,194,195],boldlist:84,book:172,bool:[45,52,53,56,58,64,69,79,80,82,83,84,86,90,91,92,96,98,100,111,113,116,145,146,148,150,152,155,158,160,163,164,166,173,174],boost:173,boot:[3,12,111,150,184],bootstrap:[4,5,6,8,11,40,77,155,182],bootstrapfcpathtest:4,bootstrappublish:155,border:174,borrow:141,boss:[52,166,178,179],bot:[91,151,163],both:[7,28,35,36,37,49,52,58,65,70,72,76,77,82,91,93,95,96,98,100,101,108,113,121,146,152,155,157,159,161,164,166,168,170,172,178,182,184,189,195],bottom:[152,193,195],bound:[51,102],box:[1,83,108,149,157,168,170],brace:[14,75,169,178,193],bracket:[164,166,168,178],bradley72:185,branch:[1,6,105],brand:[130,163],breach:156,brief:[40,161],bring:[22,58,115,189,193],british:[141,165],broad:15,broken:[32,148,164],brought:16,brows:[73,94,157,163],browsabl:155,browser:[15,17,20,23,29,37,40,42,65,68,69,71,75,80,84,90,91,93,94,96,98,99,100,102,108,109,116,146,157,163,173,192,193,194,195],brute:158,bsc:178,bucket:[10,158],buffer:[4,40,53,148,149,189],bug:[4,6,7,11,12,13,15,16,17,18,19,20,21,91,110,111,113,116,117,120],bugfix:[4,10,13,14],build:[3,9,15,29,30,44,52,66,72,76,82,91,94,102,105,108,139,142,150,168,170,178,179],builder:[2,3,6,7,8,11,12,13,14,22,44,48,49,51,59,102,103,115,124,146,154,194],builderbas:11,built:[40,69,71,83,96,102,107,108,109,121,131,132,147,149,154,159,168,173,183,189,193,195],bunch:185,bundl:[2,37,95,105,108,147,149,151,155,157,184],busi:[14,35,39,40,42,164,168],button:[69,83,96,107,161],buzz:[79,96],bypass:[27,40,58,61,94,95,102,116,156,158,166,168,188,192],bytea:157,cach:[2,4,7,8,10,11,12,16,17,21,23,28,29,30,37,42,69,70,74,95,96,103,108,111,113,114,116,121,143,153,157,158,160,168,176,177,178,179,184,189],cache_dir:70,cache_item_id:145,cache_nam:[178,179,180],cacheexcept:4,cachefactori:[2,10,188],cachefactorytest:8,cacheinterfac:[2,20],cachenam:69,cachepag:68,cafe:194,caffein:194,calcul:[13,30,152,159,181],calendar:121,calibri:152,call:[3,4,14,16,17,24,29,32,35,36,37,39,41,49,50,51,52,53,56,58,59,65,69,72,73,75,77,83,90,91,96,102,103,131,141,146,147,148,149,150,152,154,155,156,157,158,159,161,162,164,166,168,170,173,174,175,176,177,178,179,180,181,183,185,186,188,189,192,193,194,195],callabl:[8,65,137,175,178,182],callback:[8,16,102,137,145,185,189],caller:182,came:146,camel:86,camelcas:[124,128,130,133,166],camino:163,campaign:70,can:[4,7,8,10,14,15,16,20,23,24,28,29,30,31,32,34,35,36,37,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,58,59,61,64,65,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,87,90,91,93,94,95,96,98,99,100,101,102,104,105,106,107,108,109,121,124,127,130,131,132,133,134,138,139,140,142,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,166,168,169,170,172,173,174,175,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195],canada:164,cancel:52,candid:70,cannot:[4,10,32,36,44,51,56,62,70,72,73,77,82,87,93,94,95,98,99,102,146,147,154,157,162,164,170,172,182,194,195],capabl:[77,149,154,164,172],capac:158,capit:[4,86,94,123,178,195],caption:174,captur:[4,30,95,150,189],card:[4,40,164],care:[45,51,77,95,145,155,157,164,166,168,173,178,185,192],career:166,cart:[121,146],cartebl:164,carteblanch:164,cascad:[56,164],cascadedata:178,cast:[3,4,5,6,9,16,20,51,96,102,116,162,178],casta:20,castasjson:20,castbase64:166,castexcept:3,casthandl:166,catalog:[102,134],categori:[30,42,73,175,182],catgif:155,caught:[72,155],caus:[4,54,58,65,71,77,82,83,90,91,102,147,148,155,157,168,173,180,184,189,195],caveat:157,cbe4b1d:9,cccxxiv:87,cdn:173,cdt:172,ceil:178,cell:[2,69,103,139,171,174],cell_alt_end:174,cell_alt_start:174,cell_end:174,cell_start:174,cellpad:174,cellspac:174,censor:90,center:[77,152,195],central:[41,59,90,172],cert:8,certain:[11,16,32,36,39,52,94,95,102,142,146,150,152,158,168,189],certif:[44,147],cgi:[21,108],chain:[16,56,98,148,152,154,155,168,174,178],chainabl:179,challeng:[93,173],chanc:[35,157,172],chang:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,21,22,32,35,36,41,42,44,45,51,53,56,58,61,68,70,72,73,76,77,82,83,86,91,95,102,103,104,105,106,108,109,110,114,115,121,143,146,147,149,151,152,154,155,157,162,163,164,173,180,181,183,185,193],changeabl:173,changelog:[1,3,4,5,6,7,11,15,20,23,24,25,28,117],channel:[148,156],chapter:37,charact:[4,16,17,23,30,32,40,44,51,56,69,82,83,90,91,92,94,95,98,102,113,145,146,148,149,157,160,162,164,173,178,192],character_limit:90,charg:165,charlim:90,charset:[37,44,45,56,83,93,96,148,173],chdir:3,cheat:[40,156],check:[3,4,6,7,8,9,10,11,12,14,17,22,29,30,31,37,40,41,48,56,58,69,80,82,83,86,91,94,96,99,100,105,106,109,111,113,117,127,145,147,150,155,156,157,158,159,161,162,168,173,185,188,189,191,192,193,195],checkbox:[83,190],checkcach:168,checkexist:82,checklist:121,chicago:[159,182],child:[72,79,150,155,164,177,185],china:164,chmod:157,choic:[31,32,84,90,93,145,157,166,168,173,189,193,194],choos:[30,45,52,54,58,75,95,98,102,104,113,152,157,160,164,168,179],chose:[58,157],chosen:[54,145,157,178,179],chown:157,chrome:[37,75],chromelogg:[2,75],chunk:[8,69,168,178],ci3:[8,11,14,121,122,123,124,130,131,132,136,137,138,139],ci3_:51,ci4:[8,9,11,44,121,122,124,127,129,130,131,132,134,135,137,139,164],ci4_:51,ci4tutori:194,ci_control:[121,123,127,137],ci_debug:184,ci_environ:[7,9,70,71,72,100,193],ci_migr:130,ci_model:[121,131],ci_sess:[31,58,157,190],ci_sessions_timestamp:157,ci_vers:[30,140],cibc:164,cid:148,cidatabasetestcas:[2,11,12,20,113],cidatabaseunittestcas:12,cipher:[40,44,149],ciphertext:[126,149],circl:84,circumst:[53,161,173],citeststreamfilt:[2,4,22,189],cithem:7,citi:[70,168,178],citizen:166,ciunittest:5,ciunittestcas:[2,3,4,10,89,96,113,182,183,185,186,189],claim:[143,165],clarifi:[41,164,168],clariti:[101,166,194],class_nam:53,classic:98,classmap:[3,9,28],classmat:91,classnam:[23,58,77,94,102],classnotfound:4,claus:[12,52,56],clean:[3,4,5,6,11,13,28,145,168,178,179,180,188,189,194],clean_path:28,cleanclon:24,cleanfilenam:28,cleanpath:28,cleanup:[6,9,13,14,28,72],clear:[5,16,30,32,49,52,125,142,146,147,148,157,158,166,174,180,193],clearattach:148,clearer:[41,181,186],clearli:173,cli:[1,2,3,4,5,6,7,8,10,11,12,15,16,21,27,28,34,59,77,95,96,102,103,108,111,130,155,157,189],cli_command:[5,8],cli_librari:8,cli_request:3,click:[73,83,91,96,161,193],clickabl:148,client:[17,36,37,40,42,44,93,95,96,98,145,147,148,149,161,164,170,173,182,194],clientextens:11,clirequest:[2,3,9,10,34,64,103],clirequesttest:3,clitest:[4,8],clone:[14,105,107],close:[8,10,11,14,15,30,51,52,83,90,157,169,177,178,182,195],closer:[6,39,68],closest:106,closur:[10,28,51,52,55,65,69,145,168,178,181,182],club:164,cmd:29,coalesc:9,code:[4,6,7,8,9,11,13,15,16,20,21,22,28,29,30,35,36,37,39,40,41,42,45,50,51,52,54,56,58,59,63,64,65,67,69,70,72,73,74,79,80,81,82,83,84,86,87,88,89,90,92,94,95,102,103,105,107,108,110,111,114,115,117,121,141,142,143,145,147,152,154,155,156,157,161,164,166,168,169,170,172,173,175,178,179,180,181,182,184,185,188,189,190,191,192,193,194,195],codebas:[107,108],codec:84,codeignit:[2,3,4,5,8,10,11,13,14,17,18,20,22,23,28,29,30,31,32,34,35,36,37,39,41,42,43,44,45,46,49,51,52,53,55,56,57,58,59,60,61,62,64,65,68,69,71,72,73,74,75,77,81,82,84,88,89,91,93,94,95,96,98,99,100,101,102,103,104,105,106,108,110,111,112,113,115,116,117,120,121,140,141,143,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],codeigniter3:104,codeigniter4:[0,1,3,4,5,6,8,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,31,42,60,63,76,95,104,107,108,117,118,119,120,121,143,144,151,155,172,192,193],codeigniter4project:107,codeigniterconfigservic:14,codeignitercontrol:10,codeigniterdatabaseforg:56,codeigniterdebugtim:69,codeigniterent:20,codeigniterentityent:20,codeigniterimagesimageexcept:152,codeigniterload:3,codeignitertest:[4,5,10],coffe:194,col:[83,192],collabor:105,collat:[44,56],collect:[10,42,46,51,58,70,72,73,85,98,103,146,153,162,164,181,182,184,186],collector:[2,5,6,8,9,10,13,28,46,157],collid:189,collis:[30,82,155,173],colon:[30,44,51,102,157,164,169,193],color:[8,15,16,28,29,30,83,84,90,128,152,166,174,179,184],colspan:174,columbia:[141,165],column:[4,8,12,16,32,39,50,51,52,53,58,102,116,159,164,166,168,174,177,183],column_1:56,column_2:56,column_nam:[50,56,168],column_to_drop:56,columnlimit:174,com:[5,29,37,51,59,70,78,80,83,84,90,91,94,96,98,102,107,108,119,122,125,145,147,148,154,155,157,161,162,164,166,168,172,173,178,180,182,183,185,186,193],combin:[52,53,69,83,95,96,102,147,159,164,168,173,179],come:[30,31,33,35,39,40,41,42,49,57,70,71,75,77,105,108,121,145,151,155,157,166,167,168,170,178,182,189,193,195],comfort:[77,121],comma:[56,69,82,101,148,157,164,166,175,178],command:[2,3,4,6,8,9,10,11,12,14,15,16,17,27,28,32,33,52,64,69,73,76,77,95,96,103,105,108,109,130,142,145,148,150,155,157,168,170,172,178,180,185,189,193,194,195],command_on:30,command_two:30,commandclasstest:12,commandrunn:[2,3,5,11,28,102],commandrunnertest:6,commandstest:[3,6],comment:[3,4,6,8,14,52,73,91,94,109,111,113,116,117,120,124,184,193],commit:[4,54,193],common:[3,4,5,6,7,8,10,11,12,13,36,39,54,66,67,75,76,77,78,83,87,93,95,98,100,101,102,103,108,109,145,147,154,155,157,161,163,164,166,170,178,185,189,192,193],common_funct:[3,5,8,13],commonfunctionssendtest:4,commonfunctionstest:[4,5,13],commonli:[32,142,145,147,159,163,166,168],commun:[15,40,44,60,63,141,147,148],compani:[30,39,77,185],companion:90,compar:[3,52,82,91,105,121,157],comparison:[52,159,178],compat:[4,17,22,23,35,41,60,69,75,77,81,102,111,113,116,121,143,147,178,189],compil:[51,52,184],compiledinsert:168,complain:56,complement:47,complet:[1,4,20,23,24,25,28,32,40,47,54,65,72,75,84,90,96,113,142,145,147,148,150,154,157,158,163,166,174,183,191,192],complex:[1,32,36,37,52,79,84,93,95,142,145,162,164,166,172,173],compli:148,complianc:[103,111],complic:[157,186],compon:[31,36,58,75,94,121,131,143,155,157,171,182,184,188,189],compos:[3,4,5,6,7,9,14,28,31,42,58,60,75,76,103,104,106,111,113,117,118,119,120,121,145,155,172,193],composer_path:76,composerscript:[4,5,8],composit:[7,23],compound:[50,52],comprehens:[149,164,191],compress:[16,44,45,93,96,98,156],compromis:[40,185],comput:[29,52,173],con:108,concaten:181,concept:[4,5,6,8,10,12,37,38,121,143,157,166,194],concern:[99,146,156,157,159,164],concis:36,conclud:[157,194],conclus:[103,193],concret:36,cond:52,condit:[11,14,51,52,71,75,154,157,165,172,185,192],condition:148,conf:[71,108,109],confer:14,config:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,20,21,23,28,29,35,41,42,44,45,46,47,51,52,54,56,58,59,61,64,65,68,69,70,71,72,73,75,76,80,81,82,83,84,90,91,93,94,95,96,102,105,108,109,111,113,114,116,117,120,121,122,124,125,126,127,129,132,134,135,145,146,149,150,151,152,154,155,157,158,160,162,163,166,170,172,173,176,178,179,180,181,182,183,184,185,188,189,190,192,194,195],configapp:182,configcollect:150,configcooki:146,configdatabas:12,configemail:14,configexcept:[6,11],configservic:[5,111],configtest:[6,8],configur:[3,5,6,8,13,20,28,40,41,42,45,47,49,51,56,58,68,69,74,76,77,78,82,84,91,94,96,99,103,104,109,113,120,121,134,140,142,146,148,151,156,157,175,176,184,185,192,194,195],confirm:[32,58,137,164],conflict:[36,58,106,164,168,170],conform:4,confus:[4,6,39,178],congu:90,conjunct:[69,173],conn:[36,69],connect:[2,4,5,6,7,8,9,10,12,22,28,36,43,44,47,49,50,51,52,53,56,58,59,72,82,96,103,113,115,131,145,147,148,157,165,183,184],connect_timeout:44,connectioninterfac:[2,52,69,113,168],connecttest:[4,6],connid:43,connor:90,consid:[40,45,51,52,70,83,94,101,102,146,149,150,157,160,174,178,185,190],consider:[121,152],consist:[5,30,35,37,58,60,90,113,157,178,186],consol:[2,15,20,75,147,173],consoletest:10,consolid:[20,113,189],constant:[5,12,14,28,35,41,42,65,74,76,77,81,94,100,103,108,111,140,146,149,152,158,184],constantli:41,constrainprefix:12,constraint:[4,40,56,58,130],constraint_nam:50,construct:[21,37,78,146,178,184,193],constructor:[36,41,44,45,61,64,69,73,111,123,146,147,150,155,159,162,166,168,174,175,178,179,185],consum:41,consumpt:53,cont:148,contact:[24,91,117,164,173,182,186],contain:[15,20,28,30,31,35,37,41,42,44,45,46,47,50,51,52,53,55,56,59,69,70,71,73,75,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,102,121,137,147,148,152,154,155,156,157,160,162,163,164,168,170,172,173,174,177,178,184,186,189,190,192,193,195],contant:4,content:[9,11,15,16,28,37,39,40,42,52,67,69,73,82,83,84,90,92,95,97,103,106,124,139,147,148,155,156,157,160,168,170,177,178,179,180,184,185,186,190,191,194,195],content_typ:[96,186],contentsecuritypolici:[2,5,6,28,64,111,113,173],contentsecuritypolicytest:[5,6,8],contenttyp:96,context:[25,28,40,69,80,111,118,146,157,168,173,178,194],continu:[16,32,162,164,166,180,184,192,193],contract:165,contrast:54,contribut:[3,6,8,11,12,66,103,107,113],contributor:107,contriv:166,control:[3,4,7,8,10,11,12,14,15,17,29,30,32,35,36,38,41,42,52,58,59,64,65,66,68,69,70,73,76,82,83,84,91,96,103,104,108,110,111,113,116,127,132,134,137,138,140,145,146,147,151,152,154,155,156,157,158,159,162,163,170,172,173,175,177,178,179,180,186,187,189,190,191,192,193,194],controller_load:69,controllerrespons:[7,20,113],controllertest:[7,8,11,14,20,113],controllertestertest:8,controllertesttrait:[20,113,182],conveni:[30,33,45,58,69,73,84,94,96,101,102,150,154,164,166,168,179,182,189],convent:[30,33,37,94,101,102,107,121,131,143,157,172,178,179],convers:[71,121,164,166],convert:[7,11,13,17,69,83,87,88,90,91,92,94,96,98,99,121,144,159,160,164,166,168,173,178],convert_accented_charact:90,cooki:[2,3,4,11,16,17,20,21,22,28,69,73,85,96,100,103,111,113,149,153,155,156,157,173,189],cookie_help:[3,73],cookie_prefix:96,cookieconfig:146,cookiedomain:157,cookieexcept:[20,69,146],cookiehelpertest:3,cookiehttponli:157,cookienam:17,cookiepath:157,cookieprefix:[80,157],cookiesamesit:157,cookiesav:147,cookiesecur:157,cookiestor:[20,22,24,69,146],cool:183,cop:180,copi:[12,15,16,59,69,70,82,90,96,105,106,108,121,122,138,149,152,155,165,172,193,195],copypast:14,copyright:[6,13,152,165],core:[14,32,35,39,41,61,62,65,66,75,77,103,111,121,142,166,185,194],core_class:[4,8],corner:152,correct:[4,5,7,8,9,10,12,13,14,15,25,28,36,37,40,44,48,61,70,80,95,96,99,102,118,152,154,160,161,162,164,168,172,183,184,186,189,193],correctli:[7,16,30,90,102,143,159,162,166,173,184,188,189,195],correl:68,correspond:[36,70,75,90,94,96,101,102,105,107,117,118,119,120,121,140,152,157,161,164,172,178,180,185,194],cosmet:[22,115],cost:158,could:[16,29,30,32,36,40,42,43,44,46,52,56,58,70,73,76,84,95,96,98,102,108,113,116,127,128,142,154,156,157,158,161,164,166,172,173,175,177,178,179,180,182,185,189,192,194],couldn:145,count:[4,13,28,30,32,47,53,86,90,148,150,154,157,162,174],count_al:[124,132],countabl:[86,150],countal:[3,48,52,124],countallresult:[6,11,48,52],countdown:32,counter:65,countri:[51,52,59,70,81],countryseed:59,counttest:12,coupl:[30,39,109,164,173,182,183,193,194],cours:[42,77,83,157,161],cover:[17,111,113,116,117,120,143,191],coverag:[6,8,16,108],cra:90,crash:[14,156],cratemigr:4,crazi:52,creat:[4,6,7,13,15,16,17,29,31,32,35,36,39,41,42,45,46,51,52,61,62,65,66,67,69,71,72,73,75,76,77,82,83,84,89,90,91,94,98,101,102,103,105,122,130,132,134,143,147,148,149,150,152,155,157,170,173,174,178,179,182,185,189,190,193,195],create_link:132,create_news_item:[4,6],create_t:130,createcisessionst:58,created_at:[8,166,168,178,185],createdatabas:56,createfakeus:189,createfromformat:[53,173],createfrominst:20,createkei:149,createmigr:[2,4,11],createsettingst:58,createt:[56,58,130],createuristr:162,createus:170,creation:[6,31,41,56,146,152],creativ:142,credenti:[40,70,124,170,183],credit:[40,103,164],creditcardrul:[2,4,164],crisp:32,criteria:[102,164,170,183],critic:[14,58,69,72,75],crlf:148,cron:[16,29,52,102],cronjob:[30,168],cross:[6,27,84,111,146,179],crucial:77,crud:[101,131,168],cruft:4,crypto:90,cryptograph:[149,150],cryptographi:149,csp:[6,14,28,69],csp_script_nonc:[28,69,173,178],csp_style_nonc:[28,69,173,178],cspenabl:[70,173],csrf:[6,11,12,13,17,23,27,69,83,94,95,102,111,135,151],csrf_field:[5,6,69,83,135,156,192],csrf_hash:[69,156],csrf_header:[69,156],csrf_id:83,csrf_meta:[69,156],csrf_token:[69,156],csrfcookienam:17,csrfexpir:17,csrfheadernam:[13,17],csrfprotect:156,csrfredirect:17,csrfregener:17,csrfsamesit:17,csrftest:6,csrftokennam:17,csrfverifi:17,css:[3,5,7,42,69,84,90,91,111,113,150,154,155,173,178,179],csv:[53,150,173],ctr:149,cubird:56,cubrid:144,cumbersom:[54,150],cumul:56,curabitur:90,curl:[12,13,29,104,147,155],curl_cookiefil:147,curl_cookiejar:147,curl_log:147,curlfil:147,curli:[14,75,160,164,168],curlopt_verbos:147,curlrequest:[2,3,4,9,10,12,13,16,21,23,100,103,144,153,155,189],curlrequesttest:[3,4,10,12,13],currenc:[87,172,178],current:[3,7,10,16,17,24,28,30,32,35,40,43,44,46,50,51,52,53,56,58,60,65,68,69,72,75,77,81,82,83,91,93,95,96,98,100,102,105,107,140,144,146,147,149,150,154,155,157,159,161,163,164,166,168,173,175,183,184,185,186,189,194],current_timestamp:157,current_url:[14,20,91,113,162,178],currentag:163,currentsect:20,currstep:32,cursor:32,custom:[9,15,16,20,28,34,35,41,49,52,71,77,80,81,94,95,100,103,108,122,132,145,147,148,155,163,168,170,172,173,175,176,180,182,185,186,194,195],customclass:[70,122],customiz:44,customlog:108,customset:174,cut:53,cyan:32,cycl:[68,90,148,186],d08b68:8,d2b377:6,d7dfc5:5,dai:[65,69,75,155,159,174,178,191],daili:[109,155],daily_photo:155,dailyphoto:155,damag:[149,165],danger:[162,164,168],dankort:164,dark:1,dark_blu:32,dark_grai:32,darn:90,darth:[59,168],dash:[16,33,58,86,91,92,98,160,164,192],dasher:86,data1:178,data:[6,10,13,14,16,17,18,23,24,36,39,42,44,46,47,50,51,53,58,59,61,65,69,78,79,82,83,84,87,89,90,92,93,95,96,98,100,101,103,111,116,121,127,130,131,132,136,137,138,139,145,146,147,148,149,151,154,161,162,164,170,172,173,174,175,181,183,187,188,192,194,195],data_to_cach:145,databas:[2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,22,24,28,30,31,36,39,40,42,43,52,53,54,55,65,69,72,75,77,82,89,90,102,104,108,111,115,121,130,131,140,144,145,155,157,159,164,166,167,174,178,179,180,184,185,186,187,189,192,193],database2_nam:45,database_nam:44,databasebaseresult:4,databasebaseutil:3,databaseexcept:7,databasehandl:[4,5,13,22],databasetestcas:113,databasetesttrait:[20,113,182,183,186,189],dataexcept:168,datamap:166,dataseek:53,datatyp:56,date:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,31,37,47,52,58,69,73,82,85,103,104,111,124,153,155,164,168,172,173,178,184,185],date_help:[7,8,10,81],date_modifi:178,dateformat:10,datehelpertest:4,datestr:166,datetim:[9,10,53,146,159,166,168,173],datetimecast:20,datetimeinterfac:[20,146],datetimezon:[81,146,159],daylight:[159,172],dayofweek:159,dayofyear:159,db1:45,db2:45,db_connect:[11,36,45,51,124,168],db_name:56,dbcollat:[44,45,56],dbdebug:[20,44,45,113],dbdriver:[44,45,183,194],dbforg:130,dbgroup:[4,5,6,13,31,58,168],dbm:[56,113],dbmgmt:[4,7,8,9,10,11,12,13],dbmgt:5,dbname:[44,56],dbprefix:[12,44,45,51],dbqueri:[46,65],dbutilstest:[9,10],de_d:87,deal:[73,149,165,192],debub:181,debug:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,23,24,28,41,46,51,54,64,69,70,75,103,108,109,111,113,140,148,182,187],debugbar:[9,14],debugtoolbar:[6,11,95],debugtoolbartest:6,dec:5,decad:69,decid:[41,42,95,181],decim:[8,87,164,178,181],decis:148,declar:[3,8,17,53,56,61,64,70,82,84,94,110,113,164],decod:156,decor:[28,103,171],decrement:[7,52,145,185],decrypt:[126,149],dedic:[31,56,59,71],deem:33,deeper:79,default_ful:[4,154],default_head:4,default_method:94,default_simpl:[4,154],defaultfix:9,defaultformatt:185,defaultgroup:[5,44,45,58],defaultlocal:[129,172,185],defeat:84,defin:[3,4,5,6,12,13,17,23,30,31,35,42,45,53,56,58,60,61,62,67,69,70,72,73,76,77,78,83,84,90,93,95,108,122,130,134,146,150,154,155,161,162,164,166,170,172,174,177,178,179,181,183,184,189,194,195],definit:[4,8,20,29,50,56,83,94,102,110,116,123,130,155,172,173,195],defint:15,deflat:96,degre:[152,178],deject:84,deldir:82,deleg:195,delet:[6,9,10,11,15,23,37,48,51,53,56,80,82,95,96,99,101,102,116,145,146,147,156,157,161,170,173,185,186],delete_cooki:[80,146],delete_fil:[16,82],deletecooki:[111,146,173],deleted_at:[10,166,168],deletedfield:168,deletedus:168,deletematch:145,deletetest:[6,12],delimit:[56,91,102,148,164],deliveri:174,demand:54,demo:[30,158],demonstr:[30,84,90,94,148,154,161,189,192],deni:[108,168],denot:86,depend:[6,17,20,28,36,37,41,44,51,56,58,71,72,73,90,96,100,105,107,113,116,145,147,149,157,178,179,184,185,194],deploi:[5,58,70,108,148],deploy:[70,107],deprec:[1,14,17,18,20,31,75,100,111,113,116,117,120,126,149,157],depress:84,depth:[79,82,96,174],deriv:[149,164,192],desc:[52,175],descend:96,describ:[30,32,36,37,38,39,41,47,52,69,71,75,77,79,93,94,98,101,102,105,106,108,111,147,148,149,154,164,168,172,174,178,182,183,194],descript:[30,31,32,36,40,44,56,58,75,80,102,107,146,148,155,157,164,168,170,178,179],deseri:24,design:[39,40,51,66,70,78,101,149,174,178,181,182,191],desir:[36,39,42,52,53,56,70,71,93,96,102,142,152,155,159,164,172,174,179,180],destin:[31,59,82,102,155,161,173,186,190],destroi:[16,162],detail:[1,28,29,36,39,44,47,58,69,70,72,75,77,80,94,96,100,102,145,147,149,154,157,161,162,164,168,173,178,182,185,190],detect:[21,44,58,77,79,91,96,100,155,163,177,182,189],detecturi:[22,115],determin:[10,15,32,37,39,42,48,51,52,54,58,75,83,86,91,93,94,98,102,145,147,148,150,151,152,154,158,159,162,163,164,168,170,172,183,184,185,190,192],dev:[11,108,149,189],develop:[3,7,30,31,37,39,41,44,58,59,60,70,71,72,75,102,105,106,107,109,111,113,130,141,142,155,157,161,168,170,173,178,183,184,192,193,195],developtoolbar:150,devic:163,devis:149,devkit:107,devstart:1,devuserseed:30,dgvzda:166,diacrit:13,diam:90,dictum:90,did:[29,52,75,78,94,111,116,161,164,170,180,191,192,195],didn:[5,9,23,116,157,172],die:13,dies:[72,184],diff:159,differ:[5,11,17,24,30,31,32,35,37,39,41,43,45,51,52,56,58,69,71,75,76,77,78,82,91,93,95,99,102,104,105,108,113,116,121,125,128,133,139,146,148,149,154,155,157,162,163,164,168,170,172,173,174,177,178,179,181,182,185,189,192,194],differenti:[32,71],difficult:189,dig:96,digest:[147,149],digit:[14,53,87],dignissim:90,dimens:[152,164],dimension:[84,174,178,180,190],diner:164,dinersclub:164,dinner:[90,159],dir:[82,152],dirac:84,direct:[6,10,36,42,52,78,107,108,122,130,134,149,156,161,164,166,173,177,190,195],directli:[20,30,36,40,52,56,68,90,93,96,107,111,113,131,143,145,146,150,154,155,156,157,159,161,163,164,166,168,172,173,177,178,179,180,185,188,190,194],directori:[4,5,6,12,29,30,35,39,41,44,58,59,62,69,70,73,77,78,82,88,102,105,108,123,131,145,150,154,155,156,157,164,166,168,172,177,183,189,194,195],directory_map:82,directory_mirror:[21,82],directory_nam:[121,139,180],directorydepth:82,disabl:[11,14,16,28,36,58,69,71,72,94,95,102,108,116,120,147,157,158,183,184,192],disableforeignkeycheck:58,disallow:[20,90],discard:[168,181],discov:[41,102,155,161,164],discover:77,discovercomposernamespac:28,discoveri:[6,17,36,70,111,182],discoverincompos:[28,77],discret:[73,80,173,174],discuss:[37,39,52,93,146,178],dishearten:84,disk:[145,147,161,194],disp:148,dispatch:[20,24],displai:[7,24,30,32,37,39,42,44,46,48,56,58,68,69,71,72,75,83,84,94,95,98,102,109,137,146,148,152,154,155,156,161,162,166,168,172,174,177,178,179,192,195],display404error:14,display_error:127,displi:164,disposit:148,dissert:101,dist:[5,8,9,76,105,108,111,113,155,189],distinct:52,distinguish:[70,101],distribut:[7,44,70,101,157,165,180],div:[73,83,137,154,164,168,178,179,194],dnt:96,do_upload:127,doc:[1,3,4,5,6,7,8,9,10,11,14,20,94,111,172],docblock:[8,9,20],docbot:[4,5],doctyp:[84,111,161,177,195],docu:6,document:[4,6,8,12,13,14,39,52,63,67,77,84,88,94,96,98,100,105,106,108,121,142,147,165,185,191,195],documentroot:108,doe:[23,25,28,30,32,35,37,39,41,42,45,50,51,52,53,54,60,62,64,70,72,73,75,78,79,80,82,83,84,90,93,95,96,102,109,113,118,142,143,145,146,147,148,150,152,155,157,158,159,161,162,164,166,168,177,180,181,182,183,184,185,186,188,190,194,195],doesn:[3,14,28,32,52,53,69,75,96,98,105,109,149,152,157,158,159,161,164,166,172,173,192,195],dog:86,doing:[16,45,48,52,62,64,91,152,168,180,193],dollar:[102,164],domain:[6,69,80,102,111,146,147,154,157,162,173],dompars:[7,8],domparsertest:[7,8],don:[4,6,7,13,14,24,32,35,40,42,45,51,59,71,73,77,79,87,94,95,96,99,102,105,109,116,121,123,140,145,148,149,154,156,157,158,164,166,168,173,179,181,185,192,194,195],done:[30,32,35,51,70,75,93,95,102,108,121,145,147,151,157,159,166,173,177,178,181,185,189,194,195],donec:90,donload:4,dont:8,dontse:190,dontseeel:190,dontseeindatabas:[183,185],dosendcooki:24,dot:[70,79,96,162,164],dot_array_search:[14,20,79,96],dotenv:[2,64,70],doubl:[5,7,77,83,90,92,102,156,160,166,181],down:[53,58,75,83,94,95,130,158,189,192],downcount:185,downgrad:58,download:[3,4,5,6,11,19,104,106,107,108,111,155,172,189,193,195],downloadexcept:[3,4],downloadrespons:[3,4,5,11,111],downloadresponsetest:[3,4,5,11],downsid:157,dox:4,draft:[56,143],drastic:178,drive:10,driven:63,driver:[4,7,10,28,43,44,45,48,50,51,53,56,103,108,113,116,134,143,144,149,152,153],drop:[6,10,12,18,58,75,83,126,130,149,157],drop_tabl:130,dropcolumn:56,dropdatabas:56,dropdown:[83,107,164],dropforeignkei:56,dropkei:[23,56],droptabl:[7,56,58,130],dry:101,dsn:[44,45,148],dst:159,dtd:84,dual:[95,102],duckduckgo:193,due:[17,23,52,91,111,113,114,116,117,119,120,145,147,157,170,185],dummi:[2,32,70,158,188],dump:[76,184],dupe:11,duplic:[3,4,14,79,90,155,168],durat:[51,69,94,172,178,181,184],dure:[5,6,9,10,16,30,32,40,41,46,51,59,65,69,70,102,108,147,152,157,158,161,162,166,168,170,172,173,176,178,182,183,184,186,188,189,190,193],dynam:[68,78,108,145,149,155,157,164,168,194],e21823:10,each:[17,24,28,30,31,35,36,37,39,40,41,42,44,47,50,51,52,53,54,58,69,70,73,75,76,77,78,79,81,82,83,86,90,93,94,95,98,102,107,108,121,130,134,147,148,149,150,152,154,155,157,158,161,162,163,164,166,168,169,172,173,174,178,179,180,181,182,183,185,186,189,193,194,195],earli:[62,65],earlier:[8,52,105,157,164,172,178,179,180,192,194,195],eas:[31,96,186],easi:[1,29,36,37,39,40,41,66,69,70,78,94,101,102,105,146,155,157,162,180,184,185],easier:[7,11,58,77,81,94,101,107,113,131,161,164,169,172,178],easiest:[51,154],easili:[29,30,40,41,51,59,69,70,75,78,93,95,96,98,102,104,142,146,147,154,159,162,164,166,178,181,184,194],eat:84,echo:[30,33,39,47,48,50,51,52,53,55,56,69,72,77,81,82,83,84,86,87,90,91,92,96,98,100,102,121,123,124,126,128,129,132,137,139,140,145,147,149,150,152,154,159,161,162,163,164,166,172,173,174,179,180,181],edg:[32,102],edit:[14,35,58,61,68,77,91,101,147,154,156,158,164,170,173,178,183,192],editor:[29,94,108,161,164,180],effect:[32,52,58,69,70,78,108,111,113,116,117,120,146,155,157,168,178,179],effici:[53,67,146,163],effortlessli:149,eget:90,eight:[75,174],either:[15,32,40,41,43,52,69,70,75,81,83,84,91,95,96,98,102,114,145,147,148,149,150,151,152,154,156,157,159,161,162,164,166,168,170,173,175,178,179,186,188,189,190],eke:35,eleg:168,element:[24,39,55,70,73,77,79,83,84,93,108,147,149,154,162,164,168,170,172,174,178,186,190,194,195],eleven:[90,174],elimin:[20,51,169,178,195],elips:84,ellips:[84,90],ellipsi:90,ellislab:141,els:[29,51,52,54,65,71,82,100,109,127,137,146,163,164,168,169,170,178,193,194],elseif:[163,169,178],elsewher:[31,168],elvi:194,email:[2,4,6,11,14,32,47,51,53,59,65,69,82,83,91,94,96,103,104,111,121,129,131,135,137,140,153,157,164,166,168,170,172,178,183,185,186,188,189],emb:[84,148],embark:121,embed:[155,180],embrac:101,emerg:[69,75],emit:189,empti:[4,5,6,12,20,24,53,56,69,70,82,83,84,91,93,94,95,102,137,145,146,148,162,163,164,168,170,173,174,178,183,190,194],emptyt:52,emptytest:[8,12],emul:[94,157,182,188],en_gb:87,en_u:[87,159,178],enabl:[6,9,29,40,43,48,51,52,54,58,70,78,90,95,99,104,108,111,116,121,135,142,144,147,148,149,154,155,157,162,164,168,172,173,174,181,182,189],enablefilt:116,enableforeignkeycheck:58,enact:155,enclos:[52,178],encod:[5,39,40,69,84,91,96,98,113,121,146,147,156,162,166],encode_php_tag:88,encount:[32,51,170],encourag:[60,91,170],encrypt:[7,11,12,13,14,16,17,40,44,45,90,103,104,111,121,140,148,150,153,157],encrypterinterfac:[11,149],encryption_kei:126,encryptionexcept:[11,149],encryptiontest:[11,12],end:[32,40,44,51,52,53,65,70,72,90,95,102,105,108,111,145,149,152,155,156,158,162,164,166,169,173,178,180,181,189],end_char:90,endfor:169,endforeach:[139,154,161,164,168,169,180,194],endif:[154,168,169,178,194],endpoint:[93,95,156,170,186],endsect:177,endwhil:169,enforc:[39,40,56,93,158,166],engin:[6,16,51,56,68,69,78,108,109,145,157,169,175,178],english:[86,90,93,172],enhanc:[1,5,6,8,10,11,12,13,14,15,16,17,20,21,105,106,139,189],enim:90,enjoi:[108,193],enough:[20,102,149,158,166,172,177,185],ensur:[3,4,7,8,10,11,14,16,17,32,36,40,41,44,58,64,70,75,91,95,101,111,141,146,147,149,159,162,166,168,173,178,182,183,185,186,188,189,190,192],enter:[32,44,151,193],entir:[53,64,71,73,75,96,145,147,148,157,158,164,178,181,182,186,189,190,193],entiti:[3,4,5,6,7,8,9,10,11,14,16,17,20,35,42,77,88,90,92,103,141,160,167,168,178,185],entities_to_ascii:90,entitit:10,entitl:40,entityexcept:9,entitytest:[3,5,7,9,10,11],entri:[52,84,91,102,164,173,178,189],env:[7,14,16,17,20,69,70,72,75,76,84,105,108,109,111,113,149,151,183,184,193,194],environ:[4,5,7,17,20,21,23,30,44,45,56,58,69,72,74,75,103,108,109,130,134,145,157,182,184,192,193,195],eol:[32,164],eot:155,epoch:[20,145],equal:[9,52,69,70,79,131,147,164,174],equip:[31,86],equival:[90,96,101,109,112,155,185,195],eras:[32,157],ero:90,errand:180,errata:13,error:[3,4,5,7,8,9,10,11,12,13,14,16,20,28,30,35,41,44,52,53,58,69,74,75,77,82,94,95,102,103,108,111,113,117,127,129,137,147,148,152,155,156,157,161,168,170,172,173,178,189,192,193,195],error_404:[3,72,111,113],error_email_miss:129,error_except:[111,113,117],error_log:[20,75,108],error_pag:108,error_url_miss:129,error_username_miss:129,erroremailmiss:[129,172],errorlog:[75,108],errorloghandl:20,errorurlmiss:[129,172],errorusernamemiss:[129,172],esc:[5,25,40,69,80,83,118,123,139,161,164,178,179,180,192,194,195],escap:[2,3,4,6,7,12,14,16,23,47,52,69,79,91,113,116,124,164,168,194],escapelikestr:51,escapelikestringdirect:12,escapeshellarg:8,escapestr:51,escapetest:12,eschew:142,eskdikejidojdk978ad8jf:[69,173],esm:155,especi:[6,32,59,69,93,102,147,150,157,164,166,168,178,186,189,190],essenti:[150,186],establish:45,etag:173,etc:[5,7,29,31,35,37,39,41,44,46,48,50,51,52,56,61,69,71,72,73,75,77,82,83,86,87,90,95,96,100,102,105,108,148,149,156,159,162,163,164,168,172,173,177,178,180,188,190,193],etiam:90,eur:[87,178],europ:[159,166],eval:178,even:[15,29,30,31,32,35,39,46,51,54,64,73,76,77,83,95,96,102,108,113,146,149,154,156,157,161,164,168,173,184],evenerror:164,event:[2,4,5,6,8,10,14,49,59,60,64,66,72,75,77,83,91,95,103,111,113,161,164,165,182,184,189],event_priority_high:65,event_priority_low:65,event_priority_norm:65,eventnam:189,eventstest:8,eventtest:6,ever:[6,32,83,158,172,184],everi:[16,32,35,36,39,45,51,52,58,61,64,69,70,75,77,91,94,95,121,125,128,129,132,136,139,149,150,154,155,156,157,158,161,164,168,170,172,173,176,183,186,189,191,195],everybodi:70,everyth:[29,37,39,56,65,78,95,121,149,150,157,173,192,193],everywher:[122,124,157],exact:[10,39,51,77,90,108,147,152,159,162,164,168,172,173,184,189,190],exact_length:[8,164],exactli:[29,30,32,36,41,52,53,56,58,70,95,102,157,159,164,173,177,178,179,185,189],examin:52,exampl:[5,8,14,29,32,39,40,41,42,43,44,45,46,48,49,50,51,52,53,56,61,64,65,67,69,70,71,72,73,75,76,77,78,79,82,83,84,86,87,88,89,90,91,92,93,94,95,96,98,103,107,108,113,121,146,147,148,149,150,152,154,156,157,158,160,161,162,164,166,168,169,172,173,175,178,180,182,183,184,185,186,189,194],example_field:51,example_t:51,exce:[145,161,164],exceed:[45,148],excel:[172,184],except:[2,3,4,5,6,7,8,9,10,11,12,13,16,20,22,28,30,32,52,53,56,64,69,75,78,80,83,90,91,94,95,96,101,102,111,113,115,116,117,120,121,125,142,145,146,149,152,156,157,159,160,164,168,169,173,174,178,184,193,194,195],excerpt:[90,178],excess:90,exchang:[37,149],exclam:[51,164,178],exclud:[12,50,78,82,95,148,189],exclus:82,exec:152,execut:[4,7,8,22,27,30,35,40,46,52,53,56,65,69,72,82,94,95,102,108,115,121,143,147,154,155,157,158,168,170,178,182,183,184,188,189],exempt:95,exhibit:146,exif:12,exist:[3,4,6,9,11,12,13,14,16,30,31,32,35,45,52,53,56,59,62,64,69,70,73,75,78,79,80,82,84,92,96,98,101,102,111,115,117,118,119,120,121,130,145,146,148,149,150,154,155,157,158,159,161,162,166,168,170,172,173,177,178,179,183,185,186,188,190,192,195],exit:[4,10,11,72,122,130,134],exmampl:162,expand:[3,75,83,155,191,192,193],expect:[20,35,56,70,73,95,96,102,108,109,111,113,116,148,156,157,158,161,162,166,168,178,180,183,186,189,191,192,193,195],expectedmessag:189,expens:173,experi:[72,102,156,157,164,168],experienc:[72,152,157],expir:[17,20,68,80,111,145,146,157,173,190],expiri:[145,157,173],explain:[12,94,108,149,157,164,193],explan:154,explicit:[17,36,67,111,168],explicitli:[45,70,82,102,105,149,164,173,195],explod:[164,166],exploit:40,explor:[111,113,116,117,120,193],expos:[40,70,157,178],express:[16,52,95,156,164,165,174,195],expressionengin:141,ext:[4,56,150,161],ext_in:[127,164],extend:[3,4,8,10,11,12,14,16,17,28,29,30,31,32,36,41,42,44,55,58,59,70,72,75,77,89,95,96,98,100,101,102,103,109,111,113,116,122,123,127,129,130,131,135,137,142,143,145,147,149,150,151,154,155,156,157,158,159,161,162,164,166,168,170,172,173,176,177,178,179,180,182,183,184,185,186,189,192,194,195],extens:[4,10,12,14,17,35,36,44,56,61,73,75,78,102,104,109,113,121,144,145,149,150,152,155,157,159,161,164,172,173,178,180],extern:[20,58,155,156,157],extra:[13,35,83,94,108,147,164,168,185,192],extract:[9,90,106,148,166,178,179],extran:12,f699c7fd18a8e082d0228932f3acd40e1ef5ef92efcedda32842a211d62f0aa6:146,fabric:[16,89],fabricatormodel:185,fabricon:185,face:106,facebook:173,facilit:[69,111,150],fact:[36,157,180],factor:[52,185],factori:[17,38,41,77,103],fail:[7,8,9,20,51,54,56,82,113,116,127,143,145,147,148,152,155,156,158,161,164,168,170],failforbidden:170,failnotfound:170,failov:[44,45],failresourceexist:170,failresourcegon:170,failservererror:170,failtoomanyrequest:170,failunauthor:170,failur:[11,51,52,53,54,56,58,70,82,145,148,149,152,155,168,170,174,190],failvalidationerror:[20,170],fair:[54,70],fairli:[30,157,164,166,168],fake:[89,189],fakeext:173,faker:[24,185],fall:[32,172,185],fallback:[5,10,11,16,17],fals:[17,20,32,36,41,44,45,50,51,52,53,54,56,58,65,69,70,73,77,80,82,83,84,86,87,90,91,92,96,98,100,102,111,113,132,137,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,162,163,164,166,168,170,173,174,178,179,180,181,183,184,185,189,190,194],fame:157,familiar:[30,54,77,157,159,169,193,194],far:[67,99,164],fashion:[39,105,106,180,193],fast:[49,68,145,157,193],fastcgi:[71,108],fastcgi_param:71,fastcgi_pass:108,faster:[23,51,142,157,173,178],fatal:[5,102,145],faucibu:90,faulti:40,favicon:[84,155],favor:[17,20,23,142],favorit:[32,56],fcgi:21,fcpath:[4,69,76,82,150,155],featur:[4,6,9,12,14,16,32,40,49,51,52,53,65,69,77,78,94,102,116,145,148,157,159,161,164,166,168,172,178,180,182,183,184,190,193],featurerespons:[2,5,7,9,20,113],featureresponsetest:5,featuretestcas:[2,3,4,5,9,10,20,113],featuretestcasetest:[4,5,9,10],featuretesttrait:[20,113,186],feb:[146,159,173],februari:[1,14,19,27,159],feed:[51,84,102,155],feedback:40,feel:[42,178],fetch:[37,50,53,69,96,100,122,145,146,149,157,180],fetchabl:51,fetchglob:[16,96,100],few:[4,8,16,46,62,69,72,77,94,95,96,102,114,147,157,161,168,172,191],fewer:[102,109],ff0000:152,ff0:90,fff:152,field1:[52,96,164],field2:[52,96,164],field3:52,field:[4,8,9,14,24,28,37,40,44,51,52,53,81,82,101,116,117,135,147,151,156,161,164,166,178,185,190,192,195],field_nam:[50,53,164],fielddata:50,fieldexist:50,fieldmessag:168,fieldnam:[56,168,178],fieldnotexist:9,fieldrul:168,fieldset:83,fieldvalidationmessag:168,fifth:[52,154,159],fig:143,figur:[121,155],file1:[82,161],file2:[82,161],file:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,20,21,28,29,31,32,36,38,39,40,41,42,45,46,48,51,52,53,54,56,62,65,68,69,72,73,75,76,80,81,82,83,84,86,87,88,89,90,91,92,94,95,98,102,103,104,105,108,109,121,122,123,129,130,131,134,139,140,143,146,147,149,151,152,153,154,156,157,159,162,163,165,166,168,171,177,178,179,180,182,183,184,188,189,192,193,194,195],file_1:90,file_4:90,file_5:90,file_exist:134,file_get_cont:155,file_nam:[121,139,180],file_put_cont:155,file_upload:82,filea:32,filecollect:[2,4,12,150,155],filecollectiontest:[4,12],fileexcept:6,filehandl:[4,5,6,8,13,17,22,64,75,182],filehandlertest:[4,5,8,13],fileloc:[2,4,5,6,8,10,11,13],filelocatortest:[5,6],filemovingtest:[3,4],filenam:[4,58,69,82,88,96,111,147,148,150,154,156,161,172,173],filenotfoundexcept:150,filepath:[28,156,161],fileperm:82,filerhandlertest:13,filerul:[2,12,164],files:82,filesystem:[2,85,103,150,155],filesystem_help:4,filesystemhelpertest:7,filetest:5,fill:[5,16,70,146,151,158,159,164,168,184],fillplacehold:[18,112],filter:[2,3,4,5,6,8,9,10,11,12,14,16,22,23,25,28,36,40,42,64,69,80,81,83,94,96,97,98,100,103,110,111,117,118,135,151,155,156,162,164,166,173,184],filter_sanitize_email:96,filter_sanitize_full_special_char:[25,96,118],filter_sanitize_str:[25,118],filter_sanitize_url:98,filter_validate_url:164,filter_var:96,filterinfo:116,filterinterfac:[2,16,36,95,110,158,182],filterpublish:155,filtersconfig:182,filtersinfo:116,filterstest:6,filtertest:9,filtertestcas:182,filtertesttrait:182,find:[5,8,30,32,39,41,54,58,59,61,64,65,70,72,73,76,77,79,91,93,94,101,102,104,108,109,121,131,133,143,149,152,154,156,157,159,161,163,164,166,178,179,189,194],findal:[101,194],findmigr:58,fine:[29,56,71,99,102,185],finer:102,finfo_open:11,finger:6,finish:162,fire:[65,147],firebird:144,first:[5,6,7,16,30,32,33,35,36,37,41,43,45,48,51,52,53,54,56,58,65,68,70,73,75,78,80,82,83,84,86,90,91,93,94,96,101,102,105,108,109,121,123,130,131,134,139,145,146,147,148,150,152,154,156,158,159,161,162,164,166,170,172,173,174,178,179,181,182,183,185,186,189,192,194],first_nam:79,firstlett:178,firstnam:[178,185],fit:[11,32,42,77,145,165,166,185,189],five:[42,52,90,101,154,174],fix:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,26,27,90,101,109,110,111,113,116,117,120,143,152,166,174,193],fixat:157,fixex:8,fizz:[79,96],flag:[10,31,52,56,79,96,100,146,162,173],flame:193,flasdata:136,flash:[69,84,156],flashdata:40,flat:[94,166],flatten:79,flaw:161,fledg:191,flesh:[4,5],flexibl:[29,35,42,78,95,108,142,145,147,154,166,168,177,180],flinston:164,flintson:164,flintston:186,flintyfr:186,floor:178,flow:[39,42,72],fluent:[146,155],fly:[36,148,173],focu:[142,193],focus:[22,115],folder:[5,8,16,29,31,35,36,40,42,44,70,73,76,77,82,94,105,106,108,121,123,130,131,139,152,155,156,161,164,172,185,189,192,193],follow:[3,4,5,6,7,8,9,10,11,12,13,22,24,28,29,30,31,32,36,38,40,41,42,44,45,47,50,51,52,53,54,55,56,58,60,64,65,67,68,69,70,71,72,73,75,76,77,79,80,81,82,83,84,86,87,88,89,90,91,92,94,95,101,102,105,108,109,111,113,114,115,116,117,120,121,124,125,126,130,131,132,133,136,137,143,144,145,146,147,148,149,152,154,155,156,157,158,159,160,161,163,164,165,166,168,170,172,173,178,180,183,184,185,187,188,189,190,192,193,194,195],followsymlink:108,font:[152,155,173],fontpath:152,fontsiz:152,foo:[30,33,37,55,56,65,69,70,75,76,79,83,84,92,93,95,96,133,145,147,154,162,164,166,168,178,179,182,184,189,190],foo_:79,foo_other_detail:79,foo_person:79,foobar:[79,168],foobarbaz:145,foot:[9,174],footer:[39,180,192,194,195],footest:189,footing_cell_end:174,footing_cell_start:174,footing_row_end:174,footing_row_start:174,footprint:142,fopen:82,forbidden:170,forc:[31,32,35,40,44,52,58,59,67,72,77,82,91,94,109,142,147,158,168,185],force_http:[10,16,69,96],forceglobalsecurerequest:[70,162],forcehttp:164,foreach:[4,30,32,47,50,52,53,73,139,147,148,150,154,155,161,164,168,169,178,180,194],foreground:32,foreign:[10,12,23,50],foreign_column_nam:50,foreign_table_nam:50,foreigncharact:[2,90,111],foreignkeycheck:12,foremptyinputgiven:8,forfindcolumnhavemultiplecolumn:8,forg:[2,3,4,6,7,8,9,10,12,13,21,23,57,58,59,103,130],forgeri:27,forget:[109,172],forgetest:[4,6,7,9,10,12,13],form:[2,4,11,20,40,51,53,59,63,65,69,73,77,81,85,94,95,96,99,101,103,107,113,117,127,135,137,141,145,147,151,158,168,170,173,178,180,186,193],form_button:83,form_checkbox:83,form_clos:83,form_dropdown:83,form_fieldset:83,form_fieldset_clos:83,form_help:[3,4,5,6,8],form_hidden:[3,6,83],form_input:[3,83],form_label:83,form_multiselect:83,form_open:[3,15,83,116,135,137,156,164],form_open_multipart:[83,161],form_password:83,form_radio:83,form_reset:83,form_submit:83,form_textarea:83,form_upload:83,form_valid:137,format:[2,3,4,7,9,10,13,15,17,23,28,30,37,39,44,45,51,53,58,69,73,81,84,87,88,91,93,94,98,100,101,111,113,116,117,120,137,147,148,152,154,157,159,160,162,164,166,168,169,170,172,173,178,184,185,189,194],formatcharact:160,formatrul:[2,4,8,9,164],formatrulestest:[4,8,9],formatt:[3,170],formatterinterfac:[2,9,170],formattimelinedata:184,former:157,formhelpertest:[5,6],formsuccess:137,forpagenotfound:[8,72,94],forth:39,forum:[182,191],forumcontrol:182,forward:[6,36,53,58,102,156],found:[7,15,24,28,35,37,41,58,62,69,72,73,75,77,79,80,81,82,87,90,93,94,96,98,100,102,108,145,148,149,154,155,157,159,164,168,170,172,173,175,183,190,195],foundat:[13,141,154,165],foundation_ful:154,four:[90,93,95,98,146,172,174,184,189],fourth:[83,90,147,148,154,159,164,175],fowler:101,foz:162,fpm:108,fputcsv:[53,150],fr_fr:[87,185],fraction:87,fragil:102,fragment:[32,58,179,180,190],frame:[84,146],frameset:84,framework:[2,4,5,7,9,11,17,19,35,36,37,39,41,42,60,62,64,65,70,72,76,77,91,95,105,106,107,108,111,114,115,141,142,143,145,147,150,152,154,155,172,180,181,182,183,185,188,189,191,193,194,195],frameworkexcept:3,frameworkpublish:155,franc:172,frank:[52,79],fred:[90,128,164,166,174,186],free:[39,42,53,143,165,166,173,189],freeresult:53,french:[93,172],frequent:[155,162,185,186,190],fresh:[36,42,52,71],fret:31,fri:146,friend:164,friendli:[78,91,109,149,194],friendlier:[80,157],from:[1,3,4,5,6,7,8,9,10,11,12,13,14,16,17,18,20,21,22,23,24,28,29,30,31,33,37,39,40,41,42,43,44,45,47,50,51,53,58,59,63,64,65,69,70,72,75,76,77,78,79,80,83,84,87,88,90,91,93,94,95,96,98,100,101,102,103,104,105,108,109,122,125,126,127,128,129,130,133,136,138,139,141,142,143,145,146,147,148,149,150,151,152,154,155,156,157,159,161,163,164,165,166,168,169,172,173,174,177,178,179,180,181,182,183,184,185,189,190,192,193,194,195],fromcookiehead:146,fromheaderstr:146,fromsubqueri:52,front:[3,69,76,82,102,108],front_ful:154,frontend:[70,154,155],fruit:[32,172],ftp:[121,162],ful:99,fulfil:60,full:[16,24,28,30,31,37,44,47,49,52,69,70,76,77,78,82,84,91,95,96,101,147,149,150,152,154,155,159,161,162,163,166,168,172,174,185,191],full_nam:166,fulldat:172,fulli:[31,59,68,75,77,82,95,102,108,159,164,168,170,182,184],fulltext:50,fulltim:172,function_exist:4,function_nam:69,function_us:69,furnish:165,further:[30,45,70,79,84,94,102,147,157,175,178,184,185,193],furthermor:[121,149],furthest:162,futur:[20,21,31,113,114,141,145,157,159],fuzzifi:4,fzaninotto:185,gain:[40,145,161],galleri:[101,102],game:[70,146],garbag:157,gather:[50,163],gave:[181,191],gbp:87,gc_maxlifetim:157,gd2:152,gdhandler:[22,115],gdhandlertest:11,gear:[101,159],gecko:163,gener:[1,3,5,6,8,9,12,13,14,15,16,23,28,30,34,37,39,49,51,52,54,56,58,59,69,70,72,75,81,83,84,87,90,91,101,102,111,116,128,148,150,152,154,156,157,161,162,164,170,172,173,174,175,176,178,180,187,191,192,193],generator_command:31,gentler:101,geo:59,georg:[70,178,179],german:93,germani:70,gerri:185,get:[1,4,5,6,7,8,11,13,14,16,20,24,28,29,30,35,36,37,39,40,42,45,47,49,51,53,65,67,69,70,77,78,80,83,93,94,95,96,98,99,100,101,102,108,116,124,136,140,143,145,147,148,149,154,155,156,157,159,161,162,166,168,172,173,175,178,181,185,186,187,188,189,190,191,192,194,195],get_class:155,get_client_info:43,get_compiled_select:52,get_cooki:[25,80,96,118,146],get_csrf_hash:135,get_csrf_token_nam:135,get_dir_file_info:82,get_file_info:82,get_filenam:[28,82],get_included_fil:30,get_us:132,get_var:75,get_wher:124,getactivelink:96,getaffectedrow:8,getagentstr:163,getauthor:[96,162],getbasenam:[150,161],getbodi:[96,98,113,147],getbrows:163,getcacheditem:168,getcacheinfo:145,getclientextens:[17,161],getclientmimetyp:161,getclientnam:161,getcod:72,getcompileddelet:52,getcompiledinsert:52,getcompiledselect:52,getcompiledupd:52,getcompiledx:6,getconnectstart:14,getcooki:[20,80,96,111,146,173],getcookiestor:146,getcount:185,getcreatedat:166,getcsrfhash:17,getcsrtokennam:17,getcurrentpagenumb:154,getcustomresultobject:[53,168],getcustomrowobject:53,getdai:159,getdayofweek:159,getdayofyear:159,getdomain:146,getdur:51,getelapsedtim:[181,189],getencod:4,getenv:[17,70,96,100],geterror:[13,28,94,155,161,164,170],geterrorcod:51,geterrormessag:51,geterrorstr:161,getexpiresstr:146,getexpirestimestamp:146,getextens:17,getfieldcount:53,getfielddata:[16,50,53],getfieldnam:[50,53],getfil:[96,127,152,161],getfilemultipl:[96,161],getfilt:116,getfiltercal:182,getfilterforrout:116,getfiltersforrout:[116,182],getfirst:154,getfirstpagenumb:154,getfirstrow:53,getflashdata:[156,157,192],getforeignkeydata:[12,50],getformatt:17,getfrag:162,getget:[37,96],getgetpost:96,getglob:[69,146],gethash:17,gethead:[17,37,111,147],getheaderlin:[96,98,147],gethost:[96,162],gethour:159,getid:146,getindexdata:50,getipaddress:[75,96,100,158],getiter:22,getjson:[37,96,111,186,190],getjsonvar:96,getlast:154,getlastpagenumb:154,getlastqueri:[48,51],getlastrow:53,getlocal:[15,172,185],getmaxag:146,getmessag:[72,152,155],getmetadata:[20,145],getmethod:[37,96,100,111,156,192],getmimetyp:[150,161],getminut:159,getmobil:163,getmock:189,getmockbuild:189,getmonth:159,getmtim:150,getnam:[146,159,161],getnamespac:155,getnew:194,getnext:154,getnextpag:154,getnextpagenumb:154,getnextrow:53,getnumrow:53,getoffset:159,getopt:[33,146],getoptionstr:33,getoriginalqueri:[23,51,116],getpad:[17,30],getpagecount:154,getpath:[33,37,96,146,162],getperm:150,getplatform:[48,163],getport:[96,162],getpost:[37,96,166,170,192],getpostget:96,getprefix:[12,51,146],getprefixednam:146,getprevi:154,getpreviouspag:154,getpreviouspagenumb:154,getpreviousrow:53,getprivatemethodinvok:189,getprivateproperti:189,getproperti:152,getprotocolvers:[96,98],getpublish:155,getquart:159,getqueri:[51,96,162],getquerystr:51,getrandomnam:[150,161],getrawinput:96,getrealpath:150,getreason:[111,147],getreasonphras:[111,173],getredirecturl:190,getreferr:163,getresourc:16,getresult:[47,52,53,124],getresultarrai:[47,52,53,124,178],getresultobject:53,getrobot:163,getrow:[47,53],getrowarrai:[47,53],getrowobject:53,getrulegroup:164,getsamesit:146,getschem:[96,162],getscratch:155,getsecond:159,getseg:[16,33,96,162],getserv:[37,96,100],getshar:[36,41,45,64,69],getsharedinst:[41,64],getsiz:150,getsizebyunit:[150,161],getstarttim:51,getstat:179,getstatuscod:[111,147,173],gettempdata:157,gettempnam:161,getter:[17,113,146,157,166,189],gettest:[9,11,12],gettim:181,gettimestamp:159,gettitledetail:184,gettokentim:158,gettotalseg:[96,162],getunbufferedrow:53,geturi:[37,96],getuserag:[96,163],getuserinfo:[96,162],getvalidationrul:[13,168],getvalu:[98,146],getvaluelin:98,getvar:[37,94,96,156],getvardata:184,getvers:[48,163],getweek:159,getweekofmonth:159,getweekofyear:159,getwher:[12,52,124],getx:[159,166],getxml:[111,190],getxmlfromresult:55,getyear:159,ghsa:[27,119],giant:178,gif:[12,98,127,155,161,164],git:[70,104,105],gitattribut:19,github:[4,8,63,107,119,145,147,157],gitignor:[4,8,11,70],gitkeep:[4,150],give:[4,37,47,52,56,73,80,91,96,121,146,154,155,157,164,168,172,178,179,181,193],given:[17,54,65,79,82,86,87,91,96,102,142,146,149,152,154,157,159,164,168,172,173,178,182,186,190],glanc:184,glob:[145,150],global:[16,44,45,62,65,73,74,100,103,121,135,146,151,156,157,158,161,164,181,182,184,189,195],glue:[39,195],gmail:185,gmt:[37,146,172],goal:[37,142],goe:[32,72,184,189],going:[29,93,192,194,195],golli:90,gone:170,good:[36,39,40,41,44,51,54,71,73,102,109,152,168,173,182,184,185],googl:[147,173],got:127,governor:40,grab:[41,59,69,93,96,145,154,157,158,168,179],grabfromdatabas:183,gracefulli:45,grammar:[3,13],grant:[108,165],grape:172,graphic:84,grasp:77,gravida:90,great:[31,32,35,36,39,41,59,60,61,70,95,102,122,166,168,172,173,175,185],greater:[92,147,149,154,164],greater_than:164,greater_than_equal_to:164,greatli:54,green:[30,32,84,128,152,164,166,174,178],greet:193,grid:155,group1:154,group2:154,group:[6,7,15,30,31,39,44,45,54,56,73,77,94,141,150,154,155,157,168,183,185],group_id:[52,185],group_nam:[45,124,168],group_on:45,group_two:45,groupbi:52,groupbuild:168,groupend:52,groupnam:[154,157],groupstart:[12,52],grouptest:[6,11,12],grow:107,grup:10,guarante:[96,157],guess:[17,84,156,185],guessextens:[4,11,17,150,161],guessextensionfromtyp:17,guessextenst:4,guid:[3,4,6,7,8,9,10,11,12,13,14,15,77,82,104,105,107,108,121,143,173],guidelin:[6,38,60,103,113],guzzl:147,gzip:[93,96],h554:27,habit:39,hack:[48,65,164],had:[12,91,113,161,164,166,168,172],half:157,halign:152,halit:149,halt:[72,157],han:185,hand:[24,32,36,39,58,70,83,101,107,155,157,164],handi:[17,41,72,79,102,108,147,154,156,164,168,186],handier:102,handl:[1,3,5,10,12,13,16,17,24,30,32,37,39,41,52,56,60,69,74,75,78,79,87,90,93,94,97,98,102,111,116,121,147,152,155,156,159,164,168,173,178,180,182,184,185,186,189,192,195],handlder:11,handler:[2,4,5,6,7,8,9,10,11,12,13,16,20,22,23,64,69,72,102,113,114,115,145,152,157,158,166,173,182,188],handlerequest:116,handlerinterfac:2,hang:191,happen:[36,41,46,51,65,69,72,75,77,95,98,102,148,157,158,166,172,173,176,178,179,180],happi:84,hard:[35,41,83,114,145,149,150,157,168],harden:40,harvest:91,has:[1,4,7,10,11,16,17,20,24,28,30,32,35,36,37,39,41,42,44,46,48,50,51,52,53,56,58,59,61,62,64,66,68,69,70,71,73,86,90,96,98,101,102,107,109,111,113,116,120,121,142,145,146,147,149,155,156,157,158,159,161,162,164,166,168,169,170,172,173,174,177,178,179,180,181,182,183,184,185,189,190,192,193,194,195],has_cooki:[80,146],hasalert:178,haschang:[10,166],hascooki:[80,111,146,173],haserror:[14,51,164],hash:[11,40,69,82,90,102,135,145,149,166,168],hashead:[96,98],hashpassword:168,hasindatabas:183,hasmov:161,hasn:[69,91],hasnext:154,hasnextpag:154,hasprevi:154,haspreviouspag:154,hassl:[146,155],hastabcont:184,hastimelin:184,hasvardata:184,have:[1,6,8,9,11,12,15,16,17,22,23,28,30,31,32,35,36,37,39,40,41,42,44,45,50,51,52,53,54,56,58,59,61,62,64,65,68,69,70,72,73,75,76,77,78,79,80,81,84,91,94,95,96,98,99,100,101,102,104,105,108,111,113,116,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,166,168,172,173,175,178,179,180,181,182,183,184,185,186,188,189,190,191,192,194,195],haven:[157,164,172,192],havinggroupend:52,havinggroupstart:52,havingin:52,havinglik:52,havingnotin:52,haystack:73,head:[3,7,14,30,37,96,102,137,138,139,147,161,162,164,174,177,178,180,184,193,195],head_img:[127,161],headach:35,header1:148,header2:148,header:[2,4,8,10,13,14,16,17,23,30,32,37,39,67,69,87,93,94,95,98,111,146,148,156,170,180,184,189,192,193,194,195],headeremit:3,headerlin:173,headernam:17,headers_s:146,heading_cell_end:174,heading_cell_start:174,heading_row_end:174,heading_row_start:174,heart:[94,98],heavi:[45,157,170],heavili:61,height:[84,91,152,164],held:[69,70],hellip:90,hello:[4,84,86,123,154,177,178,190,195],hello_world:86,hellow:190,helloworld:[94,102,123],help:[2,11,29,31,32,36,39,46,50,51,52,55,56,58,65,69,73,77,84,87,90,91,96,98,102,113,121,141,143,146,147,148,149,152,154,155,158,160,161,163,164,166,168,170,172,173,178,181,182,184,187,189,190,192,193,194,195],helper:[1,2,3,4,5,6,7,8,10,11,12,13,14,16,17,20,21,42,49,61,62,69,74,78,96,102,113,127,135,137,141,146,156,157,159,161,164,168,172,178,189,191,192,194],helpera:12,hendrerit:90,here:[29,31,32,41,42,51,52,53,58,61,64,67,72,73,75,77,78,82,83,84,90,91,92,94,95,96,98,100,102,105,108,109,111,113,116,117,120,121,124,131,133,145,147,148,154,155,157,158,159,161,164,166,168,169,172,173,174,176,178,180,182,183,184,189,192,193,194,195],herebi:165,hex2bin:[16,17,149],hex:[14,149,152,164],hexadecim:164,hexcod:184,hhiiss:58,hidden:[16,69,82,83,94,99,108,135,151,154,156,192],hiddenemail:83,hide:[80,149],hierarch:[79,94],hierarchi:180,high:[90,157],higher:[102,152,157],highest:[65,148],highli:115,highlight:[5,6,7,8,9,10,14,23,90,174,178],highlight_cod:[90,178],highlight_phras:90,highlight_str:90,hint:[4,5,9],his:101,his_:58,histor:[90,147],histori:[5,8,9],hit:[32,35,51,95,109,158,168,184,186,193],hkdf:149,hmac:149,hmvc:121,hobbi:157,hoffset:152,hold:[30,41,42,69,70,95,105,106,121,149,154,158,164,172,173,183,190],holder:165,home:[8,10,11,61,91,94,102,108,111,155,163,193,195],homepag:[107,155],honeypot:[2,3,4,6,8,11,95,103,111,135,153,156],honeypotexcept:151,honeypottest:[3,6],honor:152,hood:73,hook:121,hope:[6,191],hoppifur:185,horizont:152,host:[13,14,37,44,71,84,96,98,102,145,147,157],hostnam:[44,45,164,194],hotfix:13,hotlink:9,hour:[69,146,157,159,178],hous:180,housekeep:7,hover:193,how:[4,30,37,39,42,43,47,52,56,67,69,71,73,77,79,84,91,93,94,95,96,108,111,116,129,132,145,147,148,152,154,155,158,159,162,166,168,170,173,174,178,182,184,185,186,192,193],howev:[17,29,30,39,51,52,53,64,65,67,76,90,91,95,99,102,104,121,146,150,154,157,158,159,164,166,168,172,178,179,185,190,192],href:[84,91,102,154,178,179,194],hreflang:84,hsbc:164,ht5a822:84,htaccess:[3,4,8,9,14,16,42,71,78,82,109,111,113,155,195],htdoc:[82,108],htm:[108,155],html4:84,html5:[83,84,90],html5rock:173,html:[2,5,9,14,28,37,39,40,42,61,69,72,81,82,83,85,90,91,93,96,98,99,101,102,103,104,108,111,113,117,121,135,137,139,140,148,151,154,155,160,161,162,164,170,171,173,175,176,177,178,179,180,181,184,190,194,195],html_escap:83,html_helper:[6,8],htmlspecialchar:174,http:[2,3,4,5,6,7,8,9,10,11,12,13,14,16,17,20,29,38,39,40,64,69,72,78,80,83,84,90,91,93,94,95,96,97,100,103,104,108,109,111,116,119,121,140,143,145,146,147,148,152,154,155,156,157,158,161,162,163,164,170,171,172,182,185,187,189,190,192,193],http_:98,http_accept_languag:98,http_client_ip:100,http_host:98,http_ok:37,http_refer:[69,91],http_user_ag:157,http_x_client_ip:100,http_x_cluster_client_ip:100,http_x_forwarded_for:100,httpd:[108,109],httpexcept:[3,161],httpincomingrequest:4,httponli:[80,111,146,157,173],httprequest:4,httprespons:4,huge:173,human:[78,86,87,91,151,164,166],humor:194,hundr:[65,163,181],hyperlink:91,hypertext:37,i18n:[2,3,4,5,7,12,22,81,159,166],iana:[37,148,170],ibas:144,ico:[84,155],icon:[84,91],icu:172,id_:102,idea:[51,109,113,168,172,185],ideal:164,ident:[32,43,52,53,56,64,69,73,80,82,83,84,91,95,96,100,152,159,160,173,178,184],identif:21,identifi:[23,40,52,60,67,70,90,113,146,163,168,169,173,194],idl:45,ids:102,ie11:9,if_exist:[56,164],if_not_exist:56,ifmodul:108,ifnotexist:56,ignor:[4,5,8,14,52,72,75,90,91,92,101,105,152,157,160,164,166,168,178,179],ignore_field:164,ignore_valu:164,ignorecas:189,ignoredcod:72,illustr:52,imag:[2,4,9,11,12,16,22,42,45,82,84,88,91,93,96,98,103,111,115,127,146,147,148,150,153,155,161,164,173,185,192],image_lib:82,image_librari:152,imageexcept:152,imagefil:161,imagehandlerinterfac:[2,11],imagejpeg:152,imagemagick:[2,11,16,152],imagemagickhandl:[4,11,22,115],imageproperti:84,imagetyp:[96,152],imagetype_png:152,imageurl:185,imagick:152,imagin:[41,166],img:[6,84,148,161],img_data:84,img_without_extens:84,immedi:[65,68,75,102,149,154,168],immut:[159,166],impact:[6,178,179],implement:[6,9,16,17,21,22,30,36,41,52,54,60,64,67,70,95,101,102,110,111,113,121,131,135,138,143,145,148,149,155,157,158,164,166,168,170,173,176,178,179,184,185,186,189],impli:[165,170,184],implic:[62,64,95],implicit:164,implicitli:[146,164],implod:[150,166,172],importantli:[8,37,113],impos:147,imposs:14,improc:9,improp:[40,161],improv:[1,4,8,10,14,16,21,23,28,113],in_arrai:73,in_list:164,inaccess:[29,102],inadequ:40,inappropri:40,includ:[8,11,15,20,28,29,30,31,32,37,39,40,42,43,51,52,56,58,59,70,71,73,75,77,78,82,90,91,96,98,102,107,108,110,111,113,116,117,120,121,131,148,150,152,155,156,157,159,162,164,165,166,168,173,178,179,180,181,182,183,184,185,186,190,192,193,194,195],includedir:[28,82],includepath:82,inclus:69,incom:[3,6,8,10,11,12,13,95,96,97,100,158,164,168,195],incomingrequest:[2,3,4,8,10,12,15,20,37,64,67,80,91,93,97,98,99,100,103,121,157,161,163,172,182],incomingrequestdetectingtest:5,incomingrequesttest:[4,5,6],incompat:17,incorpor:[14,40,70,106,172],incorrect:[14,16,21,24,113,170],incorrectli:[113,166],increas:[16,90,95,102,157,195],increment:[7,52,90,145,152,168,185,192],increment_str:90,indefinit:147,indent:5,independ:[43,52,54],index:[3,4,5,6,7,9,28,29,33,42,46,47,52,53,56,58,76,77,79,80,82,83,84,90,91,94,95,96,100,101,102,108,111,113,120,123,127,132,134,137,146,150,154,155,157,161,162,164,168,172,174,177,180,192,194,195],index_pag:91,indexdata:4,indexpag:[20,84,91,109,113,162],indic:[58,60,75,102,150,152,155,166,185,186],indirect:40,indispens:184,individu:[31,35,47,82,161,162,168,173,174,194],industri:32,ineffici:53,inet:157,inexist:3,inflector:[2,13,85,103],inflector_help:[11,13],inflectorhelpertest:[11,13],influenc:149,info:[4,6,30,69,75,82,88,102,148,149,152,162,163],inform:[14,24,26,27,28,29,30,31,32,37,39,44,45,50,51,52,54,58,59,67,68,69,70,74,77,82,83,91,94,96,102,103,107,109,111,119,121,131,143,145,146,147,148,149,157,159,161,163,168,173,174,181,183,184,192,193,194,195],ing:77,ingredi:77,inherit:[22,94,96,166,173],ini:[82,90,104,157,161,164],ini_set:[12,157],init:14,initcontrol:[14,61],initi:[4,28,35,61,64,70,79,81,90,96,102,124,132,146,148,149,150,168,173,178,185],inject:[51,52,91,93,121,146,155,173],injectmock:189,inlin:[14,148],inner:[52,65,102,178,184],innodb:[54,56],input:[8,36,39,40,51,69,82,83,86,88,90,91,92,95,99,100,117,121,135,137,149,151,155,156,159,160,161,164,168,174,182,190,192],insecur:147,insensit:[6,37,52,96,98,146,156],insensitivesearch:52,insert:[4,5,7,10,14,16,32,40,48,51,59,69,75,90,123,131,135,156,164,166,170,175,177,183,185,188,192,194],insertbatch:[23,52,116],insertid:[48,52],inserttest:[6,12],insid:[32,41,42,52,76,84,94,102,105,106,107,108,121,145,146,157,164,172,178,179,189,195],insight:191,inspect:[79,168,190],instal:[3,4,5,6,7,9,10,12,14,20,42,44,71,75,77,103,107,108,117,118,119,120,121,144,147,149,152,157,192,193,194,195],install_manu:7,installing_compos:[6,9,10],installing_git:6,installing_manu:6,instanc:[4,8,17,20,24,32,36,41,45,46,50,51,52,53,56,58,65,69,70,71,77,89,90,91,93,94,95,96,98,101,102,104,108,121,134,145,146,147,148,149,152,154,155,157,158,159,160,161,163,164,166,168,170,172,173,174,178,179,182,185,186,188,190,194],instanti:[3,36,41,53,65,70,77,121,146,147,149,155,157,166,168,173,174,178,179],instead:[4,6,7,15,16,18,20,21,23,24,28,29,31,32,41,42,45,50,51,52,53,61,64,69,70,71,72,73,75,83,84,86,91,92,93,96,98,102,111,112,113,116,121,131,136,139,147,148,149,152,154,155,157,159,161,162,166,168,169,173,174,175,177,178,183,190,192,194,195],institut:[141,165],instruct:[69,105,106,117,118,119,120,121,188],insuffici:40,intanc:168,intead:5,integ:[5,8,30,48,52,53,56,69,82,86,87,90,94,102,145,152,157,158,161,162,164,166,168,172],integr:[5,29,32,69,77,90,121,155,173,189],intel:163,intellig:[45,149,173,180],intend:[61,62,73,76,79,81,91,102,106,108,111,121,143,146,148,152,157,164,175,177,178,179,193],intens:[82,160],intent:157,intention:60,interact:[29,32,37,143,146,156,166,168],interbas:[48,144],intercept:168,interest:[75,107,142,152,156,168,194],interf:182,interfac:[22,29,37,41,52,61,64,77,98,111,142,143,146,161,168,179,185],interfer:[157,182,189],interject:168,intermedi:[155,191],intermingl:58,intern:[6,17,20,36,40,51,53,60,79,91,94,98,152,157,166,170,178,179,185],internation:87,internet:194,interoper:143,interpay:164,interpret:[101,121,178],interrupt:31,interv:[32,158],intervent:[111,113,114,116,117,120],intl:[104,144,159,172],intldateformatt:159,intro:[3,7],introduc:[8,111,116,191,193,194],introduct:[101,172,173,193],intrus:189,invalid:[5,10,12,20,72,95,113,145,146,156,157,164,168,170],invalidargumentexcept:[145,159,162],invalidargumentexept:159,invalidchar:102,invalidtyp:6,invers:190,invis:4,invoc:33,invoice_id:52,invoice_rul:117,invok:[64,70,102,123,139,145,181,189],involv:[39,61,161],ip_address:[75,116,157],ipaddress:111,iphon:163,ipsum:[32,90],ipv4:[100,164],ipv6:[100,164],is_arg:[78,108],is_arrai:[73,194],is_ban:166,is_banned_nul:166,is_cli:[4,29,69],is_fil:[35,195],is_imag:[161,164],is_natur:164,is_natural_no_zero:164,is_not_uniqu:[14,16,164],is_numer:8,is_pluraliz:86,is_really_writ:69,is_uniqu:[4,16,94,164,168],isajax:[14,37,67,96],isbrows:163,iscli:96,isexpir:[20,146],ishttponli:146,isjson:111,isloggedin:95,ismobil:163,isn:[52,56,93,102,164,170,194],isnt:194,iso:[81,148,178],isok:[182,190],isol:108,isp:[148,157],israw:146,isredirect:190,isreferr:163,isrobot:163,issecur:[37,94,96,146],isset:[14,53,157,166,168],issu:[6,8,9,10,12,13,14,15,19,21,58,63,71,91,119,148,152,157,180,184,189,194],issupport:145,isvalid:[96,127,137,161],isvalidip:[96,100,111],iswrit:150,iswritetyp:[51,113],item1:157,item2:157,item3:157,item:[4,6,9,14,16,24,32,39,52,69,70,73,78,83,86,89,90,94,96,100,103,113,117,122,132,136,139,145,148,154,157,159,163,164,168,169,170,172,180,184,185,188,193,194],item_nam:122,iter:[2,79,90,145,149,150,174,178],iteratoraggreg:150,its:[3,5,20,21,30,31,32,36,37,41,51,52,53,58,73,80,82,83,86,91,94,96,101,102,105,107,108,112,113,116,130,143,146,149,150,152,154,155,157,158,161,162,164,166,168,172,173,177,178,179,182,184,185,188,189,191,194,195],itself:[30,35,36,42,51,52,53,60,69,70,75,77,91,102,147,149,154,157,158,159,162,164,166,168,178,180,181,182,184,185,189,190,195],ja_jp:87,jame:52,jan:6,januari:[17,18,24,25,26,159],java:69,javascript:[37,42,67,69,80,83,84,91,96,121,146,170,173,177,178,179],jcb:164,jimmi:90,job:[16,29,30,39,51,52,102,168],job_id:52,jobmodel:168,jobseed:59,joe:[52,83,90,102,164,169,178,179,183],john:[29,51,79,83,128,174,178,190],johndo:[83,157],join:[9,16,98,124,157],journal:[102,134],jpeg:[98,152,155,161],jpg:[84,90,93,96,127,148,150,152,155,161,164,173],json:[3,4,5,6,7,9,10,12,15,16,37,60,67,76,93,96,98,101,105,111,113,133,144,155,156,164,170,173,182,186],json_decod:[96,147,166],json_encod:[133,147,166,170,182],jsoncast:20,jsonformatt:[2,9,170],jul:10,juli:[16,159],june:21,just:[16,17,29,31,32,39,41,51,52,54,56,64,67,69,70,73,90,91,92,96,99,102,123,124,130,131,146,148,151,154,155,157,159,161,162,164,166,168,172,173,176,177,178,182,183,184,185,192,194],keep:[8,30,32,35,36,39,41,42,51,52,54,58,59,69,70,72,77,94,95,98,104,108,115,145,146,149,150,154,155,157,166,168,172,180,183,185,193],keepflashdata:157,keepqueri:162,kei:[4,5,6,7,8,9,10,12,13,15,16,17,20,23,28,30,32,35,36,40,44,50,51,52,53,69,70,75,79,83,95,96,100,113,116,117,126,131,145,147,148,155,157,158,162,163,166,168,172,173,174,175,178,179,180,183,184,185,186,188,190,192,194,195],kept:[41,142,147,156,157,168],keyword:[23,52,70,102],kill:157,kilobyt:[150,164],kind:[84,90,157,164,165],kindel:185,king:[56,185],kint:[1,2,12,24,111,116],know:[15,29,37,41,50,56,62,64,65,70,79,94,95,96,102,140,143,144,149,157,162,164,166,168,170,177,181,184,192,193,194],known:[64,77,91,104,149,154,157,162,163,183],label:[56,83,84,151,154,161,192],label_text:83,lack:[53,157],lacu:90,lamina:[14,69],lamp:108,lang:[12,69,77,93,129,154,161,164,172,178],languag:[2,3,4,5,6,7,8,9,10,11,13,15,17,20,29,37,42,82,87,96,98,102,106,129,142,147,159,164,178,194],languagekei:172,languagetest:[4,5,6],laoreet:90,larg:[35,53,70,83,84,94,128,142,148,158,166,174,182],larger:[77,152,164],largest:194,last:[4,6,8,35,41,48,51,53,69,73,95,102,121,148,150,154,155,157,164,169,173,179,194,195],last_act:157,last_login:[53,168],last_nam:79,lastli:121,lastlogin:53,lastnam:178,later:[39,52,95,98,102,109,146,147,148,157,168,178,179,181,194,195],latest:[1,17,58,65,106,107,155,183],latin:173,latta:185,launch:[64,108],lax:[17,20,111,146,157,173],layer:[37,111,143,144,166,168,194],layout:[7,14,20,103,139,171,174],lead:[40,102,155,173],lean:121,learn:[5,46,54,102,108,142],least:[20,113,145,164,182],leav:[4,77,88,91,95,102,114,148,159,162,168,192],lectu:90,left:[32,41,52,70,90,95,102,146,152,158,162,178,184,194,195],leftdelimit:178,leftjoin:6,legaci:[8,11,14,112,147,157],legal:179,legend:83,legend_text:83,lemon:172,len:90,length:[4,9,14,16,32,50,68,90,113,145,164],less:[5,17,67,75,90,92,102,158,164,166,168],less_than:164,less_than_equal_to:164,lesson:5,let:[30,31,39,41,43,44,50,51,52,65,68,76,77,80,81,83,84,96,105,142,143,145,147,148,152,154,157,158,164,166,172,174,177,178,180,192,193],letter:[81,86,90,94,123,178,195],level:[1,69,70,71,75,79,82,96,121,157,164,178,189],leverag:[108,155],liabil:165,liabl:165,lib:77,libcurl:144,liber:162,libero:90,librari:[3,4,6,7,8,9,10,11,12,13,16,30,34,35,40,41,42,58,61,64,65,67,69,75,78,80,82,88,94,107,113,116,125,126,127,128,132,136,138,141,142,143,145,152,158,159,163,172,175,179,184,189,191,192,194],libsodium:149,licens:[6,103,111],life:[10,42,156,173,186],lift:45,light:32,light_blu:32,light_cyan:32,light_grai:32,light_green:32,light_purpl:32,light_r:32,light_yellow:32,lightbox:84,lightweight:147,like:[15,16,17,20,24,29,30,31,32,35,36,37,39,41,42,43,44,45,48,50,51,52,53,54,55,58,59,62,63,64,65,67,69,70,71,72,75,76,77,83,87,90,91,92,93,94,95,96,98,99,100,101,102,104,108,109,116,117,121,122,123,125,126,128,129,131,136,139,142,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,163,164,166,168,169,170,172,173,174,175,177,178,179,180,182,183,184,185,189,192,193,194,195],liketest:6,likewis:[28,79],limit:[11,36,43,47,53,59,65,90,95,108,124,145,146,147,148,152,154,157,161,164,165,168,170,175,178,180,185,189],limit_char:178,limit_word:178,limitexcept:108,line:[8,13,14,22,28,30,32,33,44,45,52,54,61,64,69,75,76,94,95,96,101,103,104,105,108,109,115,121,123,125,128,129,130,131,134,136,137,142,145,147,148,154,157,158,160,164,172,173,183,189,193,194,195],link:[4,7,8,15,35,69,73,82,84,91,102,107,132,146,148,157,162,172,178,179,190,193,194],link_tag:84,linkifi:91,linux:[29,157,163],lis:164,list:[0,2,3,4,5,6,7,8,9,10,11,12,13,14,15,20,23,24,25,28,30,31,32,36,37,44,53,58,60,65,73,75,77,83,84,90,91,93,95,96,100,101,102,111,113,116,117,120,125,139,143,144,148,150,152,154,155,159,163,164,166,168,169,170,172,173,174,175,180,182,184,186,192,193,194],listal:102,listcommand:2,listen:[102,108],listerror:[137,164,192],listidentifi:81,listnamespacefil:11,listtabl:[12,50],liter:[83,102],littl:[30,35,39,147,157,158,178,181,193],live:[3,4,5,6,7,8,9,10,11,12,13,42,51,71,73,102,105,145,157,159,178,180,182,193],load:[4,5,7,9,20,29,30,32,36,39,41,47,53,56,58,61,62,64,65,68,69,70,71,77,94,102,108,124,125,126,127,128,129,131,132,134,136,137,138,139,145,146,149,150,152,157,172,175,178,183,184,192,193,194,195],loader:[56,73,82,121,129],loadhelp:17,loadlegaci:[18,112],loadmodul:108,loadutil:55,local:[4,5,11,15,16,40,69,70,75,81,83,87,91,102,103,104,121,140,147,159,166,171,178,182,189,192,194],local_curr:178,local_numb:178,localhost1:44,localhost2:44,localhost:[44,45,71,108,109,157,193,194,195],locat:[4,10,14,15,16,24,32,35,36,39,41,44,51,58,59,64,65,70,71,76,77,78,79,94,108,121,123,131,147,150,152,154,155,157,161,163,164,166,168,173,175,177,178,183,184,189,195],locatefil:10,lock:[53,76,82,157],log:[2,4,5,6,7,13,14,28,41,42,46,54,64,69,74,102,103,104,108,121,146,147,157,173,182,184,189],log_messag:[14,28,54,69,75],logcach:6,logged_in:[157,186,190],logger:[2,5,6,14,20,28,30,41,61,64,69,94,109,111,113,143,182,189,194],loggerawaretrait:[2,14],loggerconfig:189,loggerinterfac:75,logic:[11,14,16,21,35,39,40,44,52,68,71,87,142,168,172,182],logicexcept:98,login:[31,60,95,102,134,146,166,178,182,185],login_token:146,loginmodel:155,loginus:189,logo:7,logout:[60,102,157],london:[159,166],longdat:172,longer:[23,24,28,32,53,67,68,111,113,116,121,130,134,149,157,158,164,166,170],longest:32,longjohn:189,longtim:172,look:[30,35,36,37,39,41,50,51,58,70,73,77,78,82,92,93,94,95,96,98,102,108,109,121,123,125,129,131,132,135,139,152,154,155,157,158,161,164,168,170,177,178,180,183,185,189,190,192,193,194,195],lookup:102,loop:[4,39,53,69,70,73,90,148,161,181,194],loos:[73,84,164],lorem:[32,90],lorempixel:185,lose:[159,183],loss:157,lost:72,lot:[6,15,37,42,53,62,64,70,95,121,127,131,147,149,160,168,178,185,192],low:90,lower:[20,52,65,90,96,100,102,146,178],lowercas:[7,30,52,70,91,94,95,100,178,192],lowest:148,lru:145,lsp:[28,164],lump:30,lunch:159,mac:[29,149,163],machin:[37,58,70,102,108,193],macintosh:163,made:[23,52,53,63,70,95,96,111,113,116,117,120,146,148,151,155,158,168,170,178,180,182,186,192,194,195],maestro:164,magenta:32,magic:[12,36,70,121,123,157,166],magna:90,mai:[9,15,17,20,24,30,31,32,35,41,44,50,52,53,56,58,60,61,65,70,71,72,77,79,82,83,90,91,94,95,96,98,102,104,105,108,111,113,114,115,145,146,147,148,149,150,152,154,155,156,157,159,160,161,162,163,164,166,168,172,173,179,180,185,189,194],mail:[91,148,155,157],mailpath:148,mailto:[91,162,178],mailtyp:148,main:[1,31,39,42,44,52,58,59,75,76,77,82,83,94,96,102,108,113,157,168,172,173,194,195],mainli:[32,146,160],maintain:[23,30,39,90,96,107,141,147,152,155,157,168],maintainratio:152,mainten:95,major:[23,51,52,111,113,116,117,120,121,161],make:[1,3,10,11,15,16,17,28,29,30,32,35,36,37,39,41,42,45,52,53,54,56,58,59,61,62,64,65,67,69,70,71,77,78,81,83,90,93,94,95,98,99,101,102,104,107,108,113,118,120,121,123,131,132,142,143,145,146,148,149,151,154,155,157,158,161,162,164,166,168,169,170,172,173,177,178,180,181,182,184,185,186,189,192,193,194],makearrai:185,makecolumn:174,makelink:[10,154],makeobject:185,malici:[40,155],malleabl:142,man:[147,168],manag:[6,39,42,55,56,69,74,103,121,141,146,155,157,172,191],managing_app:[3,6],mandat:40,mandatori:[95,111,113,116,117],mani:[29,35,36,39,40,41,42,44,51,54,56,69,70,75,77,81,84,90,95,108,111,113,116,117,120,141,143,147,148,152,154,157,158,161,162,164,166,168,170,173,174,181,184],manipul:[57,103,153,157,162,178],manner:[13,43,44,58,77,87,96,149,154,157,159,161],manual:[5,7,14,44,52,67,68,93,94,96,100,102,103,104,105,116,117,118,119,120,146,147,148,152,156,160,173,179,183,185,193],map:[5,35,40,59,82,94,134,154,155,172,173,180,195],mar:[7,178],march:159,margin:83,mari:[128,174],maria:79,mariadb:4,marin:79,mark:[4,20,51,83,90,109,136,152,157,166,178,184],mark_as_flash:136,markasflashdata:[136,157],markastempdata:157,markdown:35,marker:157,markup:[84,178],marshal:39,martin:101,mask:[28,156,164],mass:[168,192],massiv:35,master:81,mastercard:164,masterdim:152,match:[3,4,6,10,15,17,22,28,36,44,45,48,51,52,58,59,69,70,71,73,75,78,91,93,94,95,96,98,101,113,115,127,145,150,152,155,157,164,168,170,172,175,177,181,183,184,186,189,190,192,195],matchsimplebind:8,math:[84,155],mathml1:84,mathml2:84,mathml:84,matrix:21,matter:[16,51,69,109,147,157,162,164],matur:101,mauri:90,max:[32,50,52,145,147,173],max_dim:[127,161,164],max_height:127,max_length:[50,90,94,137,164,192],max_siz:[127,161,164],max_width:127,maxag:173,maximum:[32,50,52,53,68,90,102,111,147,148,152,164,182],maxlen:32,maxlength:83,maxqueri:6,mayb:[41,102,149],mayeditwidget:182,maynard:185,mb_:4,mb_strlen:4,mb_url_titl:[16,91],mbstring:144,mcrypt:[126,149],md5:[82,90,158],mdn:111,mean:[37,39,41,47,54,58,65,70,75,102,121,155,157,159,164,168,170,178,179,192,193,195],meaning:170,meant:[42,100,143,147,157],measur:[42,61,108,181],mechan:[56,121,149,157],med:83,media:[84,96,98,102,150,162,173],medium:[83,128,172,174],mediumd:172,mediumtim:172,meet:[39,41,42,70,102,104,143,164,173],megabyt:150,melissa:185,member:[141,143,164],member_ag:52,member_id:83,memcach:[2,6,20,157,158],memcachedhandl:[4,6,8,10,13,22],memcachedhandlertest:[4,8],memepublish:155,memori:[23,36,52,53,56,68,94,145,152,158,168,181,184],men:172,mention:[8,96,107,146,157],menu:[77,83,96,180],menuitem:178,menusfilt:77,merchant:165,merg:[15,36,70,102,106,111,113,114,116,117,120,155,165],mess:[62,64,193],messag:[2,4,6,7,8,9,10,11,12,13,14,17,20,28,29,32,37,51,54,56,64,69,72,84,94,96,97,103,105,106,107,109,111,125,126,129,143,148,152,155,156,157,161,168,170,173,178,180,189,192],messageformatt:172,messagetest:11,messi:164,met:[145,157],meta:[50,53,69,156],metadata:[12,40,49,103,145],metadatatest:12,metal:155,method:[1,3,4,5,6,7,8,10,11,12,13,14,16,18,20,22,23,24,28,29,30,31,32,33,35,37,39,41,42,45,55,56,58,59,64,65,67,68,69,70,71,72,73,75,77,78,79,83,91,93,96,97,98,100,101,103,105,108,110,111,112,113,115,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,143,145,146,147,148,149,150,154,157,158,159,160,161,162,164,166,168,170,172,173,174,175,176,177,178,181,184,185,186,189,190,192,194,195],method_exist:94,methodnam:178,methodspoof:6,metraxalon:185,metub:173,microsecond:51,microtim:[51,184],middl:[90,147,152,184],middlenam:168,midnight:159,might:[3,30,32,35,36,39,40,41,42,44,46,53,56,58,65,68,70,71,72,75,77,78,79,80,90,93,94,95,96,101,102,108,109,113,116,117,147,148,149,154,155,156,158,159,161,162,164,168,170,172,173,174,178,179,180,184,185,186,188,189,191,194],migrat:[2,4,5,6,7,8,9,10,11,12,13,14,17,18,30,42,57,59,65,102,103,104,111,121,131,140,155,157,166,168,194],migratecurr:[2,4],migratedatabas:183,migratelatest:[2,4],migrateonc:183,migraterefresh:[2,11],migraterollback:[2,4,11],migratestatu:[2,4,11],migratevers:[2,4,11],migration_add_blog:130,migrationrollback:6,migrationrunn:[2,4,5,6,7,8,10,11,12,13,58,65],migrationrunnertest:[6,7,9,10,11],migrationtest:9,migratiopnrollback:10,million:87,millisecond:147,mime:[3,4,17,28,84,111,113,117,148,150,152,161,164,170,173],mime_in:[127,161,164],mimic:[77,185],min:[52,155],min_length:[137,164,168,192],mind:[51,149,155,156,157],mini:77,minim:[28,52,58,83,96,142,155,164,169,193],minimum:[52,75,113,158,164],minor:[3,7,13],minu:178,minut:[69,145,157,158,159,166,175,189],mir:164,mircrotim:184,mirror:[82,155],mis:101,misc:16,miscod:[94,102],misconfigur:[94,102],misinterpret:178,misplac:7,miss:[3,4,6,8,9,10,11,12,14,20,39,44,46,91,111,145,161,163,164,168,172,184,190],missingt:6,mission:58,mistak:40,mitig:[149,156],mix:[52,53,56,58,69,79,80,83,84,87,90,91,96,98,100,102,145,146,148,158,170,173,174,178,179,194],mkdir:157,mmdxxxiv:87,mmm:159,mobil:[152,163],mock:[16,22,42,103,115,185,187],mockappconfig:13,mockcach:188,mockemail:189,mockfilehandl:4,mockincomingrequest:[22,115],mockrespons:4,mocksecur:[22,115],mocksess:189,mockusermodel:189,mod:108,mod_rewrit:[78,108,109],mod_vhost_alia:108,mode:[1,9,17,21,44,52,53,82,109,145,148,157,193],model:[1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,29,35,38,40,41,42,55,61,69,70,79,82,89,94,101,102,103,104,112,132,140,147,154,155,164,170,189,191,193],modelexcept:[8,10],modelfactori:17,modelnam:101,models_info:82,modeltest:[3,5,6,7,8,9,10,11,12],moder:178,modern:[20,69,94,146,170],modif:[146,157,176],modifi:[5,11,22,28,35,39,41,44,64,65,69,70,71,76,82,94,95,98,101,102,108,116,146,147,150,151,154,162,164,165,166,173,176,178,182,184,189,192,194],modifycolumn:56,modifyt:7,modul:[6,8,13,28,31,36,41,58,60,64,70,73,74,81,102,103,108,111,113,114,116,117,120,143,145,168,180,182],modular:[58,59,77,175],module_pag:70,molesti:90,mom:180,moment:[159,181],mondai:174,monitor:75,monolith:142,monolog:4,month:[58,69,94,159],mood:84,moon:189,more:[1,3,4,6,8,11,13,15,24,26,27,28,29,31,32,35,36,37,39,40,44,45,46,52,53,54,56,58,59,61,69,72,73,75,77,79,83,84,88,90,91,93,94,95,96,98,99,100,101,102,107,108,109,119,120,121,123,131,143,145,146,147,148,149,150,154,157,158,161,162,164,166,168,172,173,177,178,179,180,181,182,183,184,186,188,190,191,192,193,194,195],more_entropi:4,most:[4,30,32,35,37,39,42,45,51,53,54,58,62,64,65,67,68,70,73,78,83,90,93,99,101,102,108,113,121,124,128,133,144,145,147,148,150,152,154,155,156,157,158,163,164,170,173,181,182,185,186,189,193],mostli:[96,116,121],mov:84,move:[4,6,7,8,20,24,28,53,76,81,101,102,111,113,121,123,126,127,129,130,131,139,147,154,173],movi:84,mozilla:163,mp4:84,mssql:144,mt_rand:[90,185],much:[37,40,68,93,96,102,108,121,122,124,131,139,142,152,154,157,159,161,166,168,170,183,184,185],muffin:146,multi:[4,10,14,32,84,96,145,157,164,170,174,178,180,190],multidimension:[79,83],multipart:[16,83,161],multipl:[8,12,23,24,29,30,32,36,41,42,44,51,52,54,56,58,65,69,70,74,83,86,90,93,95,96,98,100,103,117,124,145,148,149,156,157,160,168,174,178,181,183],multiplefilt:116,multiplerout:102,multiselect:83,multiview:108,must:[10,14,16,28,30,31,37,40,41,43,44,45,51,52,56,58,59,64,68,70,71,75,77,78,82,83,84,94,95,98,99,102,108,110,113,120,121,123,129,131,146,147,148,149,150,152,154,157,158,159,162,164,166,168,170,172,173,175,176,177,178,179,180,181,182,183,184,186,189,195],mutat:10,mutated:[20,166],mvc:[5,39,121,180,193],my_:121,my_arrai:83,my_articl:78,my_cached_item:145,my_cached_view:180,my_control:123,my_db:[56,70],my_dog_spot:86,my_error:102,my_list:164,my_low_quality_p:152,my_singl:164,my_tabl:[47,48,52,53,124,174],my_token:146,my_x:121,mybutton:83,mycheck:83,myclass:[52,65,121],myclassmethod:186,mycollector:184,mycompani:58,myconfig:70,myconfigfil:122,mycontrol:[32,94,177],mycustomclass:83,mydatabasetest:113,mydecor:176,mydefault:146,mydirectori:82,mydogspot:86,myentiti:166,myerror:164,myfield:83,myfilt:95,myforg:56,myform:[83,137],myfunct:[65,121],myisam:[53,54],mylist:84,mymenu:96,mymenutest:96,mymodel:[168,185],mymodul:[70,155],mynamespac:184,mynewconfig:70,mypag:109,mypic:152,mypic_thumb:152,myprefix_:173,myproject:108,myradio:83,myrout:41,myrul:164,mysalesconfig:70,myseed:59,myselect:83,mysql:[4,5,8,10,14,21,44,48,50,51,52,54,56,116,144,157,194],mysql_:43,mysql_get_client_info:43,mysqli:[2,3,4,5,8,10,12,13,22,44,45,53,115,144,183,194],mysqli_store_result:53,mysqli_use_result:53,mysqlnd:144,mystyl:84,mysubmit:83,mytabl:[47,52,124,174],mytest:183,mytestclass:89,mytext:173,myth:102,mytim:159,myview:[178,179],name:[3,4,6,7,8,10,12,13,14,20,21,24,30,31,32,35,36,37,39,41,43,44,45,47,48,50,52,53,55,56,59,64,65,69,70,71,72,73,75,76,77,79,80,82,83,84,88,89,90,91,94,95,96,98,99,100,101,111,117,121,122,123,124,125,128,130,131,133,135,136,137,143,145,147,148,150,151,152,154,155,156,157,158,159,162,163,164,166,168,170,172,173,174,175,177,178,179,180,181,182,183,184,185,186,188,189,190,192,195],named_rout:69,namedappl:172,namespac:[2,4,5,6,7,8,10,13,14,15,18,20,29,30,31,32,36,39,41,42,44,59,61,64,72,73,75,76,94,95,96,101,109,113,116,122,123,127,129,130,131,134,135,137,143,145,147,149,151,154,155,156,157,158,159,161,164,166,168,170,172,173,176,177,178,182,183,184,185,186,189,192,194,195],namespacenam:94,nativ:[43,44,51,54,64,73,75,96,143,149,157,160,161,162,164,173,174,195],natur:[52,58,146,149,164],nav:154,navbar:107,navig:[29,146,154,156,164],nbsp:174,nearest:32,nearli:[64,91,95,142],necessari:[20,37,52,62,67,83,111,116,149,155,157,164,185],necessarili:[75,102,157,158,168],need:[3,4,10,17,23,29,30,31,32,35,36,37,39,41,42,43,44,45,51,52,54,58,59,61,62,64,65,67,69,70,73,75,76,77,78,80,83,90,91,93,94,95,96,99,100,101,102,104,105,106,108,109,111,113,116,121,124,130,132,134,142,144,145,146,147,148,149,150,152,154,155,156,157,158,159,160,161,162,163,164,166,168,170,172,173,174,177,178,179,180,181,182,183,184,185,186,189,190,191,192,193,194,195],needl:73,neg:[58,78,102,159],negat:[77,145],negoti:[2,3,15,95,97,103,170,173],negotiatecharset:173,negotiateencod:173,negotiatelanguag:[147,173],negotiatelocal:172,negotiatemedia:173,negotiatetest:3,neither:185,neon:113,nest:[14,15,20,52,54,79,102,108,121,129,164,166,177,194],net:[145,152],network:[40,101],never:[20,37,42,51,62,64,102,108,137,145,146,156,157,162,164,168,170,177,180,183,188,192,193],new_nam:56,new_table_nam:56,new_york:81,newcacheid:175,newdata:157,newer:[72,144,154],newfil:82,newlin:[4,148,160,178],newlist:174,newnam:[148,150,161],newprefix_:51,newprefix_tablenam:51,newqueri:52,news_item:194,news_sect:[5,6,12],newslett:83,newsmodel:[192,194],newus:157,next:[4,5,6,11,15,36,53,58,71,75,90,102,111,113,116,117,120,121,136,145,154,156,157,158,159,168,170,182,193,194,195],nexusphp:21,nginx:[37,193],nice:[14,32,90,164,168,192],nicer:156,night:84,nine:174,nisl:90,nl2br:[160,178],nl2brexceptpr:160,nocach:[37,173],nodateformat:10,node:79,noe:111,non:[9,18,20,40,42,53,56,82,90,94,95,105,145,155,157,164,168,174,180,185],non_existent_directori:82,non_existent_fil:82,nonc:[6,28,69,173],none:[25,58,98,106,117,120,145,146,148,152,157,173],nonexist:8,noninfring:165,nopars:178,nope:173,noprimarykei:8,nor:[51,137,149],noreturn:[95,102],normal:[4,29,39,53,56,65,67,68,72,75,77,90,94,96,105,108,146,147,148,154,166,168,169,174,177,178,188,189],norwegian:84,not_equ:9,not_found:102,not_in_list:164,notabl:[53,113],notat:[70,79,82,96],note:[3,5,19,22,25,39,45,51,52,56,65,70,79,84,94,96,102,105,111,113,115,116,117,118,120,140,154,173,174,182,189,193,194],notgroupstart:52,noth:[16,69,70,77,90,146,148,157,164,170,172,173,178,194],nothavinggroupstart:52,nothavinglik:52,notic:[52,69,70,75,94,149,152,161,164,165,166,169,174,178,182,185,190,192,194],notifi:[12,148],notlik:52,notther:33,nov:37,novemb:[4,23],now:[1,5,6,7,8,10,11,15,16,17,20,23,24,25,28,29,31,36,41,75,77,79,81,93,94,102,108,111,113,116,117,118,119,121,122,124,125,127,128,129,130,131,133,135,145,146,150,155,157,158,164,166,168,172,173,176,180,185,191,192,193,194,195],nowackipawel:14,nowher:82,nozero:90,nrk:145,nspk:164,nulla:90,nullabl:[6,11,14,111,166],num:[87,101,102],number:[2,3,4,5,6,7,8,9,10,11,12,13,16,23,32,35,37,40,44,48,51,52,53,56,58,60,65,68,69,70,75,80,83,85,86,90,91,92,94,102,103,104,108,111,116,132,143,145,147,148,152,154,157,158,159,162,163,164,166,168,172,173,174,175,178,179,180,181,182,183,184,185,187,189,190,193],number_appl:172,number_format:178,number_help:[7,8],number_to_amount:87,number_to_curr:87,number_to_roman:87,number_to_s:87,numberformatt:178,numer:[5,7,12,13,21,52,58,70,79,82,87,90,102,111,113,116,117,120,137,164,172],nunc:90,nutshel:[29,94],ob_end_flush:8,ob_get_clean:189,ob_get_level:8,ob_start:189,obfusc:91,obj:189,object:[16,31,33,36,37,43,48,50,52,56,65,69,70,73,75,79,83,84,89,94,95,96,98,100,113,123,146,147,149,157,159,162,164,166,168,170,172,173,174,178,179,185,190,194,195],obscur:[164,168],observ:159,obtain:[40,154,165],obviou:[29,39],obvious:[37,39,43,93,172],occas:41,occasion:168,occassion:15,occur:[6,40,51,71,90,178],occurr:[75,90],oci8:[28,51,144],oct:[3,13],octal:82,octal_permiss:82,odbc:[44,144],odio:90,off:[4,7,23,32,48,54,72,77,83,147,156,162,168,173],offer:[49,93],offic:79,offici:[14,67,141,157,172,173],offset:[11,52,53,124,132,145,152,168],offsetexist:22,offsetset:22,offsetunset:22,often:[30,39,43,44,51,58,71,75,77,96,102,146,150,152,157,158,168,173,178,179,182,185,188,189,191],ogg:84,ogv:84,old:[4,8,24,69,102,130,146,157],old_nam:56,old_table_nam:56,olddefault:146,older:[90,154],oldfil:82,omit:[52,105,157,166,178,180],onc:[4,37,47,51,52,65,68,73,77,95,102,108,109,121,122,145,146,150,154,155,157,158,159,161,162,164,168,172,176,178,179,181,182,183,185,189,193,194],onchang:83,onclick:83,ondelet:56,one:[4,17,28,29,30,31,35,36,37,39,40,41,44,45,50,51,52,53,54,56,58,61,64,65,69,71,73,75,77,79,83,84,90,91,93,94,95,96,98,100,101,102,105,108,113,121,142,145,146,147,148,149,152,154,155,156,157,158,159,161,162,163,164,166,168,169,173,174,175,177,178,179,180,181,182,183,185,188,189,190,192,194,195],oneofmymodelstest:189,ones:[64,90,91,94,102,121,144,178,193],onli:[4,5,7,8,12,13,14,15,17,28,30,32,36,39,40,41,44,45,46,51,52,53,56,58,61,64,65,69,70,72,75,76,77,80,82,83,84,87,90,91,93,94,95,96,98,99,100,101,105,108,113,114,116,124,125,128,130,132,136,143,144,145,146,147,148,149,150,152,155,156,157,158,159,161,162,163,164,166,168,172,173,174,175,177,178,179,181,182,183,184,185,188,189,190,192,194,195],onlin:[54,104,105],onsit:194,onto:[152,157],onupd:56,oop:189,opac:152,open:[29,40,51,52,76,77,83,90,91,94,102,107,108,109,121,123,130,131,148,149,157,161,164,173,174,178,180,184,192,193,194,195],open_basedir:147,openfil:[53,150],opensslhandl:11,opensslhandlertest:11,oper:[8,9,50,52,60,73,82,101,108,121,145,147,149,152,155,157,161,163,172,178,193,194],opportun:62,opposit:[90,159,190],opt:[108,155,157],optgroup:83,optim:[23,36,51,77,94,116,184],option:[1,3,4,10,12,17,20,21,30,32,33,37,41,44,45,51,52,53,54,56,58,59,62,64,68,69,77,79,81,82,83,84,87,90,91,93,94,96,100,101,105,108,111,113,116,117,120,124,130,131,139,142,145,146,148,149,150,152,156,157,159,162,163,164,166,168,172,173,174,177,181,184,186,189],options_arrai:166,options_object:166,oracl:[28,44,144],orang:[32,172],order:[6,7,14,20,30,37,40,41,46,51,53,56,58,65,68,70,71,73,79,82,83,84,93,95,96,101,102,108,113,123,132,144,145,146,148,149,152,154,155,157,158,164,168,172,176,178,183,184,189,195],orderbi:[52,168,175],ordin:[86,91,172,178],org:[4,84,107,148,185],organ:[4,30,35,39,58,59,77,102,107,143,155,164,168,180],orgroupstart:52,orhav:52,orhavinggroupstart:52,orhavingin:52,orhavinglik:52,orhavingnotin:52,orient:[37,73,96,100,152,162],origin:[3,11,28,51,82,90,102,112,113,141,146,148,149,150,152,155,159,161,166,168,173,178,189,195],originalnam:161,orlik:52,orm:40,ornotgroupstart:52,ornothavinggroupstart:52,ornothavinglik:52,ornotlik:52,orwher:52,orwherein:52,orwherenotin:52,other:[4,12,16,24,29,30,35,36,37,39,40,41,42,44,50,52,54,58,59,65,67,69,70,71,72,73,75,76,77,78,80,81,82,83,84,90,91,94,95,96,98,99,102,105,108,121,141,146,147,149,152,154,155,157,158,159,162,164,165,166,168,170,172,173,174,177,178,179,180,182,183,185,189,193,194],other_db:56,other_detail:79,otherwis:[31,51,52,56,58,69,71,80,84,91,96,98,101,147,148,152,156,157,162,165,181,183,184],ounc:[16,35],ouput:14,our:[6,17,29,30,31,39,41,52,58,63,73,77,108,134,143,146,154,157,164,166,168,173,182,191,192,194],ourself:41,ourtub:173,out:[1,4,5,6,7,14,30,35,37,39,42,51,65,77,94,95,102,109,121,142,148,149,152,154,155,157,159,165,166,168,169,170,172,181,184,186,191,192,193],outcom:52,outer:[16,52,79,102,178,184],outgo:[3,4,5,7,8,9,10,11,12,13,100],outlin:[185,194],outperform:157,output:[4,16,25,28,29,30,32,37,40,48,51,56,59,68,69,71,82,90,91,92,95,96,98,100,102,118,121,126,127,133,145,147,148,149,154,159,166,169,176,178,179,181,189,190,194,195],outsid:[6,39,40,73,77,78,87,90,111,113,114,116,117,120,150,155,166,175,189],outstand:144,oval:84,over:[37,39,62,64,65,69,70,81,83,84,96,101,111,146,147,172,173,178,179,181,182,184,189,193,194],overflow:40,overkil:[64,73],overlai:152,overlap:182,overnight:174,overrid:[11,14,30,36,44,64,72,73,77,82,89,94,95,108,113,134,146,162,164,168,178,184,185,186,189],overridden:[16,70,94,147,173],overview:[3,4,5,9,12,37,72,172,184,191,194],overwrit:[6,8,31,32,52,59,70,82,146,147,155,162],overwritten:[32,70,164],owasp:[95,156],own:[5,15,17,20,23,30,31,35,51,52,54,58,60,64,71,73,75,76,79,81,82,83,91,93,94,96,102,107,113,115,116,143,146,148,149,150,151,155,157,158,166,168,172,173,174,176,177,178,184,185,186,189,190,191,195],owner:157,packag:[2,5,77,99,149,157,180,193],packagist:[60,107,111,113,116,117,120],pad:[30,32],page1:52,page2:52,page:[3,4,7,12,13,14,15,29,30,37,38,39,47,52,65,69,72,74,75,82,83,84,90,91,95,96,102,103,107,108,132,139,147,148,156,157,158,160,162,170,173,177,178,180,182,184,190,192,194],page_:154,page_titl:180,pagemodel:[72,154],pagenavig:154,pagenotfoundexcept:[8,94,194,195],pagenumb:154,pager:[2,4,10,12,14,20,70,111,113,132,154],pagerinterfac:[2,4,111],pagerrender:[2,4],pagerrenderertest:4,pagertest:[4,12],pages:70,pagin:[4,8,10,12,15,82,103,104,121,131,140,153,168],pain:[96,173],painless:[70,189],pair:[52,53,69,70,102,157,166,168,173,174,175,178,179,183,184,186],pane:24,paragraph:[92,154],param1:[43,96,166,189],param2:[43,96,166,189],param3:166,param:[4,10,14,30,52,65,69,84,94,149,155,158,164,166,174,175,178,182,186],paramet:[3,4,8,10,12,13,16,17,20,23,24,28,29,30,32,43,46,48,51,52,53,54,56,58,65,69,70,72,75,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,96,98,100,101,111,116,145,146,147,148,149,150,152,154,156,157,158,159,160,161,162,163,166,170,173,174,178,179,180,181,182,183,184,185,186,188,189,190,194,195],parameter:40,parent:[22,56,61,64,94,96,98,115,127,131,173,178,183,186,189],parenthes:[52,149,178],parenthesi:52,pars:[14,30,91,98,138,149,162,163,176,190],parse_str:162,parsepair:[4,14],parser:[2,4,6,8,10,12,14,20,103,104,113,121,139,140,142,171,194],parserequesturi:3,parserplugintest:[5,6],parsertest:[3,4,5,6,10,12],part:[6,7,10,11,33,37,39,42,48,51,52,59,64,70,73,82,90,91,92,96,98,102,107,123,138,142,143,148,149,155,164,166,168,170,174,185,193,195],parti:[17,35,36,40,60,69,70,95,100,108,111,113,116,117,120,143,146,149,158,194],partial:[8,40,51,161,162,174],particular:[17,31,45,48,50,52,53,54,65,70,73,77,90,104,157,162,165,177,180],particularli:[52,54,108,156,160,195],pascal:[58,86],pascalcas:166,pass:[6,10,14,16,17,20,24,29,30,31,32,33,36,39,41,45,51,52,53,65,69,71,72,73,79,82,83,84,89,90,91,93,95,96,98,100,101,102,113,116,146,147,148,149,150,152,154,155,156,157,159,161,162,164,166,168,170,172,173,174,175,177,178,179,180,181,182,184,185,186,190,192,193,194,195],pass_confirm:[164,168],passconf:[137,164],password:[5,44,45,70,83,90,96,102,135,137,145,147,148,149,162,164,166,168,183,194],password_bcrypt:166,password_default:168,password_hash:[166,168],past:[12,149,159],patch:[10,14,23,96,101,102,116,147,156,186],path:[3,4,5,6,10,12,20,28,29,30,32,33,35,36,41,42,44,58,69,73,76,77,78,80,82,84,91,96,102,105,108,111,122,123,127,130,131,134,137,139,146,147,148,150,152,154,155,156,157,161,173,178,179,183,186,195],pathinfo:9,pathsconfig:76,pattern:[39,42,47,49,52,65,95,102,145,150,154,155,156,166,170,181,191,194],paus:147,payment:52,pconnect:[44,45],pdf:[148,173],pdo:[44,48,53,144],pear:142,pecl:157,pem:[44,147],pencil:155,pend:56,peopl:[39,45,142,148,152,168],per:[4,40,68,108,148,154,158,164,168,173],per_pag:132,perceiv:190,percent:[32,164,172,178],perfect:[30,102,159,168,192],perfectli:[25,80,118],perform:[4,16,35,37,41,48,50,51,52,65,68,70,72,73,77,94,95,102,141,142,145,152,157,158,168,172,173,176,178,181,182,184,186,190,193,194,195],perhap:[58,64,73,157,164],period:[56,82,102,150,158,164,172,173],perm:82,perman:[157,162,166,168,173],permiss:[17,29,82,108,150,152,157,161,165,182],permit:[43,44,48,52,56,70,83,84,86,94,95,102,116,137,148,156,157,158,164,165,174,192],permit_empti:164,perpag:[70,154],perpetu:141,persist:[44,69,146,148,157,166,168,185,189],person:[79,148,165,166],pertain:[39,105,111],pg_exec:51,pgsql:44,phase:[31,51,183],phasellu:90,phd:[101,178],philosophi:121,phone:[137,152,185],phonenumb:185,phooei:90,photo1:148,photo2:148,photo3:148,photo:[101,102,147,152,155,173],photograph:152,php5:82,php7:108,php:[3,4,5,6,7,9,10,11,12,13,14,17,18,20,22,24,25,28,29,30,31,32,33,35,36,37,39,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,58,59,61,62,64,65,68,69,70,71,72,73,75,76,77,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,98,100,101,102,103,104,105,108,111,113,114,115,116,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,166,168,170,171,172,173,174,176,177,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195],php_eol:[29,150],php_error:4,php_version:30,phpc:4,phpcbf:4,phpdoc:[3,4,8,9],phpdocumentor:8,phpinfo:70,phpmyadmin:194,phpredi:[145,157],phpstan:113,phpunit:[8,9,71,76,105,111,113,183],phrase:[86,90,147,173,178],physic:148,pick:[75,113,172],pictur:[84,148,181],piec:[6,39,51,77,96,121,139,145,146,157,162,166,178,179,184,194],pig:173,ping:45,pipe:[164,178],pixel:152,pizza:[84,164],place:[29,32,41,52,56,58,61,62,64,65,68,70,71,72,90,94,95,102,143,145,146,147,148,152,154,155,161,164,166,168,170,172,173,178,181,188,189,194],placehold:[4,28,51,69,75,83,172,173,177],plai:[39,42],plain:[32,88,126,149,173,178],plain_text:126,plaintext:[126,148,149],plan:[108,184],planet:178,platform:[17,43,44,48,52,54,108,157,163,195],player:79,playground:107,pleas:[31,42,47,52,63,82,88,90,94,108,109,117,118,119,120,140,143,145,147,149,154,157,164,168,184,185],pleasant:[29,164,166],plu:[83,84,143,154,164],plugin:[2,6,10,14],plump:32,plural:[31,86,172],png:[84,91,93,96,98,127,150,152,155,161,164],podunk:194,point:[42,69,75,83,87,101,102,105,121,145,155,164,166,168,192,193,194],pointer:[53,193],pointless:14,polici:[28,69],polish:13,poll:101,poly1305:149,poor:75,pop:91,popul:[59,96,154,166,174,183,186],popular:[54,145,155,157],populatehead:[96,98,173],popup:91,port:[11,44,45,108,145,148,157,195],portabl:[43,83,91,164],portal:61,portion:[42,52,98,152,159,162,165,178],porttitor:90,pose:71,posit:[40,53,56,79,86,90,102,145,152,159,178,179,182],possibl:[4,22,30,32,40,51,52,56,64,67,70,72,76,79,102,142,147,149,150,151,152,154,156,164,166,173,178,180,185,189,194,195],post:[9,12,16,29,37,39,41,75,83,91,95,96,99,100,101,102,108,116,132,134,147,156,158,164,168,175,186,192,194],post_controller_constructor:[65,121],post_data:147,post_imag:84,post_system:65,post_var:75,postgr:[2,4,6,7,8,10,12,13,16,22,44,48,115,144],postgresql:[14,16,44,48,51,116,144,157],postmanag:41,postmodel:77,potenti:[6,46,58,92,102,107,145,158,161,168,179,180],pound:[90,162],power:[37,95,123,147,150,155,173,192],pqueri:51,practic:[25,40,51,70,71,73,80,96,108,118,152,172,182,185],prais:191,pre:[4,6,61,84,107,108,160,164,189],pre_system:[5,8,65],preced:[56,62,98,111,149,162,189],precis:[87,178,181],predefin:[32,150,166],predetermin:164,predi:2,predishandl:[8,10],prefer:[45,56,83,91,93,96,102,105,125,146,149,152,154,161,166,168,170,173,174,178,180,194],preferapp:[36,77],prefersapp:36,prefetch:53,prefix:[5,16,17,43,44,52,58,70,73,80,90,91,102,111,125,145,147,166,173,178,190],prefix_:145,prefix_tablenam:51,prefixedkei:145,prefixt:51,preformat:81,prematur:173,prep:164,prep_url:91,prepar:[4,17,37,162,182,189],preparedqueri:[2,51],preparedqueryinterfac:2,prepend:[31,51,58,79,80,96,98,102,145,146,149,150,173,180],prependhead:[96,98,173],prescrib:[173,189],presenc:192,present:[11,31,39,40,44,77,94,95,102,146,154,164,170,172,178,183],preserv:[157,159,168],press:32,presum:84,pretti:[32,37,39,51,93,96,121,122,124,173,190],prettier:178,prev:154,prevent:[7,9,10,11,14,17,19,20,25,36,42,52,58,69,80,91,94,102,118,155,156,157,158,162,173,189,194,195],preview:152,previou:[15,23,24,28,53,58,69,103,104,116,125,147,152,154,156,157,159,164,174,190],previous:[17,18,20,69,81,91,98,146,157,164,168,170,178,179],previous_url:[14,91,178],price:172,primari:[5,8,9,15,16,17,35,42,44,50,51,52,56,77,131,145,157,164,168,185,192,194],primarili:[15,58,69,102,168,190,193],primary_kei:50,primarykei:55,prime:155,principl:[101,193],print:[8,29,52,82,84,86,90,91,148,162,169,190],print_r:185,printdebugg:[125,148],printer:84,prior:[3,28,65,91,95,102,111,113,149,164,168,176,183],priorit:14,prioriti:[14,20,36,70,93,148,157],privat:[44,61,70,111,168,173],privatemethod:189,privileg:40,pro:108,probabl:[24,37,41,157,179,181,192],problem:[4,9,14,37,39,40,58,67,69,70,77,90,96,102,109,147,155,157,164],problemat:186,procedur:[73,77,85,130],process:[3,9,16,17,20,23,24,28,40,45,51,53,54,61,65,68,77,101,108,109,149,155,156,157,164,176,178,179,182,189,195],process_:94,processor:160,produc:[47,48,51,52,53,54,56,83,84,90,91,162,164,181,195],product:[3,42,44,45,58,65,70,71,72,94,102,108,109,111,130,134,150,152,157,170,184,185,193],product_lookup:134,productcontrol:102,productlookup:[102,134],productlookupbyid:102,productlookupbynam:102,profil:[33,39,102,162,184],program:[34,42,144,145,193],programat:16,programm:[72,191,194],programmat:[51,73,194],progress:32,prohibit:95,project:[21,29,30,35,40,41,44,60,61,63,69,70,76,77,89,95,106,108,109,118,119,121,122,130,141,142,143,145,150,155,162,172,178,181,182,185,189,192,193,195],project_root:106,promis:17,prompt:[29,30,32,173],prone:[35,41],prop:9,propag:[17,178],proper:[7,17,39,52,58,101,111,149,161,173,186],properli:[3,6,9,16,39,51,52,109,116,155,157,178,185,192,194,195],properti:[4,5,6,12,13,14,17,20,23,28,30,36,44,45,53,56,58,65,70,75,77,95,96,101,111,113,116,121,122,146,148,149,154,155,157,159,164,168,170,173,178,182,183,184,185,192,194,195],property_exist:[4,168],propos:[3,17,143],prose:178,protect:[4,5,22,23,27,30,40,52,53,55,58,61,88,91,92,94,95,96,101,102,113,115,119,135,148,150,155,161,166,173,178,179,182,183,184,185,186,192,194],protect_al:92,protectidentifi:51,protocol:[14,37,84,90,91,98,100,109,146,147,157],protocolvers:173,prototyp:[44,164,166,174],prove:[56,184],proven:166,provid:[4,6,7,16,17,23,29,30,35,36,37,40,41,42,44,45,50,52,53,56,58,60,61,65,69,70,71,72,73,75,77,79,81,84,87,88,93,94,96,98,99,100,101,102,108,113,116,121,123,141,142,143,146,147,148,149,150,152,154,155,156,157,158,159,161,162,163,164,165,166,168,170,172,173,174,175,179,180,181,182,183,185,188,189,190,192,194,195],provis:60,proxi:173,proxyip:[100,111],prune:29,pseudo:[149,150,178],psr4:[4,6,13,31,35,58,77],psr:[2,7,17,22,35,73,75,76,77,94,103,111,113,115,121,177,180],psrlog:5,public_html:108,publicli:[70,157],publish:[56,103,116,153,165,194],published_on:175,pull:[4,15,39,41,63,84,96,105,143,166,172,173,180],punctuat:164,pure:[45,53,169,178],purg:168,purgedelet:189,purgerow:189,purpl:32,purpos:[30,94,96,102,146,157,165,168,178],puru:90,purview:39,put:[16,23,29,37,39,51,52,53,54,68,70,73,76,77,83,91,94,95,96,99,101,102,109,116,146,147,148,149,156,174,180,186,194],qrj7:27,quadrillion:87,qualifi:[59,70,77,95,102,164,168,170,182,184],qualiti:11,quantiti:83,quarter:159,queri:[2,3,4,5,6,7,8,10,12,14,20,23,24,40,43,44,45,46,49,50,54,56,59,65,75,78,82,103,113,124,128,157,174,178,184,193,194],query2:53,query_build:[3,10,11,12,82],querybuild:[24,154],queryinterfac:2,question:[32,51,58,90,109,166,189,191],queue:[6,77],qui:90,quick:[14,41,49,51,69,72,103,184],quickli:[39,101,102,187],quicktim:84,quisqu:90,quit:[51,62,68,73,84],quot:[4,7,13,51,69,83,90,92,160],quotes_to_ent:90,r0lgodl:84,rachel:185,radio:83,radiu:[90,178],rain:32,rais:[24,51,178],rambl:178,ran:[30,58,192],rand:52,random:[29,40,52,89,90,149,150,161,185],random_byt:90,random_el:73,random_str:90,rang:[65,83,87,90,152,159,162],rapid:166,rapidli:168,rare:[51,111,113,116,117,120,157],rate:[95,170],rather:[51,54,56,78,83,102,113,121,157,168,173,178,185],ratifi:143,ratio:152,raw:[10,30,39,51,56,69,93,96,145,146,147,148,161,166,178,179,181],rbc:164,rdfa:84,reach:194,reachabl:102,reactor:141,read:[6,9,13,42,47,51,52,56,73,82,101,105,106,108,121,140,147,154,155,157,166,172,173,178,180,184,191,192,193,194,195],readabl:[7,65,82,84,87,102,157,158,159,172,173,175],readi:[47,84,121,150,154,155,178,185,195],readm:[4,6,8,11,13,111,157],real:[94,141,148,150,173,180],realli:[37,51,54,91,145,146,162,168],reason:[29,35,44,51,52,70,90,91,94,147,157,170,173],reboot:155,rec:84,receiv:[37,39,65,70,93,98,111,113,114,116,117,120,121,148,155,164,166,168,190],recent:[58,67,146,159],recentpost:175,recipi:[14,148],recogn:[16,31,65,91,152,168],recogniz:184,recommend:[25,35,41,53,54,58,70,75,77,80,84,90,94,95,102,104,108,109,111,113,114,116,117,118,120,121,143,148,149,158,164,169,172,186,189,191,193],reconfigur:149,reconstruct:33,record:[17,36,40,52,53,146,154,156,157,164,167,168,178,181,194],recreat:[64,155],rector:[21,113],recurs:[82,150,155,166],recycl:168,red:[32,84,128,152,155,164,166,174,178,192,193],redefin:77,redi:[2,7,11,157,158],redirect:[3,4,5,13,14,16,17,39,69,72,78,95,111,121,147,148,190],redirectexcept:[4,13],redirectrespons:[3,4,14,69,121,182,190],redirectresponsetest:[3,4,5],redishandl:[4,7,8,9,10,11,13,22],redishandlertest:[4,8],redisplai:164,reduc:[23,36,77,90,102,145,158,160],reduce_double_slash:90,reduce_linebreak:160,reduce_multipl:90,redund:14,ref:[12,84],refactor:[3,5,6,7,10,11,12],refer:[3,4,7,8,11,14,70,75,76,79,80,81,94,102,103,105,117,118,119,120,121,124,161,164,168,181,191,193,194,195],referenc:[35,81,107,164,168,178],referr:163,refil:158,refin:175,reflect:3,reflectionhelp:2,reformat:115,refresh:[6,58,68,183,185],refus:173,regard:52,regardless:[51,58,90,94,148,149,152,164,173],regener:[11,17,157],regenerationerbiag:11,regex:[4,102,150,164],regex_match:164,region:70,regionalsal:70,regist:[4,35,65,123,157,166,176],registrar:[9,77],regress:[14,58,65],regressdatabas:183,regul:146,regular:[16,56,70,95,149,155,156,157,164,195],reilli:90,reject:[146,158,173],rel:[36,58,69,72,82,84,91,96,102,105,147,148,155,156,162,189],relat:[8,16,17,20,21,22,35,56,70,73,84,88,111,154,156,157,164,168,192],relationship:56,relativepath:156,releas:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,31,105,106,107,114,115,145,193],relev:[44,77,113,160,178],reli:[7,41,56,96,114,115,157,173,186,188],reliabl:[67,90,157],reload:[109,164],reloc:[8,42,150],remain:[4,17,53,68,150,152,155,172,178,192],remaind:70,rememb:[29,51,56,70,145,146,149,159,170,180,189],remember_token:146,remot:[27,40,147,155],remote_addr:157,remov:[3,4,5,6,7,8,9,11,12,14,16,18,23,28,30,31,32,52,56,68,69,71,76,90,98,101,105,111,112,113,116,129,130,135,136,137,149,150,155,158,161,162,164,168,173,178,183,184,189,193],remove_invisible_charact:69,removedotseg:20,removefil:150,removehead:[96,98,173],removepattern:150,removerelativedirectori:20,removetempdata:157,renam:[5,13,42,44,52,70,105,121,130,133,150,166,193],renamet:56,render:[4,8,13,14,41,65,68,69,71,103,138,154,171,176,178,181,184,194],rendererinterfac:[2,69,178,179],rendersect:177,renderstr:[178,179],rendertimelin:13,reorgan:[1,4],reorient:152,repeat:[16,39,106,164,168,178],repeatedli:158,replac:[4,6,8,14,15,28,31,41,50,51,52,66,69,73,79,86,90,94,95,102,103,106,111,112,113,114,121,123,124,125,126,128,129,131,136,138,142,145,146,149,154,155,159,164,168,169,173,178,179,180,189,192],replacetest:12,repli:[148,170],replyto:148,repo:[1,4,19,20,23,24,25,28,105,143],report:[4,30,41,46,54,72,100,108,146,148,163,173,192],reportonli:173,repositori:[6,42,63,70,77,103,104,105,106,166,172],repres:[37,42,48,53,70,79,96,98,102,143,146,147,152,159,161,162,166,168,170,173,178,182,185],represent:[15,37,69,96,98,100,101,146,149,162,178],reproduc:77,request:[2,3,4,7,10,11,12,14,15,16,23,27,33,36,38,39,41,52,53,61,63,64,68,69,74,75,78,83,87,91,93,94,95,97,98,99,102,108,109,110,111,113,116,123,127,136,143,146,148,151,155,157,158,161,162,163,164,166,168,170,172,173,180,182,184,185,189,192,194,195],request_filenam:78,request_method:100,request_uri:[96,100,109],requestinterfac:[2,69,95,96,110,158],requir:[3,7,8,10,14,28,30,31,32,35,36,39,41,44,47,48,51,52,54,56,58,65,69,70,71,75,77,79,94,96,100,102,103,104,105,108,111,134,137,138,142,143,145,146,147,148,149,152,155,157,159,161,164,166,168,170,172,173,174,176,178,184,186,189,192,194],require_with:164,required_with:[7,8,164,168],required_without:[7,8,164],requiredfield:164,res:147,reserv:[23,92,102,113,164,166],reserved_charact:23,reset:[11,13,14,83,109,147,148,150,158,164,168,183,185,189],reset_data:52,resetcount:185,resetqueri:52,resetselect:3,resetsingl:189,resid:31,resist:41,resiz:91,resolut:101,resolv:[8,13,82,147,150,155,162],resort:157,resourc:[4,7,31,40,51,52,53,54,60,68,69,84,97,98,102,103,152,155,157,170,193,194],resourcecontrol:11,resourcecontrollertest:11,resourcepresent:[11,12],resourcepresentertest:[11,12],respect:[5,6,14,20,40,58,59,79,83,95,111,113,150,154,155,159,164,168,170,173],respond:[37,101,159,170,173],respondcr:170,responddelet:170,respondnocont:170,respons:[2,3,4,5,11,12,14,15,16,20,24,28,39,51,58,61,64,69,72,80,94,95,98,103,104,106,110,111,113,121,123,139,140,146,155,156,158,166,168,180,184,187,189,194],responsecookietest:4,responseinterfac:[2,3,4,69,95,110,111,158,182,190],responsesendtest:4,responsetest:[3,4,5],responsetrait:[2,9,11,20,26,111,119,170],responsetraittest:[3,6,11],rest:[11,12,13,31,44,75,94,95,97,99,103,155,166,191],restart:108,restor:[14,168],restrict:[10,13,32,39,95,101,142,147,155,158,165,168,175],restrictor:52,restructur:[4,57],result:[2,4,9,10,16,23,24,30,40,43,48,49,50,51,54,70,79,82,84,87,90,95,96,98,102,103,105,113,124,145,147,150,152,155,156,157,159,161,164,166,168,170,172,173,174,175,176,178,179,181,182,184,185,186,189,190,194,195],result_arrai:124,resultid:43,resultinterfac:[2,52],resultmod:53,retain:[121,146,150,155,178,179,180],retainpattern:[150,155],retriev:[37,39,47,51,52,68,69,98,100,146,147,154,159,161,162,163,164,166,178,179,180,181,189,190,194],retroact:19,returndata:168,returned_email:148,returnedvalu:82,returnobject:91,returnpath:148,returntyp:166,reus:[36,70,157,164,177,178,194],reusabl:77,rev:14,revalid:173,reveal:193,revers:[12,17,69],reverse_nam:53,reversenam:53,reverserout:10,revert:[3,4,13,14,58,105],review:[4,113],revis:[11,14,111,164,168],revisit:6,rework:6,rewrit:[2,9,78,108,121],rewrite_modul:108,rewritecond:78,rewriteengin:78,rewriterul:78,rewritten:144,rfc:[4,75,111,147,148],rgb:152,rgba:152,rich:[142,167],richardson:101,rick:51,rid:164,ridden:[84,173],ride:[101,178,179,189],right:[29,32,52,65,72,77,90,94,102,104,107,121,146,152,164,165,178,181,184,193,194,195],rightdelimit:178,ripe:32,risk:[17,67,96,157,168,178],risu:90,robot:[155,163],robust:[148,155],roi:101,role:[39,40,95,164,178],roll:[54,58,183],rollback:[12,54,58],roman:87,root:[8,29,30,31,40,41,42,44,55,58,59,69,70,71,76,77,78,82,94,96,102,105,106,108,109,111,113,114,116,117,120,121,145,157,173,183,189,193,194,195],rootpath:[30,35,58,69,76,77,105,150,155],roughli:113,round:[84,178],rout:[2,3,4,5,6,7,8,9,10,11,12,13,20,23,28,30,41,42,64,65,69,72,78,84,91,95,99,103,104,108,109,111,120,121,140,158,178,184,191,193],routabl:[8,61],route_to:[69,102,178],routecollect:[2,3,4,6,7,8,9,10,11,41,64,101,102,116,134,182],routecollectioninterfac:[2,4,41,64],routecollectiontest:[4,6,8,10,11],router:[2,3,4,5,6,7,8,9,10,11,13,14,16,28,41,64,72,102,116],routercollect:41,routercollectioninterfac:41,routercollectiontest:5,routerinterfac:[2,10],routertest:[4,5,6,10],routescollect:102,routetest:3,routin:[73,164,182],row:[23,32,35,47,48,52,83,116,150,164,166,168,174,178,180,183,192],row_alt_end:174,row_alt_start:174,row_end:174,row_start:174,royal:164,rpc:121,rss:[84,102],rssfeeder:102,rst:[6,8,10,12,14,113],rsync:155,rtl:155,rtype:52,rule:[1,2,3,4,7,8,9,10,14,18,23,24,28,31,32,39,40,58,78,83,94,95,96,107,109,117,137,142,147,148,161,162,170,178,179,192,194,195],ruleset:164,rulestest:[6,8,9],run:[4,6,7,9,14,16,23,31,32,34,41,42,43,44,46,48,49,50,51,52,53,56,58,59,61,64,65,69,70,71,72,75,77,81,93,95,96,101,102,103,104,105,106,116,121,124,130,137,140,147,148,152,155,156,157,158,159,166,170,173,174,175,178,180,182,183,184,185,188,189,194],runner:10,runtim:[16,28,36,70,75,111,113,116,117,120,146,149,164],runtimeexcept:[72,161],s3_bucket:[70,100],safari:163,safe:[14,54,69,83,88,90,91,146,149,157,160,161,162,164,166,182,183,192],safe_mailto:[14,91,178],safe_mod:147,safer:[51,52,147],safest:[95,96,157],safeti:[6,39,51,157,162,193],sai:[31,36,43,76,77,91,94,101,154,157,158,164,166,172,194,195],said:[70,157],sake:194,sale:70,salli:169,salt:9,same:[8,23,29,30,32,33,35,36,41,43,51,52,53,56,58,65,69,70,72,73,75,77,78,79,82,91,94,96,98,102,105,108,116,121,122,124,130,145,146,147,149,152,155,156,157,159,161,164,166,168,170,173,174,177,178,180,182,189,195],same_fil:[21,82],samesit:[17,20,80,111,157,173],samesite_lax:146,samesite_non:146,samesite_strict:146,sampl:[56,59,70,105,151,178,185],samsonasik:16,sandal:94,sane:146,sanit:[5,40,69,88,91,96,156,162,164],saniti:40,sanitize_filenam:88,sanitizefilenam:[88,156],saturdai:174,save:[4,8,11,13,16,29,39,41,44,52,53,68,69,70,94,96,102,135,145,146,147,148,149,152,155,156,157,159,161,166,170,178,179,180,185,192,194,195],save_handl:157,save_path:[6,157],savedata:[69,178,179],sbin:148,scalar:178,scale:142,scan:[58,73,77,98,102,177,195],scelerisqu:90,scenario:[108,149,164,185],scene:[113,154],schema:[44,58,164,166,183],scheme:130,school:91,scientif:178,scientist:194,scope:[77,111,113,114,115,116,117,119,120,150,178,185],score:146,scotia:164,scotiabank:164,scrambl:156,scratch:[142,155],screen:[32,184,193],screeni:91,screenx:91,script:[3,4,5,9,16,28,29,30,32,52,53,65,69,71,72,84,95,105,108,121,122,130,134,139,147,152,157,158,164,170,173,178,179,181,184],script_nam:96,script_tag:84,scriptnoncetag:[28,173],scrollbar:91,scss:155,sdch:96,seamlessli:168,search:[10,14,17,36,51,52,78,79,90,94,96,108,109,147,154,155,163,164,168,190,193],second:[3,16,32,36,41,43,45,51,52,53,56,65,68,69,75,80,82,83,84,87,90,91,93,94,95,96,98,100,101,102,108,114,121,145,146,147,148,149,150,152,154,156,157,158,159,161,162,164,168,170,172,173,175,178,179,180,181,182,185,186,189,190,194,195],secondari:[51,107],secret:149,secret_kei:70,section:[6,9,14,20,28,37,52,63,71,72,73,75,77,93,94,95,96,103,105,108,111,113,116,117,120,147,149,154,157,162,168,177,178,184,187,191,192,193,195],secur:[2,4,8,11,12,13,17,20,28,38,42,51,61,69,70,71,80,85,91,94,95,96,102,103,104,109,111,113,116,117,119,120,121,140,146,148,149,150,153,157,161,164,168,178,179,192,193],securehead:102,security_help:[7,8],securitytest:13,sed:90,see:[0,1,9,17,20,23,24,25,26,27,28,29,30,36,37,39,44,45,47,52,53,54,56,58,63,69,71,73,76,77,81,82,84,88,90,91,93,94,95,96,98,100,102,107,109,111,116,117,119,121,129,132,145,147,149,152,154,155,157,158,161,162,164,168,173,178,179,180,181,182,184,185,186,189,190,192,193,194,195],seecheckboxischeck:190,seed:[2,4,5,7,12,16,30,31,42,52,57,103,168,185,194],seeder:[2,7,14,16,24],seedonc:183,seeelement:190,seeindatabas:183,seeinfield:190,seelink:190,seem:[68,102,109],seen:161,seenumrecord:183,seg1:102,seg2:102,seg3:102,segment:[4,29,78,79,83,91,95,101,172,182,192,194],seldom:148,select:[7,8,10,16,28,32,47,50,51,53,81,83,98,107,124,149,156,157,161,164,174,178],select_max:124,selectavg:52,selectcount:[11,14,52],selectmax:[52,124],selectmin:52,selectsubqueri:52,selectsum:52,selecttest:[6,8,11],self:[4,158,173],sell:165,sem:90,semant:160,semi:[51,193],semicolon:169,send:[4,10,23,28,37,40,42,45,65,67,78,80,82,83,93,100,111,116,125,146,147,149,154,156,170,173,181,186,189],sendbodi:111,sendcooki:[22,24,115],sendhead:111,sendmail:148,sens:[73,158,166,186,194],sensit:[70,157,173,181,193,195],sent:[37,51,56,65,67,68,72,95,96,102,146,148,154,157,161,164,170,173,188],sentenc:178,seo:194,sep:11,separ:[4,20,23,24,30,36,39,44,45,52,56,58,59,69,70,79,82,86,90,91,101,102,108,111,121,141,143,146,154,157,159,164,166,168,172,175,178,181,184,185,189,195],seper:70,sept:12,septemb:[2,22],sequenc:[35,44,48,50,58,178],sequenti:[130,178],seri:[35,95,154],serial:166,serious:40,serv:[2,3,4,8,14,70,84,93,94,98,108,109,147,170,173,193,195],server:[2,3,7,8,9,10,14,37,40,42,44,45,67,68,70,71,73,76,81,82,90,93,94,96,98,99,100,102,103,104,109,121,145,146,147,148,149,152,157,170,173,193,195],server_nam:[71,108],server_path:82,server_protocol:[96,100],servernam:108,servic:[2,3,4,5,6,7,8,10,11,14,17,37,38,58,60,61,64,75,77,93,95,96,103,111,121,125,126,134,138,145,146,147,148,152,153,154,155,156,157,158,160,162,164,172,174,178,179,181,182,188,192],serviceinst:4,servicestest:[5,6],sess_expire_on_clos:157,session:[2,3,4,5,6,8,9,10,11,12,13,17,20,22,23,28,31,58,61,69,91,103,104,121,140,146,149,153,156,189,192],session_destroi:157,session_id:157,session_regener:13,session_var:75,session_write_clos:157,sessioncommandstest:4,sessioncookienam:157,sessiondbgroup:157,sessiondiv:157,sessiondriv:157,sessionexpir:157,sessionhandlerinterfac:22,sessionhandlersbasehandl:4,sessioninterfac:2,sessionmatchip:157,sessionregeneratedestroi:157,sessionsavepath:157,sessiontest:[4,12,13],sessiontimetoupd:157,set404overrid:102,set:[4,5,6,7,8,10,11,12,13,16,17,20,23,24,28,29,30,32,35,36,40,41,42,44,47,48,51,52,53,54,56,58,59,68,69,70,71,72,73,75,76,77,78,80,81,82,83,87,90,91,94,95,96,98,100,107,109,111,113,125,134,136,137,142,143,145,146,147,150,151,152,155,156,157,158,159,161,162,166,168,170,172,174,176,178,179,180,181,182,185,190,192,193,195],set_:83,set_checkbox:[16,83],set_content_typ:133,set_cooki:[80,146],set_head:128,set_output:133,set_radio:[16,83],set_realpath:82,set_select:83,set_status_head:133,set_userdata:136,set_valu:[4,83],setaltmessag:148,setattachmentcid:148,setautorout:102,setbcc:[125,148],setbodi:[37,96,98,113,147,156,173],setcach:173,setcapt:174,setcc:[125,148],setconditionaldelimit:178,setcontenttyp:[133,173],setcooki:[24,80,111,146,173,189],setcount:185,setcreatedat:[4,166],setcreatedon:4,setdai:159,setdat:173,setdata:[138,178,179],setdatabas:45,setdefault:146,setdefaultcontrol:[28,94,102],setdefaultmethod:102,setdefaultnamespac:[14,102],setdefaultsrc:173,setdelimit:178,setempti:174,setenv:71,setescapeflag:7,setfil:8,setfilenam:[11,173],setflashdata:157,setfoot:174,setformatt:185,setfrag:162,setfrom:[125,148],setglob:[96,100],setgroup:58,sethead:[11,37,96,98,128,147,148,173,174],sethost:162,sethour:159,setinsertbatch:52,setjson:[111,133,173],setlastmodifi:[111,173],setlink:111,setlocal:[172,182],setmessag:[125,148],setmethod:[96,100,189],setmim:111,setminut:159,setmodel:12,setmonth:159,setnamespac:58,setoverrid:[89,185],setpad:17,setpassword:166,setpath:[96,154,162],setport:162,setprefix:51,setpriorit:102,setprivateproperti:189,setprotocolvers:[96,98,173],setqueri:[51,162],setqueryarrai:162,setrawcooki:[24,146],setreplyto:148,setreporturi:173,setresponseformat:170,setrow:53,setrul:[6,28],setrulegroup:164,setschem:[4,162],setsecond:159,setsil:[16,162],setstatuscod:[37,133,156,158,173],setsubject:[125,148],setsurroundcount:154,settempdata:157,settempl:174,setter:[41,189],settimezon:[16,166],setto:[125,148],settranslateuridash:102,setup:[4,5,7,12,13,70,71,72,132,145,157,168,182,183,186,188,189,194],setupauthtrait:189,setupbeforeclass:189,setupdatebatch:[23,52],setupmethod:189,setuprequest:3,setvalidationmessag:[8,168],setvalidationrul:168,setvar:[178,179],setx:[159,166],setxml:[111,173],setyear:159,seven:[152,174],sever:[6,12,16,32,37,39,51,52,53,56,58,64,69,70,71,75,76,77,79,94,96,102,105,107,146,159,161,162,164,168,172,173,178,179,181,183,184,188,193,195],sha1:90,sha512:149,shadow:152,shadowcolor:152,shadowoffset:152,shall:165,shape:84,share:[36,44,45,69,70,76,96,102,149,157,168,173,189],shareopt:147,sharona:179,she:40,sheet:[40,156],sheme:162,ship:[31,58,70,174,184,187],shipment:67,shirt:[83,102],shirts_on_sal:83,shockwav:84,shoe:94,shop:[121,146,194,195],shortcom:161,shortcut:[36,84,147],shortdat:172,shorten:11,shorter:[32,164],shorthand:186,shortnam:77,shorttim:172,should:[6,7,8,9,10,13,14,15,16,20,28,29,30,31,32,35,36,37,39,41,42,44,45,51,52,53,56,58,60,61,68,69,70,72,75,77,83,84,86,87,90,93,94,95,96,98,99,101,102,105,108,109,110,111,112,113,116,122,123,125,129,131,144,145,146,147,148,149,152,154,155,156,157,158,161,164,166,168,170,172,173,174,177,178,179,180,182,183,184,185,186,187,188,189,191,192,193,194,195],shouldn:[8,168],shove:166,show404:102,show:[14,28,30,32,47,51,52,71,72,78,82,83,93,94,101,102,109,144,145,152,154,161,162,164,166,168,170,174,178,192,193,194,195],show_404:3,showcas:107,showcategori:182,showerror:[30,155,164],showhelp:30,shown:[3,4,5,6,7,8,9,10,11,12,13,52,73,90,91,152,154,161,164,172,173,178,181,184,192,195],showpassword:162,showusergalleri:102,shuck:90,shuffl:73,side:[9,32,52,70,107,147,152,154,156,195],sidebar:[177,180],sift:32,sight:194,sign:[52,70,83,90,109,162,164],signal:72,signatur:[7,12,22,28,110,146,164],signifi:164,signific:[75,111,113,116,117,120,121,164],significantli:[62,64],signup:164,signup_error:164,silent:14,similar:[29,54,83,94,101,102,105,106,109,121,135,150,157,161,164,169,180,182,185,189,190,194],similarli:[80,149,157],simpl:[7,16,29,30,32,37,39,41,49,52,58,59,61,65,69,70,73,77,78,83,84,90,91,94,95,102,104,105,111,113,116,117,120,121,130,142,148,149,154,155,157,158,161,162,164,166,168,170,172,173,177,178,180,181,186,189,192,193],simple_queri:124,simplecach:143,simpleconfig:70,simplelink:154,simplequeri:[51,124],simpler:[1,30,69,77,94,127,152,154,161,164,166,168,182,194],simpleseed:59,simplest:[36,39,41,71,75,166,168,178],simpli:[30,32,36,37,39,41,51,52,54,64,65,69,70,72,73,75,76,90,91,94,95,96,98,102,108,140,147,148,150,152,154,156,157,159,162,164,166,168,170,172,173,174,175,178,180,186,190,195],simplic:52,simplifi:[4,9,12,13,47,52,54,79,94,121,152,158,166,169,189],simul:[182,189],simultan:45,sinc:[10,11,18,25,32,37,41,51,52,54,56,58,65,68,70,73,77,83,93,95,96,99,101,102,112,123,131,145,147,148,152,154,155,156,157,159,161,162,164,166,168,170,172,173,177,178,182,186,189,192,195],sing:168,singl:[4,13,24,31,32,35,36,39,41,44,51,52,53,56,58,65,69,70,75,76,79,90,92,93,96,98,101,102,148,149,154,157,158,160,162,166,168,170,173,174,176,178,179,180,181,183,185,186,188,189],single_concat:181,single_servic:69,singleton:[1,168],singular:86,sit:90,site:[7,14,27,29,42,58,70,72,81,82,83,84,91,93,94,95,98,102,108,109,122,142,146,147,157,158,161,162,163,164,172,173,179,180,186,189,193],site_id:56,site_url:[5,14,91,95,178,190],siteemail:[70,122],sitenam:[70,122,179],sitepoint:[172,173],siteurl:178,situat:[44,52,154,161,166,173],six:174,size:[32,82,83,87,128,137,149,150,152,161,164,174,185],skeleton:[16,41,58,95,105],skip:[52,53,65,82,83,157,168,186],skipev:186,slack:191,slash:[4,6,8,9,10,11,13,35,69,90,102,108,146,162,195],slash_item:69,slate:[58,188],sleep:170,slice:84,slight:102,slightli:[52,90,124,125,128,133],slow:[21,46,65,158],slower:157,slowest:156,slug:[90,192,194],small:[4,15,16,37,39,41,48,77,83,102,125,128,136,142,146,148,161,174,193],smaller:[12,32,168,184],smart:[29,54,152,166,172,177],smartphon:37,smith:[29,79,164],smooth:146,smtp:14,smtpcrypto:148,smtphost:148,smtpkeepal:148,smtppass:148,smtpport:148,smtptimeout:148,smtpuser:148,snag:109,snake_cas:166,snippet:108,snoopi:96,snow:190,sock:108,socket:108,sodal:90,sodium_crypto_secretbox_keybyt:149,sodium_crypto_secretbox_keygen:149,sodium_memzero:149,sodium_pad:149,sodium_unpad:149,sodiumhandl:149,soft:[6,9,10,11,168],softwar:[101,149,165],sole:75,solid:168,solut:[67,109,142,149,157,162,168,181],solv:[70,102,155],some:[6,8,9,10,12,15,16,30,31,32,33,37,39,41,43,44,45,50,51,52,53,56,58,64,65,70,71,72,73,75,77,78,82,83,90,91,93,94,95,96,98,99,102,108,109,111,113,116,117,120,121,124,143,145,147,148,149,150,152,155,156,157,161,162,163,164,166,168,170,173,178,179,181,182,184,185,189,191,192,193,194,195],some_attribut:166,some_cooki:96,some_cookie2:96,some_data:[96,100],some_ev:65,some_funct:[43,65,83],some_method:94,some_nam:[136,157],some_t:[50,51,53],some_valu:157,some_var:75,some_view:177,someclass:[65,96,166],somefil:178,somefilt:[36,102],somefunct:36,somehandl:166,somemethod:65,someon:[125,148,159,164],someotherclass:36,sometest:189,someth:[30,32,37,44,51,52,58,71,72,75,91,93,94,95,96,98,102,122,124,147,150,154,155,157,161,163,164,166,168,170,178,180,183,185,189,193,194,195],something_uniqu:178,sometim:[31,32,50,94,149,168,184,185,189],somewher:135,soon:[121,162],sorri:[157,168],sort:[7,30,58,65,79,102,157,184],sort_asc:79,sortcolumn:79,sought:[52,172],sound:[109,164,168,173],sourc:[3,4,5,40,42,44,58,82,84,91,105,107,149,150,155,161,173,178,179],source_imag:152,sourcedir:82,space:[30,32,75,86,111,113,114,115,116,117,120,146,160,164,166,174,192],spain:32,spam:91,span:[90,154,164],spark:[3,4,5,6,8,11,28,30,31,56,58,59,76,95,102,105,108,109,111,113,114,120,130,147,150,155,157,193,195],spatial:50,speak:56,special:[16,17,39,51,56,71,72,77,83,95,149,156,157,162,166,168,179,182,183,185,189],specif:[7,15,20,33,36,37,39,42,45,53,56,65,69,70,72,73,75,77,78,79,84,95,96,98,100,102,108,111,113,129,132,145,146,148,150,155,156,157,164,170,172,173,183,184,185,190,193,194],specifi:[1,7,14,20,30,32,44,45,48,51,52,53,56,58,69,70,72,73,75,76,78,82,83,84,87,90,91,93,94,95,96,100,101,102,108,129,145,147,148,149,150,152,155,157,161,163,166,170,173,174,175,176,177,178,182,183,190,195],speed:[68,157,181],speex:84,spell:[8,10,172],spelledout:172,spellout:[172,178],spent:158,sphere:84,sphinx:[3,8,14],spin:184,spl:72,spl_autoload_regist:35,splfileinfo:150,split:[90,193],splitquerypart:14,spoof:[6,96,97,100,103],sport:157,spot:[46,86],sql:[11,23,28,40,44,47,48,51,52,54,58,75,113,116,157,194],sqlite3:[2,4,7,8,9,10,12,13,14,16,21,22,44,50,53,56,115,144],sqlite:[4,7,9,10,12,16,44,56,144],sqlite_:12,sqlsrv:[22,28,44,115,144],squar:[84,152,166,193],squash:152,src:[70,84,148,155],srclang:84,ssl:[8,147],ssl_ca:44,ssl_capath:44,ssl_cert:44,ssl_cipher:44,ssl_kei:44,ssl_verifi:44,sslmode:44,stabil:16,stabl:105,stack:[3,40],staff:194,stage:[65,155,166,185,186],stai:[142,147,152,178],stand:37,standalon:[42,65,170,189],standard:[22,32,37,39,51,52,54,67,72,76,77,78,82,83,90,91,95,98,102,107,108,113,115,143,148,149,154,161,164,168,170,177,178,179],start:[1,4,8,30,32,42,49,52,54,56,69,70,77,90,91,94,95,98,101,102,105,108,121,125,128,132,136,145,148,149,152,155,158,159,162,173,181,182,184,187,189,192,193,194,195],starter:[4,5,6,7,9,11,107,117,118,119,120,149],starttl:148,stash:10,state:[7,36,52,58,68,83,101,146,148,157,164,168,183,189],stateless:146,statement:[4,5,6,28,32,51,52,56,123,169,178,180,194],static_pag:[4,5,6,7,12],statist:181,statu:[14,20,30,32,37,51,52,56,58,72,91,102,143,147,157,158,168,170,173],statuscod:170,stdclass:53,stderr:[32,147,189],stdout:[32,46,189],steal:157,step:[10,30,32,41,73,105,109,121,145,152,164,168,183,193],stick:41,still:[17,20,44,56,67,68,70,72,75,77,91,95,96,102,105,107,109,121,139,145,149,156,157,161,164,166,168,184,185,191,194],stop:[65,69,72,95,114,147,148,157,161,181,184,185],storag:[39,145,149,155,157],store:[3,6,13,24,30,36,39,40,42,44,51,58,59,69,70,73,77,90,91,98,102,105,109,122,127,145,148,154,157,164,166,168,172,173,178,179,183,192,194],storecontrol:94,storepath:17,storepreviousurl:11,str:[69,88,90,91,92,148,160,164,181],str_pad:30,str_repeat:[32,178],str_replac:155,str_to_upp:111,strai:166,straight:[56,172],straightforward:[121,157,184],strang:161,stranger:178,strategi:40,strawberri:172,stream:96,stream_filt:189,stream_filter_append:189,stream_filter_remov:189,streamlin:[11,182],stretch:152,strict:[22,28,40,44,69,84,93,94,146,147,173],stricter:156,strictli:[17,146,189],stricton:[44,45],strictrul:164,strike:185,string:[4,5,9,10,15,17,20,23,24,28,30,32,33,36,42,44,45,48,51,52,53,58,69,75,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,96,98,100,101,102,111,113,116,137,145,146,147,148,149,150,152,155,158,159,160,163,164,166,168,170,172,173,174,175,176,178,179,181,182,184,185,189,190,192,195],stringify_attribut:69,strip:[3,88,90,148,192],strip_image_tag:88,strip_quot:90,strip_slash:90,strip_tag:178,stripqueri:162,stripslash:90,strive:143,strlen:[4,8,32],strong:[40,90,174],strpo:147,strtolow:[4,156],strtotim:[159,178,189],strtoupper:96,structur:[4,5,6,7,12,13,35,38,49,58,76,77,82,94,103,108,123,131,142,145,154,155,162,164,166,189],style:[3,4,8,22,28,69,83,90,101,107,115,121,143,145,150,154,155,164,166,173,179,189],styleguid:8,stylenoncetag:[28,173],stylesheet:[84,90,91,173],suar:84,sub:[6,73,76,82,102,123,131,141,150,154,155,172,173,183],subarrai:79,subclass:111,subdai:159,subdirectori:155,subfold:[14,31,91,108,121],subhour:159,subject:[77,125,148,150,165,168,172,173],sublicens:165,subminut:159,submiss:[40,156,164],submit:[48,51,53,69,80,83,96,101,129,135,137,143,148,156,161,164,172,174,186,192],submitt:69,submonth:159,subnamespacenam:94,subqueri:[8,11,24,28],subrequest:146,subscrib:65,subsecond:159,subsequ:[53,68,173,178,179,180,182],subset:[168,173],substanti:[64,139,165],substitut:69,substr:32,subtitl:84,subtitles_no:84,subtitles_y:84,subtot:174,subtract:[159,178],subyear:159,succeed:155,success:[37,46,51,52,53,54,56,58,60,65,79,82,94,145,148,155,158,173,174,192],successfulli:[56,65,69,127,161,164,170,173,192],suffici:[157,181],suffix:[31,58,59,86,87,90,102,164],suggest:[7,73,109,149],suit:[42,58,77,105,149],suitabl:[151,194],sum:52,sundai:172,super_secret_kei:70,superglob:[157,161,186],superobject:121,supersed:113,supplement:143,suppli:[15,31,36,40,43,44,47,50,52,59,70,72,75,79,81,82,83,91,96,102,146,150,156,164,168,185,189],supplier:164,support:[1,5,6,7,10,11,12,14,16,17,18,20,24,28,31,32,37,42,43,49,50,51,52,53,54,56,75,77,78,79,81,83,84,90,93,94,95,96,98,99,109,111,112,113,121,123,126,130,131,139,144,145,147,148,149,152,154,156,157,159,162,164,166,170,172,173,177,178,179,180,182,186,189,194],supportedlocal:172,supportedresponseformat:170,supportingpackageregistrar:70,supportlocal:172,supportpath:155,suppress:[4,30],sure:[31,32,36,39,52,53,54,58,62,64,70,77,78,94,99,104,105,108,118,123,145,146,148,157,161,162,168,172,178,182,189,192,194],surpris:182,surround:[51,154,164,168],susan:155,svg10:84,svg11:84,svg:[84,155],swap:[44,51,64,172],swappr:[44,45],swapprefix:51,sweep:21,swf:84,symbol:[82,164,178],symbolic_permiss:82,symmetr:149,sync:105,synchron:156,synonym:78,syntax:[4,32,49,51,52,80,83,103,121,122,129,130,134,136,137,139,145,147,157,161,164,166,171,178,184],sysadmin:75,system32:108,system:[3,4,5,6,7,8,9,10,11,12,13,14,17,20,30,35,40,44,50,51,52,54,61,62,65,66,69,70,71,72,73,75,76,77,78,82,84,91,94,95,102,103,105,106,107,108,111,113,114,116,117,120,121,134,141,142,145,147,149,151,152,157,159,163,164,168,170,172,177,181,184,186,191,193,194,195],systemdirectori:[4,76,105],systempath:[5,30,35,69,134],tab:[30,32,91,95,107,146,156,193],tabl:[4,5,7,9,10,13,14,15,17,24,30,31,39,44,47,48,51,52,53,54,55,58,59,73,101,103,104,121,124,130,140,157,164,166,167,171,181,183,184,192,194],table_clos:174,table_nam:[47,50,51,53,56],table_open:174,tabledata:174,tableexist:50,tablefield:56,tablenam:[24,51,56],tablename_users_foreign:56,tablenotfound:7,tabletest:9,tachycardia:21,tada5hi:14,tag:[11,28,68,69,83,84,88,90,91,121,123,130,131,148,156,160,161,164,169,173,174,178,190],tag_clos:90,tag_open:90,tail:9,tailor:[4,108,148,164,182],take:[6,30,32,36,37,39,40,41,45,51,53,56,58,61,62,65,67,69,70,75,77,79,82,86,91,92,95,100,102,105,106,108,111,113,146,147,149,152,154,155,157,158,159,161,164,166,168,173,174,176,177,178,181,182,183,185,186,188,189,192,193],taken:[51,58,75,87,164,168,188],talk:[37,147],tap:[46,65],tarbal:121,tardi:173,target:[6,16,52,70,79,82,83,91,105,155,185],targetbatch:58,task1:32,task1a:32,task1abc:32,task:[29,30,32,39,59,73,95,102,121,142,155,168,184],tbodi:[32,174],tbody_clos:174,tbody_open:174,tcp:157,tdtrust:164,teach:193,team:[58,79,134,141,183],team_id:79,tear:189,teardown:[12,183,186,189],teardownafterclass:189,teardownmethod:189,technic:[157,164,195],techniqu:[40,105,106,108,149],technolog:[141,165],tediou:164,tell:[30,37,44,52,58,65,69,93,99,146,152,154,155,157,158,166,172,173,186],temp:[161,178],tempfil:[4,161],templat:[4,7,15,70,101,132,137,138,139,142,151,154,169,174,192,194,195],template1:178,template2:178,template_nam:154,temporari:[72,102,155,161],temporarili:[58,72,168],tempt:31,ten:[40,174],tenni:157,terabyteabbr:178,term:[37,43,70,73,157],termin:[29,31,32,56,121],ternari:4,terribl:164,test:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,16,20,21,22,28,44,52,56,58,65,71,72,76,77,84,85,91,96,102,103,105,107,111,113,115,116,125,147,148,150,157,159,163,164,166,168,172,173,181,184,188,195],testabl:[3,12],testactivelinkusescurrenturl:96,testbadrow:113,testcas:189,testcaseemissionstest:[3,4],testcasetest:[3,4,5],testcontrollera:182,testdbconnect:185,tester:182,testfilterfailsonadminrout:182,testfoo:186,testfoonotbar:189,testing13:5,testing3:3,testlogg:28,testmigr:30,testmod:[12,23,116],testpostseed:77,testrespons:[20,113,182,186,190],testseed:[59,183],testshowcategori:182,testsomeoutput:189,testsometh:189,testssupport:4,testunauthorizedaccessredirect:182,testus:185,testuseraccess:89,text:[2,7,12,29,32,37,52,56,58,61,69,70,73,83,84,85,87,88,91,92,93,94,96,103,108,109,117,126,130,135,137,148,149,151,160,161,164,172,173,178,179,180,184,189,190,192,194,195],text_help:[7,8],textarea:[83,192],tfoot:174,tfoot_clos:174,tfoot_open:174,than:[10,32,36,40,45,51,52,53,54,56,61,72,73,76,77,78,83,90,91,92,94,95,96,98,101,102,108,121,123,131,142,145,146,147,148,149,150,152,154,156,157,158,161,164,166,168,172,173,178,180,181,183,185,188],thank:[15,16,157],thead:[32,174],thead_clos:174,thead_open:174,theempir:[59,168],thei:[6,10,29,30,32,35,36,39,40,41,51,52,53,54,56,58,65,68,69,70,71,73,75,76,77,82,83,84,90,91,92,94,95,96,98,100,101,102,105,106,107,111,113,114,116,117,120,121,139,147,148,152,154,155,157,159,160,161,164,166,168,170,172,173,177,178,180,181,184,185,189,190,193,194,195],them:[23,24,28,30,31,35,37,39,41,44,52,53,54,56,58,59,64,65,70,73,75,77,86,94,95,96,98,101,102,106,108,109,113,115,116,121,125,147,148,155,156,157,158,159,162,163,164,166,168,172,173,178,181,182,185,186,194,195],theme:[146,154],themselv:154,therefor:[154,157],thi:[6,8,15,16,17,18,19,20,22,23,29,30,31,32,35,36,37,39,40,41,42,43,44,45,46,48,50,51,52,53,54,55,56,58,59,60,61,62,64,65,67,68,69,70,71,72,73,75,76,77,78,93,95,96,98,99,100,101,102,105,106,108,109,111,112,113,114,115,116,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,143,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195],thing:[29,32,41,52,56,58,75,91,109,121,125,128,136,147,155,157,158,164,166,172,173,178,186,189,191,192,193,194,195],think:[31,39,95,121],third:[17,32,35,36,40,52,56,60,65,69,70,82,83,87,90,91,95,96,100,102,105,108,111,113,116,117,120,143,146,147,148,149,154,157,158,159,164,170,172,173,175,180,185,186,189,190,194,195],third_parti:35,thirdparti:[2,42,189],thirti:172,this_string_is_:90,this_string_is_entirely_too_long_and_might_break_my_design:90,thisdb:53,thorough:[142,173],thoroughli:[187,191],those:[22,35,36,56,58,62,64,65,70,76,77,78,90,91,101,102,113,115,122,123,130,131,154,155,157,158,162,164,166,168,172,173,174,178,181,183,192,195],though:[30,39,41,42,51,65,71,93,96,102,108,121,154,156,157,158,159,160,166,168,170,173,181,185,193,195],thought:77,thousand:[87,181],threat:156,three:[36,39,51,58,65,75,82,83,90,105,108,146,148,152,159,164,174,178,179,182,185,192],threshold:[75,109],throttl:[2,4,10,158,170],throttler:[2,6,10,95,103,153],throttlerinterfac:2,throttletest:[4,10],through:[10,13,14,15,28,30,32,35,36,39,40,41,51,52,53,58,59,61,69,71,72,73,75,77,79,80,83,87,90,93,94,96,102,113,145,147,149,150,152,154,155,156,157,158,159,161,162,166,168,170,172,173,174,178,181,182,190,193,194],throughout:[9,39,41,62,156,164,166],throwabl:[30,58,82,155],thrown:[20,72,87,98,145,146,159,162,173],thu:[37,62,67,102,121,146,161],thumb:[39,40,152],thumbnail:152,tidi:[7,166],tied:194,tif:155,tiff:155,tild:164,time1:159,time2:159,time:[2,3,4,5,7,8,10,11,12,14,16,20,22,30,32,36,39,41,45,51,58,61,64,68,70,73,75,77,81,83,84,91,94,95,103,145,146,147,148,149,150,153,154,155,157,158,162,164,166,168,170,172,173,178,179,180,182,184,185,189,193,194,195],time_refer:81,timediffer:[2,12,159],timedifferencetest:[5,12],timelin:[23,51],timeout:[45,145,148],timer:[2,41,51,64,69,184,189],timertest:3,timestamp:[10,20,58,81,116,130,146,150,157,159,166,168,184,185,192],timestampformat:58,timestamptz:157,timetest:[3,4,5,7,12],timezon:[10,69,81,159,164,166],timezone_identifiers_list:164,timezone_select:81,timezonenam:159,tincidunt:90,tini:84,tint:7,tion:150,tip:[40,64],titl:[32,47,48,51,52,53,56,58,84,90,91,124,137,138,139,154,161,164,174,177,178,180,184,190,192,194,195],tld:154,tls1:40,tls:148,tmp:70,tmp_dir:70,tmpf:157,toarrai:[146,166],todai:70,todatestr:[14,166],todd:52,todo:[139,169,180],todo_list:[139,180],togeth:[51,52,73,77,98,152,178,179,180,182,195],toggl:13,toheaderstr:146,token:[13,23,40,69,116,135,158,170,192],tokennam:17,tokenrandom:156,told:[94,164],toler:[4,189],too:[32,44,51,95,102,105,108,148,149,158,164,168,170,173],toobar:9,tool:[29,30,46,57,59,71,102,108,113,142,148,150,167,172,173,181,182,183,184,186,187,189,194],toolbar:[1,2,3,4,5,6,8,9,10,11,13,14,23,24,28,46,69,102,109,111,117,140,151,181,182,193],toolbarload:[5,9],toolkit:[107,142],top:[40,82,102,121,143,152,164,168,172,177,178,193,195],topic:191,toplevelonli:82,torawarrai:166,tort:165,tortor:90,total:[32,47,145,154,162,184],total_row:132,totalstep:32,touch:[152,173,185],tourint:13,toward:[101,111,157,159],town:56,tpl:[4,5,9,13],trace:[12,184],track:[35,54,58,70,79,84,96,146,157,166,185],trackback:121,trade:23,tradeoff:53,tradit:[28,49,73,154],tradition:54,traffic:180,trail:[11,35,70,108,146,168],trait:[15,103,111,113,119,171,186],tran:84,transact:[6,39,49,103],transbegin:54,transcommit:54,transcomplet:54,transfer:[37,42,101,173],transform:[51,91,173],transit:[14,18,84,111,112],translat:[10,16,56,93,107],translateuridash:6,transliter:90,transmiss:[40,149],transmit:[36,40,149],transoff:54,transpar:152,transport:[40,69,94],transrollback:54,transstart:54,transstatu:54,transstrict:54,travers:[82,88,156],travi:[4,6,7,9],treat:[54,69,78,84,99,147,158,170,178],treatment:173,tri:[4,109,142,156,158,172],trick:[157,193],trigger:[10,46,60,65,82,168,178,182,189],trillion:87,trim:90,troi:164,troubleshoot:[3,6,12,103,104,148,155],truli:[73,164],truncat:[28,52,90],truncatetest:12,trust:[40,44,91,105,150,161,164],trustworthi:40,truth:70,truthi:[4,184],try_fil:[78,108],trytorouteit:116,ttf:[152,155],ttl:[21,69,114,145],tuesdai:159,turn:[4,7,48,54,72,77,83,86,90,91,156,162,168,178,179,185],tut:3,tutori:[3,4,5,6,7,12,161,191,193,194,195],twb:155,tweak:[3,4,5,6,15],twelv:174,twice:[16,51,164],twig:69,two:[4,33,35,36,37,39,41,50,51,52,53,54,64,70,73,76,78,79,81,82,83,90,94,95,102,105,113,121,146,147,148,149,154,157,160,164,166,168,170,172,173,174,177,178,179,181,189,192,194,195],txt:[82,111,147,155,156,173],type:[3,4,5,8,9,10,12,13,14,16,17,20,22,23,31,36,37,39,40,41,44,48,50,51,52,53,54,56,58,67,69,70,72,75,77,79,80,81,82,83,84,86,87,88,89,90,91,92,93,98,99,100,102,108,111,113,116,117,130,135,137,145,146,147,148,149,150,151,152,156,157,158,160,161,163,164,166,172,173,174,178,179,180,182,185,186,189,190,192,193,195],typeerror:[4,24],typehint:[17,28,164],typeset:32,typic:[37,39,41,51,53,73,75,77,81,82,93,94,95,98,102,108,146,147,155,157,161,162,163,168,170,173,177,180],typo:[4,6,7,8,9,10,11,12,14],typograph:160,typographi:[2,41,103,153],uatp:164,ubiquit:157,ubuntu:[108,155],ucfirst:195,ucword:98,udpat:4,ultrici:90,unabl:[82,194],unalt:162,unauthor:170,unavail:[69,75,91],unbuff:53,uncertain:79,unchang:[17,70,146,172],uncom:[104,108,151,193,194,195],undeclar:90,undefin:[3,178],undeliv:148,under:[7,14,21,30,31,35,42,44,52,70,71,72,73,78,94,102,108,145,150,154,157,161,178,180,184],underli:[44,96,172],underneath:[154,192],underscor:[58,86,91,98,102,128,133,164],understand:[37,42,54,73,148,154,157,159,173],understood:159,undesir:75,unecessari:4,unencod:111,unescaped_var:178,unexpect:[75,157],unfamiliar:192,unfilt:182,unguess:150,unicod:16,unidentifi:163,unionpai:164,uniqid:4,uniqu:[50,52,56,58,60,70,90,113,148,164,168,178,179,184],unit:[4,6,7,8,91,108,185,189],univers:[44,61],unix:[81,108,146,157,159],unknown:[150,169],unknown_cooki:146,unknownfileexcept:72,unless:[20,52,53,56,72,79,80,102,123,135,157,160,166,168,170,173,190],unlik:[70,73,91,95,96,115,145,154,166,170],unlimit:56,unmatch:8,unmodifi:113,unnecessari:[11,147,154],unned:4,unneed:[4,7],unord:84,unrecover:109,unrel:36,unreleas:105,unsaf:[90,157],unsanit:51,unseri:166,unset:[136,157,166,168],unset_userdata:136,unsign:[56,58,130,194],unsolicit:3,unstabl:105,unsuccess:54,unsupport:147,unsupportedmessag:84,until:[4,41,53,79,80,111,113,116,117,120,146,157,158,162,164,178,179,181],untouch:[152,159,178],untrust:24,unus:[4,6,75,101,157,168],unwant:40,unwieldi:39,unwrap:148,upcount:185,updat:[1,3,4,5,6,7,8,9,10,11,12,13,14,16,20,24,28,32,39,40,44,48,51,56,58,71,94,96,101,102,105,106,110,111,113,114,115,116,117,120,134,146,155,157,164,166,194],updatebatch:[23,52,116],updated_at:[8,166,168,185],updatetest:[6,12,13],updateus:[94,168],upgrad:[10,14,58,103,104,148,173,190],upgradeinsecurerequest:173,upkeep:155,upload:[12,17,42,82,83,103,104,121,140,147,150,153,155],upload_data:127,upload_file_path:127,upload_form:[127,161],upload_max_files:[161,164],upload_path:127,upload_success:[127,161],uploaded_fil:[3,10],uploaded_flleinfo:161,uploadedfil:[2,4,6,7,11,13,17,96,161],uploadedfileinterfac:2,uploadedfiletest:3,uploadedimag:82,uploaderr:7,uploadfil:10,upon:[66,69,95,152,164,172,173,178,179,191],upper:[100,111,178],uppercas:[90,94,96,98,100,178],upsel:190,upset:84,urandom:149,uri:[2,3,4,6,10,12,14,16,20,21,28,37,56,64,69,72,73,77,78,82,83,84,91,95,96,97,98,103,108,109,111,113,134,153,155,156,166,182,186,190,192,194,195],uri_seg:132,uri_str:91,uristr:162,uritest:[4,12],url:[2,5,9,14,16,17,29,40,44,67,69,72,73,74,83,84,85,88,90,94,95,102,103,108,127,129,137,146,147,148,154,158,161,162,164,172,173,178,179,180,182,184,190,192,193,194,195],url_help:[3,5,7,8,12,13,162],url_i:[17,91],url_titl:[13,16,91,192],url_to:[17,91],urldecod:6,urlencod:[69,147],urlhelpertest:[5,12,13],usabl:[58,156],usag:[4,11,23,30,46,49,50,52,53,56,70,79,83,89,90,91,93,100,101,103,147,149,157,160,168,177,181,182],usd:87,use:[4,5,6,7,8,10,12,13,14,15,16,17,18,20,21,23,28,29,30,31,32,35,36,37,39,40,42,44,45,46,50,51,52,53,54,56,58,59,61,62,64,65,67,69,70,71,72,73,75,76,77,78,79,80,83,84,86,87,89,90,91,93,94,95,96,98,99,101,102,105,106,108,109,111,112,113,116,121,122,123,124,127,129,130,131,132,135,136,137,138,139,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,164,165,166,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,192,193,194,195],useautoincr:17,used:[4,10,16,18,20,23,24,28,30,31,32,34,35,36,37,39,41,42,43,44,45,46,47,51,52,54,56,58,64,69,70,71,72,73,77,80,83,84,86,87,90,91,93,94,95,96,98,99,100,101,102,105,108,112,114,116,121,124,126,130,145,146,147,148,149,150,151,152,154,156,157,158,159,161,162,164,166,168,170,171,172,173,174,175,177,178,179,181,182,183,184,185,186,188,189,192,194,195],useful:[32,43,44,52,53,59,69,71,84,85,91,93,95,102,108,114,145,147,148,149,150,152,156,157,164,166,178,184,186,189,190,194],usefulness:154,useless:70,user:[3,4,6,7,8,10,11,12,13,14,15,17,20,28,29,31,33,36,37,39,40,42,44,51,52,53,56,59,60,62,64,65,68,69,72,75,77,79,81,82,89,91,94,95,96,100,102,104,105,107,108,121,123,131,132,146,147,148,153,154,155,157,158,161,162,164,166,168,169,170,171,172,173,178,181,182,183,185,186,189,190,192,194,195],user_ag:157,user_contact:131,user_galleri:102,user_guide_src:[3,4,5,6,7,8,9,10,11,12,13],user_id:[52,60,124,164,168],user_link:178,user_model:132,user_nam:[127,161,168],user_profil:69,user_styl:178,useraccount:164,useraccountrul:164,userag:[2,8,111,148,163],userarrai:185,userauthmodel:168,userawquerystr:162,usercontact:131,usercontrol:[94,96,154,172,186],userdata:[136,157],userdir:108,userent:185,userfabr:185,userfil:[96,127,147,161],userguid:[14,107],userhasaccess:89,userid:94,userinfo:186,usermodel:[11,36,72,89,132,154,155,166,168,170,185,189],usernam:[5,44,45,52,53,59,83,129,137,147,148,157,162,164,166,168,169,172,183,194],userobject:185,userrul:94,users_foreign:56,users_id:56,users_index:56,users_job:52,users_nam:56,userseed:59,uses:[4,20,22,25,28,36,39,41,45,46,51,61,67,69,70,77,78,79,82,83,90,94,96,98,113,115,116,118,130,132,147,149,154,155,157,158,159,162,164,166,168,172,173,178,179,182,185,189,190],usetimestamp:166,using:[4,5,6,8,16,17,20,25,28,29,30,31,32,33,35,36,37,40,42,43,44,45,48,50,51,52,53,54,56,58,67,68,69,70,71,72,73,75,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,96,99,101,102,104,105,108,109,113,118,121,122,135,142,145,146,147,148,149,150,152,154,155,156,157,158,159,161,162,163,164,166,168,169,170,172,173,174,177,178,179,180,181,182,183,184,185,186,188,189,190,192,193,194,195],usr:[108,147,148],usual:[17,39,70,80,90,91,102,138,149,154,157,160,164,173,182,184,190],utc:[146,159,166],utf8:[44,45,56],utf8_general_ci:[44,45,56],utf:[37,83,93,95,96,98,113,148,173],uti:12,util:[2,3,6,8,10,30,31,39,42,49,52,54,68,94,96,98,103,145,155,169],uuid:[17,102,164,168],vader:168,vagrantfil:[5,108],val:[52,174],valid:[1,2,4,5,6,7,8,9,10,12,13,14,16,18,23,28,30,32,40,44,54,56,58,69,70,82,83,96,98,100,101,102,103,104,111,112,113,121,127,131,140,145,147,148,150,152,153,156,157,161,162,170,172,173,174,175,178,179,182,185,190,192,193],valid_base64:164,valid_cc_numb:164,valid_d:164,valid_email:[32,137,164,168],valid_ip:[111,164],valid_json:164,valid_url:164,valid_url_strict:[23,164],validaiton:10,validatekei:145,validation_error:[137,178],validationinterfac:2,validationrul:[8,161],validationtest:[5,7],valign:152,valu:[3,5,6,8,9,11,13,16,17,20,23,29,30,31,32,33,35,36,41,45,47,51,52,53,56,59,65,69,70,71,72,73,75,79,80,81,82,84,87,90,91,93,95,96,98,99,100,102,108,111,113,114,116,122,135,137,145,146,147,148,149,150,151,152,154,155,156,161,162,166,168,170,172,173,174,175,178,179,181,182,183,184,185,188,189,190,192,194,195],value1:[96,148],value2:[96,148],valuei:178,var_dump:[70,96,145,166],varchar:[52,56,58,130,157,194],vari:[44,75,108,159,168,173],variabl:[3,4,13,15,17,20,23,37,39,44,51,52,69,71,72,73,75,76,77,90,91,94,96,102,105,109,122,147,148,149,154,157,161,162,164,169,175,178,179,180,186,190,194,195],variant:[172,185],variat:[52,53,181],varib:154,varieti:37,variou:[10,14,42,71,73,113,143,162,163,164,185,189],vastli:79,vector:[40,149],vel:90,vendor:[35,42,76,105,155,189,193],vendorpublish:155,verb:[3,10,99,156,186],verbos:[71,147],veri:[30,32,35,37,39,41,42,49,51,52,54,65,70,80,84,111,113,116,117,120,121,146,147,148,152,154,157,158,159,163,164,166,168,172,173,177,178,181,184,190],verif:[147,182,186],verifi:[17,44,96,145,157,164,168,190],version:[30,32,37,44,48,51,58,62,64,69,70,73,86,87,91,96,98,102,103,104,105,106,107,108,111,112,113,114,115,116,117,120,121,144,155,157,158,159,161,163,166,178,181,182,183,188,189,193],vertic:[152,164],verv:164,vestibulum:90,vet:40,vfsstream:7,vhost:108,vhost_alias_modul:108,via:[5,14,16,17,21,32,34,37,40,51,52,56,69,77,82,83,90,94,96,102,103,111,144,146,147,148,149,154,155,156,157,160,161],victoria:81,video:84,view:[1,2,3,4,5,6,7,8,9,10,12,13,14,20,25,28,31,38,40,41,42,52,60,64,68,69,70,72,73,80,82,91,94,101,102,103,104,108,111,113,116,117,118,127,128,132,134,137,140,145,156,161,163,168,171,174,184,186,192,193,194,195],view_cel:[14,69,175],view_layout:[7,8,12],view_pars:[5,10,12],viewabl:102,viewdecoratorinterfac:176,viewdirectori:6,viewer:[109,166],viewpath:[3,41,178,179],viewsdirectori:7,viewtest:[5,7,8],viewview:8,violat:146,virtual:[71,146,157],virtualbox:108,virtualhost:108,visa:164,visibl:151,visit:[29,52,91,94,102,143,161,163,164,172,173,180,182,195],visitor:[69,163],visual:[111,113,116,117,120],vita:90,voffset:152,vtt:84,vulner:[26,27,94,102,168,179,192],w3c:[84,172,173],w3school:193,wai:[6,7,10,23,29,32,35,36,37,39,41,50,52,53,58,59,65,69,70,71,73,75,77,79,84,93,94,95,96,99,101,102,104,105,108,109,121,123,142,143,145,146,147,149,152,154,156,157,158,159,160,161,162,164,166,168,169,172,173,175,177,178,180,182,184,189,193,194],wait:[37,147,158,170],walk:[53,158,166],want:[15,17,31,32,35,36,37,41,43,44,51,52,53,54,56,59,61,65,67,69,70,71,72,75,76,77,82,83,87,90,91,93,94,95,96,98,99,101,102,105,106,108,109,113,115,116,123,132,137,142,146,147,148,149,154,155,157,158,160,162,163,164,166,168,172,173,177,179,181,182,183,184,185,186,189,193,194,195],warn:[20,69,75,145,157],warranti:165,wasn:[37,94,194],watch:[32,72],web:[20,29,37,39,40,42,69,70,74,75,84,90,93,94,99,102,103,108,109,111,142,144,146,147,148,155,158,163,164,172,173,180,186,194,195],webapp:[76,105,108,109],webmanifest:155,webmast:[70,75,122],webp:[16,28,155,161],webroot:70,websaf:[4,7,101],websit:[75,93,95,107,146,147,157,173],webvtt:84,wednesdai:174,week:[69,159,178],weekofmonth:159,weekofyear:159,weight:[145,157],welcom:[1,102,103,109,178,180,195],welcome_messag:[3,7,113,116,195],well:[4,6,16,29,41,42,51,52,60,65,69,70,72,73,75,81,82,84,90,94,102,107,108,111,142,148,154,155,157,161,162,166,169,184,189,194],welome_messag:7,went:[56,194],were:[6,15,16,22,51,65,83,84,94,95,102,111,115,116,142,143,146,156,157,159,161,164,166,178,180,188,193],weren:164,wget:29,what:[30,32,39,42,44,46,51,62,64,65,69,70,75,77,81,82,83,90,91,93,96,113,140,147,149,152,154,155,162,164,166,168,170,171,172,173,177,185,190,192,193,195],whatev:[51,70,91,121],whats_wrong_with_css:91,when:[4,6,7,8,9,10,11,13,14,15,16,17,20,23,24,25,28,30,31,32,35,36,37,39,40,41,44,45,48,51,52,53,54,56,58,60,65,68,69,70,71,72,75,76,77,79,83,90,93,94,95,98,99,100,101,102,105,106,107,108,111,116,117,118,145,146,147,148,149,150,151,152,154,155,157,158,159,161,162,163,164,166,168,170,172,173,175,177,178,179,180,181,182,183,184,186,188,189,190,191,193,194,195],whenev:[22,37,39,46,65,77,94,105,108,166,168,177,184],whenver:8,where:[3,6,13,16,17,19,21,24,28,30,31,35,39,40,41,42,44,45,51,52,53,56,59,65,68,69,70,71,73,75,77,90,94,95,96,101,102,114,116,121,123,124,131,139,142,145,147,154,155,156,157,161,164,166,168,172,173,175,178,179,180,182,183,185,192,193,194,195],where_field:164,where_valu:164,wherea:[101,168,189],wherein:[6,11,52,168],wherenotin:52,wheretest:[6,8,10,11],wherev:[32,39,68,126,136,138,177],whether:[30,31,36,44,45,46,50,52,54,58,67,69,71,79,80,82,83,84,90,91,92,93,96,100,113,145,146,148,149,152,154,157,159,160,163,164,165,166,168,170,173,177,183,185,190,192,195],which:[16,17,20,30,32,33,36,37,40,41,43,44,45,48,51,52,53,54,56,58,67,68,69,70,71,72,73,75,76,77,78,81,83,86,90,91,93,94,95,96,98,100,101,102,104,105,107,108,109,111,113,121,122,132,135,136,137,145,146,147,148,149,152,154,155,156,157,159,161,162,164,166,168,170,173,174,175,177,178,180,181,182,184,185,191,193,194,195],whip:166,white:32,whitelist:[156,173],who:[39,62,64,72,102,105,106,142,148,157,178],whole:[24,40,53,108,149,166],wholist:11,whom:165,whoop:[12,195],whose:[30,70,168,179],why:[94,157],wide:[7,32,37,108,147,148,154,168,173],wider:32,widget:[36,166,182],width:[32,83,84,91,152,164],wierd:13,wikipedia:[29,37,93],wildcard:[28,51,52,77,79,91,95,102,164,195],wildli:113,willing:[105,149],wilma:164,wincach:[2,20],wincachehandl:8,window:[13,15,16,17,29,32,75,91,108,145,156,163],window_nam:91,winter:70,wip:[3,13],wipe:[149,155],wise:[8,155,168],wish:[52,53,56,58,68,70,73,82,83,90,91,102,105,106,121,145,146,152,157,173,177,180],wishfulli:31,withbodi:[182,186],withbodyformat:186,withconfig:182,withcooki:[16,69],withdomain:146,withexpir:146,withfil:152,withhead:[16,69,186],withhttponli:146,within:[4,16,30,32,36,37,39,41,43,44,52,56,58,59,65,68,69,70,72,73,75,77,79,82,83,90,94,96,102,108,121,122,125,126,128,129,130,132,135,137,145,148,154,155,157,158,159,160,162,164,168,170,172,173,175,177,178,179,181,182,183,184,186,188,189,190,191,195],withinput:69,withlogg:182,withnam:146,withneverexpir:146,without:[10,11,14,29,30,36,41,43,51,52,53,54,56,58,65,67,70,73,75,82,91,94,96,102,108,111,113,114,116,117,120,127,146,150,152,157,159,162,164,165,166,168,182,185,194,195],withpath:146,withprefix:146,withraw:146,withrequest:182,withresourc:[16,152],withrespons:182,withrout:186,withsamesit:146,withsecur:146,withsess:186,withshadow:152,withuri:182,withvalu:146,wll:36,woff2:155,woff:155,won:[39,52,53,148,152,157,158,170,173],wonderland:70,word:[32,44,45,53,86,90,91,95,96,102,164,166,178],word_censor:90,word_limit:90,word_wrap:90,wordwrap:148,work:[4,5,6,7,8,14,15,16,23,29,30,31,35,36,38,39,41,42,47,52,54,58,65,71,78,80,81,82,83,84,87,90,91,92,94,96,98,99,100,101,102,103,104,105,107,108,116,117,121,123,124,140,142,146,148,149,152,153,154,155,158,167,175,178,179,182,184,186,193,195],workaround:109,workbench:194,worker:14,workflow:168,workspac:155,world:[78,84,86,141,177,190,194,195],worri:[37,146,149,166,184],worth:[157,158],would:[14,16,21,23,29,30,31,32,36,37,39,41,42,44,51,52,54,58,62,64,65,70,71,73,75,76,77,83,84,90,91,93,94,95,96,100,101,102,104,105,106,108,109,113,116,131,134,148,150,152,154,155,157,158,159,161,163,164,166,168,169,170,172,174,177,178,179,180,182,186,189,192],wouldn:162,wrap:[9,51,70,75,90,96,150,154,164,178],wrapchar:148,wrapper:[31,45,53,77,145,168],writabl:[4,16,44,69,76,77,82,105,106,107,108,109,111,113,114,116,117,120,121,127,145,150,155,157,161],write:[20,30,33,42,48,51,52,53,60,69,75,82,91,102,113,142,146,150,152,155,157,164,168,178,189,191,192,193,194],write_fil:82,writeabl:82,writepath:[53,56,69,147,150,161],writeup:[4,9,11],written:[32,42,44,68,72,73,82,91,107,113,141,147,157,161,169,192,194],wrong:[75,91,157,161,173],wrote:194,www:[71,84,91,102,108,145,147,148,152,157,162,173],x1351:185,x23546:185,x3767:185,xdebug:184,xhr:[37,67,96],xhtml11:84,xhtml1:84,xhtml:[84,148],xjp4:27,xlarg:83,xml:[8,9,15,40,76,84,85,93,96,98,103,105,111,113,121,144,155,166,170,173,186,189],xml_convert:[3,92],xml_helper:[3,6,8],xmlformatt:[2,4,9,170],xmlhelpertest:6,xmlhttprequest:67,xoffset:152,xs25519:149,xsalsa20:149,xss:[25,26,69,80,91,118,164,173,178,194,195],xssclean:[25,80,118],xxiii:87,year:[58,69,94,141,159],yellow:[30,32,84,166],yen:87,yes:[84,91,146,149,194],yet:[4,36,54,56,58,146,164,172,177,184,192,194],yml:[4,6],yoffset:152,you:[8,15,16,17,23,29,30,31,32,35,36,37,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,75,76,77,78,79,80,81,82,83,84,86,87,90,91,93,94,95,96,98,99,100,101,102,104,105,106,108,109,111,113,114,115,116,117,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,166,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195],your:[16,17,23,29,30,31,32,35,36,37,40,41,42,43,44,47,51,52,53,54,55,56,57,58,59,60,61,64,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,89,90,91,93,95,96,99,101,102,104,105,106,109,111,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,135,137,138,139,142,144,145,146,147,148,150,151,152,154,155,156,157,158,160,161,162,163,166,167,169,170,172,173,175,176,177,178,179,180,182,185,186,187,188,190,191,192,195],your_lang:87,yourdomain:80,yourself:[51,72,73,77,116,135,146,157,162,168,189,190],youtub:173,yyyi:[58,159],yyyymmdd:161,zend:14,zendescap:2,zero:[10,90,102,142,149,154,157,164,173],zip:[76,106,121]},titles:["Change Logs","Version 4.0.0","Version 4.0.0-alpha.1","Version 4.0.0-alpha.2","Version 4.0.0-alpha.3","Version 4.0.0-alpha.4","Version 4.0.0-alpha.5","Version 4.0.0-beta.1","Version 4.0.0-beta.2","Version 4.0.0-beta.3","Version 4.0.0-beta.4","Version 4.0.0-rc.1","Version 4.0.0-rc.2","Version 4.0.0-rc.3","Version 4.0.0-rc.4","Version 4.0.3","Version 4.0.4","Version 4.0.5","Version 4.1.0","Version 4.1.1","Version 4.1.2","Version 4.1.3","Version 4.1.4","Version 4.1.5","Version 4.1.6","Version 4.1.7","Version 4.1.8","Version 4.1.9","Version 4.2.0","Running via the Command Line","Custom CLI Commands","CLI Generators","CLI Library","CLIRequest Class","Command Line Usage","Autoloading Files","Factories","Working With HTTP Requests","CodeIgniter4 Overview","Models, Views, and Controllers","Security Guidelines","Services","Application Structure","Custom Function Calls","Database Configuration","Connecting to your Database","Database Events","Database Quick Start: Example Code","Query Helper Methods","Working With Databases","Database Metadata","Queries","Query Builder Class","Generating Query Results","Transactions","Utilities","Database Forge Class","Managing Databases","Database Migrations","Database Seeding","Authentication","Extending the Controller","Replacing Common Functions","Contributing to CodeIgniter","Creating Core System Classes","Events","Extending CodeIgniter","AJAX Requests","Web Page Caching","Global Functions and Constants","Configuration","Handling Multiple Environments","Error Handling","Helper Functions","General Topics","Logging Information","Managing your Applications","Code Modules","CodeIgniter URLs","Array Helper","Cookie Helper","Date Helper","Filesystem Helper","Form Helper","HTML Helper","Helpers","Inflector Helper","Number Helper","Security Helper","Test Helper","Text Helper","URL Helper","XML Helper","Content Negotiation","Controllers","Controller Filters","IncomingRequest Class","Controllers and Routing","HTTP Messages","HTTP Method Spoofing","Request Class","RESTful Resource Handling","URI Routing","CodeIgniter4 User Guide","Installation","Composer Installation","Manual Installation","CodeIgniter Repositories","Running Your App","Troubleshooting","Upgrading from 4.0.x to 4.0.4","Upgrading from 4.0.4 to 4.0.5","Upgrading from 4.0.5 to 4.1.0 or 4.1.1","Upgrading from 4.1.1 to 4.1.2","Upgrading from 4.1.2 to 4.1.3","Upgrading from 4.1.3 to 4.1.4","Upgrading from 4.1.4 to 4.1.5","Upgrading from 4.1.5 to 4.1.6","Upgrading from 4.1.6 to 4.1.7","Upgrading from 4.1.7 to 4.1.8","Upgrading from 4.1.9 to 4.2.0","Upgrading from 3.x to 4.x","Upgrade Configuration","Upgrade Controllers","Upgrade Database","Upgrade Emails","Upgrade Encryption","Upgrade Working with Uploaded Files","Upgrade HTML Tables","Upgrade Localization","Upgrade Migrations","Upgrade Models","Upgrade Pagination","Upgrade HTTP Responses","Upgrade Routing","Upgrade Security","Upgrade Sessions","Upgrade Validations","Upgrade View Parser","Upgrade Views","Upgrading From a Previous Version","Credits","Welcome to CodeIgniter4","PSR Compliance","Server Requirements","Caching Driver","Cookies","CURLRequest Class","Email Class","Encryption Service","Working with Files","Honeypot Class","Image Manipulation Class","Library Reference","Pagination","Publisher","Security","Session Library","Throttler","Times and Dates","Typography","Working with Uploaded Files","Working with URIs","User Agent Class","Validation","The MIT License (MIT)","Using Entity Classes","Modeling Data","Using CodeIgniter\u2019s Model","Alternate PHP Syntax for View Files","API Response Trait","Building Responses","Localization","HTTP Responses","HTML Table Class","View Cells","View Decorators","View Layouts","View Parser","View Renderer","Views","Benchmarking","Testing Controllers","Testing Your Database","Debugging Your Application","Generating Test Data","HTTP Feature Testing","Testing","Mocking System Classes","Testing","Testing Responses","Conclusion","Create News Items","Build Your First Application","News Section","Static Pages"],titleterms:{"break":[23,24,25,28,116,117,118,119,120],"class":[32,33,41,47,51,52,53,56,58,64,70,77,93,96,98,100,116,121,145,146,147,148,149,151,152,157,158,163,166,170,173,174,178,179,183,186,188,189],"default":[42,71,94,102,109,149,157],"function":[36,40,41,43,62,69,73,79,80,81,82,83,84,86,87,88,89,90,91,92,160,178],"new":[30,150,157,192,194],"public":42,"return":168,"static":[160,195],"throw":162,"try":[29,94,161,164],"var":184,Adding:[56,105,146,152,157,180,195],And:164,PRs:[3,4,5,6,7,8,9,10,11,12,13,14],TLS:148,That:[29,94],The:[29,37,39,46,51,71,96,109,156,158,161,162,164,165,180,182,183,184,186,189,193],Use:102,Used:101,Using:[30,40,59,72,73,75,102,146,147,148,149,157,163,164,166,168,174,177,178,179,181,184],With:[37,44,47,49,70,75,77,108,161,164,166,168,172,190],a10:40,about:[48,157],access:[40,96,146,157,161,166,168,189,190],accessor:[33,69],add:164,addit:[33,61,188,189],adjust:121,advanc:103,advantag:150,after:95,afterdelet:168,afterfind:168,afterinsert:168,afterupd:168,agent:163,ajax:67,alias:95,aliv:45,all:[111,113,116,117,120,161,164],allow:[41,164],allow_redirect:147,allowcallback:168,allowedfield:168,alpha:[2,3,4,5,6],altern:169,amount:168,ani:102,apach:[71,78,108],api:[67,170],app:[42,105,108,195],appli:[102,158],applic:[42,76,103,121,184,189,193],approach:54,argument:[31,95],arrai:[47,53,70,79,102,161,164,166,172],asarrai:168,asobject:168,assert:[182,188,189,190],asset:155,assign:102,attribut:[146,166],auth:147,authent:[40,60],author:162,auto:[77,94,102,156],autoload:[35,77],autom:155,avail:[45,79,80,81,82,83,84,86,87,88,89,90,91,92,160,164,188],base:[145,147],basebuild:116,basecommand:30,basic:[29,51,172],been:[122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],befor:95,beforeinsert:168,beforeupd:168,behavior:[36,71,149],benchmark:[181,184],beta:[7,8,9,10],bind:51,bodi:[147,186],bonu:157,boot:71,bootstrap:108,bug:[23,24,25,28],build:[103,171,193],builder:[47,52,116,168],built:31,bulk:166,busi:166,bypass:186,cach:[68,145,173,175,180,188],call:[30,43,94,182],callabl:102,callback:168,callfunct:43,cascad:178,cast:166,cell:175,cert:147,chain:[52,179],chang:[0,23,24,25,28,101,111,113,116,117,118,119,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,166,168,174,178],charact:93,check:[146,164,166,182,186,190],choos:184,classmap:35,clearscreen:32,cli:[29,30,31,32],clirequest:33,close:45,closur:102,code:[31,47,77,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,158],codeignit:[40,54,63,66,70,76,78,107,109,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,142,168],codeigniter4:[38,103,105,142],collect:150,collector:184,color:32,column:56,command:[29,30,31,34,56,58,59,102],comment:178,common:62,compar:159,comparison:101,complet:31,complianc:143,compon:[39,40,61],compos:[35,77,105,107,189],con:[105,106],concept:155,conclus:191,concurr:157,condit:178,config:[31,36,77,147,148,156,164],configexcept:72,configur:[35,36,44,70,72,75,95,102,108,122,145,149,154,164,168,172,173,178,182,189],confirm:[95,102],congratul:192,connect:[45,168,194],connect_timeout:147,constant:[69,71],content:[93,96,98,111,113,116,117,120,172,173],context:[75,179],contribut:63,control:[31,39,40,61,77,94,95,97,101,102,121,123,161,164,169,182,195],conveni:[36,41],convert:152,cooki:[24,80,146,147,190],core:[64,69],count:[52,185],creat:[30,56,58,59,64,70,95,146,154,159,161,162,164,166,168,172,176,177,180,181,184,192,194],createdfield:168,createfromd:159,createfromformat:159,createfrominst:159,createfromtim:159,createfromtimestamp:159,creation:168,credit:141,crop:152,cross:[40,156],csp:173,csrf:[40,116,156,192],csv:166,curlrequest:[116,147],current:[162,172],custom:[30,43,45,53,72,102,151,154,164,166,178,184],dash:102,data:[40,52,70,94,157,166,167,168,178,179,180,184,185],databas:[44,45,46,47,48,49,50,51,56,57,58,59,103,116,124,154,168,183,194],databaseexcept:72,databasehandl:[116,157],date:[81,159,166],dateformat:168,debug:[147,184,193],decor:176,defin:[41,65,94,102,168,185],definit:163,delai:147,delet:[52,68,168],delimit:178,demand:155,depend:155,deploy:155,deprec:[23,24,25,28],destroi:157,detect:172,determin:[50,96],dev:105,develop:108,differ:[36,70,159,186],direct:40,directli:149,directori:[42,76,94,161,180],disabl:[54,77,156,162],discov:77,discoveri:[41,77,155],dispatch:146,displai:[159,164,180,181,184,194],document:[122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],doe:[68,178,179],dom:190,download:[121,173],driver:[145,157],drop:56,dummi:145,dynam:180,echo:169,effect:71,email:[125,148],enabl:[65,68,77,102,151,156,184,192],encod:[93,149],encrypt:[126,149],enhanc:[23,24,25,28,116,117,120],entiti:[31,166],env:[44,71],environ:[70,71,102],equal:159,error:[32,51,54,71,72,109,164],escap:[51,83,178,179],event:[46,65,121,168,186],everywher:109,exampl:[30,36,47,58,102,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,145,155,163,170,174],except:[72,162],execut:[48,51,181],exist:[50,105,164],expect:154,explan:[44,164],explicit:70,exposur:40,express:102,extend:[61,64,66,73,94,121],fabric:185,factori:[36,189],failur:156,fake:185,fallback:172,featur:[150,186],feedback:32,fetch:67,field:[50,56,83,168],file:[30,35,44,58,59,70,71,77,78,96,111,113,114,115,116,117,120,127,145,148,150,155,161,164,169,172,173],filehandl:157,filesystem:82,fill:166,filter:[31,77,95,102,116,150,158,178,182,189,192],find:168,findal:168,findcolumn:168,first:[103,168,193,195],fit:152,fix:[23,24,25,28],flashdata:157,flatten:152,flip:152,forc:173,forcehttp:94,foreign:[56,58],forg:56,forgeri:[40,156],form:[83,156,161,164,192],form_param:147,format:186,formatt:185,forward:40,fragment:[162,178],framework:[71,121],from:[32,36,48,52,55,56,73,110,111,112,113,114,115,116,117,118,119,120,121,140],gener:[31,53,74,103,121,185],generatortrait:31,get:[32,41,52,55,103,146,150,164,193],getag:159,getdst:159,getloc:159,getter:159,gettimezon:159,gettimezonenam:159,getutc:159,give:109,global:[69,95,102],group:[52,58,102,164],guid:[103,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],guidelin:40,handl:[51,70,71,72,101,103,166,170],handler:[75,149],has:[122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],have:109,header:[96,116,147,173,186,190],hello:[29,94],help:[30,156],helper:[48,53,73,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,103,121,182,183,185,190],honeypot:151,host:[108,162],hostnam:102,how:[41,68,109,157,164],htaccess:108,html:[84,128,156,174],http:[37,98,99,102,133,173,186],http_error:147,human:159,identifi:51,imag:152,immut:146,implicit:70,includ:[94,109,177],incomingrequest:96,index:[50,78,109],individu:159,inflector:86,info:161,inform:[48,75],initi:[32,47,56,108,152,157,163,174],inject:40,inlin:173,input:[32,96,150],insecur:40,insert:[47,52,168],instal:[76,104,105,106,109,189],instanc:[150,162,189],instanti:159,introduct:[31,36,41],invalidchar:95,isaft:159,isbefor:159,item:[77,192],iter:181,join:52,jqueri:67,json:[147,166,190],keep:45,kei:[56,58,149,164],kint:184,know:109,known:40,label:164,languag:[77,93,172],larg:168,latest:105,layout:177,length:149,let:[29,94,195],level:40,librari:[29,32,77,103,121,137,147,148,149,153,154,155,156,157,160,164],licens:165,limit:[52,101,102,158],line:[29,34,56,58,59,102],link:154,list:[50,64],load:[52,73,79,80,81,82,83,84,86,87,88,89,90,91,92,93,109,121,147,154,155,156,160,164,180,185],local:[108,129,172,185],locat:[30,42,73],log:[0,72,75,109],logger:75,logic:[166,178,195],look:[52,174],loop:[178,180],made:101,make:[31,147,195],manag:[40,54,57,76],mandatori:120,manipul:152,manual:[45,51,54,106,154,168],map:[102,166],match:102,media:93,memcach:145,memcachedhandl:157,merg:[3,4,5,6,7,8,9,10,11,12,13,14],messag:[75,98,149,164,172],metadata:[50,157],method:[36,48,51,52,53,61,94,95,99,102,116,152,155,156,179,182,183,188],migrat:[31,58,77,130,183],miscellan:69,misconfigur:40,miss:40,mit:165,mock:[188,189],mod_userdir:108,mode:54,model:[31,36,39,77,116,121,131,166,167,168,185,192,194],modifi:[42,56,75,159,168],modul:[77,155],move:[150,161],multipart:147,multipl:[45,47,71,75,76,102,116,154,161,164,180],mutat:166,name:[51,58,102,146,161],namespac:[35,58,70,77,102,121,180],nativ:178,negoti:[93,96,98,172],nest:[59,70,172,178],newlin:32,nginx:[71,78,108],non:[73,77],notat:161,note:[149,157,178],now:[73,159],number:87,object:[40,47,51,53],offset:102,one:76,onli:[29,102,109,154],onlydelet:168,openssl:149,option:[31,36,61,102,147,178,179,180],order:[52,156],organ:94,other:[51,61,156,161],our:195,output:[155,173],overrid:[102,148],overview:[38,103,158,164,193],owasp:40,own:65,packag:107,pad:149,page:[68,109,154,161,164,186,193,195],pagenotfoundexcept:72,pagin:[132,154],paramet:[36,41,45,102,164,168,172,175],pars:[159,178],parser:[138,178],part:162,parti:75,partial:177,pass:[56,94],path:162,person:146,phar:189,php:[78,109,169,178],phpunit:189,placehold:[101,102,164,168],plugin:178,point:[65,181,184],polici:173,port:162,predi:145,prefer:[58,148,157],prefix:[51,146,149],preload:61,prepar:51,prerequisit:156,present:[50,101],prevent:178,previou:140,primarykei:168,print:32,prioriti:[65,102],privat:[94,189],pro:[105,106],process:[102,152,161,168],project:[105,107,111,113,114,115,116,117,120],promptbykei:32,properti:[94,166,189],protect:[51,116,156,168,189],protocol:148,provid:[32,95,178,184],provis:40,psr:143,publish:[65,155],purgedelet:168,push:157,qualiti:152,queri:[47,48,51,52,53,116,147,154,162,168],queue:102,quick:47,quickli:166,random:156,rate:158,react:67,recommend:[40,60],reconnect:45,redi:145,redirect:[40,102,156],redirectexcept:72,redishandl:157,refer:[40,52,53,56,58,96,98,100,145,146,148,149,153,155,158,163,170,173,174,178,179],regener:156,regist:178,registrar:70,regular:[51,102],reloc:76,remap:94,remov:[78,146,157],renam:[56,76],render:[177,179],replac:[62,64,70,130,172,184],report:71,repositori:107,request:[37,40,67,96,100,103,147,156,186,190],requir:144,reset:52,resiz:152,resourc:101,resourcecontrol:101,resourcepresent:101,respons:[37,133,147,170,171,173,182,186,190],rest:101,restrict:102,result:[47,52,53,55,117,149,154],retriev:[50,96,150,157,168,172],returntyp:168,revers:102,review:148,right:142,rotat:152,rout:[29,77,94,97,101,102,116,134,156,172,182,186,192,194,195],row:53,rule:[102,164,168],run:[29,30,54,76,108,164,168,181,193,195],runtim:[168,173],same:45,samea:159,samesit:146,save:[164,168],savedata:180,scaffold:31,scheme:162,script:40,search:130,section:194,secur:[24,26,27,40,88,135,155,156,173],securehead:95,seed:[59,77,183],seeder:[31,59],segment:[94,102,154,162],select:52,send:[24,148],sensit:40,sent:156,server:[78,108,144],servic:[36,41,69,149,189],session:[40,116,136,157,186,190],set:[31,45,65,93,102,105,106,108,116,148,149,154,164,173,183,184,186,189,194],setopt:36,setrul:164,setter:159,settimestamp:159,settimezon:159,share:[41,108,147],show:184,showprogress:32,similar:52,simplest:161,simplifi:51,simul:65,singl:[47,161,164],single_servic:41,site:[40,156],skipvalid:168,smtp:148,sodium:149,specif:52,specifi:[77,154,164,168,172,185],spl:150,spoof:99,ssl:148,stage:189,standard:[47,73],start:[47,103,150],starter:105,statu:190,stock:31,store:[146,149,161,180],stream:189,strict:[54,164],string:[56,162],structur:[42,105,106,121,169],sub:[94,180],subdomain:102,subqueri:52,substitut:178,success:[161,164],support:[35,155,185],sync:155,syntax:[102,169],system:[42,64,188,189],tab:184,tabl:[32,50,56,116,128,168,174,185],take:150,task:181,tempdata:157,templat:[164,178],test:[42,54,89,108,182,183,185,186,187,189,190],text:[90,152],thi:[79,80,81,82,83,84,86,87,88,89,90,91,92,94],thing:87,third:75,throttler:158,time:[69,159,181],timelin:184,timeout:147,timer:181,tip:157,todai:159,todatestr:159,todatetim:159,todatetimestr:159,token:156,tolocalizedstr:159,tomorrow:159,tool:58,toolbar:184,topic:[74,103],totimestr:159,tradit:164,trait:[170,182,189],transact:54,translat:[102,105,106,164,172],treat:70,troubleshoot:109,turn:173,tutori:[109,164],two:159,type:[96,168,170],typographi:160,unhelp:109,unvalid:40,updat:[52,168,192],updatedfield:168,upgrad:[105,106,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140],upload:[96,127,161,164],uri:[94,102,147,154,162],url:[78,91,96,109],usag:[31,34,58,145,155,161,166,170,172,178],use:41,useautoincr:168,user:[32,103,156,163],user_ag:147,userinfo:162,usesoftdelet:168,usetimestamp:168,util:55,vagrant:108,valid:[24,31,94,117,137,146,164,168],validatedata:94,validationmessag:168,validationrul:168,valu:[44,83,157,159,164,186],var_dump:184,variabl:70,variat:178,verb:102,verifi:[147,161],version:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,47,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,147],versu:148,via:29,view:[39,77,121,138,139,154,159,164,169,175,176,177,178,179,180,181],virtual:108,vuej:67,vulner:40,wait:32,watermark:152,weak:40,web:[68,78],welcom:[142,193],what:[29,36,37,41,73,94,98,102,109,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,157,178,179,184],when:[87,156],whoop:109,why:[29,41],wincach:145,withdelet:168,within:180,withrequest:164,word:148,work:[37,49,51,68,70,77,109,127,147,150,157,159,161,162,164,166,168,172,173,190,194],world:[29,94],wrap:[32,148],writabl:42,write:32,wrong:87,xml:[55,92,190],xss:40,yesterdai:159,you:142,your:[45,48,50,65,76,94,103,108,149,164,168,174,181,183,184,189,193,194]}}) \ No newline at end of file