openapi: 3.1.0 info: title: Amigo Account Organization API version: 0.1.0 servers: - url: https://api.amigo.ai - url: https://internal-api.amigo.ai - url: https://api-eu-central-1.amigo.ai - url: https://api-ap-southeast-2.amigo.ai - url: https://api-ca-central-1.amigo.ai security: - Bearer-Authorization: [] Bearer-Authorization-Organization: [] Basic: [] tags: - name: Organization paths: /v1/{organization}/organization/: get: tags: - Organization summary: Get an organization description: 'Get the details of an organization. #### Permissions This endpoint may be impacted by the following permissions: * The `default_user_preferences` field is only populated if the endpoint is called with user authentication credentials, and the authenticated user has the `Organization:GetOrganizationDetails` permission.' operationId: get-organization parameters: - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__get_organization__Response' '404': description: The specified organization does not exist. '422': description: Invalid request path parameter failed validation. '503': description: The service is going through temporary maintenance. security: [] put: tags: - Organization summary: Create an organization description: "Set up a new organization in the Amigo system. Specifically, it\n* creates a new organization within the Amigo Mongo database with the given details.\n * Along with the new organization, 4 default roles are created:\n * `DefaultUserRole`.\n * `DefaultAdministratorRole`.\n * `DefaultAmigoAdministratorRole`.\n * `DefaultSuperAdministratorRole`.\n * A super user, `admin@amigo.ai`, is created and granted the `DefaultSuperAdministratorRole`.\n* creates a new tenant in Google Identity Platform for users in this organization.\n* creates a new Route53 record, `{org_id}.amigo.ai`, that hosts the Amigo frontend for this organization.\n* creates a new domain, `{org_id}.amigo.ai`, on Vercel.\n\nThe `x-mongo-cluster-name` header is mandatory for this endpoint.\n\n#### Permissions\nThis endpoint requires the following permissions:\n* `Organization:CreateOrganization`. for the organization to create." operationId: create-organization parameters: - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: true schema: type: string description: The Mongo cluster name to perform this request in. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_organization__Request' responses: '201': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_organization__Response' '422': description: Invalid request path parameter or request body failed validation. '409': description: Conflicts with existing organization with the same `org_id`, or a related operation is in progress. '400': description: The specified organization ID is reserved. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 5 requests per minute for this endpoint. security: - Bearer-Authorization: [] Bearer-Authorization-Organization: [] post: tags: - Organization summary: Modify an organization description: 'Modify elements of an organization. #### Permissions This endpoint requries the following permissions: * `Organization:ModifyOrganization` to modify the organization.' operationId: modify-organization parameters: - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__modify_organization__Request' responses: '204': description: Succeeded. '404': description: The specified organization does not exist. '422': description: Invalid request path parameter or request body failed validation. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 10 requests per minute for this endpoint. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. delete: tags: - Organization summary: Delete an organization description: 'Delete an organization. All of the organization''s data are erased. Some analytical data will be asynchronously removed at a future date. Unlike other endpoints, this endpoint is not transactional. If any operation fails during the execution, the endpoint does not revert the performed actions. The caller should re-call this endpoint until it succeeds. Regardless of whether this endpoint succeeds or not, the first time this endpoint is called, the organization is considered deleted. Even if the endpoint fails and the organization isn''t completely wiped, it''s considered in an invalid state and any other operations on it may fail. #### Permissions This endpoint requires the following permissions: * `Organization:DeleteOrganization` for the organization to delete.' operationId: delete-organization parameters: - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '204': description: Succeeded. '422': description: Invalid request path parameter failed validation. '404': description: Specified organization is not found. '401': description: Invalid authorization credentials. '400': description: The current environment or organization does not support this endpoint. '409': description: A related operation is in progress. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 5 requests per minute for this endpoint. /v1/{organization}/organization/agent: post: tags: - Organization summary: Create an agent description: 'Create a new agent for the given organization. No default version for the agent will be created, so one must later to create a version for this agent so it can be used in a service. #### Permissions This endpoint requires the following permissions: * `Organization:CreateAgent` for the new agent.' operationId: create-agent parameters: - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_agent__Request' responses: '201': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_agent__Response' '404': description: The specified organization does not exist. '422': description: Invalid request path parameter or request body failed validation. '409': description: An `Agent` with the same name already exists. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 10 requests per minute for this endpoint. get: tags: - Organization summary: Get agents for an organization description: 'Return a list of agents for the organization. #### Permissions This endpoint may be impacted by the following permissions: * Only agents that the authenticated user has the `Organization:GetAgent` permission on will be returned.' operationId: get-agents parameters: - name: organization in: path required: true schema: type: string title: Organization - name: deprecated in: query required: false schema: anyOf: - type: boolean - type: 'null' description: Whether the agent is deprecated. title: Deprecated description: Whether the agent is deprecated. - name: id in: query required: false schema: type: array uniqueItems: true items: type: string pattern: ^[a-f0-9]{24}$ description: The IDs of the agents to filter for. default: [] title: Id description: The IDs of the agents to filter for. - name: limit in: query required: false schema: type: integer maximum: 20 exclusiveMinimum: 0 description: The maximum number of agents to return. default: 10 title: Limit description: The maximum number of agents to return. - name: continuation_token in: query required: false schema: type: integer description: The continuation token from the previous request used to retrieve the next page of agents. default: 0 title: Continuation Token description: The continuation token from the previous request used to retrieve the next page of agents. - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__get_agents__Response' '404': description: The specified organization does not exist. '422': description: Invalid request path parameter or query parameter failed validation. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 20 requests per minute for this endpoint. /v1/{organization}/organization/agent/{agent_id}/: post: tags: - Organization summary: Create an agent version description: 'Create a new version of the given agent. If there''s no existing versions, all fields in the request must be filled and they will be used to create the initial version of the agent. Otherwise, only fill the fields that need to be updated, and the new version will retain other fields from the previous latest version. #### Permissions This endpoint requires the following permissions: * `Organization:CreateAgentVersion` for the new version of the agent.' operationId: create-agent-version parameters: - name: agent_id in: path required: true schema: type: string pattern: ^[a-f0-9]{24}$ description: The ID of the agent to create a new version for. title: Agent Id description: The ID of the agent to create a new version for. - name: organization in: path required: true schema: type: string title: Organization - name: version in: query required: false schema: anyOf: - type: integer exclusiveMinimum: 0 - type: 'null' description: The version number of the new agent version. If specified, this endpoint throws an error if the next version of the agent in the database doesn't equal to the value of this parameter. title: Version description: The version number of the new agent version. If specified, this endpoint throws an error if the next version of the agent in the database doesn't equal to the value of this parameter. - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_agent_version__Request' responses: '201': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_agent_version__Response' '404': description: The specified organization or agent does not exist. '422': description: Invalid request path parameter, request body, or request query parameter failed validation. '409': description: The specified version is not the expected next version for the agent. '400': description: Attempt to create the initial version for an agent, but not all fields in the request object are defined. Or, the specified voice ID doesn't exist. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 10 requests per minute for this endpoint. delete: tags: - Organization summary: Delete an agent description: 'Delete the specified agent from the organization. In practice, this endpoint marks the agent as deprecated, but will not delete this agent nor any of its versions. It does prevent new services (or inactive services to be activated) from using this agent. An error will be raised if this endpoint is called when an active service still utilizes this agent. However, any ongoing conversation using this agent will continue to work. #### Permissions: * `Organization:DeleteAgent` for the agent to delete.' operationId: delete-agent parameters: - name: agent_id in: path required: true schema: type: string pattern: ^[a-f0-9]{24}$ description: The ID of the agent to delete title: Agent Id description: The ID of the agent to delete - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: {} '404': description: The specified organization or agent does not exist. '400': description: An active service exists that utilizes this agent. '409': description: The specified agent is already deleted '422': description: Invalid request path parameter failed validation. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 10 requests per minute for this endpoint. /v1/{organization}/organization/service_hierarchical_state_machine: post: tags: - Organization summary: Create a service hierarchical state machine description: 'Create a new state machine for the given organization. No default version for the state machine will be created, so one must later create a version for this state machine so it can be used in a service. #### Permissions This endpoint requires the following permissions: * `Organization:CreateServiceHierarchicalStateMachine` for the new service hierarchical state machine.' operationId: create-service-hierarchical-state-machine parameters: - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine__Request' responses: '201': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine__Response' '404': description: The specified organization does not exist. '422': description: Invalid request path parameter or request body failed validation. '409': description: A state machine with the same name already exists. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 10 requests per minute for this endpoint. get: tags: - Organization summary: Get service hierarchical state machines for an organization description: 'Return a list of service hierarchical state machines for the organization. #### Permissions This endpoint may be impacted by the following permissions: * Only state machines that the authenticated user has the `Organization:GetServiceHierarchicalStateMachine` permission on will be returned.' operationId: get-service-hierarchical-state-machines parameters: - name: organization in: path required: true schema: type: string title: Organization - name: deprecated in: query required: false schema: anyOf: - type: boolean - type: 'null' description: Whether the state machine is deprecated. title: Deprecated description: Whether the state machine is deprecated. - name: id in: query required: false schema: type: array uniqueItems: true items: type: string pattern: ^[a-f0-9]{24}$ description: The IDs of the state machines to filter for. default: [] title: Id description: The IDs of the state machines to filter for. - name: limit in: query required: false schema: type: integer maximum: 50 minimum: 0 description: The maximum number of service hierarchical state machines to return. default: 50 title: Limit description: The maximum number of service hierarchical state machines to return. - name: continuation_token in: query required: false schema: type: integer description: The continuation token from the previous request used to retrieve the next page of state machines. default: 0 title: Continuation Token description: The continuation token from the previous request used to retrieve the next page of state machines. - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__get_service_hierarchical_state_machines__Response' '404': description: The specified organization does not exist. '422': description: Invalid request path parameter or query parameter failed validation. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 20 requests per minute for this endpoint. /v1/{organization}/organization/service_hierarchical_state_machine/{service_hierarchical_state_machine_id}/: post: tags: - Organization summary: Create a service hierarchical state machine version description: "Create a new version for the given service hierarchical state machine. The new version will be created with the supplied data. It needs to satisfy the following\nconstraints:\n* Each action state must have at least one action.\n* For action and decision states, each exit condition's `next_state` must either be a string that exists in the states and cannot be the same as the current state, or a 2-tuple of strings,\n with the first string of the form `{external_service_hierarchical_state_machine_reference.external_state_name}`, and the second string the jumpback state which must be a state\n in the states.\n* For `recall`, `reflection`, and `tool_call` states, `next_state` must either be a string that exists in the states and cannot be the same as the current state, or a 2-tuple of strings,\n with the first string of the form `{external_service_hierarchical_state_machine_reference.external_state_name}`, and the second string the jumpback state which must be a state\n in the states.\n* The terminal state cannot have exit conditions and must have exactly one action.\n\nSee the per-request-field documentation for more field-specific constraints.\n\nDue to the complexity of the state machine data structure, this endpoint provides a `dry_run` parameter. If set to `True`, the endpoint will check the supplied state machine would pass validations,\nbut does not actually create a new version. In this case, the endpoint returns an empty response with a 201 status code.\n\n#### Permissions:\nThis endpoint requires the following permissions:\n* `Organization:CreateServiceHierarchicalStateMachineVersion` for the service hierarchical state machine." operationId: create-service-hierarchical-state-machine-version parameters: - name: service_hierarchical_state_machine_id in: path required: true schema: type: string pattern: ^[a-f0-9]{24}$ description: The ID of the service hierarchical state machine to create a new version for. title: Service Hierarchical State Machine Id description: The ID of the service hierarchical state machine to create a new version for. - name: organization in: path required: true schema: type: string title: Organization - name: version in: query required: false schema: anyOf: - type: integer exclusiveMinimum: 0 - type: 'null' description: The version number of the new state machine version. If specified, this endpoint throws an error if the next version of the state machine in the database doesn't equal to the value of this parameter. title: Version description: The version number of the new state machine version. If specified, this endpoint throws an error if the next version of the state machine in the database doesn't equal to the value of this parameter. - name: dry_run in: query required: false schema: type: boolean description: Whether to perform a dry run of the operation. default: false title: Dry Run description: Whether to perform a dry run of the operation. - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Request' responses: '201': description: Succeeded. content: application/json: schema: anyOf: - $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Response' - type: 'null' title: Response Create-Service-Hierarchical-State-Machine-Version '404': description: The specified organization, state machine, or tool does not exist. '400': description: The specified state machine version depends on another state machine that either doesn't exist or is deprecated '409': description: The specified version number is not the expected next version for the state machine. '422': description: Invalid request path parameter, request body, or request query parameter failed validation. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 10 requests per minute for this endpoint. /v1/{organization}/organization/service_hierarchical_state_machine/{state_machine_id}/: delete: tags: - Organization summary: Delete a service hierarchical state machine description: 'Delete the specified state machine from the organization. In practice, this endpoint marks the state machine as deprecated, but will not delete this state machine nor any of its versions. It does prevent new services (or inactive services to be activated) from using this state machine. An error will be raised if this endpoint is called when an active service still utilizes this state machine. However, any ongoing conversation using this state machine, as well as any state machine version that depends on this state machine will continue to work. #### Permissions: * `Organization:DeleteServiceHierarchicalStateMachine` for the state machine to delete.' operationId: delete-service-hierarchical-state-machine parameters: - name: state_machine_id in: path required: true schema: type: string pattern: ^[a-f0-9]{24}$ description: The ID of the state machine to delete title: State Machine Id description: The ID of the state machine to delete - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: {} '404': description: The specified organization or state machine does not exist. '400': description: An active service exists that utilizes this state machine. '409': description: The specified state machine is already deleted '422': description: Invalid request path parameter failed validation. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 10 requests per minute for this endpoint. /v1/{organization}/organization/api_key/: post: tags: - Organization summary: Create an API key description: 'Create a new API key for the given organization. This API key authorizes the organization to retrieve a per-user access token for users in this organization which allows the users to access most of Amigo''s API endpoints. This API key is valid for the duration specified in the request. There''s no way to extend the duration of an API key. The API key is not retrievable after issuance, so please keep it in a secure location. Each organization has a maximum limit of 20 API keys. #### Permissions This endpoint requires the following permissions: * `Organization:CreateAPIKey`. * This endpoint requires the authenticated user to have more privileges than the role associated with the API key.' operationId: create-api-key parameters: - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol requestBody: required: true content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_api_key__Request' responses: '201': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__create_api_key__Response' '404': description: The specified organization or role does not exist. '400': description: The organization has reached the maximum API key limit. '422': description: Invalid request path parameter or request body failed validation. '409': description: A related operation is in progress. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 5 requests per minute for this endpoint. get: tags: - Organization summary: Get API keys for the organization description: 'Get all API keys for the organization. #### Permissions This endpoint is impacted by the following permissions: * Only API keys that the authenticated user has the `Organization:GetAPIKey` permission for are returned.' operationId: get-api-keys parameters: - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__get_api_keys__Response' '422': description: Invalid request path parameter failed validation. '404': description: The organization does not exist. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 10 requests per minute for this endpoint. /v1/{organization}/organization/api_key/{api_key_id}/: delete: tags: - Organization summary: Delete an API key description: 'Delete the given API key from this organization. #### Permissions This endpoint requires the following permissions: * `Organization:DeleteAPIKey`.' operationId: delete-api-key parameters: - name: organization in: path required: true schema: type: string title: Organization - name: api_key_id in: path required: true schema: type: string description: ID of the API key to delete. title: Api Key Id description: ID of the API key to delete. - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__delete_api_key__Response' '404': description: The specified organization or the API key does not exist. '422': description: Invalid request path parameter failed validation. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 10 requests per minute for this endpoint. /v1/{organization}/organization/agent/{agent_id}/version: get: tags: - Organization summary: Get agent versions description: 'Retrieve the versions of an agent. #### Permissions This endpoint requires the following permissions: * `Organization:GetAgent` for the agent to retrieve.' operationId: get-agent-versions parameters: - name: agent_id in: path required: true schema: type: string pattern: ^[a-f0-9]{24}$ description: The ID of the agent. title: Agent Id description: The ID of the agent. - name: organization in: path required: true schema: type: string title: Organization - name: version in: query required: false schema: anyOf: - type: string - type: 'null' description: The versions of the agent to retrieve. One can specify an exact version to retrieve, which is either the version number or `latest`, which retrieves the latest version. Alternatively, one can specify a range of inclusive lower and upper bound for the version number separated by `-`, and every version within the range would be retrieved. examples: - '1' - 1-latest - 2-5 - latest title: Version description: The versions of the agent to retrieve. One can specify an exact version to retrieve, which is either the version number or `latest`, which retrieves the latest version. Alternatively, one can specify a range of inclusive lower and upper bound for the version number separated by `-`, and every version within the range would be retrieved. - name: limit in: query required: false schema: type: integer maximum: 10 exclusiveMinimum: 0 description: The maximum number of agent versions to return. default: 10 title: Limit description: The maximum number of agent versions to return. - name: continuation_token in: query required: false schema: type: integer description: The continuation token from the previous request used to retrieve the next page of agent version. default: 0 title: Continuation Token description: The continuation token from the previous request used to retrieve the next page of agent version. - name: sort_by in: query required: false schema: type: array items: type: string description: The fields to sort the versions by. Supported fields are `version`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties. default: [] title: Sort By description: The fields to sort the versions by. Supported fields are `version`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties. - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__get_agent_versions__Response' '404': description: Specified organization or agent is not found. '422': description: Invalid request path parameter or request query parameter failed validation. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 20 requests per minute for this endpoint. /v1/{organization}/organization/service_hierarchical_state_machine/{service_hierarchical_state_machine_id}/version: get: tags: - Organization summary: Get service hierarchical state machine versions description: 'Retrieve the versions of a state machine. #### Permissions This endpoint requires the following permissions: * `Organization:GetServiceHierarchicalStateMachine` for the state machine to retrieve.' operationId: get-service-hierarchical-state-machine-versions parameters: - name: service_hierarchical_state_machine_id in: path required: true schema: type: string pattern: ^[a-f0-9]{24}$ description: The ID of the state machine. title: Service Hierarchical State Machine Id description: The ID of the state machine. - name: organization in: path required: true schema: type: string title: Organization - name: version in: query required: false schema: anyOf: - type: string - type: 'null' description: The versions of the state machine to retrieve. One can specify an exact version to retrieve, which is either the version number or `latest`, which retrieves the latest version. Alternatively, one can specify a range of inclusive lower and upper bound for the version number separated by `-`, and every version within the range would be retrieved. examples: - '1' - 1-latest - 2-5 - latest title: Version description: The versions of the state machine to retrieve. One can specify an exact version to retrieve, which is either the version number or `latest`, which retrieves the latest version. Alternatively, one can specify a range of inclusive lower and upper bound for the version number separated by `-`, and every version within the range would be retrieved. - name: limit in: query required: false schema: type: integer maximum: 10 exclusiveMinimum: 0 description: The maximum number of state machine versions to return. default: 10 title: Limit description: The maximum number of state machine versions to return. - name: continuation_token in: query required: false schema: type: integer description: The continuation token from the previous request used to retrieve the next page of state machine versions. default: 0 title: Continuation Token description: The continuation token from the previous request used to retrieve the next page of state machine versions. - name: sort_by in: query required: false schema: type: array items: type: string description: The fields to sort the versions by. Supported fields are `version`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties. default: [] title: Sort By description: The fields to sort the versions by. Supported fields are `version`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties. - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__get_service_hierarchical_state_machine_versions__Response' '404': description: Specified organization or service hierarchical state machine is not found. '422': description: Invalid request path parameter or request query parameter failed validation. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 20 requests per minute for this endpoint. /v1/{organization}/organization/user_dimensions/: get: tags: - Organization summary: Get user dimensions for the organization description: 'Get the list of user dimensions for the organization. #### Permissions This endpoint requires the following permissions: * `Organization:GetOrganizationDetails` for the current organization.' operationId: get-user-dimensions parameters: - name: organization in: path required: true schema: type: string title: Organization - name: x-mongo-cluster-name in: header required: false schema: anyOf: - type: string - type: 'null' description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. title: X-Mongo-Cluster-Name description: The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. - name: Sec-WebSocket-Protocol in: header required: false schema: type: array items: type: string default: [] title: Sec-Websocket-Protocol responses: '200': description: Succeeded. content: application/json: schema: $ref: '#/components/schemas/src__app__endpoints__organization__get_user_dimensions__Response' '422': description: Invalid request path parameter failed validation. '404': description: The organization does not exist. '401': description: Invalid authorization credentials. '403': description: Missing required permissions. '503': description: The service is going through temporary maintenance. '429': description: The user has exceeded the rate limit of 20 requests per minute for this endpoint. components: schemas: ExitCondition-Input: properties: description: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' next_state: anyOf: - $ref: '#/components/schemas/StateOrRefName' - prefixItems: - $ref: '#/components/schemas/ExternalStateName' - $ref: '#/components/schemas/StateOrRefName' type: array maxItems: 2 minItems: 2 title: Next State type: object required: - description - next_state title: ExitCondition amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__ToolCallSpec: properties: tool_id: type: string title: Tool Id description: The ID of the tool. version_constraint: type: string title: Version Constraint description: A [Python packaging version constraint](https://packaging.python.org/en/latest/specifications/version-specifiers/#id5) of the tool. additional_instruction: type: string title: Additional Instruction description: Additional instruction to be supplied to the LLM in addition to the tool's description. audio_fillers: items: type: string type: array title: Audio Fillers description: A list of audio fillers to play in audio mode if the tool is taking a long time. audio_filler_triggered_after: type: number title: Audio Filler Triggered After description: The number of seconds to wait before playing an audio filler. result_persistence: $ref: '#/components/schemas/ResultPersistence' description: 'The type of result persistence for this tool call. - If `ephemeral`, the result of the tool call is only provided to the current LLM interaction. Any future LLM interactions will not see this tool result. - If `persisted-preferred`, the result of the tool call is reflected in all future LLM interactions if it''s less than 5000 characters long. Otherwise, it''s only visible in the current LLM interaction. - If `persisted`, the result of the tool call is reflected in all future LLM interactions, unless it''s more than 5000 characters long, in which case an error is thrown.' type: object required: - tool_id - version_constraint - additional_instruction - audio_fillers - audio_filler_triggered_after - result_persistence title: ToolCallSpec description: A description of a tool call that the agent can make in this state. ToolCallState-Input: properties: type: type: string const: tool-call title: Type name: $ref: '#/components/schemas/StateOrRefName' next_state: anyOf: - $ref: '#/components/schemas/StateOrRefName' - prefixItems: - $ref: '#/components/schemas/ExternalStateName' - $ref: '#/components/schemas/StateOrRefName' type: array maxItems: 2 minItems: 2 title: Next State designated_tool: $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec' designated_tool_call_params_generation_audio_fillers: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array maxItems: 5 title: Designated Tool Call Params Generation Audio Fillers designated_tool_call_params_generation_audio_filler_triggered_after: type: number maximum: 10.0 exclusiveMinimum: 0.0 title: Designated Tool Call Params Generation Audio Filler Triggered After designated_tool_call_objective: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' designated_tool_call_context: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' designated_tool_call_guidances: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Designated Tool Call Guidances designated_tool_call_validations: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Designated Tool Call Validations tool_call_specs: items: $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec' type: array title: Tool Call Specs type: object required: - type - name - next_state - designated_tool - designated_tool_call_params_generation_audio_fillers - designated_tool_call_params_generation_audio_filler_triggered_after - designated_tool_call_objective - designated_tool_call_context - designated_tool_call_guidances - designated_tool_call_validations - tool_call_specs title: ToolCallState ResultPersistence: type: string enum: - ephemeral - persisted-preferred - persisted src__app__endpoints__organization__get_user_dimensions__Response: properties: user_dimensions: items: $ref: '#/components/schemas/UserDimension-Output' type: array title: User Dimensions description: The list of user dimensions for the organization. type: object required: - user_dimensions title: Response src__app__endpoints__organization__create_api_key__Response: properties: api_key_id: type: string title: Api Key Id description: An identifier for this API key. You must present this along with the API key to authenticate. api_key: type: string title: Api Key description: The API key. This is only visible once and is not retrievable later. Please store safely. expires_at: type: string format: date-time title: Expires At description: Expiration time of the API key in UTC. type: object required: - api_key_id - api_key - expires_at title: Response amigo_lib__pydantic__base_model__StrippedNonemptyString__1: type: string minLength: 1 src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Response: properties: version: type: integer title: Version description: 'Numerical version ID that describes how many iterations of this service hierarchical state machine occurred before this version. Note that this is for reference only. Any identification of a service hierarchical state machine version in Amigo APIs use the `id` field. For the initial version of a service hierarchical state machine, this field will be 1.' created_at: type: string format: date-time title: Created At description: The time at which this version was created. type: object required: - version - created_at title: Response src__app__endpoints__organization__get_agent_versions__Response__AgentInstance: properties: org_id: type: string title: Org Id description: The ID of the organization of this agent. agent_id: type: string title: Agent Id description: The ID of this agent. version: type: integer title: Version description: The version of the agent. voice_config: anyOf: - $ref: '#/components/schemas/VoiceConfigInstance' - type: 'null' description: The voice configuration of the agent. initials: type: string title: Initials description: The initials of the agent. identity: $ref: '#/components/schemas/Identity-Output' description: The identity of the agent. background: type: string title: Background description: A description of the `Agent`'s background. behaviors: items: type: string type: array title: Behaviors description: A list of behavioral guidelines that this `Agent` follows. communication_patterns: items: type: string type: array title: Communication Patterns description: A list of descriptions that illustrate the communication styles of this `Agent`. created_at: type: string format: date-time title: Created At description: The time at which this version was created. creator: $ref: '#/components/schemas/amigo_lib__mongo__collections__agent__Agent__UserInfo' description: The user who created this version of the agent. type: object required: - org_id - agent_id - version - voice_config - initials - identity - background - behaviors - communication_patterns - created_at - creator title: AgentInstance RecallState-Input: properties: type: type: string const: recall title: Type name: $ref: '#/components/schemas/StateOrRefName' queries: anyOf: - items: type: string type: array minItems: 1 - type: 'null' title: Queries requested_information: anyOf: - $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' - type: 'null' next_state: anyOf: - $ref: '#/components/schemas/StateOrRefName' - prefixItems: - $ref: '#/components/schemas/ExternalStateName' - $ref: '#/components/schemas/StateOrRefName' type: array maxItems: 2 minItems: 2 title: Next State type: object required: - type - name - queries - requested_information - next_state title: RecallState amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__UserInfo: properties: org_id: type: string title: Org Id user_id: type: string title: User Id type: object required: - org_id - user_id title: UserInfo AnnotationState-Output: properties: type: type: string const: annotation title: Type name: type: string title: Name description: The name of this state. inner_thought: type: string title: Inner Thought description: The inner thought to add to the conversation. next_state: anyOf: - type: string - prefixItems: - type: string - type: string type: array maxItems: 2 minItems: 2 title: Next State description: 'The state to transition to after the inner thought message is generated. If it''s a string, the session will transition to a state within this contextual graph. If it''s a tuple, the first element must be of the form `{external_contextual_graph_reference_name}.{state_name}` and represents a state in another contextual graph that the session will transition to, and the second element must be a state in this contextual graph that the session will transition to after reaching the terminal state of the external graph.' type: object required: - type - name - inner_thought - next_state title: AnnotationState description: A passthrough state in which the agent adds a pre-determined inner thought message before continuing. src__app__endpoints__organization__create_api_key__Request: properties: name: anyOf: - $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' - type: 'null' description: An optional name for the API key for easier identification by users. duration: type: string format: duration title: Duration description: The valid duration of the API key. Should be supplied in the [ISO8601 format](https://en.wikipedia.org/wiki/ISO_8601#Durations). Must be between 1 to 90 days. role_name: type: string title: Role Name description: 'The name of the role associated with the key. When using this API key to authenticate, it can only authenticate for users with roles that are less permissive than this role.' default: DefaultAdministratorRole type: object required: - name - duration title: Request amigo_lib__pydantic__base_model__StrippedNonemptyString__2: type: string maxLength: 256 minLength: 1 ServiceHierarchicalStateMachineInstance: properties: org_id: type: string title: Org Id description: The ID of the organization of this state machine. service_hierarchical_state_machine_id: type: string title: Service Hierarchical State Machine Id description: The ID of the state machine that this document is a version for. version: type: integer title: Version description: Numerical version ID that describes how many iterations of this state machine occurred before this version. created_at: type: string format: date-time title: Created At description: The time at which this version was created. creator: $ref: '#/components/schemas/amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__UserInfo' description: The user who created this version of the state machine. description: type: string title: Description description: A description of the state machine. states: items: $ref: '#/components/schemas/State' type: array title: States description: The states in this state machine. new_user_initial_state: type: string title: New User Initial State description: The state a new user will be in when a session starts. This must be an action state. returning_user_initial_state: type: string title: Returning User Initial State description: The state a returning user will be in when a session starts. This must be an action state. terminal_state: type: string title: Terminal State description: The state the user will be in when the session ends. This must be an action state. references: additionalProperties: prefixItems: - type: string - type: integer type: array maxItems: 2 minItems: 2 type: object title: References description: A dictionary of other service hierarchical state machine versions that this references to. This field is a map of the reference name to the machine's ID and its version number. global_intra_state_navigation_guidelines: items: type: string type: array title: Global Intra State Navigation Guidelines description: A list of guidelines for how the agent will navigate between subgoals and exit conditions within this state. This is injected into the `intra_state_navigation_guidelines` field of every action state. global_action_guidelines: items: type: string type: array title: Global Action Guidelines description: A list of guidelines for how the agent will behave when engaging with user. This is injected into the `action_guidelines` field of every action state. global_boundary_constraints: items: type: string type: array title: Global Boundary Constraints description: A list of guidelines for how the agent will not behave when engaging with user. This is injected into the `boundary_constraints` field of every action state. type: object required: - org_id - service_hierarchical_state_machine_id - version - created_at - creator - description - states - new_user_initial_state - returning_user_initial_state - terminal_state - references - global_intra_state_navigation_guidelines - global_action_guidelines - global_boundary_constraints title: ServiceHierarchicalStateMachineInstance Identity-Input: properties: name: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' role: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' developed_by: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' default_spoken_language: type: string enum: - aaa - aab - aac - aad - aae - aaf - aag - aah - aai - aak - aal - aan - aao - aap - aaq - aar - aas - aat - aau - aaw - aax - aaz - aba - abb - abc - abd - abe - abf - abg - abh - abi - abj - abk - abl - abm - abn - abo - abp - abq - abr - abs - abt - abu - abv - abw - abx - aby - abz - aca - acb - acd - ace - acf - ach - aci - ack - acl - acm - acn - acp - acq - acr - acs - act - acu - acv - acw - acx - acy - acz - ada - adb - add - ade - adf - adg - adh - adi - adj - adl - adn - ado - adq - adr - ads - adt - adu - adw - adx - ady - adz - aea - aeb - aec - aed - aee - aek - ael - aem - aen - aeq - aer - aes - aeu - aew - aey - aez - afb - afd - afe - afg - afh - afi - afk - afn - afo - afp - afr - afs - aft - afu - afz - aga - agb - agc - agd - age - agf - agg - agh - agi - agj - agk - agl - agm - agn - ago - agq - agr - ags - agt - agu - agv - agw - agx - agy - agz - aha - ahb - ahg - ahh - ahi - ahk - ahl - ahm - ahn - aho - ahp - ahr - ahs - aht - aia - aib - aic - aid - aie - aif - aig - aih - aii - aij - aik - ail - aim - ain - aio - aip - aiq - air - ait - aiw - aix - aiy - aja - ajg - aji - ajn - ajp - ajs - aju - ajw - ajz - aka - akb - akc - akd - ake - akf - akg - akh - aki - akj - akk - akl - akm - ako - akp - akq - akr - aks - akt - aku - akv - akw - akx - aky - akz - ala - alc - ald - ale - alf - alh - ali - alj - alk - all - alm - aln - alo - alp - alq - alr - als - alt - alu - alw - alx - aly - alz - ama - amb - amc - ame - amf - amg - amh - ami - amj - amk - aml - amm - amn - amo - amp - amq - amr - ams - amt - amu - amv - amw - amx - amy - amz - ana - anb - anc - and - ane - anf - ang - anh - ani - anj - ank - anl - anm - ann - ano - anp - anq - anr - ans - ant - anu - anv - anw - anx - any - anz - aoa - aob - aoc - aod - aoe - aof - aog - aoi - aoj - aok - aol - aom - aon - aor - aos - aot - aou - aox - aoz - apb - apc - apd - ape - apf - apg - aph - api - apj - apk - apl - apm - apn - apo - app - apq - apr - aps - apt - apu - apv - apw - apx - apy - apz - aqc - aqd - aqg - aqk - aqm - aqn - aqp - aqr - aqt - aqz - ara - arb - arc - ard - are - arg - arh - ari - arj - ark - arl - arn - aro - arp - arq - arr - ars - aru - arv - arw - arx - ary - arz - asa - asb - asc - ase - asf - asg - ash - asi - asj - ask - asl - asm - asn - aso - asp - asq - asr - ass - ast - asu - asv - asw - asx - asy - asz - ata - atb - atc - atd - ate - atg - ati - atj - atk - atl - atm - atn - ato - atp - atq - atr - ats - att - atu - atv - atw - atx - aty - atz - aua - aub - auc - aud - aug - auh - aui - auj - auk - aul - aum - aun - auo - aup - auq - aur - aut - auu - auw - aux - auy - auz - ava - avb - avd - ave - avi - avk - avl - avm - avn - avo - avs - avt - avu - avv - awa - awb - awc - awe - awg - awh - awi - awk - awm - awn - awo - awr - aws - awt - awu - awv - aww - awx - awy - axb - axe - axg - axk - axl - axm - axx - aya - ayb - ayc - ayd - aye - ayg - ayh - ayi - ayk - ayl - aym - ayn - ayo - ayp - ayq - ayr - ays - ayt - ayu - ayz - aza - azb - azd - aze - azg - azj - azm - azn - azo - azt - azz - baa - bab - bac - bae - baf - bag - bah - baj - bak - bal - bam - ban - bao - bap - bar - bas - bau - bav - baw - bax - bay - bba - bbb - bbc - bbd - bbe - bbf - bbg - bbh - bbi - bbj - bbk - bbl - bbm - bbn - bbo - bbp - bbq - bbr - bbs - bbt - bbu - bbv - bbw - bbx - bby - bca - bcb - bcc - bcd - bce - bcf - bcg - bch - bci - bcj - bck - bcl - bcm - bcn - bco - bcp - bcq - bcr - bcs - bct - bcu - bcv - bcw - bcy - bcz - bda - bdb - bdc - bdd - bde - bdf - bdg - bdh - bdi - bdj - bdk - bdl - bdm - bdn - bdo - bdp - bdq - bdr - bds - bdt - bdu - bdv - bdw - bdx - bdy - bdz - bea - beb - bec - bed - bee - bef - beg - beh - bei - bej - bek - bel - bem - ben - beo - bep - beq - bes - bet - beu - bev - bew - bex - bey - bez - bfa - bfb - bfc - bfd - bfe - bff - bfg - bfh - bfi - bfj - bfk - bfl - bfm - bfn - bfo - bfp - bfq - bfr - bfs - bft - bfu - bfw - bfx - bfy - bfz - bga - bgb - bgc - bgd - bge - bgf - bgg - bgi - bgj - bgk - bgl - bgn - bgo - bgp - bgq - bgr - bgs - bgt - bgu - bgv - bgw - bgx - bgy - bgz - bha - bhb - bhc - bhd - bhe - bhf - bhg - bhh - bhi - bhj - bhl - bhm - bhn - bho - bhp - bhq - bhr - bhs - bht - bhu - bhv - bhw - bhx - bhy - bhz - bia - bib - bid - bie - bif - big - bik - bil - bim - bin - bio - bip - biq - bir - bis - bit - biu - biv - biw - bix - biy - biz - bja - bjb - bjc - bje - bjf - bjg - bjh - bji - bjj - bjk - bjl - bjm - bjn - bjo - bjp - bjr - bjs - bjt - bju - bjv - bjw - bjx - bjy - bjz - bka - bkc - bkd - bkf - bkg - bkh - bki - bkj - bkk - bkl - bkm - bkn - bko - bkp - bkq - bkr - bks - bkt - bku - bkv - bkw - bkx - bky - bkz - bla - blb - blc - bld - ble - blf - blh - bli - blj - blk - bll - blm - bln - blo - blp - blq - blr - bls - blt - blv - blw - blx - bly - blz - bma - bmb - bmc - bmd - bme - bmf - bmg - bmh - bmi - bmj - bmk - bml - bmm - bmn - bmo - bmp - bmq - bmr - bms - bmt - bmu - bmv - bmw - bmx - bmz - bna - bnb - bnc - bnd - bne - bnf - bng - bni - bnj - bnk - bnl - bnm - bnn - bno - bnp - bnq - bnr - bns - bnu - bnv - bnw - bnx - bny - bnz - boa - bob - bod - boe - bof - bog - boh - boi - boj - bok - bol - bom - bon - boo - bop - boq - bor - bos - bot - bou - bov - bow - box - boy - boz - bpa - bpc - bpd - bpe - bpg - bph - bpi - bpj - bpk - bpl - bpm - bpn - bpo - bpp - bpq - bpr - bps - bpt - bpu - bpv - bpw - bpx - bpy - bpz - bqa - bqb - bqc - bqd - bqf - bqg - bqh - bqi - bqj - bqk - bql - bqm - bqn - bqo - bqp - bqq - bqr - bqs - bqt - bqu - bqv - bqw - bqx - bqy - bqz - bra - brb - brc - brd - bre - brf - brg - brh - bri - brj - brk - brl - brm - brn - bro - brp - brq - brr - brs - brt - bru - brv - brw - brx - bry - brz - bsa - bsb - bsc - bse - bsf - bsg - bsh - bsi - bsj - bsk - bsl - bsm - bsn - bso - bsp - bsq - bsr - bss - bst - bsu - bsv - bsw - bsx - bsy - bta - btc - btd - bte - btf - btg - bth - bti - btj - btm - btn - bto - btp - btq - btr - bts - btt - btu - btv - btw - btx - bty - btz - bua - bub - buc - bud - bue - buf - bug - buh - bui - buj - buk - bul - bum - bun - buo - bup - buq - bus - but - buu - buv - buw - bux - buy - buz - bva - bvb - bvc - bvd - bve - bvf - bvg - bvh - bvi - bvj - bvk - bvl - bvm - bvn - bvo - bvp - bvq - bvr - bvt - bvu - bvv - bvw - bvx - bvy - bvz - bwa - bwb - bwc - bwd - bwe - bwf - bwg - bwh - bwi - bwj - bwk - bwl - bwm - bwn - bwo - bwp - bwq - bwr - bws - bwt - bwu - bww - bwx - bwy - bwz - bxa - bxb - bxc - bxd - bxe - bxf - bxg - bxh - bxi - bxj - bxk - bxl - bxm - bxn - bxo - bxp - bxq - bxr - bxs - bxu - bxv - bxw - bxz - bya - byb - byc - byd - bye - byf - byg - byh - byi - byj - byk - byl - bym - byn - byo - byp - byq - byr - bys - byt - byv - byw - byx - byz - bza - bzb - bzc - bzd - bze - bzf - bzg - bzh - bzi - bzj - bzk - bzl - bzm - bzn - bzo - bzp - bzq - bzr - bzs - bzt - bzu - bzv - bzw - bzx - bzy - bzz - caa - cab - cac - cad - cae - caf - cag - cah - caj - cak - cal - cam - can - cao - cap - caq - car - cas - cat - cav - caw - cax - cay - caz - cbb - cbc - cbd - cbg - cbi - cbj - cbk - cbl - cbn - cbo - cbq - cbr - cbs - cbt - cbu - cbv - cbw - cby - ccc - ccd - cce - ccg - cch - ccj - ccl - ccm - cco - ccp - ccr - cda - cde - cdf - cdh - cdi - cdj - cdm - cdn - cdo - cdr - cds - cdy - cdz - cea - ceb - ceg - cek - cen - ces - cet - cey - cfa - cfd - cfg - cfm - cga - cgc - cgg - cgk - cha - chb - chc - chd - che - chf - chg - chh - chj - chk - chl - chm - chn - cho - chp - chq - chr - cht - chu - chv - chw - chx - chy - chz - cia - cib - cic - cid - cie - cih - cik - cim - cin - cip - cir - ciw - ciy - cja - cje - cjh - cji - cjk - cjm - cjn - cjo - cjp - cjs - cjv - cjy - ckb - ckh - ckl - ckm - ckn - cko - ckq - ckr - cks - ckt - cku - ckv - ckx - cky - ckz - cla - clc - cld - cle - clh - cli - clj - clk - cll - clm - clo - clt - clu - clw - cly - cma - cme - cmg - cmi - cml - cmm - cmn - cmo - cmr - cms - cmt - cna - cnb - cnc - cng - cnh - cni - cnk - cnl - cno - cnp - cnq - cnr - cns - cnt - cnu - cnw - cnx - coa - cob - coc - cod - coe - cof - cog - coh - coj - cok - col - com - con - coo - cop - coq - cor - cos - cot - cou - cov - cow - cox - coz - cpa - cpb - cpc - cpg - cpi - cpn - cpo - cps - cpu - cpx - cpy - cqd - cra - crb - crc - crd - cre - crf - crg - crh - cri - crj - crk - crl - crm - crn - cro - crq - crr - crs - crt - crv - crw - crx - cry - crz - csa - csb - csc - csd - cse - csf - csg - csh - csi - csj - csk - csl - csm - csn - cso - csp - csq - csr - css - cst - csv - csw - csx - csy - csz - cta - ctc - ctd - cte - ctg - cth - ctl - ctm - ctn - cto - ctp - cts - ctt - ctu - cty - ctz - cua - cub - cuc - cuh - cui - cuj - cuk - cul - cuo - cup - cuq - cur - cut - cuu - cuv - cuw - cux - cuy - cvg - cvn - cwa - cwb - cwd - cwe - cwg - cwt - cya - cyb - cym - cyo - czh - czk - czn - czo - czt - daa - dac - dad - dae - dag - dah - dai - daj - dak - dal - dam - dan - dao - daq - dar - das - dau - dav - daw - dax - daz - dba - dbb - dbd - dbe - dbf - dbg - dbi - dbj - dbl - dbm - dbn - dbo - dbp - dbq - dbr - dbt - dbu - dbv - dbw - dby - dcc - dcr - dda - ddd - dde - ddg - ddi - ddj - ddn - ddo - ddr - dds - ddw - dec - ded - dee - def - deg - deh - dei - dek - del - dem - den - dep - deq - der - des - deu - dev - dez - dga - dgb - dgc - dgd - dge - dgg - dgh - dgi - dgk - dgl - dgn - dgo - dgr - dgs - dgt - dgw - dgx - dgz - dhd - dhg - dhi - dhl - dhm - dhn - dho - dhr - dhs - dhu - dhv - dhw - dhx - dia - dib - dic - did - dif - dig - dih - dii - dij - dik - dil - dim - din - dio - dip - diq - dir - dis - diu - div - diw - dix - diy - diz - dja - djb - djc - djd - dje - djf - dji - djj - djk - djm - djn - djo - djr - dju - djw - dka - dkg - dkk - dkr - dks - dkx - dlg - dlk - dlm - dln - dma - dmb - dmc - dmd - dme - dmf - dmg - dmk - dml - dmm - dmo - dmr - dms - dmu - dmv - dmw - dmx - dmy - dna - dnd - dne - dng - dni - dnj - dnk - dnn - dno - dnr - dnt - dnu - dnv - dnw - dny - doa - dob - doc - doe - dof - doh - doi - dok - dol - don - doo - dop - doq - dor - dos - dot - dov - dow - dox - doy - doz - dpp - drb - drc - drd - dre - drg - dri - drl - drn - dro - drq - drs - drt - dru - dry - dsb - dse - dsh - dsi - dsl - dsn - dso - dsq - dsz - dta - dtb - dtd - dth - dti - dtk - dtm - dtn - dto - dtp - dtr - dts - dtt - dtu - dty - dua - dub - duc - due - duf - dug - duh - dui - duk - dul - dum - dun - duo - dup - duq - dur - dus - duu - duv - duw - dux - duy - duz - dva - dwa - dwk - dwr - dws - dwu - dww - dwy - dwz - dya - dyb - dyd - dyg - dyi - dym - dyn - dyo - dyu - dyy - dza - dze - dzg - dzl - dzn - dzo - eaa - ebc - ebg - ebk - ebo - ebr - ebu - ecr - ecs - ecy - eee - efa - efe - efi - ega - egl - egm - ego - egy - ehs - ehu - eip - eit - eiv - eja - eka - eke - ekg - eki - ekk - ekl - ekm - eko - ekp - ekr - eky - ele - elh - eli - elk - ell - elm - elo - elu - elx - ema - emb - eme - emg - emi - emk - emm - emn - emp - emq - ems - emu - emw - emx - emy - emz - ena - enb - enc - end - enf - eng - enh - enl - enm - enn - eno - enq - enr - enu - env - enw - enx - eot - epi - epo - era - erg - erh - eri - erk - ero - err - ers - ert - erw - ese - esg - esh - esi - esk - esl - esm - esn - eso - esq - ess - est - esu - esy - etb - etc - eth - etn - eto - etr - ets - ett - etu - etx - etz - eus - eve - evh - evn - ewe - ewo - ext - eya - eyo - eza - eze - faa - fab - fad - faf - fag - fah - fai - faj - fak - fal - fam - fan - fao - fap - far - fas - fat - fau - fax - fay - faz - fbl - fcs - fer - ffi - ffm - fgr - fia - fie - fif - fij - fil - fin - fip - fir - fit - fiw - fkk - fkv - fla - flh - fli - fll - fln - flr - fly - fmp - fmu - fnb - fng - fni - fod - foi - fom - fon - for - fos - fpe - fqs - fra - frc - frd - frk - frm - fro - frp - frq - frr - frs - frt - fry - fse - fsl - fss - fub - fuc - fud - fue - fuf - fuh - fui - fuj - ful - fum - fun - fuq - fur - fut - fuu - fuv - fuy - fvr - fwa - fwe - gaa - gab - gac - gad - gae - gaf - gag - gah - gai - gaj - gak - gal - gam - gan - gao - gap - gaq - gar - gas - gat - gau - gaw - gax - gay - gaz - gba - gbb - gbd - gbe - gbf - gbg - gbh - gbi - gbj - gbk - gbl - gbm - gbn - gbo - gbp - gbq - gbr - gbs - gbu - gbv - gbw - gbx - gby - gbz - gcc - gcd - gce - gcf - gcl - gcn - gcr - gct - gda - gdb - gdc - gdd - gde - gdf - gdg - gdh - gdi - gdj - gdk - gdl - gdm - gdn - gdo - gdq - gdr - gds - gdt - gdu - gdx - gea - geb - gec - ged - gef - geg - geh - gei - gej - gek - gel - geq - ges - gev - gew - gex - gey - gez - gfk - gft - gga - ggb - ggd - gge - ggg - ggk - ggl - ggt - ggu - ggw - gha - ghc - ghe - ghh - ghk - ghl - ghn - gho - ghr - ghs - ght - gia - gib - gic - gid - gie - gig - gih - gii - gil - gim - gin - gip - giq - gir - gis - git - giu - giw - gix - giy - giz - gjk - gjm - gjn - gjr - gju - gka - gkd - gke - gkn - gko - gkp - gku - gla - glb - glc - gld - gle - glg - glh - glj - glk - gll - glo - glr - glu - glv - glw - gly - gma - gmb - gmd - gmg - gmh - gml - gmm - gmn - gmr - gmu - gmv - gmx - gmy - gmz - gna - gnb - gnc - gnd - gne - gng - gnh - gni - gnj - gnk - gnl - gnm - gnn - gno - gnq - gnr - gnt - gnu - gnw - gnz - goa - gob - goc - god - goe - gof - gog - goh - goi - goj - gok - gol - gom - gon - goo - gop - goq - gor - gos - got - gou - gov - gow - gox - goy - goz - gpa - gpe - gpn - gqa - gqi - gqn - gqr - gqu - gra - grb - grc - grd - grg - grh - gri - grj - grm - grn - gro - grq - grr - grs - grt - gru - grv - grw - grx - gry - grz - gse - gsg - gsl - gsm - gsn - gso - gsp - gss - gsw - gta - gtu - gua - gub - guc - gud - gue - guf - gug - guh - gui - guj - guk - gul - gum - gun - guo - gup - guq - gur - gus - gut - guu - guw - gux - guz - gva - gvc - gve - gvf - gvj - gvl - gvm - gvn - gvo - gvp - gvr - gvs - gvy - gwa - gwb - gwc - gwd - gwe - gwf - gwg - gwi - gwj - gwm - gwn - gwr - gwt - gwu - gww - gwx - gxx - gya - gyb - gyd - gye - gyf - gyg - gyi - gyl - gym - gyn - gyo - gyr - gyy - gyz - gza - gzi - gzn - haa - hab - hac - had - hae - haf - hag - hah - hai - haj - hak - hal - ham - han - hao - hap - haq - har - has - hat - hau - hav - haw - hax - hay - haz - hba - hbb - hbn - hbo - hbs - hbu - hca - hch - hdn - hds - hdy - hea - heb - hed - heg - heh - hei - hem - her - hgm - hgw - hhi - hhr - hhy - hia - hib - hid - hif - hig - hih - hii - hij - hik - hil - hin - hio - hir - hit - hiw - hix - hji - hka - hke - hkh - hkk - hkn - hks - hla - hlb - hld - hle - hlt - hlu - hma - hmb - hmc - hmd - hme - hmf - hmg - hmh - hmi - hmj - hmk - hml - hmm - hmn - hmo - hmp - hmq - hmr - hms - hmt - hmu - hmv - hmw - hmy - hmz - hna - hnd - hne - hng - hnh - hni - hnj - hnn - hno - hns - hnu - hoa - hob - hoc - hod - hoe - hoh - hoi - hoj - hol - hom - hoo - hop - hor - hos - hot - hov - how - hoy - hoz - hpo - hps - hra - hrc - hre - hrk - hrm - hro - hrp - hrt - hru - hrv - hrw - hrx - hrz - hsb - hsh - hsl - hsn - hss - hti - hto - hts - htu - htx - hub - huc - hud - hue - huf - hug - huh - hui - huj - huk - hul - hum - hun - huo - hup - huq - hur - hus - hut - huu - huv - huw - hux - huy - huz - hvc - hve - hvk - hvn - hvv - hwa - hwc - hwo - hya - hye - hyw - iai - ian - iar - iba - ibb - ibd - ibe - ibg - ibh - ibl - ibm - ibn - ibo - ibr - ibu - iby - ica - ich - icl - icr - ida - idb - idc - idd - ide - idi - ido - idr - ids - idt - idu - ifa - ifb - ife - iff - ifk - ifm - ifu - ify - igb - ige - igg - igl - igm - ign - igo - igs - igw - ihb - ihi - ihp - ihw - iii - iin - ijc - ije - ijj - ijn - ijs - ike - iki - ikk - ikl - iko - ikp - ikr - iks - ikt - iku - ikv - ikw - ikx - ikz - ila - ilb - ile - ilg - ili - ilk - ilm - ilo - ilp - ils - ilu - ilv - ima - imi - iml - imn - imo - imr - ims - imt - imy - ina - inb - ind - ing - inh - inj - inl - inm - inn - ino - inp - ins - int - inz - ior - iou - iow - ipi - ipk - ipo - iqu - iqw - ire - irh - iri - irk - irn - irr - iru - irx - iry - isa - isc - isd - ise - isg - ish - isi - isk - isl - ism - isn - iso - isr - ist - isu - ita - itb - itd - ite - iti - itk - itl - itm - ito - itr - its - itt - itv - itw - itx - ity - itz - ium - ivb - ivv - iwk - iwm - iwo - iws - ixc - ixl - iya - iyo - iyx - izh - izr - izz - jaa - jab - jac - jad - jae - jaf - jah - jaj - jak - jal - jam - jan - jao - jaq - jas - jat - jau - jav - jax - jay - jaz - jbe - jbi - jbj - jbk - jbm - jbn - jbo - jbr - jbt - jbu - jbw - jcs - jct - jda - jdg - jdt - jeb - jee - jeh - jei - jek - jel - jen - jer - jet - jeu - jgb - jge - jgk - jgo - jhi - jhs - jia - jib - jic - jid - jie - jig - jih - jii - jil - jim - jio - jiq - jit - jiu - jiv - jiy - jje - jjr - jka - jkm - jko - jkp - jkr - jks - jku - jle - jls - jma - jmb - jmc - jmd - jmi - jml - jmn - jmr - jms - jmw - jmx - jna - jnd - jng - jni - jnj - jnl - jns - job - jod - jog - jor - jos - jow - jpa - jpn - jpr - jqr - jra - jrb - jrr - jrt - jru - jsl - jua - jub - juc - jud - juh - jui - juk - jul - jum - jun - juo - jup - jur - jus - jut - juu - juw - juy - jvd - jvn - jwi - jya - jye - jyy - kaa - kab - kac - kad - kae - kaf - kag - kah - kai - kaj - kak - kal - kam - kan - kao - kap - kaq - kas - kat - kau - kav - kaw - kax - kay - kaz - kba - kbb - kbc - kbd - kbe - kbg - kbh - kbi - kbj - kbk - kbl - kbm - kbn - kbo - kbp - kbq - kbr - kbs - kbt - kbu - kbv - kbw - kbx - kby - kbz - kca - kcb - kcc - kcd - kce - kcf - kcg - kch - kci - kcj - kck - kcl - kcm - kcn - kco - kcp - kcq - kcr - kcs - kct - kcu - kcv - kcw - kcx - kcy - kcz - kda - kdc - kdd - kde - kdf - kdg - kdh - kdi - kdj - kdk - kdl - kdm - kdn - kdp - kdq - kdr - kdt - kdu - kdw - kdx - kdy - kdz - kea - keb - kec - ked - kee - kef - keg - keh - kei - kej - kek - kel - kem - ken - keo - kep - keq - ker - kes - ket - keu - kev - kew - kex - key - kez - kfa - kfb - kfc - kfd - kfe - kff - kfg - kfh - kfi - kfj - kfk - kfl - kfm - kfn - kfo - kfp - kfq - kfr - kfs - kft - kfu - kfv - kfw - kfx - kfy - kfz - kga - kgb - kge - kgf - kgg - kgi - kgj - kgk - kgl - kgm - kgn - kgo - kgp - kgq - kgr - kgs - kgt - kgu - kgv - kgw - kgx - kgy - kha - khb - khc - khd - khe - khf - khg - khh - khj - khk - khl - khm - khn - kho - khp - khq - khr - khs - kht - khu - khv - khw - khx - khy - khz - kia - kib - kic - kid - kie - kif - kig - kih - kii - kij - kik - kil - kim - kin - kio - kip - kiq - kir - kis - kit - kiu - kiv - kiw - kix - kiy - kiz - kja - kjb - kjc - kjd - kje - kjg - kjh - kji - kjj - kjk - kjl - kjm - kjn - kjo - kjp - kjq - kjr - kjs - kjt - kju - kjv - kjx - kjy - kjz - kka - kkb - kkc - kkd - kke - kkf - kkg - kkh - kki - kkj - kkk - kkl - kkm - kkn - kko - kkp - kkq - kkr - kks - kkt - kku - kkv - kkw - kkx - kky - kkz - kla - klb - klc - kld - kle - klf - klg - klh - kli - klj - klk - kll - klm - kln - klo - klp - klq - klr - kls - klt - klu - klv - klw - klx - kly - klz - kma - kmb - kmc - kmd - kme - kmf - kmg - kmh - kmi - kmj - kmk - kml - kmm - kmn - kmo - kmp - kmq - kmr - kms - kmt - kmu - kmv - kmw - kmx - kmy - kmz - kna - knb - knc - knd - kne - knf - kng - kni - knj - knk - knl - knm - knn - kno - knp - knq - knr - kns - knt - knu - knv - knw - knx - kny - knz - koa - koc - kod - koe - kof - kog - koh - koi - kok - kol - kom - kon - koo - kop - koq - kor - kos - kot - kou - kov - kow - koy - koz - kpa - kpb - kpc - kpd - kpe - kpf - kpg - kph - kpi - kpj - kpk - kpl - kpm - kpn - kpo - kpq - kpr - kps - kpt - kpu - kpv - kpw - kpx - kpy - kpz - kqa - kqb - kqc - kqd - kqe - kqf - kqg - kqh - kqi - kqj - kqk - kql - kqm - kqn - kqo - kqp - kqq - kqr - kqs - kqt - kqu - kqv - kqw - kqx - kqy - kqz - kra - krb - krc - krd - kre - krf - krh - kri - krj - krk - krl - krn - krp - krr - krs - krt - kru - krv - krw - krx - kry - krz - ksa - ksb - ksc - ksd - kse - ksf - ksg - ksh - ksi - ksj - ksk - ksl - ksm - ksn - kso - ksp - ksq - ksr - kss - kst - ksu - ksv - ksw - ksx - ksy - ksz - kta - ktb - ktc - ktd - kte - ktf - ktg - kth - kti - ktj - ktk - ktl - ktm - ktn - kto - ktp - ktq - kts - ktt - ktu - ktv - ktw - ktx - kty - ktz - kua - kub - kuc - kud - kue - kuf - kug - kuh - kui - kuj - kuk - kul - kum - kun - kuo - kup - kuq - kur - kus - kut - kuu - kuv - kuw - kux - kuy - kuz - kva - kvb - kvc - kvd - kve - kvf - kvg - kvh - kvi - kvj - kvk - kvl - kvm - kvn - kvo - kvp - kvq - kvr - kvt - kvu - kvv - kvw - kvx - kvy - kvz - kwa - kwb - kwc - kwd - kwe - kwf - kwg - kwh - kwi - kwj - kwk - kwl - kwm - kwn - kwo - kwp - kwr - kws - kwt - kwu - kwv - kww - kwx - kwy - kwz - kxa - kxb - kxc - kxd - kxf - kxh - kxi - kxj - kxk - kxm - kxn - kxo - kxp - kxq - kxr - kxs - kxt - kxv - kxw - kxx - kxy - kxz - kya - kyb - kyc - kyd - kye - kyf - kyg - kyh - kyi - kyj - kyk - kyl - kym - kyn - kyo - kyp - kyq - kyr - kys - kyt - kyu - kyv - kyw - kyx - kyy - kyz - kza - kzb - kzc - kzd - kze - kzf - kzg - kzi - kzk - kzl - kzm - kzn - kzo - kzp - kzq - kzr - kzs - kzu - kzv - kzw - kzx - kzy - kzz - laa - lab - lac - lad - lae - laf - lag - lah - lai - laj - lal - lam - lan - lao - lap - laq - lar - las - lat - lau - lav - law - lax - lay - laz - lbb - lbc - lbe - lbf - lbg - lbi - lbj - lbk - lbl - lbm - lbn - lbo - lbq - lbr - lbs - lbt - lbu - lbv - lbw - lbx - lby - lbz - lcc - lcd - lce - lcf - lch - lcl - lcm - lcp - lcq - lcs - lda - ldb - ldd - ldg - ldh - ldi - ldj - ldk - ldl - ldm - ldn - ldo - ldp - ldq - lea - leb - lec - led - lee - lef - leh - lei - lej - lek - lel - lem - len - leo - lep - leq - ler - les - let - leu - lev - lew - lex - ley - lez - lfa - lfn - lga - lgb - lgg - lgh - lgi - lgk - lgl - lgm - lgn - lgo - lgq - lgr - lgt - lgu - lgz - lha - lhh - lhi - lhl - lhm - lhn - lhp - lhs - lht - lhu - lia - lib - lic - lid - lie - lif - lig - lih - lij - lik - lil - lim - lin - lio - lip - liq - lir - lis - lit - liu - liv - liw - lix - liy - liz - lja - lje - lji - ljl - ljp - ljw - ljx - lka - lkb - lkc - lkd - lke - lkh - lki - lkj - lkl - lkm - lkn - lko - lkr - lks - lkt - lku - lky - lla - llb - llc - lld - lle - llf - llg - llh - lli - llj - llk - lll - llm - lln - llp - llq - lls - llu - llx - lma - lmb - lmc - lmd - lme - lmf - lmg - lmh - lmi - lmj - lmk - lml - lmn - lmo - lmp - lmq - lmr - lmu - lmv - lmw - lmx - lmy - lna - lnb - lnd - lng - lnh - lni - lnj - lnl - lnm - lnn - lns - lnu - lnw - lnz - loa - lob - loc - loe - lof - log - loh - loi - loj - lok - lol - lom - lon - loo - lop - loq - lor - los - lot - lou - lov - low - lox - loy - loz - lpa - lpe - lpn - lpo - lpx - lqr - lra - lrc - lre - lrg - lri - lrk - lrl - lrm - lrn - lro - lrr - lrt - lrv - lrz - lsa - lsb - lsc - lsd - lse - lsh - lsi - lsl - lsm - lsn - lso - lsp - lsr - lss - lst - lsv - lsw - lsy - ltc - ltg - lth - lti - ltn - lto - lts - ltu - ltz - lua - lub - luc - lud - lue - luf - lug - lui - luj - luk - lul - lum - lun - luo - lup - luq - lur - lus - lut - luu - luv - luw - luy - luz - lva - lvi - lvk - lvs - lvu - lwa - lwe - lwg - lwh - lwl - lwm - lwo - lws - lwt - lwu - lww - lxm - lya - lyg - lyn - lzh - lzl - lzn - lzz - maa - mab - mad - mae - maf - mag - mah - mai - maj - mak - mal - mam - man - maq - mar - mas - mat - mau - mav - maw - max - maz - mba - mbb - mbc - mbd - mbe - mbf - mbh - mbi - mbj - mbk - mbl - mbm - mbn - mbo - mbp - mbq - mbr - mbs - mbt - mbu - mbv - mbw - mbx - mby - mbz - mca - mcb - mcc - mcd - mce - mcf - mcg - mch - mci - mcj - mck - mcl - mcm - mcn - mco - mcp - mcq - mcr - mcs - mct - mcu - mcv - mcw - mcx - mcy - mcz - mda - mdb - mdc - mdd - mde - mdf - mdg - mdh - mdi - mdj - mdk - mdl - mdm - mdn - mdp - mdq - mdr - mds - mdt - mdu - mdv - mdw - mdx - mdy - mdz - mea - meb - mec - med - mee - mef - meh - mei - mej - mek - mel - mem - men - meo - mep - meq - mer - mes - met - meu - mev - mew - mey - mez - mfa - mfb - mfc - mfd - mfe - mff - mfg - mfh - mfi - mfj - mfk - mfl - mfm - mfn - mfo - mfp - mfq - mfr - mfs - mft - mfu - mfv - mfw - mfx - mfy - mfz - mga - mgb - mgc - mgd - mge - mgf - mgg - mgh - mgi - mgj - mgk - mgl - mgm - mgn - mgo - mgp - mgq - mgr - mgs - mgt - mgu - mgv - mgw - mgy - mgz - mha - mhb - mhc - mhd - mhe - mhf - mhg - mhi - mhj - mhk - mhl - mhm - mhn - mho - mhp - mhq - mhr - mhs - mht - mhu - mhw - mhx - mhy - mhz - mia - mib - mic - mid - mie - mif - mig - mih - mii - mij - mik - mil - mim - min - mio - mip - miq - mir - mis - mit - miu - miw - mix - miy - miz - mjb - mjc - mjd - mje - mjg - mjh - mji - mjj - mjk - mjl - mjm - mjn - mjo - mjp - mjq - mjr - mjs - mjt - mju - mjv - mjw - mjx - mjy - mjz - mka - mkb - mkc - mkd - mke - mkf - mkg - mki - mkj - mkk - mkl - mkm - mkn - mko - mkp - mkq - mkr - mks - mkt - mku - mkv - mkw - mkx - mky - mkz - mla - mlb - mlc - mle - mlf - mlg - mlh - mli - mlj - mlk - mll - mlm - mln - mlo - mlp - mlq - mlr - mls - mlt - mlu - mlv - mlw - mlx - mlz - mma - mmb - mmc - mmd - mme - mmf - mmg - mmh - mmi - mmj - mmk - mml - mmm - mmn - mmo - mmp - mmq - mmr - mmt - mmu - mmv - mmw - mmx - mmy - mmz - mna - mnb - mnc - mnd - mne - mnf - mng - mnh - mni - mnj - mnk - mnl - mnm - mnn - mnp - mnq - mnr - mns - mnu - mnv - mnw - mnx - mny - mnz - moa - moc - mod - moe - mog - moh - moi - moj - mok - mom - mon - moo - mop - moq - mor - mos - mot - mou - mov - mow - mox - moy - moz - mpa - mpb - mpc - mpd - mpe - mpg - mph - mpi - mpj - mpk - mpl - mpm - mpn - mpo - mpp - mpq - mpr - mps - mpt - mpu - mpv - mpw - mpx - mpy - mpz - mqa - mqb - mqc - mqe - mqf - mqg - mqh - mqi - mqj - mqk - mql - mqm - mqn - mqo - mqp - mqq - mqr - mqs - mqt - mqu - mqv - mqw - mqx - mqy - mqz - mra - mrb - mrc - mrd - mre - mrf - mrg - mrh - mri - mrj - mrk - mrl - mrm - mrn - mro - mrp - mrq - mrr - mrs - mrt - mru - mrv - mrw - mrx - mry - mrz - msa - msb - msc - msd - mse - msf - msg - msh - msi - msj - msk - msl - msm - msn - mso - msp - msq - msr - mss - msu - msv - msw - msx - msy - msz - mta - mtb - mtc - mtd - mte - mtf - mtg - mth - mti - mtj - mtk - mtl - mtm - mtn - mto - mtp - mtq - mtr - mts - mtt - mtu - mtv - mtw - mtx - mty - mua - mub - muc - mud - mue - mug - muh - mui - muj - muk - mul - mum - muo - mup - muq - mur - mus - mut - muu - muv - mux - muy - muz - mva - mvb - mvd - mve - mvf - mvg - mvh - mvi - mvk - mvl - mvn - mvo - mvp - mvq - mvr - mvs - mvt - mvu - mvv - mvw - mvx - mvy - mvz - mwa - mwb - mwc - mwe - mwf - mwg - mwh - mwi - mwk - mwl - mwm - mwn - mwo - mwp - mwq - mwr - mws - mwt - mwu - mwv - mww - mwz - mxa - mxb - mxc - mxd - mxe - mxf - mxg - mxh - mxi - mxj - mxk - mxl - mxm - mxn - mxo - mxp - mxq - mxr - mxs - mxt - mxu - mxv - mxw - mxx - mxy - mxz - mya - myb - myc - mye - myf - myg - myh - myj - myk - myl - mym - myo - myp - myr - mys - myu - myv - myw - myx - myy - myz - mza - mzb - mzc - mzd - mze - mzg - mzh - mzi - mzj - mzk - mzl - mzm - mzn - mzo - mzp - mzq - mzr - mzs - mzt - mzu - mzv - mzw - mzx - mzy - mzz - naa - nab - nac - nae - naf - nag - naj - nak - nal - nam - nan - nao - nap - naq - nar - nas - nat - nau - nav - naw - nax - nay - naz - nba - nbb - nbc - nbd - nbe - nbg - nbh - nbi - nbj - nbk - nbl - nbm - nbn - nbo - nbp - nbq - nbr - nbs - nbt - nbu - nbv - nbw - nby - nca - ncb - ncc - ncd - nce - ncf - ncg - nch - nci - ncj - nck - ncl - ncm - ncn - nco - ncq - ncr - ncs - nct - ncu - ncx - ncz - nda - ndb - ndc - ndd - nde - ndf - ndg - ndh - ndi - ndj - ndk - ndl - ndm - ndn - ndo - ndp - ndq - ndr - nds - ndt - ndu - ndv - ndw - ndx - ndy - ndz - nea - neb - nec - ned - nee - nef - neg - neh - nei - nej - nek - nem - nen - neo - nep - neq - ner - nes - net - neu - nev - new - nex - ney - nez - nfa - nfd - nfl - nfr - nfu - nga - ngb - ngc - ngd - nge - ngg - ngh - ngi - ngj - ngk - ngl - ngm - ngn - ngp - ngq - ngr - ngs - ngt - ngu - ngv - ngw - ngx - ngy - ngz - nha - nhb - nhc - nhd - nhe - nhf - nhg - nhh - nhi - nhk - nhm - nhn - nho - nhp - nhq - nhr - nht - nhu - nhv - nhw - nhx - nhy - nhz - nia - nib - nid - nie - nif - nig - nih - nii - nij - nik - nil - nim - nin - nio - niq - nir - nis - nit - niu - niv - niw - nix - niy - niz - nja - njb - njd - njh - nji - njj - njl - njm - njn - njo - njr - njs - njt - nju - njx - njy - njz - nka - nkb - nkc - nkd - nke - nkf - nkg - nkh - nki - nkj - nkk - nkm - nkn - nko - nkp - nkq - nkr - nks - nkt - nku - nkv - nkw - nkx - nkz - nla - nlc - nld - nle - nlg - nli - nlj - nlk - nll - nlm - nlo - nlq - nlu - nlv - nlw - nlx - nly - nlz - nma - nmb - nmc - nmd - nme - nmf - nmg - nmh - nmi - nmj - nmk - nml - nmm - nmn - nmo - nmp - nmq - nmr - nms - nmt - nmu - nmv - nmw - nmx - nmy - nmz - nna - nnb - nnc - nnd - nne - nnf - nng - nnh - nni - nnj - nnk - nnl - nnm - nnn - nno - nnp - nnq - nnr - nnt - nnu - nnv - nnw - nny - nnz - noa - nob - noc - nod - noe - nof - nog - noh - noi - noj - nok - nol - nom - non - nop - noq - nor - nos - not - nou - nov - now - noy - noz - npa - npb - npg - nph - npi - npl - npn - npo - nps - npu - npx - npy - nqg - nqk - nql - nqm - nqn - nqo - nqq - nqt - nqy - nra - nrb - nrc - nre - nrf - nrg - nri - nrk - nrl - nrm - nrn - nrp - nrr - nrt - nru - nrx - nrz - nsa - nsb - nsc - nsd - nse - nsf - nsg - nsh - nsi - nsk - nsl - nsm - nsn - nso - nsp - nsq - nsr - nss - nst - nsu - nsv - nsw - nsx - nsy - nsz - ntd - nte - ntg - nti - ntj - ntk - ntm - nto - ntp - ntr - ntu - ntw - ntx - nty - ntz - nua - nuc - nud - nue - nuf - nug - nuh - nui - nuj - nuk - nul - num - nun - nuo - nup - nuq - nur - nus - nut - nuu - nuv - nuw - nux - nuy - nuz - nvh - nvm - nvo - nwa - nwb - nwc - nwe - nwg - nwi - nwm - nwo - nwr - nww - nwx - nwy - nxa - nxd - nxe - nxg - nxi - nxk - nxl - nxm - nxn - nxo - nxq - nxr - nxx - nya - nyb - nyc - nyd - nye - nyf - nyg - nyh - nyi - nyj - nyk - nyl - nym - nyn - nyo - nyp - nyq - nyr - nys - nyt - nyu - nyv - nyw - nyx - nyy - nza - nzb - nzd - nzi - nzk - nzm - nzs - nzu - nzy - nzz - oaa - oac - oar - oav - obi - obk - obl - obm - obo - obr - obt - obu - oca - och - oci - ocm - oco - ocu - oda - odk - odt - odu - ofo - ofs - ofu - ogb - ogc - oge - ogg - ogo - ogu - oht - ohu - oia - oie - oin - ojb - ojc - ojg - oji - ojp - ojs - ojv - ojw - oka - okb - okc - okd - oke - okg - okh - oki - okj - okk - okl - okm - okn - oko - okr - oks - oku - okv - okx - okz - ola - old - ole - olk - olm - olo - olr - olt - olu - oma - omb - omc - omg - omi - omk - oml - omn - omo - omp - omr - omt - omu - omw - omx - omy - ona - onb - one - ong - oni - onj - onk - onn - ono - onp - onr - ons - ont - onu - onw - onx - ood - oog - oon - oor - oos - opa - opk - opm - opo - opt - opy - ora - orc - ore - org - orh - ori - orm - orn - oro - orr - ors - ort - oru - orv - orw - orx - ory - orz - osa - osc - osi - osn - oso - osp - oss - ost - osu - osx - ota - otb - otd - ote - oti - otk - otl - otm - otn - otq - otr - ots - ott - otu - otw - otx - oty - otz - oua - oub - oue - oui - oum - ovd - owi - owl - oyb - oyd - oym - oyy - ozm - pab - pac - pad - pae - paf - pag - pah - pai - pak - pal - pam - pan - pao - pap - paq - par - pas - pau - pav - paw - pax - pay - paz - pbb - pbc - pbe - pbf - pbg - pbh - pbi - pbl - pbm - pbn - pbo - pbp - pbr - pbs - pbt - pbu - pbv - pby - pca - pcb - pcc - pcd - pce - pcf - pcg - pch - pci - pcj - pck - pcl - pcm - pcn - pcp - pcw - pda - pdc - pdi - pdn - pdo - pdt - pdu - pea - peb - ped - pee - pef - peg - peh - pei - pej - pek - pel - pem - peo - pep - peq - pes - pev - pex - pey - pez - pfa - pfe - pfl - pga - pgd - pgg - pgi - pgk - pgl - pgn - pgs - pgu - pgz - pha - phd - phg - phh - phj - phk - phl - phm - phn - pho - phq - phr - pht - phu - phv - phw - pia - pib - pic - pid - pie - pif - pig - pih - pij - pil - pim - pin - pio - pip - pir - pis - pit - piu - piv - piw - pix - piy - piz - pjt - pka - pkb - pkc - pkg - pkh - pkn - pko - pkp - pkr - pks - pkt - pku - pla - plb - plc - pld - ple - plg - plh - pli - plj - plk - pll - pln - plo - plq - plr - pls - plt - plu - plv - plw - ply - plz - pma - pmb - pmd - pme - pmf - pmh - pmi - pmj - pmk - pml - pmm - pmn - pmo - pmq - pmr - pms - pmt - pmw - pmx - pmy - pmz - pna - pnb - pnc - pnd - pne - png - pnh - pni - pnj - pnk - pnl - pnm - pnn - pno - pnp - pnq - pnr - pns - pnt - pnu - pnv - pnw - pnx - pny - pnz - poc - poe - pof - pog - poh - poi - pok - pol - pom - pon - poo - pop - poq - por - pos - pot - pov - pow - pox - poy - ppe - ppi - ppk - ppl - ppm - ppn - ppo - ppp - ppq - pps - ppt - ppu - pqa - pqm - prc - prd - pre - prf - prg - prh - pri - prk - prl - prm - prn - pro - prp - prq - prr - prs - prt - pru - prw - prx - prz - psa - psc - psd - pse - psg - psh - psi - psl - psm - psn - pso - psp - psq - psr - pss - pst - psu - psw - psy - pta - pth - pti - ptn - pto - ptp - ptq - ptr - ptt - ptu - ptv - ptw - pty - pua - pub - puc - pud - pue - puf - pug - pui - puj - pum - puo - pup - puq - pur - pus - put - puu - puw - pux - puy - pwa - pwb - pwg - pwi - pwm - pwn - pwo - pwr - pww - pxm - pye - pym - pyn - pys - pyu - pyx - pyy - pzh - pzn - qua - qub - quc - qud - que - quf - qug - quh - qui - quk - qul - qum - qun - qup - quq - qur - qus - quv - quw - qux - quy - quz - qva - qvc - qve - qvh - qvi - qvj - qvl - qvm - qvn - qvo - qvp - qvs - qvw - qvy - qvz - qwa - qwc - qwh - qwm - qws - qwt - qxa - qxc - qxh - qxl - qxn - qxo - qxp - qxq - qxr - qxs - qxt - qxu - qxw - qya - qyp - raa - rab - rac - rad - raf - rag - rah - rai - raj - rak - ral - ram - ran - rao - rap - raq - rar - ras - rat - rau - rav - raw - rax - ray - raz - rbb - rbk - rbl - rbp - rcf - rdb - rea - reb - ree - reg - rei - rej - rel - rem - ren - rer - res - ret - rey - rga - rge - rgk - rgn - rgr - rgs - rgu - rhg - rhp - ria - rib - rif - ril - rim - rin - rir - rit - riu - rjg - rji - rjs - rka - rkb - rkh - rki - rkm - rkt - rkw - rma - rmb - rmc - rmd - rme - rmf - rmg - rmh - rmi - rmk - rml - rmm - rmn - rmo - rmp - rmq - rms - rmt - rmu - rmv - rmw - rmx - rmy - rmz - rnb - rnd - rng - rnl - rnn - rnp - rnr - rnw - rob - roc - rod - roe - rof - rog - roh - rol - rom - ron - roo - rop - ror - rou - row - rpn - rpt - rri - rro - rrt - rsb - rsk - rsl - rsm - rsn - rtc - rth - rtm - rts - rtw - rub - ruc - rue - ruf - rug - ruh - rui - ruk - run - ruo - rup - ruq - rus - rut - ruu - ruy - ruz - rwa - rwk - rwl - rwm - rwo - rwr - rxd - rxw - ryn - rys - ryu - rzh - saa - sab - sac - sad - sae - saf - sag - sah - saj - sak - sam - san - sao - saq - sar - sas - sat - sau - sav - saw - sax - say - saz - sba - sbb - sbc - sbd - sbe - sbf - sbg - sbh - sbi - sbj - sbk - sbl - sbm - sbn - sbo - sbp - sbq - sbr - sbs - sbt - sbu - sbv - sbw - sbx - sby - sbz - scb - sce - scf - scg - sch - sci - sck - scl - scn - sco - scp - scq - scs - sct - scu - scv - scw - scx - sda - sdb - sdc - sde - sdf - sdg - sdh - sdj - sdk - sdl - sdn - sdo - sdp - sdq - sdr - sds - sdt - sdu - sdx - sdz - sea - seb - sec - sed - see - sef - seg - seh - sei - sej - sek - sel - sen - seo - sep - seq - ser - ses - set - seu - sev - sew - sey - sez - sfb - sfe - sfm - sfs - sfw - sga - sgb - sgc - sgd - sge - sgg - sgh - sgi - sgj - sgk - sgm - sgp - sgr - sgs - sgt - sgu - sgw - sgx - sgy - sgz - sha - shb - shc - shd - she - shg - shh - shi - shj - shk - shl - shm - shn - sho - shp - shq - shr - shs - sht - shu - shv - shw - shx - shy - shz - sia - sib - sid - sie - sif - sig - sih - sii - sij - sik - sil - sim - sin - sip - siq - sir - sis - siu - siv - siw - six - siy - siz - sja - sjb - sjd - sje - sjg - sjk - sjl - sjm - sjn - sjo - sjp - sjr - sjs - sjt - sju - sjw - ska - skb - skc - skd - ske - skf - skg - skh - ski - skj - skm - skn - sko - skp - skq - skr - sks - skt - sku - skv - skw - skx - sky - skz - slc - sld - sle - slf - slg - slh - sli - slj - slk - sll - slm - sln - slp - slq - slr - sls - slt - slu - slv - slw - slx - sly - slz - sma - smb - smc - sme - smf - smg - smh - smj - smk - sml - smm - smn - smo - smp - smq - smr - sms - smt - smu - smv - smw - smx - smy - smz - sna - snc - snd - sne - snf - sng - sni - snj - snk - snl - snm - snn - sno - snp - snq - snr - sns - snu - snv - snw - snx - sny - snz - soa - sob - soc - sod - soe - sog - soh - soi - soj - sok - sol - som - soo - sop - soq - sor - sos - sot - sou - sov - sow - sox - soy - soz - spa - spb - spc - spd - spe - spg - spi - spk - spl - spm - spn - spo - spp - spq - spr - sps - spt - spu - spv - spx - spy - sqa - sqh - sqi - sqk - sqm - sqn - sqo - sqq - sqr - sqs - sqt - squ - sqx - sra - srb - src - srd - sre - srf - srg - srh - sri - srk - srl - srm - srn - sro - srp - srq - srr - srs - srt - sru - srv - srw - srx - sry - srz - ssb - ssc - ssd - sse - ssf - ssg - ssh - ssi - ssj - ssk - ssl - ssm - ssn - sso - ssp - ssq - ssr - sss - sst - ssu - ssv - ssw - ssx - ssy - ssz - sta - stb - std - ste - stf - stg - sth - sti - stj - stk - stl - stm - stn - sto - stp - stq - str - sts - stt - stu - stv - stw - sty - sua - sub - suc - sue - sug - sui - suj - suk - sun - suo - suq - sur - sus - sut - suv - suw - sux - suy - suz - sva - svb - svc - sve - svk - svm - svs - svx - swa - swb - swc - swe - swf - swg - swh - swi - swj - swk - swl - swm - swn - swo - swp - swq - swr - sws - swt - swu - swv - sww - swx - swy - sxb - sxc - sxe - sxg - sxk - sxl - sxm - sxn - sxo - sxr - sxs - sxu - sxw - sya - syb - syc - syi - syk - syl - sym - syn - syo - syr - sys - syw - syx - syy - sza - szb - szc - szd - sze - szg - szl - szn - szp - szs - szv - szw - szy - taa - tab - tac - tad - tae - taf - tag - tah - taj - tak - tal - tam - tan - tao - tap - taq - tar - tas - tat - tau - tav - taw - tax - tay - taz - tba - tbc - tbd - tbe - tbf - tbg - tbh - tbi - tbj - tbk - tbl - tbm - tbn - tbo - tbp - tbr - tbs - tbt - tbu - tbv - tbw - tbx - tby - tbz - tca - tcb - tcc - tcd - tce - tcf - tcg - tch - tci - tck - tcl - tcm - tcn - tco - tcp - tcq - tcs - tct - tcu - tcw - tcx - tcy - tcz - tda - tdb - tdc - tdd - tde - tdf - tdg - tdh - tdi - tdj - tdk - tdl - tdm - tdn - tdo - tdq - tdr - tds - tdt - tdv - tdx - tdy - tea - teb - tec - ted - tee - tef - teg - teh - tei - tek - tel - tem - ten - teo - tep - teq - ter - tes - tet - teu - tev - tew - tex - tey - tez - tfi - tfn - tfo - tfr - tft - tga - tgb - tgc - tgd - tge - tgf - tgh - tgi - tgj - tgk - tgl - tgn - tgo - tgp - tgq - tgr - tgs - tgt - tgu - tgv - tgw - tgx - tgy - tgz - tha - thd - the - thf - thh - thi - thk - thl - thm - thn - thp - thq - thr - ths - tht - thu - thv - thy - thz - tia - tic - tif - tig - tih - tii - tij - tik - til - tim - tin - tio - tip - tiq - tir - tis - tit - tiu - tiv - tiw - tix - tiy - tiz - tja - tjg - tji - tjj - tjl - tjm - tjn - tjo - tjp - tjs - tju - tjw - tka - tkb - tkd - tke - tkf - tkg - tkl - tkm - tkn - tkp - tkq - tkr - tks - tkt - tku - tkv - tkw - tkx - tkz - tla - tlb - tlc - tld - tlf - tlg - tlh - tli - tlj - tlk - tll - tlm - tln - tlo - tlp - tlq - tlr - tls - tlt - tlu - tlv - tlx - tly - tma - tmb - tmc - tmd - tme - tmf - tmg - tmh - tmi - tmj - tmk - tml - tmm - tmn - tmo - tmq - tmr - tms - tmt - tmu - tmv - tmw - tmy - tmz - tna - tnb - tnc - tnd - tng - tnh - tni - tnk - tnl - tnm - tnn - tno - tnp - tnq - tnr - tns - tnt - tnu - tnv - tnw - tnx - tny - tnz - tob - toc - tod - tof - tog - toh - toi - toj - tok - tol - tom - ton - too - top - toq - tor - tos - tou - tov - tow - tox - toy - toz - tpa - tpc - tpe - tpf - tpg - tpi - tpj - tpk - tpl - tpm - tpn - tpo - tpp - tpq - tpr - tpt - tpu - tpv - tpw - tpx - tpy - tpz - tqb - tql - tqm - tqn - tqo - tqp - tqq - tqr - tqt - tqu - tqw - tra - trb - trc - trd - tre - trf - trg - trh - tri - trj - trl - trm - trn - tro - trp - trq - trr - trs - trt - tru - trv - trw - trx - try - trz - tsa - tsb - tsc - tsd - tse - tsg - tsh - tsi - tsj - tsk - tsl - tsm - tsn - tso - tsp - tsq - tsr - tss - tst - tsu - tsv - tsw - tsx - tsy - tsz - tta - ttb - ttc - ttd - tte - ttf - ttg - tth - tti - ttj - ttk - ttl - ttm - ttn - tto - ttp - ttq - ttr - tts - ttt - ttu - ttv - ttw - tty - ttz - tua - tub - tuc - tud - tue - tuf - tug - tuh - tui - tuj - tuk - tul - tum - tun - tuo - tuq - tur - tus - tuu - tuv - tux - tuy - tuz - tva - tvd - tve - tvk - tvl - tvm - tvn - tvo - tvs - tvt - tvu - tvw - tvx - tvy - twa - twb - twc - twd - twe - twf - twg - twh - twi - twl - twm - twn - two - twp - twq - twr - twt - twu - tww - twx - twy - txa - txb - txc - txe - txg - txh - txi - txj - txm - txn - txo - txq - txr - txs - txt - txu - txx - txy - tya - tye - tyh - tyi - tyj - tyl - tyn - typ - tyr - tys - tyt - tyu - tyv - tyx - tyy - tyz - tza - tzh - tzj - tzl - tzm - tzn - tzo - tzx - uam - uan - uar - uba - ubi - ubl - ubr - ubu - uby - uda - ude - udg - udi - udj - udl - udm - udu - ues - ufi - uga - ugb - uge - ugh - ugn - ugo - ugy - uha - uhn - uig - uis - uiv - uji - uka - ukg - ukh - uki - ukk - ukl - ukp - ukq - ukr - uks - uku - ukv - ukw - uky - ula - ulb - ulc - ule - ulf - uli - ulk - ull - ulm - uln - ulu - ulw - uma - umb - umc - umd - umg - umi - umm - umn - umo - ump - umr - ums - umu - una - und - une - ung - uni - unk - unm - unn - unr - unu - unx - unz - uon - upi - upv - ura - urb - urc - urd - ure - urf - urg - urh - uri - urk - url - urm - urn - uro - urp - urr - urt - uru - urv - urw - urx - ury - urz - usa - ush - usi - usk - usp - uss - usu - uta - ute - uth - utp - utr - utu - uum - uur - uuu - uve - uvh - uvl - uwa - uya - uzb - uzn - uzs - vaa - vae - vaf - vag - vah - vai - vaj - val - vam - van - vao - vap - var - vas - vau - vav - vay - vbb - vbk - vec - ved - vel - vem - ven - veo - vep - ver - vgr - vgt - vic - vid - vie - vif - vig - vil - vin - vis - vit - viv - vka - vkj - vkk - vkl - vkm - vkn - vko - vkp - vkt - vku - vkz - vlp - vls - vma - vmb - vmc - vmd - vme - vmf - vmg - vmh - vmi - vmj - vmk - vml - vmm - vmp - vmq - vmr - vms - vmu - vmv - vmw - vmx - vmy - vmz - vnk - vnm - vnp - vol - vor - vot - vra - vro - vrs - vrt - vsi - vsl - vsv - vto - vum - vun - vut - vwa - waa - wab - wac - wad - wae - waf - wag - wah - wai - waj - wal - wam - wan - wao - wap - waq - war - was - wat - wau - wav - waw - wax - way - waz - wba - wbb - wbe - wbf - wbh - wbi - wbj - wbk - wbl - wbm - wbp - wbq - wbr - wbs - wbt - wbv - wbw - wca - wci - wdd - wdg - wdj - wdk - wdt - wdu - wdy - wea - wec - wed - weg - weh - wei - wem - weo - wep - wer - wes - wet - weu - wew - wfg - wga - wgb - wgg - wgi - wgo - wgu - wgy - wha - whg - whk - whu - wib - wic - wie - wif - wig - wih - wii - wij - wik - wil - wim - win - wir - wiu - wiv - wiy - wja - wji - wka - wkb - wkd - wkl - wkr - wku - wkw - wky - wla - wlc - wle - wlg - wlh - wli - wlk - wll - wlm - wln - wlo - wlr - wls - wlu - wlv - wlw - wlx - wly - wma - wmb - wmc - wmd - wme - wmg - wmh - wmi - wmm - wmn - wmo - wms - wmt - wmw - wmx - wnb - wnc - wnd - wne - wng - wni - wnk - wnm - wnn - wno - wnp - wnu - wnw - wny - woa - wob - woc - wod - woe - wof - wog - woi - wok - wol - wom - won - woo - wor - wos - wow - woy - wpc - wrb - wrg - wrh - wri - wrk - wrl - wrm - wrn - wro - wrp - wrr - wrs - wru - wrv - wrw - wrx - wry - wrz - wsa - wsg - wsi - wsk - wsr - wss - wsu - wsv - wtf - wth - wti - wtk - wtm - wtw - wua - wub - wud - wuh - wul - wum - wun - wur - wut - wuu - wuv - wux - wuy - wwa - wwb - wwo - wwr - www - wxa - wxw - wyb - wyi - wym - wyn - wyr - wyy - xaa - xab - xac - xad - xae - xag - xai - xaj - xak - xal - xam - xan - xao - xap - xaq - xar - xas - xat - xau - xav - xaw - xay - xbb - xbc - xbd - xbe - xbg - xbi - xbj - xbm - xbn - xbo - xbp - xbr - xbw - xby - xcb - xcc - xce - xcg - xch - xcl - xcm - xcn - xco - xcr - xct - xcu - xcv - xcw - xcy - xda - xdc - xdk - xdm - xdo - xdq - xdy - xeb - xed - xeg - xel - xem - xep - xer - xes - xet - xeu - xfa - xga - xgb - xgd - xgf - xgg - xgi - xgl - xgm - xgr - xgu - xgw - xha - xhc - xhd - xhe - xhm - xho - xhr - xht - xhu - xhv - xib - xii - xil - xin - xir - xis - xiv - xiy - xjb - xjt - xka - xkb - xkc - xkd - xke - xkf - xkg - xki - xkj - xkk - xkl - xkn - xko - xkp - xkq - xkr - xks - xkt - xku - xkv - xkw - xkx - xky - xkz - xla - xlb - xlc - xld - xle - xlg - xli - xln - xlo - xlp - xls - xlu - xly - xma - xmb - xmc - xmd - xme - xmf - xmg - xmh - xmj - xmk - xml - xmm - xmn - xmo - xmp - xmq - xmr - xms - xmt - xmu - xmv - xmw - xmx - xmy - xmz - xna - xnb - xng - xnh - xni - xnj - xnk - xnm - xnn - xno - xnq - xnr - xns - xnt - xnu - xny - xnz - xoc - xod - xog - xoi - xok - xom - xon - xoo - xop - xor - xow - xpa - xpb - xpc - xpd - xpe - xpf - xpg - xph - xpi - xpj - xpk - xpl - xpm - xpn - xpo - xpp - xpq - xpr - xps - xpt - xpu - xpv - xpw - xpx - xpy - xpz - xqa - xqt - xra - xrb - xrd - xre - xrg - xri - xrm - xrn - xrr - xrt - xru - xrw - xsa - xsb - xsc - xsd - xse - xsh - xsi - xsj - xsl - xsm - xsn - xso - xsp - xsq - xsr - xss - xsu - xsv - xsy - xta - xtb - xtc - xtd - xte - xtg - xth - xti - xtj - xtl - xtm - xtn - xto - xtp - xtq - xtr - xts - xtt - xtu - xtv - xtw - xty - xua - xub - xud - xug - xuj - xul - xum - xun - xuo - xup - xur - xut - xuu - xve - xvi - xvn - xvo - xvs - xwa - xwc - xwd - xwe - xwg - xwj - xwk - xwl - xwo - xwr - xwt - xww - xxb - xxk - xxm - xxr - xxt - xya - xyb - xyj - xyk - xyl - xyt - xyy - xzh - xzm - xzp - yaa - yab - yac - yad - yae - yaf - yag - yah - yai - yaj - yak - yal - yam - yan - yao - yap - yaq - yar - yas - yat - yau - yav - yaw - yax - yay - yaz - yba - ybb - ybe - ybh - ybi - ybj - ybk - ybl - ybm - ybn - ybo - ybx - yby - ych - ycl - ycn - ycp - yda - ydd - yde - ydg - ydk - yea - yec - yee - yei - yej - yel - yer - 'yes' - yet - yeu - yev - yey - yga - ygi - ygl - ygm - ygp - ygr - ygs - ygu - ygw - yha - yhd - yhl - yhs - yia - yid - yif - yig - yih - yii - yij - yik - yil - yim - yin - yip - yiq - yir - yis - yit - yiu - yiv - yix - yiz - yka - ykg - yki - ykk - ykl - ykm - ykn - yko - ykr - ykt - yku - yky - yla - ylb - yle - ylg - yli - yll - ylm - yln - ylo - ylr - ylu - yly - ymb - ymc - ymd - yme - ymg - ymh - ymi - ymk - yml - ymm - ymn - ymo - ymp - ymq - ymr - yms - ymx - ymz - yna - ynd - yne - yng - ynk - ynl - ynn - yno - ynq - yns - ynu - yob - yog - yoi - yok - yol - yom - yon - yor - yot - yox - yoy - ypa - ypb - ypg - yph - ypm - ypn - ypo - ypp - ypz - yra - yrb - yre - yrk - yrl - yrm - yrn - yro - yrs - yrw - yry - ysc - ysd - ysg - ysl - ysm - ysn - yso - ysp - ysr - yss - ysy - yta - ytl - ytp - ytw - yty - yua - yub - yuc - yud - yue - yuf - yug - yui - yuj - yuk - yul - yum - yun - yup - yuq - yur - yut - yuw - yux - yuy - yuz - yva - yvt - ywa - ywg - ywl - ywn - ywq - ywr - ywt - ywu - yww - yxa - yxg - yxl - yxm - yxu - yxy - yyr - yyu - yyz - yzg - yzk - zaa - zab - zac - zad - zae - zaf - zag - zah - zai - zaj - zak - zal - zam - zao - zap - zaq - zar - zas - zat - zau - zav - zaw - zax - zay - zaz - zba - zbc - zbe - zbl - zbt - zbu - zbw - zca - zcd - zch - zdj - zea - zeg - zeh - zen - zga - zgb - zgh - zgm - zgn - zgr - zha - zhb - zhd - zhi - zhn - zho - zhw - zia - zib - zik - zil - zim - zin - ziw - ziz - zka - zkb - zkd - zkg - zkh - zkk - zkn - zko - zkp - zkr - zkt - zku - zkv - zkz - zla - zlj - zlm - zln - zlq - zma - zmb - zmc - zmd - zme - zmf - zmg - zmh - zmi - zmj - zmk - zml - zmm - zmn - zmo - zmp - zmq - zmr - zms - zmt - zmu - zmv - zmw - zmx - zmy - zmz - zna - zne - zng - znk - zns - zoc - zoh - zom - zoo - zoq - zor - zos - zpa - zpb - zpc - zpd - zpe - zpf - zpg - zph - zpi - zpj - zpk - zpl - zpm - zpn - zpo - zpp - zpq - zpr - zps - zpt - zpu - zpv - zpw - zpx - zpy - zpz - zqe - zra - zrg - zrn - zro - zrp - zrs - zsa - zsk - zsl - zsm - zsr - zsu - zte - ztg - ztl - ztm - ztn - ztp - ztq - zts - ztt - ztu - ztx - zty - zua - zuh - zul - zum - zun - zuy - zwa - zxx - zyb - zyg - zyj - zyn - zyp - zza - zzj maxLength: 3 minLength: 3 title: Default Spoken Language relationship_to_developer: $ref: '#/components/schemas/RelationshipToDeveloper-Input' type: object required: - name - role - developed_by - default_spoken_language - relationship_to_developer title: Identity ReflectionState-Output: properties: type: type: string const: reflection title: Type name: type: string title: Name description: The name of this state. problem: type: string title: Problem description: The problem to reflect upon. word_limit: type: integer title: Word Limit description: The word limit for the generated inner thought message. next_state: anyOf: - type: string - prefixItems: - type: string - type: string type: array maxItems: 2 minItems: 2 title: Next State description: 'The state to transition to after the inner thought message is generated. If it''s a string, the session will transition to a state within this contextual graph. If it''s a tuple, the first element must be of the form `{external_contextual_graph_reference_name}.{state_name}` and represents a state in another contextual graph that the session will transition to, and the second element must be a state in this contextual graph that the session will transition to after reaching the terminal state of the external graph.' tool_call_specs: items: $ref: '#/components/schemas/amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__ToolCallSpec' type: array title: Tool Call Specs description: A list of tool calls that the agent can make in this state. audio_fillers: items: type: string type: array title: Audio Fillers description: A list of audio fillers to play in audio mode if the reflection is taking too long to be generated. audio_filler_triggered_after: type: number title: Audio Filler Triggered After description: The number of seconds to wait before playing an audio filler. type: object required: - type - name - problem - word_limit - next_state - tool_call_specs - audio_fillers - audio_filler_triggered_after title: ReflectionState description: A passthrough state in which the agent reflects on the conversation so far and adds an inner thought message before continuing. src__app__endpoints__organization__delete_api_key__Response: properties: deleted_key_id: type: string title: Deleted Key Id description: ID of the successfully deleted API key. type: object required: - deleted_key_id title: Response Identity-Output: properties: name: type: string title: Name description: A human friendly name of the agent. role: type: string title: Role description: The agent's role within the organization. developed_by: type: string title: Developed By description: A human-friendly name of the organization that developed this agent. default_spoken_language: type: string title: Default Spoken Language description: The agent's primary language. This must be specified in the ISO 639-3 format. relationship_to_developer: $ref: '#/components/schemas/RelationshipToDeveloper-Output' description: Relationship of the agent to its developer. type: object required: - name - role - developed_by - default_spoken_language - relationship_to_developer title: Identity ActionState-Input: properties: type: type: string const: action title: Type name: $ref: '#/components/schemas/StateOrRefName' objective: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' actions: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array minItems: 1 title: Actions intra_state_navigation_guidelines: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Intra State Navigation Guidelines action_guidelines: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Action Guidelines boundary_constraints: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Boundary Constraints exit_conditions: items: $ref: '#/components/schemas/ExitCondition-Input' type: array title: Exit Conditions action_tool_call_specs: items: $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec' type: array title: Action Tool Call Specs exit_condition_tool_call_specs: items: $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec' type: array title: Exit Condition Tool Call Specs skip_active_memory_retrieval: type: boolean title: Skip Active Memory Retrieval description: If `True`, the agent will not perform active memory retrieval at the start of an interaction in this state. type: object required: - type - name - objective - actions - intra_state_navigation_guidelines - action_guidelines - boundary_constraints - exit_conditions - action_tool_call_specs - exit_condition_tool_call_specs - skip_active_memory_retrieval title: ActionState src__app__endpoints__organization__create_organization__Response: properties: org_id: type: string title: Org Id description: ID of the newly created organization. This is used to identify the organization that a resource belongs to in all Amigo endpoints. type: object required: - org_id title: Response src__app__endpoints__organization__create_agent_version__Request: properties: initials: anyOf: - $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__3' - type: 'null' description: The agent's initials. identity: anyOf: - $ref: '#/components/schemas/Identity-Input' - type: 'null' description: Information about the agent's identity. background: anyOf: - $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' - type: 'null' description: A description of the agent's background. behaviors: anyOf: - items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array - type: 'null' title: Behaviors description: A list of behavioral guidelines that this agent follows. communication_patterns: anyOf: - items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array - type: 'null' title: Communication Patterns description: A list of descriptions that illustrate the communication styles of this agent. voice_config: anyOf: - $ref: '#/components/schemas/VoiceConfig' - type: 'null' description: The Cartesia voice config for the agent. If set to null, it is not updated. type: object title: Request StateMachineInstance: properties: id: type: string title: Id description: The ID of the state machine. name: type: string title: Name description: The name of the state machine. deprecated: type: boolean title: Deprecated description: Whether the state machine has been deprecated. latest_version: anyOf: - type: integer - type: 'null' title: Latest Version description: The latest version of the state machine. If `None`, no version for the state machine exists. type: object required: - id - name - deprecated - latest_version title: StateMachineInstance DecisionState-Input: properties: type: type: string const: decision title: Type name: $ref: '#/components/schemas/StateOrRefName' exit_conditions: items: $ref: '#/components/schemas/ExitCondition-Input' type: array title: Exit Conditions decision_guidelines: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Decision Guidelines objective: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' tool_call_specs: items: $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec' type: array title: Tool Call Specs audio_fillers: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array maxItems: 5 title: Audio Fillers description: A list of audio fillers to play in audio mode if the `select-next-state-for-decision-state` prompt is taking too long to process. audio_filler_triggered_after: type: number maximum: 10.0 exclusiveMinimum: 0.0 title: Audio Filler Triggered After description: The number of seconds to wait before playing an audio filler. type: object required: - type - name - exit_conditions - decision_guidelines - objective - tool_call_specs - audio_fillers - audio_filler_triggered_after title: DecisionState DecisionState-Output: properties: type: type: string const: decision title: Type name: type: string title: Name description: The name of this state. exit_conditions: items: $ref: '#/components/schemas/ExitCondition-Output' type: array title: Exit Conditions description: A list of exit conditions for this state that describes under what condition would the session be allowed to transition to another state. decision_guidelines: items: type: string type: array title: Decision Guidelines description: A list of action guidelines that the `Agent` follows when in this state for making a decision. objective: type: string title: Objective description: The objective that the `Agent` works towards when in this state. tool_call_specs: items: $ref: '#/components/schemas/amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__ToolCallSpec' type: array title: Tool Call Specs description: A list of tool calls that the agent can make in this state. audio_fillers: items: type: string type: array title: Audio Fillers description: A list of audio fillers to play in the audio mode if the `select-next-state-for-decision-state` prompt is taking too long to process. audio_filler_triggered_after: type: number title: Audio Filler Triggered After description: The number of seconds to wait before playing an audio filler. type: object required: - type - name - exit_conditions - decision_guidelines - objective - tool_call_specs - audio_fillers - audio_filler_triggered_after title: DecisionState description: 'A passthrough state in which the `Agent` must decide, among a list of exit conditions, one that the session has satisfied, and transitions to the next state associated with that exit condition. This is different from an `ActionState` in that there''s no actions to perform, and the session must transition to another state.' RelationshipToDeveloper-Output: properties: ownership: type: string title: Ownership description: The agent's belief of which entity owns it. type: type: string title: Type description: The entity that the agent regards itself as. conversation_visibility: type: string title: Conversation Visibility description: Whether the agent believes that its owner can see its conversations with clients. thought_visibility: type: string title: Thought Visibility description: Whether the agent believes that its owner can see its inner thoughts when engaging in conversations with its clients. type: object required: - ownership - type - conversation_visibility - thought_visibility title: RelationshipToDeveloper UserDimension-Input: properties: description: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' tags: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Tags type: object required: - description - tags title: UserDimension src__app__endpoints__organization__get_agents__Response: properties: agents: items: $ref: '#/components/schemas/src__app__endpoints__organization__get_agents__Response__AgentInstance' type: array title: Agents description: The agents for this organization. has_more: type: boolean title: Has More description: Whether there are more agents to retrieve. continuation_token: anyOf: - type: integer - type: 'null' title: Continuation Token description: A token to supply to the next request to retrieve the next page of agents. Only populated if `has_more` is `True`. type: object required: - agents - has_more - continuation_token title: Response src__app__endpoints__organization__get_organization__Response: properties: org_id: type: string title: Org Id description: Unique identifier of the organization. org_name: type: string title: Org Name description: A human friendly name of the organization. default_user_preferences: anyOf: - $ref: '#/components/schemas/Preferences-Output' - type: 'null' description: 'Default user preferences for new users in this organization. This field is only populated if this endpoint is called with user authentication credentials, and the authenticated user has the `Organization:GetOrganizationDetails` permission.' tenant_id: anyOf: - type: string - type: 'null' title: Tenant Id description: The tenant ID of the organization. This field is only populated if the authenticated user has the `Organization:GetOrganizationDetails` permission. type: object required: - org_id - org_name - default_user_preferences - tenant_id title: Response src__app__endpoints__organization__get_agents__Response__AgentInstance: properties: id: type: string title: Id description: The ID of the agent. name: type: string title: Name description: The name of the agent. deprecated: type: boolean title: Deprecated description: Whether the agent has been deprecated. latest_version: anyOf: - type: integer - type: 'null' title: Latest Version description: The latest version of the agent. If `None`, no version for the agent exists. type: object required: - id - name - deprecated - latest_version title: AgentInstance ActionState-Output: properties: type: type: string const: action title: Type name: type: string title: Name description: The name of this state. objective: type: string title: Objective description: The objective that the `Agent` works towards when in this state. actions: items: type: string type: array title: Actions description: A list of specific actions that the `Agent` performs in this state. intra_state_navigation_guidelines: items: type: string type: array title: Intra State Navigation Guidelines description: A list of guidelines for how the agent will navigate between subgoals and exit conditions within this state. action_guidelines: items: type: string type: array title: Action Guidelines description: A list of guidelines for how the agent will behave when engaging with user. boundary_constraints: items: type: string type: array title: Boundary Constraints description: A list of guidelines for how the agent will not behave when engaging with user. exit_conditions: items: $ref: '#/components/schemas/ExitCondition-Output' type: array title: Exit Conditions description: A list of exit conditions for this state that describes under what condition would the session be allowed to transition to another state. action_tool_call_specs: items: $ref: '#/components/schemas/amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__ToolCallSpec' type: array title: Action Tool Call Specs description: A list of tool calls that the agent can make in this state when executing an action. exit_condition_tool_call_specs: items: $ref: '#/components/schemas/amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__ToolCallSpec' type: array title: Exit Condition Tool Call Specs description: A list of tool calls that the agent can make in this state when evaluating exit conditions. skip_active_memory_retrieval: type: boolean title: Skip Active Memory Retrieval description: If `True`, the agent will not perform active memory retrieval at the start of an interaction in this state. type: object required: - type - name - objective - actions - intra_state_navigation_guidelines - action_guidelines - boundary_constraints - exit_conditions - action_tool_call_specs - exit_condition_tool_call_specs - skip_active_memory_retrieval title: ActionState description: 'A state associated with an objective and a list of actions. The `Agent` will perform these actions towards achieving the objective. The session may transition to a different state if any of the exit conditions are met, in which case the session proceeds to the next state specified in the exit condition. If no exit conditions are met, the session remains in this state.' RelationshipToDeveloper-Input: properties: ownership: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' conversation_visibility: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' thought_visibility: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: object required: - ownership - type - conversation_visibility - thought_visibility title: RelationshipToDeveloper src__app__endpoints__organization__get_api_keys__Response: properties: api_keys: items: $ref: '#/components/schemas/APIKeyInstance' type: array title: Api Keys description: The list of API keys for the organization. type: object required: - api_keys title: Response src__app__endpoints__organization__get_service_hierarchical_state_machine_versions__Response: properties: state_machine_versions: items: $ref: '#/components/schemas/ServiceHierarchicalStateMachineInstance' type: array title: State Machine Versions description: The returned state machine versions. has_more: type: boolean title: Has More description: Whether there are more state machine versions to retrieve. continuation_token: anyOf: - type: integer - type: 'null' title: Continuation Token description: A token to supply to the next request to retrieve the next page of state machine versions. Only populated if `has_more` is `True`. type: object required: - state_machine_versions - has_more - continuation_token title: Response VoiceConfig: properties: voice_id: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: object required: - voice_id title: VoiceConfig amigo_lib__mongo__collections__agent__Agent__UserInfo: properties: org_id: type: string title: Org Id user_id: type: string title: User Id type: object required: - org_id - user_id title: UserInfo src__app__endpoints__organization__modify_organization__Request__Preferences: properties: enable_response_recommendation: type: boolean title: Enable Response Recommendation description: Whether to automatically recommend responses to the user if the user hasn't replied to the coach for a while. default: false preferred_language: anyOf: - type: string enum: - aaa - aab - aac - aad - aae - aaf - aag - aah - aai - aak - aal - aan - aao - aap - aaq - aar - aas - aat - aau - aaw - aax - aaz - aba - abb - abc - abd - abe - abf - abg - abh - abi - abj - abk - abl - abm - abn - abo - abp - abq - abr - abs - abt - abu - abv - abw - abx - aby - abz - aca - acb - acd - ace - acf - ach - aci - ack - acl - acm - acn - acp - acq - acr - acs - act - acu - acv - acw - acx - acy - acz - ada - adb - add - ade - adf - adg - adh - adi - adj - adl - adn - ado - adq - adr - ads - adt - adu - adw - adx - ady - adz - aea - aeb - aec - aed - aee - aek - ael - aem - aen - aeq - aer - aes - aeu - aew - aey - aez - afb - afd - afe - afg - afh - afi - afk - afn - afo - afp - afr - afs - aft - afu - afz - aga - agb - agc - agd - age - agf - agg - agh - agi - agj - agk - agl - agm - agn - ago - agq - agr - ags - agt - agu - agv - agw - agx - agy - agz - aha - ahb - ahg - ahh - ahi - ahk - ahl - ahm - ahn - aho - ahp - ahr - ahs - aht - aia - aib - aic - aid - aie - aif - aig - aih - aii - aij - aik - ail - aim - ain - aio - aip - aiq - air - ait - aiw - aix - aiy - aja - ajg - aji - ajn - ajp - ajs - aju - ajw - ajz - aka - akb - akc - akd - ake - akf - akg - akh - aki - akj - akk - akl - akm - ako - akp - akq - akr - aks - akt - aku - akv - akw - akx - aky - akz - ala - alc - ald - ale - alf - alh - ali - alj - alk - all - alm - aln - alo - alp - alq - alr - als - alt - alu - alw - alx - aly - alz - ama - amb - amc - ame - amf - amg - amh - ami - amj - amk - aml - amm - amn - amo - amp - amq - amr - ams - amt - amu - amv - amw - amx - amy - amz - ana - anb - anc - and - ane - anf - ang - anh - ani - anj - ank - anl - anm - ann - ano - anp - anq - anr - ans - ant - anu - anv - anw - anx - any - anz - aoa - aob - aoc - aod - aoe - aof - aog - aoi - aoj - aok - aol - aom - aon - aor - aos - aot - aou - aox - aoz - apb - apc - apd - ape - apf - apg - aph - api - apj - apk - apl - apm - apn - apo - app - apq - apr - aps - apt - apu - apv - apw - apx - apy - apz - aqc - aqd - aqg - aqk - aqm - aqn - aqp - aqr - aqt - aqz - ara - arb - arc - ard - are - arg - arh - ari - arj - ark - arl - arn - aro - arp - arq - arr - ars - aru - arv - arw - arx - ary - arz - asa - asb - asc - ase - asf - asg - ash - asi - asj - ask - asl - asm - asn - aso - asp - asq - asr - ass - ast - asu - asv - asw - asx - asy - asz - ata - atb - atc - atd - ate - atg - ati - atj - atk - atl - atm - atn - ato - atp - atq - atr - ats - att - atu - atv - atw - atx - aty - atz - aua - aub - auc - aud - aug - auh - aui - auj - auk - aul - aum - aun - auo - aup - auq - aur - aut - auu - auw - aux - auy - auz - ava - avb - avd - ave - avi - avk - avl - avm - avn - avo - avs - avt - avu - avv - awa - awb - awc - awe - awg - awh - awi - awk - awm - awn - awo - awr - aws - awt - awu - awv - aww - awx - awy - axb - axe - axg - axk - axl - axm - axx - aya - ayb - ayc - ayd - aye - ayg - ayh - ayi - ayk - ayl - aym - ayn - ayo - ayp - ayq - ayr - ays - ayt - ayu - ayz - aza - azb - azd - aze - azg - azj - azm - azn - azo - azt - azz - baa - bab - bac - bae - baf - bag - bah - baj - bak - bal - bam - ban - bao - bap - bar - bas - bau - bav - baw - bax - bay - bba - bbb - bbc - bbd - bbe - bbf - bbg - bbh - bbi - bbj - bbk - bbl - bbm - bbn - bbo - bbp - bbq - bbr - bbs - bbt - bbu - bbv - bbw - bbx - bby - bca - bcb - bcc - bcd - bce - bcf - bcg - bch - bci - bcj - bck - bcl - bcm - bcn - bco - bcp - bcq - bcr - bcs - bct - bcu - bcv - bcw - bcy - bcz - bda - bdb - bdc - bdd - bde - bdf - bdg - bdh - bdi - bdj - bdk - bdl - bdm - bdn - bdo - bdp - bdq - bdr - bds - bdt - bdu - bdv - bdw - bdx - bdy - bdz - bea - beb - bec - bed - bee - bef - beg - beh - bei - bej - bek - bel - bem - ben - beo - bep - beq - bes - bet - beu - bev - bew - bex - bey - bez - bfa - bfb - bfc - bfd - bfe - bff - bfg - bfh - bfi - bfj - bfk - bfl - bfm - bfn - bfo - bfp - bfq - bfr - bfs - bft - bfu - bfw - bfx - bfy - bfz - bga - bgb - bgc - bgd - bge - bgf - bgg - bgi - bgj - bgk - bgl - bgn - bgo - bgp - bgq - bgr - bgs - bgt - bgu - bgv - bgw - bgx - bgy - bgz - bha - bhb - bhc - bhd - bhe - bhf - bhg - bhh - bhi - bhj - bhl - bhm - bhn - bho - bhp - bhq - bhr - bhs - bht - bhu - bhv - bhw - bhx - bhy - bhz - bia - bib - bid - bie - bif - big - bik - bil - bim - bin - bio - bip - biq - bir - bis - bit - biu - biv - biw - bix - biy - biz - bja - bjb - bjc - bje - bjf - bjg - bjh - bji - bjj - bjk - bjl - bjm - bjn - bjo - bjp - bjr - bjs - bjt - bju - bjv - bjw - bjx - bjy - bjz - bka - bkc - bkd - bkf - bkg - bkh - bki - bkj - bkk - bkl - bkm - bkn - bko - bkp - bkq - bkr - bks - bkt - bku - bkv - bkw - bkx - bky - bkz - bla - blb - blc - bld - ble - blf - blh - bli - blj - blk - bll - blm - bln - blo - blp - blq - blr - bls - blt - blv - blw - blx - bly - blz - bma - bmb - bmc - bmd - bme - bmf - bmg - bmh - bmi - bmj - bmk - bml - bmm - bmn - bmo - bmp - bmq - bmr - bms - bmt - bmu - bmv - bmw - bmx - bmz - bna - bnb - bnc - bnd - bne - bnf - bng - bni - bnj - bnk - bnl - bnm - bnn - bno - bnp - bnq - bnr - bns - bnu - bnv - bnw - bnx - bny - bnz - boa - bob - bod - boe - bof - bog - boh - boi - boj - bok - bol - bom - bon - boo - bop - boq - bor - bos - bot - bou - bov - bow - box - boy - boz - bpa - bpc - bpd - bpe - bpg - bph - bpi - bpj - bpk - bpl - bpm - bpn - bpo - bpp - bpq - bpr - bps - bpt - bpu - bpv - bpw - bpx - bpy - bpz - bqa - bqb - bqc - bqd - bqf - bqg - bqh - bqi - bqj - bqk - bql - bqm - bqn - bqo - bqp - bqq - bqr - bqs - bqt - bqu - bqv - bqw - bqx - bqy - bqz - bra - brb - brc - brd - bre - brf - brg - brh - bri - brj - brk - brl - brm - brn - bro - brp - brq - brr - brs - brt - bru - brv - brw - brx - bry - brz - bsa - bsb - bsc - bse - bsf - bsg - bsh - bsi - bsj - bsk - bsl - bsm - bsn - bso - bsp - bsq - bsr - bss - bst - bsu - bsv - bsw - bsx - bsy - bta - btc - btd - bte - btf - btg - bth - bti - btj - btm - btn - bto - btp - btq - btr - bts - btt - btu - btv - btw - btx - bty - btz - bua - bub - buc - bud - bue - buf - bug - buh - bui - buj - buk - bul - bum - bun - buo - bup - buq - bus - but - buu - buv - buw - bux - buy - buz - bva - bvb - bvc - bvd - bve - bvf - bvg - bvh - bvi - bvj - bvk - bvl - bvm - bvn - bvo - bvp - bvq - bvr - bvt - bvu - bvv - bvw - bvx - bvy - bvz - bwa - bwb - bwc - bwd - bwe - bwf - bwg - bwh - bwi - bwj - bwk - bwl - bwm - bwn - bwo - bwp - bwq - bwr - bws - bwt - bwu - bww - bwx - bwy - bwz - bxa - bxb - bxc - bxd - bxe - bxf - bxg - bxh - bxi - bxj - bxk - bxl - bxm - bxn - bxo - bxp - bxq - bxr - bxs - bxu - bxv - bxw - bxz - bya - byb - byc - byd - bye - byf - byg - byh - byi - byj - byk - byl - bym - byn - byo - byp - byq - byr - bys - byt - byv - byw - byx - byz - bza - bzb - bzc - bzd - bze - bzf - bzg - bzh - bzi - bzj - bzk - bzl - bzm - bzn - bzo - bzp - bzq - bzr - bzs - bzt - bzu - bzv - bzw - bzx - bzy - bzz - caa - cab - cac - cad - cae - caf - cag - cah - caj - cak - cal - cam - can - cao - cap - caq - car - cas - cat - cav - caw - cax - cay - caz - cbb - cbc - cbd - cbg - cbi - cbj - cbk - cbl - cbn - cbo - cbq - cbr - cbs - cbt - cbu - cbv - cbw - cby - ccc - ccd - cce - ccg - cch - ccj - ccl - ccm - cco - ccp - ccr - cda - cde - cdf - cdh - cdi - cdj - cdm - cdn - cdo - cdr - cds - cdy - cdz - cea - ceb - ceg - cek - cen - ces - cet - cey - cfa - cfd - cfg - cfm - cga - cgc - cgg - cgk - cha - chb - chc - chd - che - chf - chg - chh - chj - chk - chl - chm - chn - cho - chp - chq - chr - cht - chu - chv - chw - chx - chy - chz - cia - cib - cic - cid - cie - cih - cik - cim - cin - cip - cir - ciw - ciy - cja - cje - cjh - cji - cjk - cjm - cjn - cjo - cjp - cjs - cjv - cjy - ckb - ckh - ckl - ckm - ckn - cko - ckq - ckr - cks - ckt - cku - ckv - ckx - cky - ckz - cla - clc - cld - cle - clh - cli - clj - clk - cll - clm - clo - clt - clu - clw - cly - cma - cme - cmg - cmi - cml - cmm - cmn - cmo - cmr - cms - cmt - cna - cnb - cnc - cng - cnh - cni - cnk - cnl - cno - cnp - cnq - cnr - cns - cnt - cnu - cnw - cnx - coa - cob - coc - cod - coe - cof - cog - coh - coj - cok - col - com - con - coo - cop - coq - cor - cos - cot - cou - cov - cow - cox - coz - cpa - cpb - cpc - cpg - cpi - cpn - cpo - cps - cpu - cpx - cpy - cqd - cra - crb - crc - crd - cre - crf - crg - crh - cri - crj - crk - crl - crm - crn - cro - crq - crr - crs - crt - crv - crw - crx - cry - crz - csa - csb - csc - csd - cse - csf - csg - csh - csi - csj - csk - csl - csm - csn - cso - csp - csq - csr - css - cst - csv - csw - csx - csy - csz - cta - ctc - ctd - cte - ctg - cth - ctl - ctm - ctn - cto - ctp - cts - ctt - ctu - cty - ctz - cua - cub - cuc - cuh - cui - cuj - cuk - cul - cuo - cup - cuq - cur - cut - cuu - cuv - cuw - cux - cuy - cvg - cvn - cwa - cwb - cwd - cwe - cwg - cwt - cya - cyb - cym - cyo - czh - czk - czn - czo - czt - daa - dac - dad - dae - dag - dah - dai - daj - dak - dal - dam - dan - dao - daq - dar - das - dau - dav - daw - dax - daz - dba - dbb - dbd - dbe - dbf - dbg - dbi - dbj - dbl - dbm - dbn - dbo - dbp - dbq - dbr - dbt - dbu - dbv - dbw - dby - dcc - dcr - dda - ddd - dde - ddg - ddi - ddj - ddn - ddo - ddr - dds - ddw - dec - ded - dee - def - deg - deh - dei - dek - del - dem - den - dep - deq - der - des - deu - dev - dez - dga - dgb - dgc - dgd - dge - dgg - dgh - dgi - dgk - dgl - dgn - dgo - dgr - dgs - dgt - dgw - dgx - dgz - dhd - dhg - dhi - dhl - dhm - dhn - dho - dhr - dhs - dhu - dhv - dhw - dhx - dia - dib - dic - did - dif - dig - dih - dii - dij - dik - dil - dim - din - dio - dip - diq - dir - dis - diu - div - diw - dix - diy - diz - dja - djb - djc - djd - dje - djf - dji - djj - djk - djm - djn - djo - djr - dju - djw - dka - dkg - dkk - dkr - dks - dkx - dlg - dlk - dlm - dln - dma - dmb - dmc - dmd - dme - dmf - dmg - dmk - dml - dmm - dmo - dmr - dms - dmu - dmv - dmw - dmx - dmy - dna - dnd - dne - dng - dni - dnj - dnk - dnn - dno - dnr - dnt - dnu - dnv - dnw - dny - doa - dob - doc - doe - dof - doh - doi - dok - dol - don - doo - dop - doq - dor - dos - dot - dov - dow - dox - doy - doz - dpp - drb - drc - drd - dre - drg - dri - drl - drn - dro - drq - drs - drt - dru - dry - dsb - dse - dsh - dsi - dsl - dsn - dso - dsq - dsz - dta - dtb - dtd - dth - dti - dtk - dtm - dtn - dto - dtp - dtr - dts - dtt - dtu - dty - dua - dub - duc - due - duf - dug - duh - dui - duk - dul - dum - dun - duo - dup - duq - dur - dus - duu - duv - duw - dux - duy - duz - dva - dwa - dwk - dwr - dws - dwu - dww - dwy - dwz - dya - dyb - dyd - dyg - dyi - dym - dyn - dyo - dyu - dyy - dza - dze - dzg - dzl - dzn - dzo - eaa - ebc - ebg - ebk - ebo - ebr - ebu - ecr - ecs - ecy - eee - efa - efe - efi - ega - egl - egm - ego - egy - ehs - ehu - eip - eit - eiv - eja - eka - eke - ekg - eki - ekk - ekl - ekm - eko - ekp - ekr - eky - ele - elh - eli - elk - ell - elm - elo - elu - elx - ema - emb - eme - emg - emi - emk - emm - emn - emp - emq - ems - emu - emw - emx - emy - emz - ena - enb - enc - end - enf - eng - enh - enl - enm - enn - eno - enq - enr - enu - env - enw - enx - eot - epi - epo - era - erg - erh - eri - erk - ero - err - ers - ert - erw - ese - esg - esh - esi - esk - esl - esm - esn - eso - esq - ess - est - esu - esy - etb - etc - eth - etn - eto - etr - ets - ett - etu - etx - etz - eus - eve - evh - evn - ewe - ewo - ext - eya - eyo - eza - eze - faa - fab - fad - faf - fag - fah - fai - faj - fak - fal - fam - fan - fao - fap - far - fas - fat - fau - fax - fay - faz - fbl - fcs - fer - ffi - ffm - fgr - fia - fie - fif - fij - fil - fin - fip - fir - fit - fiw - fkk - fkv - fla - flh - fli - fll - fln - flr - fly - fmp - fmu - fnb - fng - fni - fod - foi - fom - fon - for - fos - fpe - fqs - fra - frc - frd - frk - frm - fro - frp - frq - frr - frs - frt - fry - fse - fsl - fss - fub - fuc - fud - fue - fuf - fuh - fui - fuj - ful - fum - fun - fuq - fur - fut - fuu - fuv - fuy - fvr - fwa - fwe - gaa - gab - gac - gad - gae - gaf - gag - gah - gai - gaj - gak - gal - gam - gan - gao - gap - gaq - gar - gas - gat - gau - gaw - gax - gay - gaz - gba - gbb - gbd - gbe - gbf - gbg - gbh - gbi - gbj - gbk - gbl - gbm - gbn - gbo - gbp - gbq - gbr - gbs - gbu - gbv - gbw - gbx - gby - gbz - gcc - gcd - gce - gcf - gcl - gcn - gcr - gct - gda - gdb - gdc - gdd - gde - gdf - gdg - gdh - gdi - gdj - gdk - gdl - gdm - gdn - gdo - gdq - gdr - gds - gdt - gdu - gdx - gea - geb - gec - ged - gef - geg - geh - gei - gej - gek - gel - geq - ges - gev - gew - gex - gey - gez - gfk - gft - gga - ggb - ggd - gge - ggg - ggk - ggl - ggt - ggu - ggw - gha - ghc - ghe - ghh - ghk - ghl - ghn - gho - ghr - ghs - ght - gia - gib - gic - gid - gie - gig - gih - gii - gil - gim - gin - gip - giq - gir - gis - git - giu - giw - gix - giy - giz - gjk - gjm - gjn - gjr - gju - gka - gkd - gke - gkn - gko - gkp - gku - gla - glb - glc - gld - gle - glg - glh - glj - glk - gll - glo - glr - glu - glv - glw - gly - gma - gmb - gmd - gmg - gmh - gml - gmm - gmn - gmr - gmu - gmv - gmx - gmy - gmz - gna - gnb - gnc - gnd - gne - gng - gnh - gni - gnj - gnk - gnl - gnm - gnn - gno - gnq - gnr - gnt - gnu - gnw - gnz - goa - gob - goc - god - goe - gof - gog - goh - goi - goj - gok - gol - gom - gon - goo - gop - goq - gor - gos - got - gou - gov - gow - gox - goy - goz - gpa - gpe - gpn - gqa - gqi - gqn - gqr - gqu - gra - grb - grc - grd - grg - grh - gri - grj - grm - grn - gro - grq - grr - grs - grt - gru - grv - grw - grx - gry - grz - gse - gsg - gsl - gsm - gsn - gso - gsp - gss - gsw - gta - gtu - gua - gub - guc - gud - gue - guf - gug - guh - gui - guj - guk - gul - gum - gun - guo - gup - guq - gur - gus - gut - guu - guw - gux - guz - gva - gvc - gve - gvf - gvj - gvl - gvm - gvn - gvo - gvp - gvr - gvs - gvy - gwa - gwb - gwc - gwd - gwe - gwf - gwg - gwi - gwj - gwm - gwn - gwr - gwt - gwu - gww - gwx - gxx - gya - gyb - gyd - gye - gyf - gyg - gyi - gyl - gym - gyn - gyo - gyr - gyy - gyz - gza - gzi - gzn - haa - hab - hac - had - hae - haf - hag - hah - hai - haj - hak - hal - ham - han - hao - hap - haq - har - has - hat - hau - hav - haw - hax - hay - haz - hba - hbb - hbn - hbo - hbs - hbu - hca - hch - hdn - hds - hdy - hea - heb - hed - heg - heh - hei - hem - her - hgm - hgw - hhi - hhr - hhy - hia - hib - hid - hif - hig - hih - hii - hij - hik - hil - hin - hio - hir - hit - hiw - hix - hji - hka - hke - hkh - hkk - hkn - hks - hla - hlb - hld - hle - hlt - hlu - hma - hmb - hmc - hmd - hme - hmf - hmg - hmh - hmi - hmj - hmk - hml - hmm - hmn - hmo - hmp - hmq - hmr - hms - hmt - hmu - hmv - hmw - hmy - hmz - hna - hnd - hne - hng - hnh - hni - hnj - hnn - hno - hns - hnu - hoa - hob - hoc - hod - hoe - hoh - hoi - hoj - hol - hom - hoo - hop - hor - hos - hot - hov - how - hoy - hoz - hpo - hps - hra - hrc - hre - hrk - hrm - hro - hrp - hrt - hru - hrv - hrw - hrx - hrz - hsb - hsh - hsl - hsn - hss - hti - hto - hts - htu - htx - hub - huc - hud - hue - huf - hug - huh - hui - huj - huk - hul - hum - hun - huo - hup - huq - hur - hus - hut - huu - huv - huw - hux - huy - huz - hvc - hve - hvk - hvn - hvv - hwa - hwc - hwo - hya - hye - hyw - iai - ian - iar - iba - ibb - ibd - ibe - ibg - ibh - ibl - ibm - ibn - ibo - ibr - ibu - iby - ica - ich - icl - icr - ida - idb - idc - idd - ide - idi - ido - idr - ids - idt - idu - ifa - ifb - ife - iff - ifk - ifm - ifu - ify - igb - ige - igg - igl - igm - ign - igo - igs - igw - ihb - ihi - ihp - ihw - iii - iin - ijc - ije - ijj - ijn - ijs - ike - iki - ikk - ikl - iko - ikp - ikr - iks - ikt - iku - ikv - ikw - ikx - ikz - ila - ilb - ile - ilg - ili - ilk - ilm - ilo - ilp - ils - ilu - ilv - ima - imi - iml - imn - imo - imr - ims - imt - imy - ina - inb - ind - ing - inh - inj - inl - inm - inn - ino - inp - ins - int - inz - ior - iou - iow - ipi - ipk - ipo - iqu - iqw - ire - irh - iri - irk - irn - irr - iru - irx - iry - isa - isc - isd - ise - isg - ish - isi - isk - isl - ism - isn - iso - isr - ist - isu - ita - itb - itd - ite - iti - itk - itl - itm - ito - itr - its - itt - itv - itw - itx - ity - itz - ium - ivb - ivv - iwk - iwm - iwo - iws - ixc - ixl - iya - iyo - iyx - izh - izr - izz - jaa - jab - jac - jad - jae - jaf - jah - jaj - jak - jal - jam - jan - jao - jaq - jas - jat - jau - jav - jax - jay - jaz - jbe - jbi - jbj - jbk - jbm - jbn - jbo - jbr - jbt - jbu - jbw - jcs - jct - jda - jdg - jdt - jeb - jee - jeh - jei - jek - jel - jen - jer - jet - jeu - jgb - jge - jgk - jgo - jhi - jhs - jia - jib - jic - jid - jie - jig - jih - jii - jil - jim - jio - jiq - jit - jiu - jiv - jiy - jje - jjr - jka - jkm - jko - jkp - jkr - jks - jku - jle - jls - jma - jmb - jmc - jmd - jmi - jml - jmn - jmr - jms - jmw - jmx - jna - jnd - jng - jni - jnj - jnl - jns - job - jod - jog - jor - jos - jow - jpa - jpn - jpr - jqr - jra - jrb - jrr - jrt - jru - jsl - jua - jub - juc - jud - juh - jui - juk - jul - jum - jun - juo - jup - jur - jus - jut - juu - juw - juy - jvd - jvn - jwi - jya - jye - jyy - kaa - kab - kac - kad - kae - kaf - kag - kah - kai - kaj - kak - kal - kam - kan - kao - kap - kaq - kas - kat - kau - kav - kaw - kax - kay - kaz - kba - kbb - kbc - kbd - kbe - kbg - kbh - kbi - kbj - kbk - kbl - kbm - kbn - kbo - kbp - kbq - kbr - kbs - kbt - kbu - kbv - kbw - kbx - kby - kbz - kca - kcb - kcc - kcd - kce - kcf - kcg - kch - kci - kcj - kck - kcl - kcm - kcn - kco - kcp - kcq - kcr - kcs - kct - kcu - kcv - kcw - kcx - kcy - kcz - kda - kdc - kdd - kde - kdf - kdg - kdh - kdi - kdj - kdk - kdl - kdm - kdn - kdp - kdq - kdr - kdt - kdu - kdw - kdx - kdy - kdz - kea - keb - kec - ked - kee - kef - keg - keh - kei - kej - kek - kel - kem - ken - keo - kep - keq - ker - kes - ket - keu - kev - kew - kex - key - kez - kfa - kfb - kfc - kfd - kfe - kff - kfg - kfh - kfi - kfj - kfk - kfl - kfm - kfn - kfo - kfp - kfq - kfr - kfs - kft - kfu - kfv - kfw - kfx - kfy - kfz - kga - kgb - kge - kgf - kgg - kgi - kgj - kgk - kgl - kgm - kgn - kgo - kgp - kgq - kgr - kgs - kgt - kgu - kgv - kgw - kgx - kgy - kha - khb - khc - khd - khe - khf - khg - khh - khj - khk - khl - khm - khn - kho - khp - khq - khr - khs - kht - khu - khv - khw - khx - khy - khz - kia - kib - kic - kid - kie - kif - kig - kih - kii - kij - kik - kil - kim - kin - kio - kip - kiq - kir - kis - kit - kiu - kiv - kiw - kix - kiy - kiz - kja - kjb - kjc - kjd - kje - kjg - kjh - kji - kjj - kjk - kjl - kjm - kjn - kjo - kjp - kjq - kjr - kjs - kjt - kju - kjv - kjx - kjy - kjz - kka - kkb - kkc - kkd - kke - kkf - kkg - kkh - kki - kkj - kkk - kkl - kkm - kkn - kko - kkp - kkq - kkr - kks - kkt - kku - kkv - kkw - kkx - kky - kkz - kla - klb - klc - kld - kle - klf - klg - klh - kli - klj - klk - kll - klm - kln - klo - klp - klq - klr - kls - klt - klu - klv - klw - klx - kly - klz - kma - kmb - kmc - kmd - kme - kmf - kmg - kmh - kmi - kmj - kmk - kml - kmm - kmn - kmo - kmp - kmq - kmr - kms - kmt - kmu - kmv - kmw - kmx - kmy - kmz - kna - knb - knc - knd - kne - knf - kng - kni - knj - knk - knl - knm - knn - kno - knp - knq - knr - kns - knt - knu - knv - knw - knx - kny - knz - koa - koc - kod - koe - kof - kog - koh - koi - kok - kol - kom - kon - koo - kop - koq - kor - kos - kot - kou - kov - kow - koy - koz - kpa - kpb - kpc - kpd - kpe - kpf - kpg - kph - kpi - kpj - kpk - kpl - kpm - kpn - kpo - kpq - kpr - kps - kpt - kpu - kpv - kpw - kpx - kpy - kpz - kqa - kqb - kqc - kqd - kqe - kqf - kqg - kqh - kqi - kqj - kqk - kql - kqm - kqn - kqo - kqp - kqq - kqr - kqs - kqt - kqu - kqv - kqw - kqx - kqy - kqz - kra - krb - krc - krd - kre - krf - krh - kri - krj - krk - krl - krn - krp - krr - krs - krt - kru - krv - krw - krx - kry - krz - ksa - ksb - ksc - ksd - kse - ksf - ksg - ksh - ksi - ksj - ksk - ksl - ksm - ksn - kso - ksp - ksq - ksr - kss - kst - ksu - ksv - ksw - ksx - ksy - ksz - kta - ktb - ktc - ktd - kte - ktf - ktg - kth - kti - ktj - ktk - ktl - ktm - ktn - kto - ktp - ktq - kts - ktt - ktu - ktv - ktw - ktx - kty - ktz - kua - kub - kuc - kud - kue - kuf - kug - kuh - kui - kuj - kuk - kul - kum - kun - kuo - kup - kuq - kur - kus - kut - kuu - kuv - kuw - kux - kuy - kuz - kva - kvb - kvc - kvd - kve - kvf - kvg - kvh - kvi - kvj - kvk - kvl - kvm - kvn - kvo - kvp - kvq - kvr - kvt - kvu - kvv - kvw - kvx - kvy - kvz - kwa - kwb - kwc - kwd - kwe - kwf - kwg - kwh - kwi - kwj - kwk - kwl - kwm - kwn - kwo - kwp - kwr - kws - kwt - kwu - kwv - kww - kwx - kwy - kwz - kxa - kxb - kxc - kxd - kxf - kxh - kxi - kxj - kxk - kxm - kxn - kxo - kxp - kxq - kxr - kxs - kxt - kxv - kxw - kxx - kxy - kxz - kya - kyb - kyc - kyd - kye - kyf - kyg - kyh - kyi - kyj - kyk - kyl - kym - kyn - kyo - kyp - kyq - kyr - kys - kyt - kyu - kyv - kyw - kyx - kyy - kyz - kza - kzb - kzc - kzd - kze - kzf - kzg - kzi - kzk - kzl - kzm - kzn - kzo - kzp - kzq - kzr - kzs - kzu - kzv - kzw - kzx - kzy - kzz - laa - lab - lac - lad - lae - laf - lag - lah - lai - laj - lal - lam - lan - lao - lap - laq - lar - las - lat - lau - lav - law - lax - lay - laz - lbb - lbc - lbe - lbf - lbg - lbi - lbj - lbk - lbl - lbm - lbn - lbo - lbq - lbr - lbs - lbt - lbu - lbv - lbw - lbx - lby - lbz - lcc - lcd - lce - lcf - lch - lcl - lcm - lcp - lcq - lcs - lda - ldb - ldd - ldg - ldh - ldi - ldj - ldk - ldl - ldm - ldn - ldo - ldp - ldq - lea - leb - lec - led - lee - lef - leh - lei - lej - lek - lel - lem - len - leo - lep - leq - ler - les - let - leu - lev - lew - lex - ley - lez - lfa - lfn - lga - lgb - lgg - lgh - lgi - lgk - lgl - lgm - lgn - lgo - lgq - lgr - lgt - lgu - lgz - lha - lhh - lhi - lhl - lhm - lhn - lhp - lhs - lht - lhu - lia - lib - lic - lid - lie - lif - lig - lih - lij - lik - lil - lim - lin - lio - lip - liq - lir - lis - lit - liu - liv - liw - lix - liy - liz - lja - lje - lji - ljl - ljp - ljw - ljx - lka - lkb - lkc - lkd - lke - lkh - lki - lkj - lkl - lkm - lkn - lko - lkr - lks - lkt - lku - lky - lla - llb - llc - lld - lle - llf - llg - llh - lli - llj - llk - lll - llm - lln - llp - llq - lls - llu - llx - lma - lmb - lmc - lmd - lme - lmf - lmg - lmh - lmi - lmj - lmk - lml - lmn - lmo - lmp - lmq - lmr - lmu - lmv - lmw - lmx - lmy - lna - lnb - lnd - lng - lnh - lni - lnj - lnl - lnm - lnn - lns - lnu - lnw - lnz - loa - lob - loc - loe - lof - log - loh - loi - loj - lok - lol - lom - lon - loo - lop - loq - lor - los - lot - lou - lov - low - lox - loy - loz - lpa - lpe - lpn - lpo - lpx - lqr - lra - lrc - lre - lrg - lri - lrk - lrl - lrm - lrn - lro - lrr - lrt - lrv - lrz - lsa - lsb - lsc - lsd - lse - lsh - lsi - lsl - lsm - lsn - lso - lsp - lsr - lss - lst - lsv - lsw - lsy - ltc - ltg - lth - lti - ltn - lto - lts - ltu - ltz - lua - lub - luc - lud - lue - luf - lug - lui - luj - luk - lul - lum - lun - luo - lup - luq - lur - lus - lut - luu - luv - luw - luy - luz - lva - lvi - lvk - lvs - lvu - lwa - lwe - lwg - lwh - lwl - lwm - lwo - lws - lwt - lwu - lww - lxm - lya - lyg - lyn - lzh - lzl - lzn - lzz - maa - mab - mad - mae - maf - mag - mah - mai - maj - mak - mal - mam - man - maq - mar - mas - mat - mau - mav - maw - max - maz - mba - mbb - mbc - mbd - mbe - mbf - mbh - mbi - mbj - mbk - mbl - mbm - mbn - mbo - mbp - mbq - mbr - mbs - mbt - mbu - mbv - mbw - mbx - mby - mbz - mca - mcb - mcc - mcd - mce - mcf - mcg - mch - mci - mcj - mck - mcl - mcm - mcn - mco - mcp - mcq - mcr - mcs - mct - mcu - mcv - mcw - mcx - mcy - mcz - mda - mdb - mdc - mdd - mde - mdf - mdg - mdh - mdi - mdj - mdk - mdl - mdm - mdn - mdp - mdq - mdr - mds - mdt - mdu - mdv - mdw - mdx - mdy - mdz - mea - meb - mec - med - mee - mef - meh - mei - mej - mek - mel - mem - men - meo - mep - meq - mer - mes - met - meu - mev - mew - mey - mez - mfa - mfb - mfc - mfd - mfe - mff - mfg - mfh - mfi - mfj - mfk - mfl - mfm - mfn - mfo - mfp - mfq - mfr - mfs - mft - mfu - mfv - mfw - mfx - mfy - mfz - mga - mgb - mgc - mgd - mge - mgf - mgg - mgh - mgi - mgj - mgk - mgl - mgm - mgn - mgo - mgp - mgq - mgr - mgs - mgt - mgu - mgv - mgw - mgy - mgz - mha - mhb - mhc - mhd - mhe - mhf - mhg - mhi - mhj - mhk - mhl - mhm - mhn - mho - mhp - mhq - mhr - mhs - mht - mhu - mhw - mhx - mhy - mhz - mia - mib - mic - mid - mie - mif - mig - mih - mii - mij - mik - mil - mim - min - mio - mip - miq - mir - mis - mit - miu - miw - mix - miy - miz - mjb - mjc - mjd - mje - mjg - mjh - mji - mjj - mjk - mjl - mjm - mjn - mjo - mjp - mjq - mjr - mjs - mjt - mju - mjv - mjw - mjx - mjy - mjz - mka - mkb - mkc - mkd - mke - mkf - mkg - mki - mkj - mkk - mkl - mkm - mkn - mko - mkp - mkq - mkr - mks - mkt - mku - mkv - mkw - mkx - mky - mkz - mla - mlb - mlc - mle - mlf - mlg - mlh - mli - mlj - mlk - mll - mlm - mln - mlo - mlp - mlq - mlr - mls - mlt - mlu - mlv - mlw - mlx - mlz - mma - mmb - mmc - mmd - mme - mmf - mmg - mmh - mmi - mmj - mmk - mml - mmm - mmn - mmo - mmp - mmq - mmr - mmt - mmu - mmv - mmw - mmx - mmy - mmz - mna - mnb - mnc - mnd - mne - mnf - mng - mnh - mni - mnj - mnk - mnl - mnm - mnn - mnp - mnq - mnr - mns - mnu - mnv - mnw - mnx - mny - mnz - moa - moc - mod - moe - mog - moh - moi - moj - mok - mom - mon - moo - mop - moq - mor - mos - mot - mou - mov - mow - mox - moy - moz - mpa - mpb - mpc - mpd - mpe - mpg - mph - mpi - mpj - mpk - mpl - mpm - mpn - mpo - mpp - mpq - mpr - mps - mpt - mpu - mpv - mpw - mpx - mpy - mpz - mqa - mqb - mqc - mqe - mqf - mqg - mqh - mqi - mqj - mqk - mql - mqm - mqn - mqo - mqp - mqq - mqr - mqs - mqt - mqu - mqv - mqw - mqx - mqy - mqz - mra - mrb - mrc - mrd - mre - mrf - mrg - mrh - mri - mrj - mrk - mrl - mrm - mrn - mro - mrp - mrq - mrr - mrs - mrt - mru - mrv - mrw - mrx - mry - mrz - msa - msb - msc - msd - mse - msf - msg - msh - msi - msj - msk - msl - msm - msn - mso - msp - msq - msr - mss - msu - msv - msw - msx - msy - msz - mta - mtb - mtc - mtd - mte - mtf - mtg - mth - mti - mtj - mtk - mtl - mtm - mtn - mto - mtp - mtq - mtr - mts - mtt - mtu - mtv - mtw - mtx - mty - mua - mub - muc - mud - mue - mug - muh - mui - muj - muk - mul - mum - muo - mup - muq - mur - mus - mut - muu - muv - mux - muy - muz - mva - mvb - mvd - mve - mvf - mvg - mvh - mvi - mvk - mvl - mvn - mvo - mvp - mvq - mvr - mvs - mvt - mvu - mvv - mvw - mvx - mvy - mvz - mwa - mwb - mwc - mwe - mwf - mwg - mwh - mwi - mwk - mwl - mwm - mwn - mwo - mwp - mwq - mwr - mws - mwt - mwu - mwv - mww - mwz - mxa - mxb - mxc - mxd - mxe - mxf - mxg - mxh - mxi - mxj - mxk - mxl - mxm - mxn - mxo - mxp - mxq - mxr - mxs - mxt - mxu - mxv - mxw - mxx - mxy - mxz - mya - myb - myc - mye - myf - myg - myh - myj - myk - myl - mym - myo - myp - myr - mys - myu - myv - myw - myx - myy - myz - mza - mzb - mzc - mzd - mze - mzg - mzh - mzi - mzj - mzk - mzl - mzm - mzn - mzo - mzp - mzq - mzr - mzs - mzt - mzu - mzv - mzw - mzx - mzy - mzz - naa - nab - nac - nae - naf - nag - naj - nak - nal - nam - nan - nao - nap - naq - nar - nas - nat - nau - nav - naw - nax - nay - naz - nba - nbb - nbc - nbd - nbe - nbg - nbh - nbi - nbj - nbk - nbl - nbm - nbn - nbo - nbp - nbq - nbr - nbs - nbt - nbu - nbv - nbw - nby - nca - ncb - ncc - ncd - nce - ncf - ncg - nch - nci - ncj - nck - ncl - ncm - ncn - nco - ncq - ncr - ncs - nct - ncu - ncx - ncz - nda - ndb - ndc - ndd - nde - ndf - ndg - ndh - ndi - ndj - ndk - ndl - ndm - ndn - ndo - ndp - ndq - ndr - nds - ndt - ndu - ndv - ndw - ndx - ndy - ndz - nea - neb - nec - ned - nee - nef - neg - neh - nei - nej - nek - nem - nen - neo - nep - neq - ner - nes - net - neu - nev - new - nex - ney - nez - nfa - nfd - nfl - nfr - nfu - nga - ngb - ngc - ngd - nge - ngg - ngh - ngi - ngj - ngk - ngl - ngm - ngn - ngp - ngq - ngr - ngs - ngt - ngu - ngv - ngw - ngx - ngy - ngz - nha - nhb - nhc - nhd - nhe - nhf - nhg - nhh - nhi - nhk - nhm - nhn - nho - nhp - nhq - nhr - nht - nhu - nhv - nhw - nhx - nhy - nhz - nia - nib - nid - nie - nif - nig - nih - nii - nij - nik - nil - nim - nin - nio - niq - nir - nis - nit - niu - niv - niw - nix - niy - niz - nja - njb - njd - njh - nji - njj - njl - njm - njn - njo - njr - njs - njt - nju - njx - njy - njz - nka - nkb - nkc - nkd - nke - nkf - nkg - nkh - nki - nkj - nkk - nkm - nkn - nko - nkp - nkq - nkr - nks - nkt - nku - nkv - nkw - nkx - nkz - nla - nlc - nld - nle - nlg - nli - nlj - nlk - nll - nlm - nlo - nlq - nlu - nlv - nlw - nlx - nly - nlz - nma - nmb - nmc - nmd - nme - nmf - nmg - nmh - nmi - nmj - nmk - nml - nmm - nmn - nmo - nmp - nmq - nmr - nms - nmt - nmu - nmv - nmw - nmx - nmy - nmz - nna - nnb - nnc - nnd - nne - nnf - nng - nnh - nni - nnj - nnk - nnl - nnm - nnn - nno - nnp - nnq - nnr - nnt - nnu - nnv - nnw - nny - nnz - noa - nob - noc - nod - noe - nof - nog - noh - noi - noj - nok - nol - nom - non - nop - noq - nor - nos - not - nou - nov - now - noy - noz - npa - npb - npg - nph - npi - npl - npn - npo - nps - npu - npx - npy - nqg - nqk - nql - nqm - nqn - nqo - nqq - nqt - nqy - nra - nrb - nrc - nre - nrf - nrg - nri - nrk - nrl - nrm - nrn - nrp - nrr - nrt - nru - nrx - nrz - nsa - nsb - nsc - nsd - nse - nsf - nsg - nsh - nsi - nsk - nsl - nsm - nsn - nso - nsp - nsq - nsr - nss - nst - nsu - nsv - nsw - nsx - nsy - nsz - ntd - nte - ntg - nti - ntj - ntk - ntm - nto - ntp - ntr - ntu - ntw - ntx - nty - ntz - nua - nuc - nud - nue - nuf - nug - nuh - nui - nuj - nuk - nul - num - nun - nuo - nup - nuq - nur - nus - nut - nuu - nuv - nuw - nux - nuy - nuz - nvh - nvm - nvo - nwa - nwb - nwc - nwe - nwg - nwi - nwm - nwo - nwr - nww - nwx - nwy - nxa - nxd - nxe - nxg - nxi - nxk - nxl - nxm - nxn - nxo - nxq - nxr - nxx - nya - nyb - nyc - nyd - nye - nyf - nyg - nyh - nyi - nyj - nyk - nyl - nym - nyn - nyo - nyp - nyq - nyr - nys - nyt - nyu - nyv - nyw - nyx - nyy - nza - nzb - nzd - nzi - nzk - nzm - nzs - nzu - nzy - nzz - oaa - oac - oar - oav - obi - obk - obl - obm - obo - obr - obt - obu - oca - och - oci - ocm - oco - ocu - oda - odk - odt - odu - ofo - ofs - ofu - ogb - ogc - oge - ogg - ogo - ogu - oht - ohu - oia - oie - oin - ojb - ojc - ojg - oji - ojp - ojs - ojv - ojw - oka - okb - okc - okd - oke - okg - okh - oki - okj - okk - okl - okm - okn - oko - okr - oks - oku - okv - okx - okz - ola - old - ole - olk - olm - olo - olr - olt - olu - oma - omb - omc - omg - omi - omk - oml - omn - omo - omp - omr - omt - omu - omw - omx - omy - ona - onb - one - ong - oni - onj - onk - onn - ono - onp - onr - ons - ont - onu - onw - onx - ood - oog - oon - oor - oos - opa - opk - opm - opo - opt - opy - ora - orc - ore - org - orh - ori - orm - orn - oro - orr - ors - ort - oru - orv - orw - orx - ory - orz - osa - osc - osi - osn - oso - osp - oss - ost - osu - osx - ota - otb - otd - ote - oti - otk - otl - otm - otn - otq - otr - ots - ott - otu - otw - otx - oty - otz - oua - oub - oue - oui - oum - ovd - owi - owl - oyb - oyd - oym - oyy - ozm - pab - pac - pad - pae - paf - pag - pah - pai - pak - pal - pam - pan - pao - pap - paq - par - pas - pau - pav - paw - pax - pay - paz - pbb - pbc - pbe - pbf - pbg - pbh - pbi - pbl - pbm - pbn - pbo - pbp - pbr - pbs - pbt - pbu - pbv - pby - pca - pcb - pcc - pcd - pce - pcf - pcg - pch - pci - pcj - pck - pcl - pcm - pcn - pcp - pcw - pda - pdc - pdi - pdn - pdo - pdt - pdu - pea - peb - ped - pee - pef - peg - peh - pei - pej - pek - pel - pem - peo - pep - peq - pes - pev - pex - pey - pez - pfa - pfe - pfl - pga - pgd - pgg - pgi - pgk - pgl - pgn - pgs - pgu - pgz - pha - phd - phg - phh - phj - phk - phl - phm - phn - pho - phq - phr - pht - phu - phv - phw - pia - pib - pic - pid - pie - pif - pig - pih - pij - pil - pim - pin - pio - pip - pir - pis - pit - piu - piv - piw - pix - piy - piz - pjt - pka - pkb - pkc - pkg - pkh - pkn - pko - pkp - pkr - pks - pkt - pku - pla - plb - plc - pld - ple - plg - plh - pli - plj - plk - pll - pln - plo - plq - plr - pls - plt - plu - plv - plw - ply - plz - pma - pmb - pmd - pme - pmf - pmh - pmi - pmj - pmk - pml - pmm - pmn - pmo - pmq - pmr - pms - pmt - pmw - pmx - pmy - pmz - pna - pnb - pnc - pnd - pne - png - pnh - pni - pnj - pnk - pnl - pnm - pnn - pno - pnp - pnq - pnr - pns - pnt - pnu - pnv - pnw - pnx - pny - pnz - poc - poe - pof - pog - poh - poi - pok - pol - pom - pon - poo - pop - poq - por - pos - pot - pov - pow - pox - poy - ppe - ppi - ppk - ppl - ppm - ppn - ppo - ppp - ppq - pps - ppt - ppu - pqa - pqm - prc - prd - pre - prf - prg - prh - pri - prk - prl - prm - prn - pro - prp - prq - prr - prs - prt - pru - prw - prx - prz - psa - psc - psd - pse - psg - psh - psi - psl - psm - psn - pso - psp - psq - psr - pss - pst - psu - psw - psy - pta - pth - pti - ptn - pto - ptp - ptq - ptr - ptt - ptu - ptv - ptw - pty - pua - pub - puc - pud - pue - puf - pug - pui - puj - pum - puo - pup - puq - pur - pus - put - puu - puw - pux - puy - pwa - pwb - pwg - pwi - pwm - pwn - pwo - pwr - pww - pxm - pye - pym - pyn - pys - pyu - pyx - pyy - pzh - pzn - qua - qub - quc - qud - que - quf - qug - quh - qui - quk - qul - qum - qun - qup - quq - qur - qus - quv - quw - qux - quy - quz - qva - qvc - qve - qvh - qvi - qvj - qvl - qvm - qvn - qvo - qvp - qvs - qvw - qvy - qvz - qwa - qwc - qwh - qwm - qws - qwt - qxa - qxc - qxh - qxl - qxn - qxo - qxp - qxq - qxr - qxs - qxt - qxu - qxw - qya - qyp - raa - rab - rac - rad - raf - rag - rah - rai - raj - rak - ral - ram - ran - rao - rap - raq - rar - ras - rat - rau - rav - raw - rax - ray - raz - rbb - rbk - rbl - rbp - rcf - rdb - rea - reb - ree - reg - rei - rej - rel - rem - ren - rer - res - ret - rey - rga - rge - rgk - rgn - rgr - rgs - rgu - rhg - rhp - ria - rib - rif - ril - rim - rin - rir - rit - riu - rjg - rji - rjs - rka - rkb - rkh - rki - rkm - rkt - rkw - rma - rmb - rmc - rmd - rme - rmf - rmg - rmh - rmi - rmk - rml - rmm - rmn - rmo - rmp - rmq - rms - rmt - rmu - rmv - rmw - rmx - rmy - rmz - rnb - rnd - rng - rnl - rnn - rnp - rnr - rnw - rob - roc - rod - roe - rof - rog - roh - rol - rom - ron - roo - rop - ror - rou - row - rpn - rpt - rri - rro - rrt - rsb - rsk - rsl - rsm - rsn - rtc - rth - rtm - rts - rtw - rub - ruc - rue - ruf - rug - ruh - rui - ruk - run - ruo - rup - ruq - rus - rut - ruu - ruy - ruz - rwa - rwk - rwl - rwm - rwo - rwr - rxd - rxw - ryn - rys - ryu - rzh - saa - sab - sac - sad - sae - saf - sag - sah - saj - sak - sam - san - sao - saq - sar - sas - sat - sau - sav - saw - sax - say - saz - sba - sbb - sbc - sbd - sbe - sbf - sbg - sbh - sbi - sbj - sbk - sbl - sbm - sbn - sbo - sbp - sbq - sbr - sbs - sbt - sbu - sbv - sbw - sbx - sby - sbz - scb - sce - scf - scg - sch - sci - sck - scl - scn - sco - scp - scq - scs - sct - scu - scv - scw - scx - sda - sdb - sdc - sde - sdf - sdg - sdh - sdj - sdk - sdl - sdn - sdo - sdp - sdq - sdr - sds - sdt - sdu - sdx - sdz - sea - seb - sec - sed - see - sef - seg - seh - sei - sej - sek - sel - sen - seo - sep - seq - ser - ses - set - seu - sev - sew - sey - sez - sfb - sfe - sfm - sfs - sfw - sga - sgb - sgc - sgd - sge - sgg - sgh - sgi - sgj - sgk - sgm - sgp - sgr - sgs - sgt - sgu - sgw - sgx - sgy - sgz - sha - shb - shc - shd - she - shg - shh - shi - shj - shk - shl - shm - shn - sho - shp - shq - shr - shs - sht - shu - shv - shw - shx - shy - shz - sia - sib - sid - sie - sif - sig - sih - sii - sij - sik - sil - sim - sin - sip - siq - sir - sis - siu - siv - siw - six - siy - siz - sja - sjb - sjd - sje - sjg - sjk - sjl - sjm - sjn - sjo - sjp - sjr - sjs - sjt - sju - sjw - ska - skb - skc - skd - ske - skf - skg - skh - ski - skj - skm - skn - sko - skp - skq - skr - sks - skt - sku - skv - skw - skx - sky - skz - slc - sld - sle - slf - slg - slh - sli - slj - slk - sll - slm - sln - slp - slq - slr - sls - slt - slu - slv - slw - slx - sly - slz - sma - smb - smc - sme - smf - smg - smh - smj - smk - sml - smm - smn - smo - smp - smq - smr - sms - smt - smu - smv - smw - smx - smy - smz - sna - snc - snd - sne - snf - sng - sni - snj - snk - snl - snm - snn - sno - snp - snq - snr - sns - snu - snv - snw - snx - sny - snz - soa - sob - soc - sod - soe - sog - soh - soi - soj - sok - sol - som - soo - sop - soq - sor - sos - sot - sou - sov - sow - sox - soy - soz - spa - spb - spc - spd - spe - spg - spi - spk - spl - spm - spn - spo - spp - spq - spr - sps - spt - spu - spv - spx - spy - sqa - sqh - sqi - sqk - sqm - sqn - sqo - sqq - sqr - sqs - sqt - squ - sqx - sra - srb - src - srd - sre - srf - srg - srh - sri - srk - srl - srm - srn - sro - srp - srq - srr - srs - srt - sru - srv - srw - srx - sry - srz - ssb - ssc - ssd - sse - ssf - ssg - ssh - ssi - ssj - ssk - ssl - ssm - ssn - sso - ssp - ssq - ssr - sss - sst - ssu - ssv - ssw - ssx - ssy - ssz - sta - stb - std - ste - stf - stg - sth - sti - stj - stk - stl - stm - stn - sto - stp - stq - str - sts - stt - stu - stv - stw - sty - sua - sub - suc - sue - sug - sui - suj - suk - sun - suo - suq - sur - sus - sut - suv - suw - sux - suy - suz - sva - svb - svc - sve - svk - svm - svs - svx - swa - swb - swc - swe - swf - swg - swh - swi - swj - swk - swl - swm - swn - swo - swp - swq - swr - sws - swt - swu - swv - sww - swx - swy - sxb - sxc - sxe - sxg - sxk - sxl - sxm - sxn - sxo - sxr - sxs - sxu - sxw - sya - syb - syc - syi - syk - syl - sym - syn - syo - syr - sys - syw - syx - syy - sza - szb - szc - szd - sze - szg - szl - szn - szp - szs - szv - szw - szy - taa - tab - tac - tad - tae - taf - tag - tah - taj - tak - tal - tam - tan - tao - tap - taq - tar - tas - tat - tau - tav - taw - tax - tay - taz - tba - tbc - tbd - tbe - tbf - tbg - tbh - tbi - tbj - tbk - tbl - tbm - tbn - tbo - tbp - tbr - tbs - tbt - tbu - tbv - tbw - tbx - tby - tbz - tca - tcb - tcc - tcd - tce - tcf - tcg - tch - tci - tck - tcl - tcm - tcn - tco - tcp - tcq - tcs - tct - tcu - tcw - tcx - tcy - tcz - tda - tdb - tdc - tdd - tde - tdf - tdg - tdh - tdi - tdj - tdk - tdl - tdm - tdn - tdo - tdq - tdr - tds - tdt - tdv - tdx - tdy - tea - teb - tec - ted - tee - tef - teg - teh - tei - tek - tel - tem - ten - teo - tep - teq - ter - tes - tet - teu - tev - tew - tex - tey - tez - tfi - tfn - tfo - tfr - tft - tga - tgb - tgc - tgd - tge - tgf - tgh - tgi - tgj - tgk - tgl - tgn - tgo - tgp - tgq - tgr - tgs - tgt - tgu - tgv - tgw - tgx - tgy - tgz - tha - thd - the - thf - thh - thi - thk - thl - thm - thn - thp - thq - thr - ths - tht - thu - thv - thy - thz - tia - tic - tif - tig - tih - tii - tij - tik - til - tim - tin - tio - tip - tiq - tir - tis - tit - tiu - tiv - tiw - tix - tiy - tiz - tja - tjg - tji - tjj - tjl - tjm - tjn - tjo - tjp - tjs - tju - tjw - tka - tkb - tkd - tke - tkf - tkg - tkl - tkm - tkn - tkp - tkq - tkr - tks - tkt - tku - tkv - tkw - tkx - tkz - tla - tlb - tlc - tld - tlf - tlg - tlh - tli - tlj - tlk - tll - tlm - tln - tlo - tlp - tlq - tlr - tls - tlt - tlu - tlv - tlx - tly - tma - tmb - tmc - tmd - tme - tmf - tmg - tmh - tmi - tmj - tmk - tml - tmm - tmn - tmo - tmq - tmr - tms - tmt - tmu - tmv - tmw - tmy - tmz - tna - tnb - tnc - tnd - tng - tnh - tni - tnk - tnl - tnm - tnn - tno - tnp - tnq - tnr - tns - tnt - tnu - tnv - tnw - tnx - tny - tnz - tob - toc - tod - tof - tog - toh - toi - toj - tok - tol - tom - ton - too - top - toq - tor - tos - tou - tov - tow - tox - toy - toz - tpa - tpc - tpe - tpf - tpg - tpi - tpj - tpk - tpl - tpm - tpn - tpo - tpp - tpq - tpr - tpt - tpu - tpv - tpw - tpx - tpy - tpz - tqb - tql - tqm - tqn - tqo - tqp - tqq - tqr - tqt - tqu - tqw - tra - trb - trc - trd - tre - trf - trg - trh - tri - trj - trl - trm - trn - tro - trp - trq - trr - trs - trt - tru - trv - trw - trx - try - trz - tsa - tsb - tsc - tsd - tse - tsg - tsh - tsi - tsj - tsk - tsl - tsm - tsn - tso - tsp - tsq - tsr - tss - tst - tsu - tsv - tsw - tsx - tsy - tsz - tta - ttb - ttc - ttd - tte - ttf - ttg - tth - tti - ttj - ttk - ttl - ttm - ttn - tto - ttp - ttq - ttr - tts - ttt - ttu - ttv - ttw - tty - ttz - tua - tub - tuc - tud - tue - tuf - tug - tuh - tui - tuj - tuk - tul - tum - tun - tuo - tuq - tur - tus - tuu - tuv - tux - tuy - tuz - tva - tvd - tve - tvk - tvl - tvm - tvn - tvo - tvs - tvt - tvu - tvw - tvx - tvy - twa - twb - twc - twd - twe - twf - twg - twh - twi - twl - twm - twn - two - twp - twq - twr - twt - twu - tww - twx - twy - txa - txb - txc - txe - txg - txh - txi - txj - txm - txn - txo - txq - txr - txs - txt - txu - txx - txy - tya - tye - tyh - tyi - tyj - tyl - tyn - typ - tyr - tys - tyt - tyu - tyv - tyx - tyy - tyz - tza - tzh - tzj - tzl - tzm - tzn - tzo - tzx - uam - uan - uar - uba - ubi - ubl - ubr - ubu - uby - uda - ude - udg - udi - udj - udl - udm - udu - ues - ufi - uga - ugb - uge - ugh - ugn - ugo - ugy - uha - uhn - uig - uis - uiv - uji - uka - ukg - ukh - uki - ukk - ukl - ukp - ukq - ukr - uks - uku - ukv - ukw - uky - ula - ulb - ulc - ule - ulf - uli - ulk - ull - ulm - uln - ulu - ulw - uma - umb - umc - umd - umg - umi - umm - umn - umo - ump - umr - ums - umu - una - und - une - ung - uni - unk - unm - unn - unr - unu - unx - unz - uon - upi - upv - ura - urb - urc - urd - ure - urf - urg - urh - uri - urk - url - urm - urn - uro - urp - urr - urt - uru - urv - urw - urx - ury - urz - usa - ush - usi - usk - usp - uss - usu - uta - ute - uth - utp - utr - utu - uum - uur - uuu - uve - uvh - uvl - uwa - uya - uzb - uzn - uzs - vaa - vae - vaf - vag - vah - vai - vaj - val - vam - van - vao - vap - var - vas - vau - vav - vay - vbb - vbk - vec - ved - vel - vem - ven - veo - vep - ver - vgr - vgt - vic - vid - vie - vif - vig - vil - vin - vis - vit - viv - vka - vkj - vkk - vkl - vkm - vkn - vko - vkp - vkt - vku - vkz - vlp - vls - vma - vmb - vmc - vmd - vme - vmf - vmg - vmh - vmi - vmj - vmk - vml - vmm - vmp - vmq - vmr - vms - vmu - vmv - vmw - vmx - vmy - vmz - vnk - vnm - vnp - vol - vor - vot - vra - vro - vrs - vrt - vsi - vsl - vsv - vto - vum - vun - vut - vwa - waa - wab - wac - wad - wae - waf - wag - wah - wai - waj - wal - wam - wan - wao - wap - waq - war - was - wat - wau - wav - waw - wax - way - waz - wba - wbb - wbe - wbf - wbh - wbi - wbj - wbk - wbl - wbm - wbp - wbq - wbr - wbs - wbt - wbv - wbw - wca - wci - wdd - wdg - wdj - wdk - wdt - wdu - wdy - wea - wec - wed - weg - weh - wei - wem - weo - wep - wer - wes - wet - weu - wew - wfg - wga - wgb - wgg - wgi - wgo - wgu - wgy - wha - whg - whk - whu - wib - wic - wie - wif - wig - wih - wii - wij - wik - wil - wim - win - wir - wiu - wiv - wiy - wja - wji - wka - wkb - wkd - wkl - wkr - wku - wkw - wky - wla - wlc - wle - wlg - wlh - wli - wlk - wll - wlm - wln - wlo - wlr - wls - wlu - wlv - wlw - wlx - wly - wma - wmb - wmc - wmd - wme - wmg - wmh - wmi - wmm - wmn - wmo - wms - wmt - wmw - wmx - wnb - wnc - wnd - wne - wng - wni - wnk - wnm - wnn - wno - wnp - wnu - wnw - wny - woa - wob - woc - wod - woe - wof - wog - woi - wok - wol - wom - won - woo - wor - wos - wow - woy - wpc - wrb - wrg - wrh - wri - wrk - wrl - wrm - wrn - wro - wrp - wrr - wrs - wru - wrv - wrw - wrx - wry - wrz - wsa - wsg - wsi - wsk - wsr - wss - wsu - wsv - wtf - wth - wti - wtk - wtm - wtw - wua - wub - wud - wuh - wul - wum - wun - wur - wut - wuu - wuv - wux - wuy - wwa - wwb - wwo - wwr - www - wxa - wxw - wyb - wyi - wym - wyn - wyr - wyy - xaa - xab - xac - xad - xae - xag - xai - xaj - xak - xal - xam - xan - xao - xap - xaq - xar - xas - xat - xau - xav - xaw - xay - xbb - xbc - xbd - xbe - xbg - xbi - xbj - xbm - xbn - xbo - xbp - xbr - xbw - xby - xcb - xcc - xce - xcg - xch - xcl - xcm - xcn - xco - xcr - xct - xcu - xcv - xcw - xcy - xda - xdc - xdk - xdm - xdo - xdq - xdy - xeb - xed - xeg - xel - xem - xep - xer - xes - xet - xeu - xfa - xga - xgb - xgd - xgf - xgg - xgi - xgl - xgm - xgr - xgu - xgw - xha - xhc - xhd - xhe - xhm - xho - xhr - xht - xhu - xhv - xib - xii - xil - xin - xir - xis - xiv - xiy - xjb - xjt - xka - xkb - xkc - xkd - xke - xkf - xkg - xki - xkj - xkk - xkl - xkn - xko - xkp - xkq - xkr - xks - xkt - xku - xkv - xkw - xkx - xky - xkz - xla - xlb - xlc - xld - xle - xlg - xli - xln - xlo - xlp - xls - xlu - xly - xma - xmb - xmc - xmd - xme - xmf - xmg - xmh - xmj - xmk - xml - xmm - xmn - xmo - xmp - xmq - xmr - xms - xmt - xmu - xmv - xmw - xmx - xmy - xmz - xna - xnb - xng - xnh - xni - xnj - xnk - xnm - xnn - xno - xnq - xnr - xns - xnt - xnu - xny - xnz - xoc - xod - xog - xoi - xok - xom - xon - xoo - xop - xor - xow - xpa - xpb - xpc - xpd - xpe - xpf - xpg - xph - xpi - xpj - xpk - xpl - xpm - xpn - xpo - xpp - xpq - xpr - xps - xpt - xpu - xpv - xpw - xpx - xpy - xpz - xqa - xqt - xra - xrb - xrd - xre - xrg - xri - xrm - xrn - xrr - xrt - xru - xrw - xsa - xsb - xsc - xsd - xse - xsh - xsi - xsj - xsl - xsm - xsn - xso - xsp - xsq - xsr - xss - xsu - xsv - xsy - xta - xtb - xtc - xtd - xte - xtg - xth - xti - xtj - xtl - xtm - xtn - xto - xtp - xtq - xtr - xts - xtt - xtu - xtv - xtw - xty - xua - xub - xud - xug - xuj - xul - xum - xun - xuo - xup - xur - xut - xuu - xve - xvi - xvn - xvo - xvs - xwa - xwc - xwd - xwe - xwg - xwj - xwk - xwl - xwo - xwr - xwt - xww - xxb - xxk - xxm - xxr - xxt - xya - xyb - xyj - xyk - xyl - xyt - xyy - xzh - xzm - xzp - yaa - yab - yac - yad - yae - yaf - yag - yah - yai - yaj - yak - yal - yam - yan - yao - yap - yaq - yar - yas - yat - yau - yav - yaw - yax - yay - yaz - yba - ybb - ybe - ybh - ybi - ybj - ybk - ybl - ybm - ybn - ybo - ybx - yby - ych - ycl - ycn - ycp - yda - ydd - yde - ydg - ydk - yea - yec - yee - yei - yej - yel - yer - 'yes' - yet - yeu - yev - yey - yga - ygi - ygl - ygm - ygp - ygr - ygs - ygu - ygw - yha - yhd - yhl - yhs - yia - yid - yif - yig - yih - yii - yij - yik - yil - yim - yin - yip - yiq - yir - yis - yit - yiu - yiv - yix - yiz - yka - ykg - yki - ykk - ykl - ykm - ykn - yko - ykr - ykt - yku - yky - yla - ylb - yle - ylg - yli - yll - ylm - yln - ylo - ylr - ylu - yly - ymb - ymc - ymd - yme - ymg - ymh - ymi - ymk - yml - ymm - ymn - ymo - ymp - ymq - ymr - yms - ymx - ymz - yna - ynd - yne - yng - ynk - ynl - ynn - yno - ynq - yns - ynu - yob - yog - yoi - yok - yol - yom - yon - yor - yot - yox - yoy - ypa - ypb - ypg - yph - ypm - ypn - ypo - ypp - ypz - yra - yrb - yre - yrk - yrl - yrm - yrn - yro - yrs - yrw - yry - ysc - ysd - ysg - ysl - ysm - ysn - yso - ysp - ysr - yss - ysy - yta - ytl - ytp - ytw - yty - yua - yub - yuc - yud - yue - yuf - yug - yui - yuj - yuk - yul - yum - yun - yup - yuq - yur - yut - yuw - yux - yuy - yuz - yva - yvt - ywa - ywg - ywl - ywn - ywq - ywr - ywt - ywu - yww - yxa - yxg - yxl - yxm - yxu - yxy - yyr - yyu - yyz - yzg - yzk - zaa - zab - zac - zad - zae - zaf - zag - zah - zai - zaj - zak - zal - zam - zao - zap - zaq - zar - zas - zat - zau - zav - zaw - zax - zay - zaz - zba - zbc - zbe - zbl - zbt - zbu - zbw - zca - zcd - zch - zdj - zea - zeg - zeh - zen - zga - zgb - zgh - zgm - zgn - zgr - zha - zhb - zhd - zhi - zhn - zho - zhw - zia - zib - zik - zil - zim - zin - ziw - ziz - zka - zkb - zkd - zkg - zkh - zkk - zkn - zko - zkp - zkr - zkt - zku - zkv - zkz - zla - zlj - zlm - zln - zlq - zma - zmb - zmc - zmd - zme - zmf - zmg - zmh - zmi - zmj - zmk - zml - zmm - zmn - zmo - zmp - zmq - zmr - zms - zmt - zmu - zmv - zmw - zmx - zmy - zmz - zna - zne - zng - znk - zns - zoc - zoh - zom - zoo - zoq - zor - zos - zpa - zpb - zpc - zpd - zpe - zpf - zpg - zph - zpi - zpj - zpk - zpl - zpm - zpn - zpo - zpp - zpq - zpr - zps - zpt - zpu - zpv - zpw - zpx - zpy - zpz - zqe - zra - zrg - zrn - zro - zrp - zrs - zsa - zsk - zsl - zsm - zsr - zsu - zte - ztg - ztl - ztm - ztn - ztp - ztq - zts - ztt - ztu - ztx - zty - zua - zuh - zul - zum - zun - zuy - zwa - zxx - zyb - zyg - zyj - zyn - zyp - zza - zzj maxLength: 3 minLength: 3 - type: 'null' title: Preferred Language conversations_visible_to_admins: type: boolean title: Conversations Visible To Admins description: Whether the user's conversations are visible to the admins. default: true user_model_visible_to_admins: type: boolean title: User Model Visible To Admins description: Whether the user's user model is visible to the admins. default: true timezone: anyOf: - type: string enum: - Africa/Abidjan - Africa/Accra - Africa/Addis_Ababa - Africa/Algiers - Africa/Asmara - Africa/Asmera - Africa/Bamako - Africa/Bangui - Africa/Banjul - Africa/Bissau - Africa/Blantyre - Africa/Brazzaville - Africa/Bujumbura - Africa/Cairo - Africa/Casablanca - Africa/Ceuta - Africa/Conakry - Africa/Dakar - Africa/Dar_es_Salaam - Africa/Djibouti - Africa/Douala - Africa/El_Aaiun - Africa/Freetown - Africa/Gaborone - Africa/Harare - Africa/Johannesburg - Africa/Juba - Africa/Kampala - Africa/Khartoum - Africa/Kigali - Africa/Kinshasa - Africa/Lagos - Africa/Libreville - Africa/Lome - Africa/Luanda - Africa/Lubumbashi - Africa/Lusaka - Africa/Malabo - Africa/Maputo - Africa/Maseru - Africa/Mbabane - Africa/Mogadishu - Africa/Monrovia - Africa/Nairobi - Africa/Ndjamena - Africa/Niamey - Africa/Nouakchott - Africa/Ouagadougou - Africa/Porto-Novo - Africa/Sao_Tome - Africa/Timbuktu - Africa/Tripoli - Africa/Tunis - Africa/Windhoek - America/Adak - America/Anchorage - America/Anguilla - America/Antigua - America/Araguaina - America/Argentina/Buenos_Aires - America/Argentina/Catamarca - America/Argentina/ComodRivadavia - America/Argentina/Cordoba - America/Argentina/Jujuy - America/Argentina/La_Rioja - America/Argentina/Mendoza - America/Argentina/Rio_Gallegos - America/Argentina/Salta - America/Argentina/San_Juan - America/Argentina/San_Luis - America/Argentina/Tucuman - America/Argentina/Ushuaia - America/Aruba - America/Asuncion - America/Atikokan - America/Atka - America/Bahia - America/Bahia_Banderas - America/Barbados - America/Belem - America/Belize - America/Blanc-Sablon - America/Boa_Vista - America/Bogota - America/Boise - America/Buenos_Aires - America/Cambridge_Bay - America/Campo_Grande - America/Cancun - America/Caracas - America/Catamarca - America/Cayenne - America/Cayman - America/Chicago - America/Chihuahua - America/Ciudad_Juarez - America/Coral_Harbour - America/Cordoba - America/Costa_Rica - America/Coyhaique - America/Creston - America/Cuiaba - America/Curacao - America/Danmarkshavn - America/Dawson - America/Dawson_Creek - America/Denver - America/Detroit - America/Dominica - America/Edmonton - America/Eirunepe - America/El_Salvador - America/Ensenada - America/Fort_Nelson - America/Fort_Wayne - America/Fortaleza - America/Glace_Bay - America/Godthab - America/Goose_Bay - America/Grand_Turk - America/Grenada - America/Guadeloupe - America/Guatemala - America/Guayaquil - America/Guyana - America/Halifax - America/Havana - America/Hermosillo - America/Indiana/Indianapolis - America/Indiana/Knox - America/Indiana/Marengo - America/Indiana/Petersburg - America/Indiana/Tell_City - America/Indiana/Vevay - America/Indiana/Vincennes - America/Indiana/Winamac - America/Indianapolis - America/Inuvik - America/Iqaluit - America/Jamaica - America/Jujuy - America/Juneau - America/Kentucky/Louisville - America/Kentucky/Monticello - America/Knox_IN - America/Kralendijk - America/La_Paz - America/Lima - America/Los_Angeles - America/Louisville - America/Lower_Princes - America/Maceio - America/Managua - America/Manaus - America/Marigot - America/Martinique - America/Matamoros - America/Mazatlan - America/Mendoza - America/Menominee - America/Merida - America/Metlakatla - America/Mexico_City - America/Miquelon - America/Moncton - America/Monterrey - America/Montevideo - America/Montreal - America/Montserrat - America/Nassau - America/New_York - America/Nipigon - America/Nome - America/Noronha - America/North_Dakota/Beulah - America/North_Dakota/Center - America/North_Dakota/New_Salem - America/Nuuk - America/Ojinaga - America/Panama - America/Pangnirtung - America/Paramaribo - America/Phoenix - America/Port-au-Prince - America/Port_of_Spain - America/Porto_Acre - America/Porto_Velho - America/Puerto_Rico - America/Punta_Arenas - America/Rainy_River - America/Rankin_Inlet - America/Recife - America/Regina - America/Resolute - America/Rio_Branco - America/Rosario - America/Santa_Isabel - America/Santarem - America/Santiago - America/Santo_Domingo - America/Sao_Paulo - America/Scoresbysund - America/Shiprock - America/Sitka - America/St_Barthelemy - America/St_Johns - America/St_Kitts - America/St_Lucia - America/St_Thomas - America/St_Vincent - America/Swift_Current - America/Tegucigalpa - America/Thule - America/Thunder_Bay - America/Tijuana - America/Toronto - America/Tortola - America/Vancouver - America/Virgin - America/Whitehorse - America/Winnipeg - America/Yakutat - America/Yellowknife - Antarctica/Casey - Antarctica/Davis - Antarctica/DumontDUrville - Antarctica/Macquarie - Antarctica/Mawson - Antarctica/McMurdo - Antarctica/Palmer - Antarctica/Rothera - Antarctica/South_Pole - Antarctica/Syowa - Antarctica/Troll - Antarctica/Vostok - Arctic/Longyearbyen - Asia/Aden - Asia/Almaty - Asia/Amman - Asia/Anadyr - Asia/Aqtau - Asia/Aqtobe - Asia/Ashgabat - Asia/Ashkhabad - Asia/Atyrau - Asia/Baghdad - Asia/Bahrain - Asia/Baku - Asia/Bangkok - Asia/Barnaul - Asia/Beirut - Asia/Bishkek - Asia/Brunei - Asia/Calcutta - Asia/Chita - Asia/Choibalsan - Asia/Chongqing - Asia/Chungking - Asia/Colombo - Asia/Dacca - Asia/Damascus - Asia/Dhaka - Asia/Dili - Asia/Dubai - Asia/Dushanbe - Asia/Famagusta - Asia/Gaza - Asia/Harbin - Asia/Hebron - Asia/Ho_Chi_Minh - Asia/Hong_Kong - Asia/Hovd - Asia/Irkutsk - Asia/Istanbul - Asia/Jakarta - Asia/Jayapura - Asia/Jerusalem - Asia/Kabul - Asia/Kamchatka - Asia/Karachi - Asia/Kashgar - Asia/Kathmandu - Asia/Katmandu - Asia/Khandyga - Asia/Kolkata - Asia/Krasnoyarsk - Asia/Kuala_Lumpur - Asia/Kuching - Asia/Kuwait - Asia/Macao - Asia/Macau - Asia/Magadan - Asia/Makassar - Asia/Manila - Asia/Muscat - Asia/Nicosia - Asia/Novokuznetsk - Asia/Novosibirsk - Asia/Omsk - Asia/Oral - Asia/Phnom_Penh - Asia/Pontianak - Asia/Pyongyang - Asia/Qatar - Asia/Qostanay - Asia/Qyzylorda - Asia/Rangoon - Asia/Riyadh - Asia/Saigon - Asia/Sakhalin - Asia/Samarkand - Asia/Seoul - Asia/Shanghai - Asia/Singapore - Asia/Srednekolymsk - Asia/Taipei - Asia/Tashkent - Asia/Tbilisi - Asia/Tehran - Asia/Tel_Aviv - Asia/Thimbu - Asia/Thimphu - Asia/Tokyo - Asia/Tomsk - Asia/Ujung_Pandang - Asia/Ulaanbaatar - Asia/Ulan_Bator - Asia/Urumqi - Asia/Ust-Nera - Asia/Vientiane - Asia/Vladivostok - Asia/Yakutsk - Asia/Yangon - Asia/Yekaterinburg - Asia/Yerevan - Atlantic/Azores - Atlantic/Bermuda - Atlantic/Canary - Atlantic/Cape_Verde - Atlantic/Faeroe - Atlantic/Faroe - Atlantic/Jan_Mayen - Atlantic/Madeira - Atlantic/Reykjavik - Atlantic/South_Georgia - Atlantic/St_Helena - Atlantic/Stanley - Australia/ACT - Australia/Adelaide - Australia/Brisbane - Australia/Broken_Hill - Australia/Canberra - Australia/Currie - Australia/Darwin - Australia/Eucla - Australia/Hobart - Australia/LHI - Australia/Lindeman - Australia/Lord_Howe - Australia/Melbourne - Australia/NSW - Australia/North - Australia/Perth - Australia/Queensland - Australia/South - Australia/Sydney - Australia/Tasmania - Australia/Victoria - Australia/West - Australia/Yancowinna - Brazil/Acre - Brazil/DeNoronha - Brazil/East - Brazil/West - CET - CST6CDT - Canada/Atlantic - Canada/Central - Canada/Eastern - Canada/Mountain - Canada/Newfoundland - Canada/Pacific - Canada/Saskatchewan - Canada/Yukon - Chile/Continental - Chile/EasterIsland - Cuba - EET - EST - EST5EDT - Egypt - Eire - Etc/GMT - Etc/GMT+0 - Etc/GMT+1 - Etc/GMT+10 - Etc/GMT+11 - Etc/GMT+12 - Etc/GMT+2 - Etc/GMT+3 - Etc/GMT+4 - Etc/GMT+5 - Etc/GMT+6 - Etc/GMT+7 - Etc/GMT+8 - Etc/GMT+9 - Etc/GMT-0 - Etc/GMT-1 - Etc/GMT-10 - Etc/GMT-11 - Etc/GMT-12 - Etc/GMT-13 - Etc/GMT-14 - Etc/GMT-2 - Etc/GMT-3 - Etc/GMT-4 - Etc/GMT-5 - Etc/GMT-6 - Etc/GMT-7 - Etc/GMT-8 - Etc/GMT-9 - Etc/GMT0 - Etc/Greenwich - Etc/UCT - Etc/UTC - Etc/Universal - Etc/Zulu - Europe/Amsterdam - Europe/Andorra - Europe/Astrakhan - Europe/Athens - Europe/Belfast - Europe/Belgrade - Europe/Berlin - Europe/Bratislava - Europe/Brussels - Europe/Bucharest - Europe/Budapest - Europe/Busingen - Europe/Chisinau - Europe/Copenhagen - Europe/Dublin - Europe/Gibraltar - Europe/Guernsey - Europe/Helsinki - Europe/Isle_of_Man - Europe/Istanbul - Europe/Jersey - Europe/Kaliningrad - Europe/Kiev - Europe/Kirov - Europe/Kyiv - Europe/Lisbon - Europe/Ljubljana - Europe/London - Europe/Luxembourg - Europe/Madrid - Europe/Malta - Europe/Mariehamn - Europe/Minsk - Europe/Monaco - Europe/Moscow - Europe/Nicosia - Europe/Oslo - Europe/Paris - Europe/Podgorica - Europe/Prague - Europe/Riga - Europe/Rome - Europe/Samara - Europe/San_Marino - Europe/Sarajevo - Europe/Saratov - Europe/Simferopol - Europe/Skopje - Europe/Sofia - Europe/Stockholm - Europe/Tallinn - Europe/Tirane - Europe/Tiraspol - Europe/Ulyanovsk - Europe/Uzhgorod - Europe/Vaduz - Europe/Vatican - Europe/Vienna - Europe/Vilnius - Europe/Volgograd - Europe/Warsaw - Europe/Zagreb - Europe/Zaporozhye - Europe/Zurich - Factory - GB - GB-Eire - GMT - GMT+0 - GMT-0 - GMT0 - Greenwich - HST - Hongkong - Iceland - Indian/Antananarivo - Indian/Chagos - Indian/Christmas - Indian/Cocos - Indian/Comoro - Indian/Kerguelen - Indian/Mahe - Indian/Maldives - Indian/Mauritius - Indian/Mayotte - Indian/Reunion - Iran - Israel - Jamaica - Japan - Kwajalein - Libya - MET - MST - MST7MDT - Mexico/BajaNorte - Mexico/BajaSur - Mexico/General - NZ - NZ-CHAT - Navajo - PRC - PST8PDT - Pacific/Apia - Pacific/Auckland - Pacific/Bougainville - Pacific/Chatham - Pacific/Chuuk - Pacific/Easter - Pacific/Efate - Pacific/Enderbury - Pacific/Fakaofo - Pacific/Fiji - Pacific/Funafuti - Pacific/Galapagos - Pacific/Gambier - Pacific/Guadalcanal - Pacific/Guam - Pacific/Honolulu - Pacific/Johnston - Pacific/Kanton - Pacific/Kiritimati - Pacific/Kosrae - Pacific/Kwajalein - Pacific/Majuro - Pacific/Marquesas - Pacific/Midway - Pacific/Nauru - Pacific/Niue - Pacific/Norfolk - Pacific/Noumea - Pacific/Pago_Pago - Pacific/Palau - Pacific/Pitcairn - Pacific/Pohnpei - Pacific/Ponape - Pacific/Port_Moresby - Pacific/Rarotonga - Pacific/Saipan - Pacific/Samoa - Pacific/Tahiti - Pacific/Tarawa - Pacific/Tongatapu - Pacific/Truk - Pacific/Wake - Pacific/Wallis - Pacific/Yap - Poland - Portugal - ROC - ROK - Singapore - Turkey - UCT - US/Alaska - US/Aleutian - US/Arizona - US/Central - US/East-Indiana - US/Eastern - US/Hawaii - US/Indiana-Starke - US/Michigan - US/Mountain - US/Pacific - US/Samoa - UTC - Universal - W-SU - WET - Zulu - localtime minLength: 1 - type: 'null' title: Timezone audio_keyterms: items: type: string type: array title: Audio Keyterms description: A list of keyterms that are easy to get wrong during audio transcriptions that tend to occur commonly in audio sessions for this user. default: [] type: object title: Preferences src__app__endpoints__organization__get_agent_versions__Response: properties: agent_versions: items: $ref: '#/components/schemas/src__app__endpoints__organization__get_agent_versions__Response__AgentInstance' type: array title: Agent Versions description: The returned agent versions. has_more: type: boolean title: Has More description: Whether there are more agent versions to retrieve. continuation_token: anyOf: - type: integer - type: 'null' title: Continuation Token description: A token to supply to the next request to retrieve the next page of agent versions. Only populated if `has_more` is `True`. type: object required: - agent_versions - has_more - continuation_token title: Response src__app__endpoints__organization__get_service_hierarchical_state_machines__Response: properties: service_hierarchical_state_machines: items: $ref: '#/components/schemas/StateMachineInstance' type: array title: Service Hierarchical State Machines description: The state machines for this organization. has_more: type: boolean title: Has More description: Whether there are more state machines to fetch. continuation_token: anyOf: - type: integer - type: 'null' title: Continuation Token description: A token to supply to the next request to retrieve the next page of state machines. Only populated if `has_more` is `True`. type: object required: - service_hierarchical_state_machines - has_more - continuation_token title: Response State: oneOf: - $ref: '#/components/schemas/ActionState-Output' - $ref: '#/components/schemas/DecisionState-Output' - $ref: '#/components/schemas/RecallState-Output' - $ref: '#/components/schemas/AnnotationState-Output' - $ref: '#/components/schemas/ReflectionState-Output' - $ref: '#/components/schemas/ToolCallState-Output' discriminator: propertyName: type mapping: action: '#/components/schemas/ActionState-Output' annotation: '#/components/schemas/AnnotationState-Output' decision: '#/components/schemas/DecisionState-Output' recall: '#/components/schemas/RecallState-Output' reflection: '#/components/schemas/ReflectionState-Output' tool-call: '#/components/schemas/ToolCallState-Output' RecallState-Output: properties: type: type: string const: recall title: Type name: type: string title: Name description: The name of this state. queries: anyOf: - items: type: string type: array - type: 'null' title: Queries description: A list of queries to perform active memory extraction for. If this field is defined, `requested_information` must be `None`. requested_information: anyOf: - type: string - type: 'null' title: Requested Information description: A piece of query to run active memory query generation for. Active memory extraction will be performed for the generated queries. If this field is defined, `queries` must be `None`. next_state: anyOf: - type: string - prefixItems: - type: string - type: string type: array maxItems: 2 minItems: 2 title: Next State description: 'The state to transition to after the active memory extraction is performed. If it''s a string, the session will transition to a state within this contextual graph. If it''s a tuple, the first element must be of the form `{external_contextual_graph_reference_name}.{state_name}` and represents a state in another contextual graph that the session will transition to, and the second element must be a state in this contextual graph that the session will transition to after reaching the terminal state of the external graph.' type: object required: - type - name - queries - requested_information - next_state title: RecallState description: 'A passthrough state in which an active memory extraction for the provided queries is performed, and the result added to the working memory, before proceeding to another state.' src__app__endpoints__organization__create_agent__Request: properties: agent_name: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__2' description: The name of the new agent. type: object required: - agent_name title: Request src__app__endpoints__organization__create_service_hierarchical_state_machine__Request: properties: state_machine_name: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__2' description: The name of the new state machine. type: object required: - state_machine_name title: Request amigo_lib__mongo__collections__api_key__APIKey__UserInfo: properties: user_id: type: string title: User Id description: The user ID of the creator of this key. org_id: type: string title: Org Id description: The organization ID of the creator of this key. type: object required: - user_id - org_id title: UserInfo AnnotationState-Input: properties: type: type: string const: annotation title: Type name: $ref: '#/components/schemas/StateOrRefName' inner_thought: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' next_state: anyOf: - $ref: '#/components/schemas/StateOrRefName' - prefixItems: - $ref: '#/components/schemas/ExternalStateName' - $ref: '#/components/schemas/StateOrRefName' type: array maxItems: 2 minItems: 2 title: Next State type: object required: - type - name - inner_thought - next_state title: AnnotationState StateOrRefName: type: string pattern: ^[A-Za-z0-9_]+$ src__app__endpoints__organization__create_organization__Request__Preferences: properties: enable_response_recommendation: type: boolean title: Enable Response Recommendation description: Whether to automatically recommend responses to the user if the user hasn't replied to the coach for a while. default: false preferred_language: anyOf: - type: string enum: - aaa - aab - aac - aad - aae - aaf - aag - aah - aai - aak - aal - aan - aao - aap - aaq - aar - aas - aat - aau - aaw - aax - aaz - aba - abb - abc - abd - abe - abf - abg - abh - abi - abj - abk - abl - abm - abn - abo - abp - abq - abr - abs - abt - abu - abv - abw - abx - aby - abz - aca - acb - acd - ace - acf - ach - aci - ack - acl - acm - acn - acp - acq - acr - acs - act - acu - acv - acw - acx - acy - acz - ada - adb - add - ade - adf - adg - adh - adi - adj - adl - adn - ado - adq - adr - ads - adt - adu - adw - adx - ady - adz - aea - aeb - aec - aed - aee - aek - ael - aem - aen - aeq - aer - aes - aeu - aew - aey - aez - afb - afd - afe - afg - afh - afi - afk - afn - afo - afp - afr - afs - aft - afu - afz - aga - agb - agc - agd - age - agf - agg - agh - agi - agj - agk - agl - agm - agn - ago - agq - agr - ags - agt - agu - agv - agw - agx - agy - agz - aha - ahb - ahg - ahh - ahi - ahk - ahl - ahm - ahn - aho - ahp - ahr - ahs - aht - aia - aib - aic - aid - aie - aif - aig - aih - aii - aij - aik - ail - aim - ain - aio - aip - aiq - air - ait - aiw - aix - aiy - aja - ajg - aji - ajn - ajp - ajs - aju - ajw - ajz - aka - akb - akc - akd - ake - akf - akg - akh - aki - akj - akk - akl - akm - ako - akp - akq - akr - aks - akt - aku - akv - akw - akx - aky - akz - ala - alc - ald - ale - alf - alh - ali - alj - alk - all - alm - aln - alo - alp - alq - alr - als - alt - alu - alw - alx - aly - alz - ama - amb - amc - ame - amf - amg - amh - ami - amj - amk - aml - amm - amn - amo - amp - amq - amr - ams - amt - amu - amv - amw - amx - amy - amz - ana - anb - anc - and - ane - anf - ang - anh - ani - anj - ank - anl - anm - ann - ano - anp - anq - anr - ans - ant - anu - anv - anw - anx - any - anz - aoa - aob - aoc - aod - aoe - aof - aog - aoi - aoj - aok - aol - aom - aon - aor - aos - aot - aou - aox - aoz - apb - apc - apd - ape - apf - apg - aph - api - apj - apk - apl - apm - apn - apo - app - apq - apr - aps - apt - apu - apv - apw - apx - apy - apz - aqc - aqd - aqg - aqk - aqm - aqn - aqp - aqr - aqt - aqz - ara - arb - arc - ard - are - arg - arh - ari - arj - ark - arl - arn - aro - arp - arq - arr - ars - aru - arv - arw - arx - ary - arz - asa - asb - asc - ase - asf - asg - ash - asi - asj - ask - asl - asm - asn - aso - asp - asq - asr - ass - ast - asu - asv - asw - asx - asy - asz - ata - atb - atc - atd - ate - atg - ati - atj - atk - atl - atm - atn - ato - atp - atq - atr - ats - att - atu - atv - atw - atx - aty - atz - aua - aub - auc - aud - aug - auh - aui - auj - auk - aul - aum - aun - auo - aup - auq - aur - aut - auu - auw - aux - auy - auz - ava - avb - avd - ave - avi - avk - avl - avm - avn - avo - avs - avt - avu - avv - awa - awb - awc - awe - awg - awh - awi - awk - awm - awn - awo - awr - aws - awt - awu - awv - aww - awx - awy - axb - axe - axg - axk - axl - axm - axx - aya - ayb - ayc - ayd - aye - ayg - ayh - ayi - ayk - ayl - aym - ayn - ayo - ayp - ayq - ayr - ays - ayt - ayu - ayz - aza - azb - azd - aze - azg - azj - azm - azn - azo - azt - azz - baa - bab - bac - bae - baf - bag - bah - baj - bak - bal - bam - ban - bao - bap - bar - bas - bau - bav - baw - bax - bay - bba - bbb - bbc - bbd - bbe - bbf - bbg - bbh - bbi - bbj - bbk - bbl - bbm - bbn - bbo - bbp - bbq - bbr - bbs - bbt - bbu - bbv - bbw - bbx - bby - bca - bcb - bcc - bcd - bce - bcf - bcg - bch - bci - bcj - bck - bcl - bcm - bcn - bco - bcp - bcq - bcr - bcs - bct - bcu - bcv - bcw - bcy - bcz - bda - bdb - bdc - bdd - bde - bdf - bdg - bdh - bdi - bdj - bdk - bdl - bdm - bdn - bdo - bdp - bdq - bdr - bds - bdt - bdu - bdv - bdw - bdx - bdy - bdz - bea - beb - bec - bed - bee - bef - beg - beh - bei - bej - bek - bel - bem - ben - beo - bep - beq - bes - bet - beu - bev - bew - bex - bey - bez - bfa - bfb - bfc - bfd - bfe - bff - bfg - bfh - bfi - bfj - bfk - bfl - bfm - bfn - bfo - bfp - bfq - bfr - bfs - bft - bfu - bfw - bfx - bfy - bfz - bga - bgb - bgc - bgd - bge - bgf - bgg - bgi - bgj - bgk - bgl - bgn - bgo - bgp - bgq - bgr - bgs - bgt - bgu - bgv - bgw - bgx - bgy - bgz - bha - bhb - bhc - bhd - bhe - bhf - bhg - bhh - bhi - bhj - bhl - bhm - bhn - bho - bhp - bhq - bhr - bhs - bht - bhu - bhv - bhw - bhx - bhy - bhz - bia - bib - bid - bie - bif - big - bik - bil - bim - bin - bio - bip - biq - bir - bis - bit - biu - biv - biw - bix - biy - biz - bja - bjb - bjc - bje - bjf - bjg - bjh - bji - bjj - bjk - bjl - bjm - bjn - bjo - bjp - bjr - bjs - bjt - bju - bjv - bjw - bjx - bjy - bjz - bka - bkc - bkd - bkf - bkg - bkh - bki - bkj - bkk - bkl - bkm - bkn - bko - bkp - bkq - bkr - bks - bkt - bku - bkv - bkw - bkx - bky - bkz - bla - blb - blc - bld - ble - blf - blh - bli - blj - blk - bll - blm - bln - blo - blp - blq - blr - bls - blt - blv - blw - blx - bly - blz - bma - bmb - bmc - bmd - bme - bmf - bmg - bmh - bmi - bmj - bmk - bml - bmm - bmn - bmo - bmp - bmq - bmr - bms - bmt - bmu - bmv - bmw - bmx - bmz - bna - bnb - bnc - bnd - bne - bnf - bng - bni - bnj - bnk - bnl - bnm - bnn - bno - bnp - bnq - bnr - bns - bnu - bnv - bnw - bnx - bny - bnz - boa - bob - bod - boe - bof - bog - boh - boi - boj - bok - bol - bom - bon - boo - bop - boq - bor - bos - bot - bou - bov - bow - box - boy - boz - bpa - bpc - bpd - bpe - bpg - bph - bpi - bpj - bpk - bpl - bpm - bpn - bpo - bpp - bpq - bpr - bps - bpt - bpu - bpv - bpw - bpx - bpy - bpz - bqa - bqb - bqc - bqd - bqf - bqg - bqh - bqi - bqj - bqk - bql - bqm - bqn - bqo - bqp - bqq - bqr - bqs - bqt - bqu - bqv - bqw - bqx - bqy - bqz - bra - brb - brc - brd - bre - brf - brg - brh - bri - brj - brk - brl - brm - brn - bro - brp - brq - brr - brs - brt - bru - brv - brw - brx - bry - brz - bsa - bsb - bsc - bse - bsf - bsg - bsh - bsi - bsj - bsk - bsl - bsm - bsn - bso - bsp - bsq - bsr - bss - bst - bsu - bsv - bsw - bsx - bsy - bta - btc - btd - bte - btf - btg - bth - bti - btj - btm - btn - bto - btp - btq - btr - bts - btt - btu - btv - btw - btx - bty - btz - bua - bub - buc - bud - bue - buf - bug - buh - bui - buj - buk - bul - bum - bun - buo - bup - buq - bus - but - buu - buv - buw - bux - buy - buz - bva - bvb - bvc - bvd - bve - bvf - bvg - bvh - bvi - bvj - bvk - bvl - bvm - bvn - bvo - bvp - bvq - bvr - bvt - bvu - bvv - bvw - bvx - bvy - bvz - bwa - bwb - bwc - bwd - bwe - bwf - bwg - bwh - bwi - bwj - bwk - bwl - bwm - bwn - bwo - bwp - bwq - bwr - bws - bwt - bwu - bww - bwx - bwy - bwz - bxa - bxb - bxc - bxd - bxe - bxf - bxg - bxh - bxi - bxj - bxk - bxl - bxm - bxn - bxo - bxp - bxq - bxr - bxs - bxu - bxv - bxw - bxz - bya - byb - byc - byd - bye - byf - byg - byh - byi - byj - byk - byl - bym - byn - byo - byp - byq - byr - bys - byt - byv - byw - byx - byz - bza - bzb - bzc - bzd - bze - bzf - bzg - bzh - bzi - bzj - bzk - bzl - bzm - bzn - bzo - bzp - bzq - bzr - bzs - bzt - bzu - bzv - bzw - bzx - bzy - bzz - caa - cab - cac - cad - cae - caf - cag - cah - caj - cak - cal - cam - can - cao - cap - caq - car - cas - cat - cav - caw - cax - cay - caz - cbb - cbc - cbd - cbg - cbi - cbj - cbk - cbl - cbn - cbo - cbq - cbr - cbs - cbt - cbu - cbv - cbw - cby - ccc - ccd - cce - ccg - cch - ccj - ccl - ccm - cco - ccp - ccr - cda - cde - cdf - cdh - cdi - cdj - cdm - cdn - cdo - cdr - cds - cdy - cdz - cea - ceb - ceg - cek - cen - ces - cet - cey - cfa - cfd - cfg - cfm - cga - cgc - cgg - cgk - cha - chb - chc - chd - che - chf - chg - chh - chj - chk - chl - chm - chn - cho - chp - chq - chr - cht - chu - chv - chw - chx - chy - chz - cia - cib - cic - cid - cie - cih - cik - cim - cin - cip - cir - ciw - ciy - cja - cje - cjh - cji - cjk - cjm - cjn - cjo - cjp - cjs - cjv - cjy - ckb - ckh - ckl - ckm - ckn - cko - ckq - ckr - cks - ckt - cku - ckv - ckx - cky - ckz - cla - clc - cld - cle - clh - cli - clj - clk - cll - clm - clo - clt - clu - clw - cly - cma - cme - cmg - cmi - cml - cmm - cmn - cmo - cmr - cms - cmt - cna - cnb - cnc - cng - cnh - cni - cnk - cnl - cno - cnp - cnq - cnr - cns - cnt - cnu - cnw - cnx - coa - cob - coc - cod - coe - cof - cog - coh - coj - cok - col - com - con - coo - cop - coq - cor - cos - cot - cou - cov - cow - cox - coz - cpa - cpb - cpc - cpg - cpi - cpn - cpo - cps - cpu - cpx - cpy - cqd - cra - crb - crc - crd - cre - crf - crg - crh - cri - crj - crk - crl - crm - crn - cro - crq - crr - crs - crt - crv - crw - crx - cry - crz - csa - csb - csc - csd - cse - csf - csg - csh - csi - csj - csk - csl - csm - csn - cso - csp - csq - csr - css - cst - csv - csw - csx - csy - csz - cta - ctc - ctd - cte - ctg - cth - ctl - ctm - ctn - cto - ctp - cts - ctt - ctu - cty - ctz - cua - cub - cuc - cuh - cui - cuj - cuk - cul - cuo - cup - cuq - cur - cut - cuu - cuv - cuw - cux - cuy - cvg - cvn - cwa - cwb - cwd - cwe - cwg - cwt - cya - cyb - cym - cyo - czh - czk - czn - czo - czt - daa - dac - dad - dae - dag - dah - dai - daj - dak - dal - dam - dan - dao - daq - dar - das - dau - dav - daw - dax - daz - dba - dbb - dbd - dbe - dbf - dbg - dbi - dbj - dbl - dbm - dbn - dbo - dbp - dbq - dbr - dbt - dbu - dbv - dbw - dby - dcc - dcr - dda - ddd - dde - ddg - ddi - ddj - ddn - ddo - ddr - dds - ddw - dec - ded - dee - def - deg - deh - dei - dek - del - dem - den - dep - deq - der - des - deu - dev - dez - dga - dgb - dgc - dgd - dge - dgg - dgh - dgi - dgk - dgl - dgn - dgo - dgr - dgs - dgt - dgw - dgx - dgz - dhd - dhg - dhi - dhl - dhm - dhn - dho - dhr - dhs - dhu - dhv - dhw - dhx - dia - dib - dic - did - dif - dig - dih - dii - dij - dik - dil - dim - din - dio - dip - diq - dir - dis - diu - div - diw - dix - diy - diz - dja - djb - djc - djd - dje - djf - dji - djj - djk - djm - djn - djo - djr - dju - djw - dka - dkg - dkk - dkr - dks - dkx - dlg - dlk - dlm - dln - dma - dmb - dmc - dmd - dme - dmf - dmg - dmk - dml - dmm - dmo - dmr - dms - dmu - dmv - dmw - dmx - dmy - dna - dnd - dne - dng - dni - dnj - dnk - dnn - dno - dnr - dnt - dnu - dnv - dnw - dny - doa - dob - doc - doe - dof - doh - doi - dok - dol - don - doo - dop - doq - dor - dos - dot - dov - dow - dox - doy - doz - dpp - drb - drc - drd - dre - drg - dri - drl - drn - dro - drq - drs - drt - dru - dry - dsb - dse - dsh - dsi - dsl - dsn - dso - dsq - dsz - dta - dtb - dtd - dth - dti - dtk - dtm - dtn - dto - dtp - dtr - dts - dtt - dtu - dty - dua - dub - duc - due - duf - dug - duh - dui - duk - dul - dum - dun - duo - dup - duq - dur - dus - duu - duv - duw - dux - duy - duz - dva - dwa - dwk - dwr - dws - dwu - dww - dwy - dwz - dya - dyb - dyd - dyg - dyi - dym - dyn - dyo - dyu - dyy - dza - dze - dzg - dzl - dzn - dzo - eaa - ebc - ebg - ebk - ebo - ebr - ebu - ecr - ecs - ecy - eee - efa - efe - efi - ega - egl - egm - ego - egy - ehs - ehu - eip - eit - eiv - eja - eka - eke - ekg - eki - ekk - ekl - ekm - eko - ekp - ekr - eky - ele - elh - eli - elk - ell - elm - elo - elu - elx - ema - emb - eme - emg - emi - emk - emm - emn - emp - emq - ems - emu - emw - emx - emy - emz - ena - enb - enc - end - enf - eng - enh - enl - enm - enn - eno - enq - enr - enu - env - enw - enx - eot - epi - epo - era - erg - erh - eri - erk - ero - err - ers - ert - erw - ese - esg - esh - esi - esk - esl - esm - esn - eso - esq - ess - est - esu - esy - etb - etc - eth - etn - eto - etr - ets - ett - etu - etx - etz - eus - eve - evh - evn - ewe - ewo - ext - eya - eyo - eza - eze - faa - fab - fad - faf - fag - fah - fai - faj - fak - fal - fam - fan - fao - fap - far - fas - fat - fau - fax - fay - faz - fbl - fcs - fer - ffi - ffm - fgr - fia - fie - fif - fij - fil - fin - fip - fir - fit - fiw - fkk - fkv - fla - flh - fli - fll - fln - flr - fly - fmp - fmu - fnb - fng - fni - fod - foi - fom - fon - for - fos - fpe - fqs - fra - frc - frd - frk - frm - fro - frp - frq - frr - frs - frt - fry - fse - fsl - fss - fub - fuc - fud - fue - fuf - fuh - fui - fuj - ful - fum - fun - fuq - fur - fut - fuu - fuv - fuy - fvr - fwa - fwe - gaa - gab - gac - gad - gae - gaf - gag - gah - gai - gaj - gak - gal - gam - gan - gao - gap - gaq - gar - gas - gat - gau - gaw - gax - gay - gaz - gba - gbb - gbd - gbe - gbf - gbg - gbh - gbi - gbj - gbk - gbl - gbm - gbn - gbo - gbp - gbq - gbr - gbs - gbu - gbv - gbw - gbx - gby - gbz - gcc - gcd - gce - gcf - gcl - gcn - gcr - gct - gda - gdb - gdc - gdd - gde - gdf - gdg - gdh - gdi - gdj - gdk - gdl - gdm - gdn - gdo - gdq - gdr - gds - gdt - gdu - gdx - gea - geb - gec - ged - gef - geg - geh - gei - gej - gek - gel - geq - ges - gev - gew - gex - gey - gez - gfk - gft - gga - ggb - ggd - gge - ggg - ggk - ggl - ggt - ggu - ggw - gha - ghc - ghe - ghh - ghk - ghl - ghn - gho - ghr - ghs - ght - gia - gib - gic - gid - gie - gig - gih - gii - gil - gim - gin - gip - giq - gir - gis - git - giu - giw - gix - giy - giz - gjk - gjm - gjn - gjr - gju - gka - gkd - gke - gkn - gko - gkp - gku - gla - glb - glc - gld - gle - glg - glh - glj - glk - gll - glo - glr - glu - glv - glw - gly - gma - gmb - gmd - gmg - gmh - gml - gmm - gmn - gmr - gmu - gmv - gmx - gmy - gmz - gna - gnb - gnc - gnd - gne - gng - gnh - gni - gnj - gnk - gnl - gnm - gnn - gno - gnq - gnr - gnt - gnu - gnw - gnz - goa - gob - goc - god - goe - gof - gog - goh - goi - goj - gok - gol - gom - gon - goo - gop - goq - gor - gos - got - gou - gov - gow - gox - goy - goz - gpa - gpe - gpn - gqa - gqi - gqn - gqr - gqu - gra - grb - grc - grd - grg - grh - gri - grj - grm - grn - gro - grq - grr - grs - grt - gru - grv - grw - grx - gry - grz - gse - gsg - gsl - gsm - gsn - gso - gsp - gss - gsw - gta - gtu - gua - gub - guc - gud - gue - guf - gug - guh - gui - guj - guk - gul - gum - gun - guo - gup - guq - gur - gus - gut - guu - guw - gux - guz - gva - gvc - gve - gvf - gvj - gvl - gvm - gvn - gvo - gvp - gvr - gvs - gvy - gwa - gwb - gwc - gwd - gwe - gwf - gwg - gwi - gwj - gwm - gwn - gwr - gwt - gwu - gww - gwx - gxx - gya - gyb - gyd - gye - gyf - gyg - gyi - gyl - gym - gyn - gyo - gyr - gyy - gyz - gza - gzi - gzn - haa - hab - hac - had - hae - haf - hag - hah - hai - haj - hak - hal - ham - han - hao - hap - haq - har - has - hat - hau - hav - haw - hax - hay - haz - hba - hbb - hbn - hbo - hbs - hbu - hca - hch - hdn - hds - hdy - hea - heb - hed - heg - heh - hei - hem - her - hgm - hgw - hhi - hhr - hhy - hia - hib - hid - hif - hig - hih - hii - hij - hik - hil - hin - hio - hir - hit - hiw - hix - hji - hka - hke - hkh - hkk - hkn - hks - hla - hlb - hld - hle - hlt - hlu - hma - hmb - hmc - hmd - hme - hmf - hmg - hmh - hmi - hmj - hmk - hml - hmm - hmn - hmo - hmp - hmq - hmr - hms - hmt - hmu - hmv - hmw - hmy - hmz - hna - hnd - hne - hng - hnh - hni - hnj - hnn - hno - hns - hnu - hoa - hob - hoc - hod - hoe - hoh - hoi - hoj - hol - hom - hoo - hop - hor - hos - hot - hov - how - hoy - hoz - hpo - hps - hra - hrc - hre - hrk - hrm - hro - hrp - hrt - hru - hrv - hrw - hrx - hrz - hsb - hsh - hsl - hsn - hss - hti - hto - hts - htu - htx - hub - huc - hud - hue - huf - hug - huh - hui - huj - huk - hul - hum - hun - huo - hup - huq - hur - hus - hut - huu - huv - huw - hux - huy - huz - hvc - hve - hvk - hvn - hvv - hwa - hwc - hwo - hya - hye - hyw - iai - ian - iar - iba - ibb - ibd - ibe - ibg - ibh - ibl - ibm - ibn - ibo - ibr - ibu - iby - ica - ich - icl - icr - ida - idb - idc - idd - ide - idi - ido - idr - ids - idt - idu - ifa - ifb - ife - iff - ifk - ifm - ifu - ify - igb - ige - igg - igl - igm - ign - igo - igs - igw - ihb - ihi - ihp - ihw - iii - iin - ijc - ije - ijj - ijn - ijs - ike - iki - ikk - ikl - iko - ikp - ikr - iks - ikt - iku - ikv - ikw - ikx - ikz - ila - ilb - ile - ilg - ili - ilk - ilm - ilo - ilp - ils - ilu - ilv - ima - imi - iml - imn - imo - imr - ims - imt - imy - ina - inb - ind - ing - inh - inj - inl - inm - inn - ino - inp - ins - int - inz - ior - iou - iow - ipi - ipk - ipo - iqu - iqw - ire - irh - iri - irk - irn - irr - iru - irx - iry - isa - isc - isd - ise - isg - ish - isi - isk - isl - ism - isn - iso - isr - ist - isu - ita - itb - itd - ite - iti - itk - itl - itm - ito - itr - its - itt - itv - itw - itx - ity - itz - ium - ivb - ivv - iwk - iwm - iwo - iws - ixc - ixl - iya - iyo - iyx - izh - izr - izz - jaa - jab - jac - jad - jae - jaf - jah - jaj - jak - jal - jam - jan - jao - jaq - jas - jat - jau - jav - jax - jay - jaz - jbe - jbi - jbj - jbk - jbm - jbn - jbo - jbr - jbt - jbu - jbw - jcs - jct - jda - jdg - jdt - jeb - jee - jeh - jei - jek - jel - jen - jer - jet - jeu - jgb - jge - jgk - jgo - jhi - jhs - jia - jib - jic - jid - jie - jig - jih - jii - jil - jim - jio - jiq - jit - jiu - jiv - jiy - jje - jjr - jka - jkm - jko - jkp - jkr - jks - jku - jle - jls - jma - jmb - jmc - jmd - jmi - jml - jmn - jmr - jms - jmw - jmx - jna - jnd - jng - jni - jnj - jnl - jns - job - jod - jog - jor - jos - jow - jpa - jpn - jpr - jqr - jra - jrb - jrr - jrt - jru - jsl - jua - jub - juc - jud - juh - jui - juk - jul - jum - jun - juo - jup - jur - jus - jut - juu - juw - juy - jvd - jvn - jwi - jya - jye - jyy - kaa - kab - kac - kad - kae - kaf - kag - kah - kai - kaj - kak - kal - kam - kan - kao - kap - kaq - kas - kat - kau - kav - kaw - kax - kay - kaz - kba - kbb - kbc - kbd - kbe - kbg - kbh - kbi - kbj - kbk - kbl - kbm - kbn - kbo - kbp - kbq - kbr - kbs - kbt - kbu - kbv - kbw - kbx - kby - kbz - kca - kcb - kcc - kcd - kce - kcf - kcg - kch - kci - kcj - kck - kcl - kcm - kcn - kco - kcp - kcq - kcr - kcs - kct - kcu - kcv - kcw - kcx - kcy - kcz - kda - kdc - kdd - kde - kdf - kdg - kdh - kdi - kdj - kdk - kdl - kdm - kdn - kdp - kdq - kdr - kdt - kdu - kdw - kdx - kdy - kdz - kea - keb - kec - ked - kee - kef - keg - keh - kei - kej - kek - kel - kem - ken - keo - kep - keq - ker - kes - ket - keu - kev - kew - kex - key - kez - kfa - kfb - kfc - kfd - kfe - kff - kfg - kfh - kfi - kfj - kfk - kfl - kfm - kfn - kfo - kfp - kfq - kfr - kfs - kft - kfu - kfv - kfw - kfx - kfy - kfz - kga - kgb - kge - kgf - kgg - kgi - kgj - kgk - kgl - kgm - kgn - kgo - kgp - kgq - kgr - kgs - kgt - kgu - kgv - kgw - kgx - kgy - kha - khb - khc - khd - khe - khf - khg - khh - khj - khk - khl - khm - khn - kho - khp - khq - khr - khs - kht - khu - khv - khw - khx - khy - khz - kia - kib - kic - kid - kie - kif - kig - kih - kii - kij - kik - kil - kim - kin - kio - kip - kiq - kir - kis - kit - kiu - kiv - kiw - kix - kiy - kiz - kja - kjb - kjc - kjd - kje - kjg - kjh - kji - kjj - kjk - kjl - kjm - kjn - kjo - kjp - kjq - kjr - kjs - kjt - kju - kjv - kjx - kjy - kjz - kka - kkb - kkc - kkd - kke - kkf - kkg - kkh - kki - kkj - kkk - kkl - kkm - kkn - kko - kkp - kkq - kkr - kks - kkt - kku - kkv - kkw - kkx - kky - kkz - kla - klb - klc - kld - kle - klf - klg - klh - kli - klj - klk - kll - klm - kln - klo - klp - klq - klr - kls - klt - klu - klv - klw - klx - kly - klz - kma - kmb - kmc - kmd - kme - kmf - kmg - kmh - kmi - kmj - kmk - kml - kmm - kmn - kmo - kmp - kmq - kmr - kms - kmt - kmu - kmv - kmw - kmx - kmy - kmz - kna - knb - knc - knd - kne - knf - kng - kni - knj - knk - knl - knm - knn - kno - knp - knq - knr - kns - knt - knu - knv - knw - knx - kny - knz - koa - koc - kod - koe - kof - kog - koh - koi - kok - kol - kom - kon - koo - kop - koq - kor - kos - kot - kou - kov - kow - koy - koz - kpa - kpb - kpc - kpd - kpe - kpf - kpg - kph - kpi - kpj - kpk - kpl - kpm - kpn - kpo - kpq - kpr - kps - kpt - kpu - kpv - kpw - kpx - kpy - kpz - kqa - kqb - kqc - kqd - kqe - kqf - kqg - kqh - kqi - kqj - kqk - kql - kqm - kqn - kqo - kqp - kqq - kqr - kqs - kqt - kqu - kqv - kqw - kqx - kqy - kqz - kra - krb - krc - krd - kre - krf - krh - kri - krj - krk - krl - krn - krp - krr - krs - krt - kru - krv - krw - krx - kry - krz - ksa - ksb - ksc - ksd - kse - ksf - ksg - ksh - ksi - ksj - ksk - ksl - ksm - ksn - kso - ksp - ksq - ksr - kss - kst - ksu - ksv - ksw - ksx - ksy - ksz - kta - ktb - ktc - ktd - kte - ktf - ktg - kth - kti - ktj - ktk - ktl - ktm - ktn - kto - ktp - ktq - kts - ktt - ktu - ktv - ktw - ktx - kty - ktz - kua - kub - kuc - kud - kue - kuf - kug - kuh - kui - kuj - kuk - kul - kum - kun - kuo - kup - kuq - kur - kus - kut - kuu - kuv - kuw - kux - kuy - kuz - kva - kvb - kvc - kvd - kve - kvf - kvg - kvh - kvi - kvj - kvk - kvl - kvm - kvn - kvo - kvp - kvq - kvr - kvt - kvu - kvv - kvw - kvx - kvy - kvz - kwa - kwb - kwc - kwd - kwe - kwf - kwg - kwh - kwi - kwj - kwk - kwl - kwm - kwn - kwo - kwp - kwr - kws - kwt - kwu - kwv - kww - kwx - kwy - kwz - kxa - kxb - kxc - kxd - kxf - kxh - kxi - kxj - kxk - kxm - kxn - kxo - kxp - kxq - kxr - kxs - kxt - kxv - kxw - kxx - kxy - kxz - kya - kyb - kyc - kyd - kye - kyf - kyg - kyh - kyi - kyj - kyk - kyl - kym - kyn - kyo - kyp - kyq - kyr - kys - kyt - kyu - kyv - kyw - kyx - kyy - kyz - kza - kzb - kzc - kzd - kze - kzf - kzg - kzi - kzk - kzl - kzm - kzn - kzo - kzp - kzq - kzr - kzs - kzu - kzv - kzw - kzx - kzy - kzz - laa - lab - lac - lad - lae - laf - lag - lah - lai - laj - lal - lam - lan - lao - lap - laq - lar - las - lat - lau - lav - law - lax - lay - laz - lbb - lbc - lbe - lbf - lbg - lbi - lbj - lbk - lbl - lbm - lbn - lbo - lbq - lbr - lbs - lbt - lbu - lbv - lbw - lbx - lby - lbz - lcc - lcd - lce - lcf - lch - lcl - lcm - lcp - lcq - lcs - lda - ldb - ldd - ldg - ldh - ldi - ldj - ldk - ldl - ldm - ldn - ldo - ldp - ldq - lea - leb - lec - led - lee - lef - leh - lei - lej - lek - lel - lem - len - leo - lep - leq - ler - les - let - leu - lev - lew - lex - ley - lez - lfa - lfn - lga - lgb - lgg - lgh - lgi - lgk - lgl - lgm - lgn - lgo - lgq - lgr - lgt - lgu - lgz - lha - lhh - lhi - lhl - lhm - lhn - lhp - lhs - lht - lhu - lia - lib - lic - lid - lie - lif - lig - lih - lij - lik - lil - lim - lin - lio - lip - liq - lir - lis - lit - liu - liv - liw - lix - liy - liz - lja - lje - lji - ljl - ljp - ljw - ljx - lka - lkb - lkc - lkd - lke - lkh - lki - lkj - lkl - lkm - lkn - lko - lkr - lks - lkt - lku - lky - lla - llb - llc - lld - lle - llf - llg - llh - lli - llj - llk - lll - llm - lln - llp - llq - lls - llu - llx - lma - lmb - lmc - lmd - lme - lmf - lmg - lmh - lmi - lmj - lmk - lml - lmn - lmo - lmp - lmq - lmr - lmu - lmv - lmw - lmx - lmy - lna - lnb - lnd - lng - lnh - lni - lnj - lnl - lnm - lnn - lns - lnu - lnw - lnz - loa - lob - loc - loe - lof - log - loh - loi - loj - lok - lol - lom - lon - loo - lop - loq - lor - los - lot - lou - lov - low - lox - loy - loz - lpa - lpe - lpn - lpo - lpx - lqr - lra - lrc - lre - lrg - lri - lrk - lrl - lrm - lrn - lro - lrr - lrt - lrv - lrz - lsa - lsb - lsc - lsd - lse - lsh - lsi - lsl - lsm - lsn - lso - lsp - lsr - lss - lst - lsv - lsw - lsy - ltc - ltg - lth - lti - ltn - lto - lts - ltu - ltz - lua - lub - luc - lud - lue - luf - lug - lui - luj - luk - lul - lum - lun - luo - lup - luq - lur - lus - lut - luu - luv - luw - luy - luz - lva - lvi - lvk - lvs - lvu - lwa - lwe - lwg - lwh - lwl - lwm - lwo - lws - lwt - lwu - lww - lxm - lya - lyg - lyn - lzh - lzl - lzn - lzz - maa - mab - mad - mae - maf - mag - mah - mai - maj - mak - mal - mam - man - maq - mar - mas - mat - mau - mav - maw - max - maz - mba - mbb - mbc - mbd - mbe - mbf - mbh - mbi - mbj - mbk - mbl - mbm - mbn - mbo - mbp - mbq - mbr - mbs - mbt - mbu - mbv - mbw - mbx - mby - mbz - mca - mcb - mcc - mcd - mce - mcf - mcg - mch - mci - mcj - mck - mcl - mcm - mcn - mco - mcp - mcq - mcr - mcs - mct - mcu - mcv - mcw - mcx - mcy - mcz - mda - mdb - mdc - mdd - mde - mdf - mdg - mdh - mdi - mdj - mdk - mdl - mdm - mdn - mdp - mdq - mdr - mds - mdt - mdu - mdv - mdw - mdx - mdy - mdz - mea - meb - mec - med - mee - mef - meh - mei - mej - mek - mel - mem - men - meo - mep - meq - mer - mes - met - meu - mev - mew - mey - mez - mfa - mfb - mfc - mfd - mfe - mff - mfg - mfh - mfi - mfj - mfk - mfl - mfm - mfn - mfo - mfp - mfq - mfr - mfs - mft - mfu - mfv - mfw - mfx - mfy - mfz - mga - mgb - mgc - mgd - mge - mgf - mgg - mgh - mgi - mgj - mgk - mgl - mgm - mgn - mgo - mgp - mgq - mgr - mgs - mgt - mgu - mgv - mgw - mgy - mgz - mha - mhb - mhc - mhd - mhe - mhf - mhg - mhi - mhj - mhk - mhl - mhm - mhn - mho - mhp - mhq - mhr - mhs - mht - mhu - mhw - mhx - mhy - mhz - mia - mib - mic - mid - mie - mif - mig - mih - mii - mij - mik - mil - mim - min - mio - mip - miq - mir - mis - mit - miu - miw - mix - miy - miz - mjb - mjc - mjd - mje - mjg - mjh - mji - mjj - mjk - mjl - mjm - mjn - mjo - mjp - mjq - mjr - mjs - mjt - mju - mjv - mjw - mjx - mjy - mjz - mka - mkb - mkc - mkd - mke - mkf - mkg - mki - mkj - mkk - mkl - mkm - mkn - mko - mkp - mkq - mkr - mks - mkt - mku - mkv - mkw - mkx - mky - mkz - mla - mlb - mlc - mle - mlf - mlg - mlh - mli - mlj - mlk - mll - mlm - mln - mlo - mlp - mlq - mlr - mls - mlt - mlu - mlv - mlw - mlx - mlz - mma - mmb - mmc - mmd - mme - mmf - mmg - mmh - mmi - mmj - mmk - mml - mmm - mmn - mmo - mmp - mmq - mmr - mmt - mmu - mmv - mmw - mmx - mmy - mmz - mna - mnb - mnc - mnd - mne - mnf - mng - mnh - mni - mnj - mnk - mnl - mnm - mnn - mnp - mnq - mnr - mns - mnu - mnv - mnw - mnx - mny - mnz - moa - moc - mod - moe - mog - moh - moi - moj - mok - mom - mon - moo - mop - moq - mor - mos - mot - mou - mov - mow - mox - moy - moz - mpa - mpb - mpc - mpd - mpe - mpg - mph - mpi - mpj - mpk - mpl - mpm - mpn - mpo - mpp - mpq - mpr - mps - mpt - mpu - mpv - mpw - mpx - mpy - mpz - mqa - mqb - mqc - mqe - mqf - mqg - mqh - mqi - mqj - mqk - mql - mqm - mqn - mqo - mqp - mqq - mqr - mqs - mqt - mqu - mqv - mqw - mqx - mqy - mqz - mra - mrb - mrc - mrd - mre - mrf - mrg - mrh - mri - mrj - mrk - mrl - mrm - mrn - mro - mrp - mrq - mrr - mrs - mrt - mru - mrv - mrw - mrx - mry - mrz - msa - msb - msc - msd - mse - msf - msg - msh - msi - msj - msk - msl - msm - msn - mso - msp - msq - msr - mss - msu - msv - msw - msx - msy - msz - mta - mtb - mtc - mtd - mte - mtf - mtg - mth - mti - mtj - mtk - mtl - mtm - mtn - mto - mtp - mtq - mtr - mts - mtt - mtu - mtv - mtw - mtx - mty - mua - mub - muc - mud - mue - mug - muh - mui - muj - muk - mul - mum - muo - mup - muq - mur - mus - mut - muu - muv - mux - muy - muz - mva - mvb - mvd - mve - mvf - mvg - mvh - mvi - mvk - mvl - mvn - mvo - mvp - mvq - mvr - mvs - mvt - mvu - mvv - mvw - mvx - mvy - mvz - mwa - mwb - mwc - mwe - mwf - mwg - mwh - mwi - mwk - mwl - mwm - mwn - mwo - mwp - mwq - mwr - mws - mwt - mwu - mwv - mww - mwz - mxa - mxb - mxc - mxd - mxe - mxf - mxg - mxh - mxi - mxj - mxk - mxl - mxm - mxn - mxo - mxp - mxq - mxr - mxs - mxt - mxu - mxv - mxw - mxx - mxy - mxz - mya - myb - myc - mye - myf - myg - myh - myj - myk - myl - mym - myo - myp - myr - mys - myu - myv - myw - myx - myy - myz - mza - mzb - mzc - mzd - mze - mzg - mzh - mzi - mzj - mzk - mzl - mzm - mzn - mzo - mzp - mzq - mzr - mzs - mzt - mzu - mzv - mzw - mzx - mzy - mzz - naa - nab - nac - nae - naf - nag - naj - nak - nal - nam - nan - nao - nap - naq - nar - nas - nat - nau - nav - naw - nax - nay - naz - nba - nbb - nbc - nbd - nbe - nbg - nbh - nbi - nbj - nbk - nbl - nbm - nbn - nbo - nbp - nbq - nbr - nbs - nbt - nbu - nbv - nbw - nby - nca - ncb - ncc - ncd - nce - ncf - ncg - nch - nci - ncj - nck - ncl - ncm - ncn - nco - ncq - ncr - ncs - nct - ncu - ncx - ncz - nda - ndb - ndc - ndd - nde - ndf - ndg - ndh - ndi - ndj - ndk - ndl - ndm - ndn - ndo - ndp - ndq - ndr - nds - ndt - ndu - ndv - ndw - ndx - ndy - ndz - nea - neb - nec - ned - nee - nef - neg - neh - nei - nej - nek - nem - nen - neo - nep - neq - ner - nes - net - neu - nev - new - nex - ney - nez - nfa - nfd - nfl - nfr - nfu - nga - ngb - ngc - ngd - nge - ngg - ngh - ngi - ngj - ngk - ngl - ngm - ngn - ngp - ngq - ngr - ngs - ngt - ngu - ngv - ngw - ngx - ngy - ngz - nha - nhb - nhc - nhd - nhe - nhf - nhg - nhh - nhi - nhk - nhm - nhn - nho - nhp - nhq - nhr - nht - nhu - nhv - nhw - nhx - nhy - nhz - nia - nib - nid - nie - nif - nig - nih - nii - nij - nik - nil - nim - nin - nio - niq - nir - nis - nit - niu - niv - niw - nix - niy - niz - nja - njb - njd - njh - nji - njj - njl - njm - njn - njo - njr - njs - njt - nju - njx - njy - njz - nka - nkb - nkc - nkd - nke - nkf - nkg - nkh - nki - nkj - nkk - nkm - nkn - nko - nkp - nkq - nkr - nks - nkt - nku - nkv - nkw - nkx - nkz - nla - nlc - nld - nle - nlg - nli - nlj - nlk - nll - nlm - nlo - nlq - nlu - nlv - nlw - nlx - nly - nlz - nma - nmb - nmc - nmd - nme - nmf - nmg - nmh - nmi - nmj - nmk - nml - nmm - nmn - nmo - nmp - nmq - nmr - nms - nmt - nmu - nmv - nmw - nmx - nmy - nmz - nna - nnb - nnc - nnd - nne - nnf - nng - nnh - nni - nnj - nnk - nnl - nnm - nnn - nno - nnp - nnq - nnr - nnt - nnu - nnv - nnw - nny - nnz - noa - nob - noc - nod - noe - nof - nog - noh - noi - noj - nok - nol - nom - non - nop - noq - nor - nos - not - nou - nov - now - noy - noz - npa - npb - npg - nph - npi - npl - npn - npo - nps - npu - npx - npy - nqg - nqk - nql - nqm - nqn - nqo - nqq - nqt - nqy - nra - nrb - nrc - nre - nrf - nrg - nri - nrk - nrl - nrm - nrn - nrp - nrr - nrt - nru - nrx - nrz - nsa - nsb - nsc - nsd - nse - nsf - nsg - nsh - nsi - nsk - nsl - nsm - nsn - nso - nsp - nsq - nsr - nss - nst - nsu - nsv - nsw - nsx - nsy - nsz - ntd - nte - ntg - nti - ntj - ntk - ntm - nto - ntp - ntr - ntu - ntw - ntx - nty - ntz - nua - nuc - nud - nue - nuf - nug - nuh - nui - nuj - nuk - nul - num - nun - nuo - nup - nuq - nur - nus - nut - nuu - nuv - nuw - nux - nuy - nuz - nvh - nvm - nvo - nwa - nwb - nwc - nwe - nwg - nwi - nwm - nwo - nwr - nww - nwx - nwy - nxa - nxd - nxe - nxg - nxi - nxk - nxl - nxm - nxn - nxo - nxq - nxr - nxx - nya - nyb - nyc - nyd - nye - nyf - nyg - nyh - nyi - nyj - nyk - nyl - nym - nyn - nyo - nyp - nyq - nyr - nys - nyt - nyu - nyv - nyw - nyx - nyy - nza - nzb - nzd - nzi - nzk - nzm - nzs - nzu - nzy - nzz - oaa - oac - oar - oav - obi - obk - obl - obm - obo - obr - obt - obu - oca - och - oci - ocm - oco - ocu - oda - odk - odt - odu - ofo - ofs - ofu - ogb - ogc - oge - ogg - ogo - ogu - oht - ohu - oia - oie - oin - ojb - ojc - ojg - oji - ojp - ojs - ojv - ojw - oka - okb - okc - okd - oke - okg - okh - oki - okj - okk - okl - okm - okn - oko - okr - oks - oku - okv - okx - okz - ola - old - ole - olk - olm - olo - olr - olt - olu - oma - omb - omc - omg - omi - omk - oml - omn - omo - omp - omr - omt - omu - omw - omx - omy - ona - onb - one - ong - oni - onj - onk - onn - ono - onp - onr - ons - ont - onu - onw - onx - ood - oog - oon - oor - oos - opa - opk - opm - opo - opt - opy - ora - orc - ore - org - orh - ori - orm - orn - oro - orr - ors - ort - oru - orv - orw - orx - ory - orz - osa - osc - osi - osn - oso - osp - oss - ost - osu - osx - ota - otb - otd - ote - oti - otk - otl - otm - otn - otq - otr - ots - ott - otu - otw - otx - oty - otz - oua - oub - oue - oui - oum - ovd - owi - owl - oyb - oyd - oym - oyy - ozm - pab - pac - pad - pae - paf - pag - pah - pai - pak - pal - pam - pan - pao - pap - paq - par - pas - pau - pav - paw - pax - pay - paz - pbb - pbc - pbe - pbf - pbg - pbh - pbi - pbl - pbm - pbn - pbo - pbp - pbr - pbs - pbt - pbu - pbv - pby - pca - pcb - pcc - pcd - pce - pcf - pcg - pch - pci - pcj - pck - pcl - pcm - pcn - pcp - pcw - pda - pdc - pdi - pdn - pdo - pdt - pdu - pea - peb - ped - pee - pef - peg - peh - pei - pej - pek - pel - pem - peo - pep - peq - pes - pev - pex - pey - pez - pfa - pfe - pfl - pga - pgd - pgg - pgi - pgk - pgl - pgn - pgs - pgu - pgz - pha - phd - phg - phh - phj - phk - phl - phm - phn - pho - phq - phr - pht - phu - phv - phw - pia - pib - pic - pid - pie - pif - pig - pih - pij - pil - pim - pin - pio - pip - pir - pis - pit - piu - piv - piw - pix - piy - piz - pjt - pka - pkb - pkc - pkg - pkh - pkn - pko - pkp - pkr - pks - pkt - pku - pla - plb - plc - pld - ple - plg - plh - pli - plj - plk - pll - pln - plo - plq - plr - pls - plt - plu - plv - plw - ply - plz - pma - pmb - pmd - pme - pmf - pmh - pmi - pmj - pmk - pml - pmm - pmn - pmo - pmq - pmr - pms - pmt - pmw - pmx - pmy - pmz - pna - pnb - pnc - pnd - pne - png - pnh - pni - pnj - pnk - pnl - pnm - pnn - pno - pnp - pnq - pnr - pns - pnt - pnu - pnv - pnw - pnx - pny - pnz - poc - poe - pof - pog - poh - poi - pok - pol - pom - pon - poo - pop - poq - por - pos - pot - pov - pow - pox - poy - ppe - ppi - ppk - ppl - ppm - ppn - ppo - ppp - ppq - pps - ppt - ppu - pqa - pqm - prc - prd - pre - prf - prg - prh - pri - prk - prl - prm - prn - pro - prp - prq - prr - prs - prt - pru - prw - prx - prz - psa - psc - psd - pse - psg - psh - psi - psl - psm - psn - pso - psp - psq - psr - pss - pst - psu - psw - psy - pta - pth - pti - ptn - pto - ptp - ptq - ptr - ptt - ptu - ptv - ptw - pty - pua - pub - puc - pud - pue - puf - pug - pui - puj - pum - puo - pup - puq - pur - pus - put - puu - puw - pux - puy - pwa - pwb - pwg - pwi - pwm - pwn - pwo - pwr - pww - pxm - pye - pym - pyn - pys - pyu - pyx - pyy - pzh - pzn - qua - qub - quc - qud - que - quf - qug - quh - qui - quk - qul - qum - qun - qup - quq - qur - qus - quv - quw - qux - quy - quz - qva - qvc - qve - qvh - qvi - qvj - qvl - qvm - qvn - qvo - qvp - qvs - qvw - qvy - qvz - qwa - qwc - qwh - qwm - qws - qwt - qxa - qxc - qxh - qxl - qxn - qxo - qxp - qxq - qxr - qxs - qxt - qxu - qxw - qya - qyp - raa - rab - rac - rad - raf - rag - rah - rai - raj - rak - ral - ram - ran - rao - rap - raq - rar - ras - rat - rau - rav - raw - rax - ray - raz - rbb - rbk - rbl - rbp - rcf - rdb - rea - reb - ree - reg - rei - rej - rel - rem - ren - rer - res - ret - rey - rga - rge - rgk - rgn - rgr - rgs - rgu - rhg - rhp - ria - rib - rif - ril - rim - rin - rir - rit - riu - rjg - rji - rjs - rka - rkb - rkh - rki - rkm - rkt - rkw - rma - rmb - rmc - rmd - rme - rmf - rmg - rmh - rmi - rmk - rml - rmm - rmn - rmo - rmp - rmq - rms - rmt - rmu - rmv - rmw - rmx - rmy - rmz - rnb - rnd - rng - rnl - rnn - rnp - rnr - rnw - rob - roc - rod - roe - rof - rog - roh - rol - rom - ron - roo - rop - ror - rou - row - rpn - rpt - rri - rro - rrt - rsb - rsk - rsl - rsm - rsn - rtc - rth - rtm - rts - rtw - rub - ruc - rue - ruf - rug - ruh - rui - ruk - run - ruo - rup - ruq - rus - rut - ruu - ruy - ruz - rwa - rwk - rwl - rwm - rwo - rwr - rxd - rxw - ryn - rys - ryu - rzh - saa - sab - sac - sad - sae - saf - sag - sah - saj - sak - sam - san - sao - saq - sar - sas - sat - sau - sav - saw - sax - say - saz - sba - sbb - sbc - sbd - sbe - sbf - sbg - sbh - sbi - sbj - sbk - sbl - sbm - sbn - sbo - sbp - sbq - sbr - sbs - sbt - sbu - sbv - sbw - sbx - sby - sbz - scb - sce - scf - scg - sch - sci - sck - scl - scn - sco - scp - scq - scs - sct - scu - scv - scw - scx - sda - sdb - sdc - sde - sdf - sdg - sdh - sdj - sdk - sdl - sdn - sdo - sdp - sdq - sdr - sds - sdt - sdu - sdx - sdz - sea - seb - sec - sed - see - sef - seg - seh - sei - sej - sek - sel - sen - seo - sep - seq - ser - ses - set - seu - sev - sew - sey - sez - sfb - sfe - sfm - sfs - sfw - sga - sgb - sgc - sgd - sge - sgg - sgh - sgi - sgj - sgk - sgm - sgp - sgr - sgs - sgt - sgu - sgw - sgx - sgy - sgz - sha - shb - shc - shd - she - shg - shh - shi - shj - shk - shl - shm - shn - sho - shp - shq - shr - shs - sht - shu - shv - shw - shx - shy - shz - sia - sib - sid - sie - sif - sig - sih - sii - sij - sik - sil - sim - sin - sip - siq - sir - sis - siu - siv - siw - six - siy - siz - sja - sjb - sjd - sje - sjg - sjk - sjl - sjm - sjn - sjo - sjp - sjr - sjs - sjt - sju - sjw - ska - skb - skc - skd - ske - skf - skg - skh - ski - skj - skm - skn - sko - skp - skq - skr - sks - skt - sku - skv - skw - skx - sky - skz - slc - sld - sle - slf - slg - slh - sli - slj - slk - sll - slm - sln - slp - slq - slr - sls - slt - slu - slv - slw - slx - sly - slz - sma - smb - smc - sme - smf - smg - smh - smj - smk - sml - smm - smn - smo - smp - smq - smr - sms - smt - smu - smv - smw - smx - smy - smz - sna - snc - snd - sne - snf - sng - sni - snj - snk - snl - snm - snn - sno - snp - snq - snr - sns - snu - snv - snw - snx - sny - snz - soa - sob - soc - sod - soe - sog - soh - soi - soj - sok - sol - som - soo - sop - soq - sor - sos - sot - sou - sov - sow - sox - soy - soz - spa - spb - spc - spd - spe - spg - spi - spk - spl - spm - spn - spo - spp - spq - spr - sps - spt - spu - spv - spx - spy - sqa - sqh - sqi - sqk - sqm - sqn - sqo - sqq - sqr - sqs - sqt - squ - sqx - sra - srb - src - srd - sre - srf - srg - srh - sri - srk - srl - srm - srn - sro - srp - srq - srr - srs - srt - sru - srv - srw - srx - sry - srz - ssb - ssc - ssd - sse - ssf - ssg - ssh - ssi - ssj - ssk - ssl - ssm - ssn - sso - ssp - ssq - ssr - sss - sst - ssu - ssv - ssw - ssx - ssy - ssz - sta - stb - std - ste - stf - stg - sth - sti - stj - stk - stl - stm - stn - sto - stp - stq - str - sts - stt - stu - stv - stw - sty - sua - sub - suc - sue - sug - sui - suj - suk - sun - suo - suq - sur - sus - sut - suv - suw - sux - suy - suz - sva - svb - svc - sve - svk - svm - svs - svx - swa - swb - swc - swe - swf - swg - swh - swi - swj - swk - swl - swm - swn - swo - swp - swq - swr - sws - swt - swu - swv - sww - swx - swy - sxb - sxc - sxe - sxg - sxk - sxl - sxm - sxn - sxo - sxr - sxs - sxu - sxw - sya - syb - syc - syi - syk - syl - sym - syn - syo - syr - sys - syw - syx - syy - sza - szb - szc - szd - sze - szg - szl - szn - szp - szs - szv - szw - szy - taa - tab - tac - tad - tae - taf - tag - tah - taj - tak - tal - tam - tan - tao - tap - taq - tar - tas - tat - tau - tav - taw - tax - tay - taz - tba - tbc - tbd - tbe - tbf - tbg - tbh - tbi - tbj - tbk - tbl - tbm - tbn - tbo - tbp - tbr - tbs - tbt - tbu - tbv - tbw - tbx - tby - tbz - tca - tcb - tcc - tcd - tce - tcf - tcg - tch - tci - tck - tcl - tcm - tcn - tco - tcp - tcq - tcs - tct - tcu - tcw - tcx - tcy - tcz - tda - tdb - tdc - tdd - tde - tdf - tdg - tdh - tdi - tdj - tdk - tdl - tdm - tdn - tdo - tdq - tdr - tds - tdt - tdv - tdx - tdy - tea - teb - tec - ted - tee - tef - teg - teh - tei - tek - tel - tem - ten - teo - tep - teq - ter - tes - tet - teu - tev - tew - tex - tey - tez - tfi - tfn - tfo - tfr - tft - tga - tgb - tgc - tgd - tge - tgf - tgh - tgi - tgj - tgk - tgl - tgn - tgo - tgp - tgq - tgr - tgs - tgt - tgu - tgv - tgw - tgx - tgy - tgz - tha - thd - the - thf - thh - thi - thk - thl - thm - thn - thp - thq - thr - ths - tht - thu - thv - thy - thz - tia - tic - tif - tig - tih - tii - tij - tik - til - tim - tin - tio - tip - tiq - tir - tis - tit - tiu - tiv - tiw - tix - tiy - tiz - tja - tjg - tji - tjj - tjl - tjm - tjn - tjo - tjp - tjs - tju - tjw - tka - tkb - tkd - tke - tkf - tkg - tkl - tkm - tkn - tkp - tkq - tkr - tks - tkt - tku - tkv - tkw - tkx - tkz - tla - tlb - tlc - tld - tlf - tlg - tlh - tli - tlj - tlk - tll - tlm - tln - tlo - tlp - tlq - tlr - tls - tlt - tlu - tlv - tlx - tly - tma - tmb - tmc - tmd - tme - tmf - tmg - tmh - tmi - tmj - tmk - tml - tmm - tmn - tmo - tmq - tmr - tms - tmt - tmu - tmv - tmw - tmy - tmz - tna - tnb - tnc - tnd - tng - tnh - tni - tnk - tnl - tnm - tnn - tno - tnp - tnq - tnr - tns - tnt - tnu - tnv - tnw - tnx - tny - tnz - tob - toc - tod - tof - tog - toh - toi - toj - tok - tol - tom - ton - too - top - toq - tor - tos - tou - tov - tow - tox - toy - toz - tpa - tpc - tpe - tpf - tpg - tpi - tpj - tpk - tpl - tpm - tpn - tpo - tpp - tpq - tpr - tpt - tpu - tpv - tpw - tpx - tpy - tpz - tqb - tql - tqm - tqn - tqo - tqp - tqq - tqr - tqt - tqu - tqw - tra - trb - trc - trd - tre - trf - trg - trh - tri - trj - trl - trm - trn - tro - trp - trq - trr - trs - trt - tru - trv - trw - trx - try - trz - tsa - tsb - tsc - tsd - tse - tsg - tsh - tsi - tsj - tsk - tsl - tsm - tsn - tso - tsp - tsq - tsr - tss - tst - tsu - tsv - tsw - tsx - tsy - tsz - tta - ttb - ttc - ttd - tte - ttf - ttg - tth - tti - ttj - ttk - ttl - ttm - ttn - tto - ttp - ttq - ttr - tts - ttt - ttu - ttv - ttw - tty - ttz - tua - tub - tuc - tud - tue - tuf - tug - tuh - tui - tuj - tuk - tul - tum - tun - tuo - tuq - tur - tus - tuu - tuv - tux - tuy - tuz - tva - tvd - tve - tvk - tvl - tvm - tvn - tvo - tvs - tvt - tvu - tvw - tvx - tvy - twa - twb - twc - twd - twe - twf - twg - twh - twi - twl - twm - twn - two - twp - twq - twr - twt - twu - tww - twx - twy - txa - txb - txc - txe - txg - txh - txi - txj - txm - txn - txo - txq - txr - txs - txt - txu - txx - txy - tya - tye - tyh - tyi - tyj - tyl - tyn - typ - tyr - tys - tyt - tyu - tyv - tyx - tyy - tyz - tza - tzh - tzj - tzl - tzm - tzn - tzo - tzx - uam - uan - uar - uba - ubi - ubl - ubr - ubu - uby - uda - ude - udg - udi - udj - udl - udm - udu - ues - ufi - uga - ugb - uge - ugh - ugn - ugo - ugy - uha - uhn - uig - uis - uiv - uji - uka - ukg - ukh - uki - ukk - ukl - ukp - ukq - ukr - uks - uku - ukv - ukw - uky - ula - ulb - ulc - ule - ulf - uli - ulk - ull - ulm - uln - ulu - ulw - uma - umb - umc - umd - umg - umi - umm - umn - umo - ump - umr - ums - umu - una - und - une - ung - uni - unk - unm - unn - unr - unu - unx - unz - uon - upi - upv - ura - urb - urc - urd - ure - urf - urg - urh - uri - urk - url - urm - urn - uro - urp - urr - urt - uru - urv - urw - urx - ury - urz - usa - ush - usi - usk - usp - uss - usu - uta - ute - uth - utp - utr - utu - uum - uur - uuu - uve - uvh - uvl - uwa - uya - uzb - uzn - uzs - vaa - vae - vaf - vag - vah - vai - vaj - val - vam - van - vao - vap - var - vas - vau - vav - vay - vbb - vbk - vec - ved - vel - vem - ven - veo - vep - ver - vgr - vgt - vic - vid - vie - vif - vig - vil - vin - vis - vit - viv - vka - vkj - vkk - vkl - vkm - vkn - vko - vkp - vkt - vku - vkz - vlp - vls - vma - vmb - vmc - vmd - vme - vmf - vmg - vmh - vmi - vmj - vmk - vml - vmm - vmp - vmq - vmr - vms - vmu - vmv - vmw - vmx - vmy - vmz - vnk - vnm - vnp - vol - vor - vot - vra - vro - vrs - vrt - vsi - vsl - vsv - vto - vum - vun - vut - vwa - waa - wab - wac - wad - wae - waf - wag - wah - wai - waj - wal - wam - wan - wao - wap - waq - war - was - wat - wau - wav - waw - wax - way - waz - wba - wbb - wbe - wbf - wbh - wbi - wbj - wbk - wbl - wbm - wbp - wbq - wbr - wbs - wbt - wbv - wbw - wca - wci - wdd - wdg - wdj - wdk - wdt - wdu - wdy - wea - wec - wed - weg - weh - wei - wem - weo - wep - wer - wes - wet - weu - wew - wfg - wga - wgb - wgg - wgi - wgo - wgu - wgy - wha - whg - whk - whu - wib - wic - wie - wif - wig - wih - wii - wij - wik - wil - wim - win - wir - wiu - wiv - wiy - wja - wji - wka - wkb - wkd - wkl - wkr - wku - wkw - wky - wla - wlc - wle - wlg - wlh - wli - wlk - wll - wlm - wln - wlo - wlr - wls - wlu - wlv - wlw - wlx - wly - wma - wmb - wmc - wmd - wme - wmg - wmh - wmi - wmm - wmn - wmo - wms - wmt - wmw - wmx - wnb - wnc - wnd - wne - wng - wni - wnk - wnm - wnn - wno - wnp - wnu - wnw - wny - woa - wob - woc - wod - woe - wof - wog - woi - wok - wol - wom - won - woo - wor - wos - wow - woy - wpc - wrb - wrg - wrh - wri - wrk - wrl - wrm - wrn - wro - wrp - wrr - wrs - wru - wrv - wrw - wrx - wry - wrz - wsa - wsg - wsi - wsk - wsr - wss - wsu - wsv - wtf - wth - wti - wtk - wtm - wtw - wua - wub - wud - wuh - wul - wum - wun - wur - wut - wuu - wuv - wux - wuy - wwa - wwb - wwo - wwr - www - wxa - wxw - wyb - wyi - wym - wyn - wyr - wyy - xaa - xab - xac - xad - xae - xag - xai - xaj - xak - xal - xam - xan - xao - xap - xaq - xar - xas - xat - xau - xav - xaw - xay - xbb - xbc - xbd - xbe - xbg - xbi - xbj - xbm - xbn - xbo - xbp - xbr - xbw - xby - xcb - xcc - xce - xcg - xch - xcl - xcm - xcn - xco - xcr - xct - xcu - xcv - xcw - xcy - xda - xdc - xdk - xdm - xdo - xdq - xdy - xeb - xed - xeg - xel - xem - xep - xer - xes - xet - xeu - xfa - xga - xgb - xgd - xgf - xgg - xgi - xgl - xgm - xgr - xgu - xgw - xha - xhc - xhd - xhe - xhm - xho - xhr - xht - xhu - xhv - xib - xii - xil - xin - xir - xis - xiv - xiy - xjb - xjt - xka - xkb - xkc - xkd - xke - xkf - xkg - xki - xkj - xkk - xkl - xkn - xko - xkp - xkq - xkr - xks - xkt - xku - xkv - xkw - xkx - xky - xkz - xla - xlb - xlc - xld - xle - xlg - xli - xln - xlo - xlp - xls - xlu - xly - xma - xmb - xmc - xmd - xme - xmf - xmg - xmh - xmj - xmk - xml - xmm - xmn - xmo - xmp - xmq - xmr - xms - xmt - xmu - xmv - xmw - xmx - xmy - xmz - xna - xnb - xng - xnh - xni - xnj - xnk - xnm - xnn - xno - xnq - xnr - xns - xnt - xnu - xny - xnz - xoc - xod - xog - xoi - xok - xom - xon - xoo - xop - xor - xow - xpa - xpb - xpc - xpd - xpe - xpf - xpg - xph - xpi - xpj - xpk - xpl - xpm - xpn - xpo - xpp - xpq - xpr - xps - xpt - xpu - xpv - xpw - xpx - xpy - xpz - xqa - xqt - xra - xrb - xrd - xre - xrg - xri - xrm - xrn - xrr - xrt - xru - xrw - xsa - xsb - xsc - xsd - xse - xsh - xsi - xsj - xsl - xsm - xsn - xso - xsp - xsq - xsr - xss - xsu - xsv - xsy - xta - xtb - xtc - xtd - xte - xtg - xth - xti - xtj - xtl - xtm - xtn - xto - xtp - xtq - xtr - xts - xtt - xtu - xtv - xtw - xty - xua - xub - xud - xug - xuj - xul - xum - xun - xuo - xup - xur - xut - xuu - xve - xvi - xvn - xvo - xvs - xwa - xwc - xwd - xwe - xwg - xwj - xwk - xwl - xwo - xwr - xwt - xww - xxb - xxk - xxm - xxr - xxt - xya - xyb - xyj - xyk - xyl - xyt - xyy - xzh - xzm - xzp - yaa - yab - yac - yad - yae - yaf - yag - yah - yai - yaj - yak - yal - yam - yan - yao - yap - yaq - yar - yas - yat - yau - yav - yaw - yax - yay - yaz - yba - ybb - ybe - ybh - ybi - ybj - ybk - ybl - ybm - ybn - ybo - ybx - yby - ych - ycl - ycn - ycp - yda - ydd - yde - ydg - ydk - yea - yec - yee - yei - yej - yel - yer - 'yes' - yet - yeu - yev - yey - yga - ygi - ygl - ygm - ygp - ygr - ygs - ygu - ygw - yha - yhd - yhl - yhs - yia - yid - yif - yig - yih - yii - yij - yik - yil - yim - yin - yip - yiq - yir - yis - yit - yiu - yiv - yix - yiz - yka - ykg - yki - ykk - ykl - ykm - ykn - yko - ykr - ykt - yku - yky - yla - ylb - yle - ylg - yli - yll - ylm - yln - ylo - ylr - ylu - yly - ymb - ymc - ymd - yme - ymg - ymh - ymi - ymk - yml - ymm - ymn - ymo - ymp - ymq - ymr - yms - ymx - ymz - yna - ynd - yne - yng - ynk - ynl - ynn - yno - ynq - yns - ynu - yob - yog - yoi - yok - yol - yom - yon - yor - yot - yox - yoy - ypa - ypb - ypg - yph - ypm - ypn - ypo - ypp - ypz - yra - yrb - yre - yrk - yrl - yrm - yrn - yro - yrs - yrw - yry - ysc - ysd - ysg - ysl - ysm - ysn - yso - ysp - ysr - yss - ysy - yta - ytl - ytp - ytw - yty - yua - yub - yuc - yud - yue - yuf - yug - yui - yuj - yuk - yul - yum - yun - yup - yuq - yur - yut - yuw - yux - yuy - yuz - yva - yvt - ywa - ywg - ywl - ywn - ywq - ywr - ywt - ywu - yww - yxa - yxg - yxl - yxm - yxu - yxy - yyr - yyu - yyz - yzg - yzk - zaa - zab - zac - zad - zae - zaf - zag - zah - zai - zaj - zak - zal - zam - zao - zap - zaq - zar - zas - zat - zau - zav - zaw - zax - zay - zaz - zba - zbc - zbe - zbl - zbt - zbu - zbw - zca - zcd - zch - zdj - zea - zeg - zeh - zen - zga - zgb - zgh - zgm - zgn - zgr - zha - zhb - zhd - zhi - zhn - zho - zhw - zia - zib - zik - zil - zim - zin - ziw - ziz - zka - zkb - zkd - zkg - zkh - zkk - zkn - zko - zkp - zkr - zkt - zku - zkv - zkz - zla - zlj - zlm - zln - zlq - zma - zmb - zmc - zmd - zme - zmf - zmg - zmh - zmi - zmj - zmk - zml - zmm - zmn - zmo - zmp - zmq - zmr - zms - zmt - zmu - zmv - zmw - zmx - zmy - zmz - zna - zne - zng - znk - zns - zoc - zoh - zom - zoo - zoq - zor - zos - zpa - zpb - zpc - zpd - zpe - zpf - zpg - zph - zpi - zpj - zpk - zpl - zpm - zpn - zpo - zpp - zpq - zpr - zps - zpt - zpu - zpv - zpw - zpx - zpy - zpz - zqe - zra - zrg - zrn - zro - zrp - zrs - zsa - zsk - zsl - zsm - zsr - zsu - zte - ztg - ztl - ztm - ztn - ztp - ztq - zts - ztt - ztu - ztx - zty - zua - zuh - zul - zum - zun - zuy - zwa - zxx - zyb - zyg - zyj - zyn - zyp - zza - zzj maxLength: 3 minLength: 3 - type: 'null' title: Preferred Language conversations_visible_to_admins: type: boolean title: Conversations Visible To Admins description: Whether the user's conversations are visible to the admins. default: true user_model_visible_to_admins: type: boolean title: User Model Visible To Admins description: Whether the user's user model is visible to the admins. default: true timezone: anyOf: - type: string enum: - Africa/Abidjan - Africa/Accra - Africa/Addis_Ababa - Africa/Algiers - Africa/Asmara - Africa/Asmera - Africa/Bamako - Africa/Bangui - Africa/Banjul - Africa/Bissau - Africa/Blantyre - Africa/Brazzaville - Africa/Bujumbura - Africa/Cairo - Africa/Casablanca - Africa/Ceuta - Africa/Conakry - Africa/Dakar - Africa/Dar_es_Salaam - Africa/Djibouti - Africa/Douala - Africa/El_Aaiun - Africa/Freetown - Africa/Gaborone - Africa/Harare - Africa/Johannesburg - Africa/Juba - Africa/Kampala - Africa/Khartoum - Africa/Kigali - Africa/Kinshasa - Africa/Lagos - Africa/Libreville - Africa/Lome - Africa/Luanda - Africa/Lubumbashi - Africa/Lusaka - Africa/Malabo - Africa/Maputo - Africa/Maseru - Africa/Mbabane - Africa/Mogadishu - Africa/Monrovia - Africa/Nairobi - Africa/Ndjamena - Africa/Niamey - Africa/Nouakchott - Africa/Ouagadougou - Africa/Porto-Novo - Africa/Sao_Tome - Africa/Timbuktu - Africa/Tripoli - Africa/Tunis - Africa/Windhoek - America/Adak - America/Anchorage - America/Anguilla - America/Antigua - America/Araguaina - America/Argentina/Buenos_Aires - America/Argentina/Catamarca - America/Argentina/ComodRivadavia - America/Argentina/Cordoba - America/Argentina/Jujuy - America/Argentina/La_Rioja - America/Argentina/Mendoza - America/Argentina/Rio_Gallegos - America/Argentina/Salta - America/Argentina/San_Juan - America/Argentina/San_Luis - America/Argentina/Tucuman - America/Argentina/Ushuaia - America/Aruba - America/Asuncion - America/Atikokan - America/Atka - America/Bahia - America/Bahia_Banderas - America/Barbados - America/Belem - America/Belize - America/Blanc-Sablon - America/Boa_Vista - America/Bogota - America/Boise - America/Buenos_Aires - America/Cambridge_Bay - America/Campo_Grande - America/Cancun - America/Caracas - America/Catamarca - America/Cayenne - America/Cayman - America/Chicago - America/Chihuahua - America/Ciudad_Juarez - America/Coral_Harbour - America/Cordoba - America/Costa_Rica - America/Coyhaique - America/Creston - America/Cuiaba - America/Curacao - America/Danmarkshavn - America/Dawson - America/Dawson_Creek - America/Denver - America/Detroit - America/Dominica - America/Edmonton - America/Eirunepe - America/El_Salvador - America/Ensenada - America/Fort_Nelson - America/Fort_Wayne - America/Fortaleza - America/Glace_Bay - America/Godthab - America/Goose_Bay - America/Grand_Turk - America/Grenada - America/Guadeloupe - America/Guatemala - America/Guayaquil - America/Guyana - America/Halifax - America/Havana - America/Hermosillo - America/Indiana/Indianapolis - America/Indiana/Knox - America/Indiana/Marengo - America/Indiana/Petersburg - America/Indiana/Tell_City - America/Indiana/Vevay - America/Indiana/Vincennes - America/Indiana/Winamac - America/Indianapolis - America/Inuvik - America/Iqaluit - America/Jamaica - America/Jujuy - America/Juneau - America/Kentucky/Louisville - America/Kentucky/Monticello - America/Knox_IN - America/Kralendijk - America/La_Paz - America/Lima - America/Los_Angeles - America/Louisville - America/Lower_Princes - America/Maceio - America/Managua - America/Manaus - America/Marigot - America/Martinique - America/Matamoros - America/Mazatlan - America/Mendoza - America/Menominee - America/Merida - America/Metlakatla - America/Mexico_City - America/Miquelon - America/Moncton - America/Monterrey - America/Montevideo - America/Montreal - America/Montserrat - America/Nassau - America/New_York - America/Nipigon - America/Nome - America/Noronha - America/North_Dakota/Beulah - America/North_Dakota/Center - America/North_Dakota/New_Salem - America/Nuuk - America/Ojinaga - America/Panama - America/Pangnirtung - America/Paramaribo - America/Phoenix - America/Port-au-Prince - America/Port_of_Spain - America/Porto_Acre - America/Porto_Velho - America/Puerto_Rico - America/Punta_Arenas - America/Rainy_River - America/Rankin_Inlet - America/Recife - America/Regina - America/Resolute - America/Rio_Branco - America/Rosario - America/Santa_Isabel - America/Santarem - America/Santiago - America/Santo_Domingo - America/Sao_Paulo - America/Scoresbysund - America/Shiprock - America/Sitka - America/St_Barthelemy - America/St_Johns - America/St_Kitts - America/St_Lucia - America/St_Thomas - America/St_Vincent - America/Swift_Current - America/Tegucigalpa - America/Thule - America/Thunder_Bay - America/Tijuana - America/Toronto - America/Tortola - America/Vancouver - America/Virgin - America/Whitehorse - America/Winnipeg - America/Yakutat - America/Yellowknife - Antarctica/Casey - Antarctica/Davis - Antarctica/DumontDUrville - Antarctica/Macquarie - Antarctica/Mawson - Antarctica/McMurdo - Antarctica/Palmer - Antarctica/Rothera - Antarctica/South_Pole - Antarctica/Syowa - Antarctica/Troll - Antarctica/Vostok - Arctic/Longyearbyen - Asia/Aden - Asia/Almaty - Asia/Amman - Asia/Anadyr - Asia/Aqtau - Asia/Aqtobe - Asia/Ashgabat - Asia/Ashkhabad - Asia/Atyrau - Asia/Baghdad - Asia/Bahrain - Asia/Baku - Asia/Bangkok - Asia/Barnaul - Asia/Beirut - Asia/Bishkek - Asia/Brunei - Asia/Calcutta - Asia/Chita - Asia/Choibalsan - Asia/Chongqing - Asia/Chungking - Asia/Colombo - Asia/Dacca - Asia/Damascus - Asia/Dhaka - Asia/Dili - Asia/Dubai - Asia/Dushanbe - Asia/Famagusta - Asia/Gaza - Asia/Harbin - Asia/Hebron - Asia/Ho_Chi_Minh - Asia/Hong_Kong - Asia/Hovd - Asia/Irkutsk - Asia/Istanbul - Asia/Jakarta - Asia/Jayapura - Asia/Jerusalem - Asia/Kabul - Asia/Kamchatka - Asia/Karachi - Asia/Kashgar - Asia/Kathmandu - Asia/Katmandu - Asia/Khandyga - Asia/Kolkata - Asia/Krasnoyarsk - Asia/Kuala_Lumpur - Asia/Kuching - Asia/Kuwait - Asia/Macao - Asia/Macau - Asia/Magadan - Asia/Makassar - Asia/Manila - Asia/Muscat - Asia/Nicosia - Asia/Novokuznetsk - Asia/Novosibirsk - Asia/Omsk - Asia/Oral - Asia/Phnom_Penh - Asia/Pontianak - Asia/Pyongyang - Asia/Qatar - Asia/Qostanay - Asia/Qyzylorda - Asia/Rangoon - Asia/Riyadh - Asia/Saigon - Asia/Sakhalin - Asia/Samarkand - Asia/Seoul - Asia/Shanghai - Asia/Singapore - Asia/Srednekolymsk - Asia/Taipei - Asia/Tashkent - Asia/Tbilisi - Asia/Tehran - Asia/Tel_Aviv - Asia/Thimbu - Asia/Thimphu - Asia/Tokyo - Asia/Tomsk - Asia/Ujung_Pandang - Asia/Ulaanbaatar - Asia/Ulan_Bator - Asia/Urumqi - Asia/Ust-Nera - Asia/Vientiane - Asia/Vladivostok - Asia/Yakutsk - Asia/Yangon - Asia/Yekaterinburg - Asia/Yerevan - Atlantic/Azores - Atlantic/Bermuda - Atlantic/Canary - Atlantic/Cape_Verde - Atlantic/Faeroe - Atlantic/Faroe - Atlantic/Jan_Mayen - Atlantic/Madeira - Atlantic/Reykjavik - Atlantic/South_Georgia - Atlantic/St_Helena - Atlantic/Stanley - Australia/ACT - Australia/Adelaide - Australia/Brisbane - Australia/Broken_Hill - Australia/Canberra - Australia/Currie - Australia/Darwin - Australia/Eucla - Australia/Hobart - Australia/LHI - Australia/Lindeman - Australia/Lord_Howe - Australia/Melbourne - Australia/NSW - Australia/North - Australia/Perth - Australia/Queensland - Australia/South - Australia/Sydney - Australia/Tasmania - Australia/Victoria - Australia/West - Australia/Yancowinna - Brazil/Acre - Brazil/DeNoronha - Brazil/East - Brazil/West - CET - CST6CDT - Canada/Atlantic - Canada/Central - Canada/Eastern - Canada/Mountain - Canada/Newfoundland - Canada/Pacific - Canada/Saskatchewan - Canada/Yukon - Chile/Continental - Chile/EasterIsland - Cuba - EET - EST - EST5EDT - Egypt - Eire - Etc/GMT - Etc/GMT+0 - Etc/GMT+1 - Etc/GMT+10 - Etc/GMT+11 - Etc/GMT+12 - Etc/GMT+2 - Etc/GMT+3 - Etc/GMT+4 - Etc/GMT+5 - Etc/GMT+6 - Etc/GMT+7 - Etc/GMT+8 - Etc/GMT+9 - Etc/GMT-0 - Etc/GMT-1 - Etc/GMT-10 - Etc/GMT-11 - Etc/GMT-12 - Etc/GMT-13 - Etc/GMT-14 - Etc/GMT-2 - Etc/GMT-3 - Etc/GMT-4 - Etc/GMT-5 - Etc/GMT-6 - Etc/GMT-7 - Etc/GMT-8 - Etc/GMT-9 - Etc/GMT0 - Etc/Greenwich - Etc/UCT - Etc/UTC - Etc/Universal - Etc/Zulu - Europe/Amsterdam - Europe/Andorra - Europe/Astrakhan - Europe/Athens - Europe/Belfast - Europe/Belgrade - Europe/Berlin - Europe/Bratislava - Europe/Brussels - Europe/Bucharest - Europe/Budapest - Europe/Busingen - Europe/Chisinau - Europe/Copenhagen - Europe/Dublin - Europe/Gibraltar - Europe/Guernsey - Europe/Helsinki - Europe/Isle_of_Man - Europe/Istanbul - Europe/Jersey - Europe/Kaliningrad - Europe/Kiev - Europe/Kirov - Europe/Kyiv - Europe/Lisbon - Europe/Ljubljana - Europe/London - Europe/Luxembourg - Europe/Madrid - Europe/Malta - Europe/Mariehamn - Europe/Minsk - Europe/Monaco - Europe/Moscow - Europe/Nicosia - Europe/Oslo - Europe/Paris - Europe/Podgorica - Europe/Prague - Europe/Riga - Europe/Rome - Europe/Samara - Europe/San_Marino - Europe/Sarajevo - Europe/Saratov - Europe/Simferopol - Europe/Skopje - Europe/Sofia - Europe/Stockholm - Europe/Tallinn - Europe/Tirane - Europe/Tiraspol - Europe/Ulyanovsk - Europe/Uzhgorod - Europe/Vaduz - Europe/Vatican - Europe/Vienna - Europe/Vilnius - Europe/Volgograd - Europe/Warsaw - Europe/Zagreb - Europe/Zaporozhye - Europe/Zurich - Factory - GB - GB-Eire - GMT - GMT+0 - GMT-0 - GMT0 - Greenwich - HST - Hongkong - Iceland - Indian/Antananarivo - Indian/Chagos - Indian/Christmas - Indian/Cocos - Indian/Comoro - Indian/Kerguelen - Indian/Mahe - Indian/Maldives - Indian/Mauritius - Indian/Mayotte - Indian/Reunion - Iran - Israel - Jamaica - Japan - Kwajalein - Libya - MET - MST - MST7MDT - Mexico/BajaNorte - Mexico/BajaSur - Mexico/General - NZ - NZ-CHAT - Navajo - PRC - PST8PDT - Pacific/Apia - Pacific/Auckland - Pacific/Bougainville - Pacific/Chatham - Pacific/Chuuk - Pacific/Easter - Pacific/Efate - Pacific/Enderbury - Pacific/Fakaofo - Pacific/Fiji - Pacific/Funafuti - Pacific/Galapagos - Pacific/Gambier - Pacific/Guadalcanal - Pacific/Guam - Pacific/Honolulu - Pacific/Johnston - Pacific/Kanton - Pacific/Kiritimati - Pacific/Kosrae - Pacific/Kwajalein - Pacific/Majuro - Pacific/Marquesas - Pacific/Midway - Pacific/Nauru - Pacific/Niue - Pacific/Norfolk - Pacific/Noumea - Pacific/Pago_Pago - Pacific/Palau - Pacific/Pitcairn - Pacific/Pohnpei - Pacific/Ponape - Pacific/Port_Moresby - Pacific/Rarotonga - Pacific/Saipan - Pacific/Samoa - Pacific/Tahiti - Pacific/Tarawa - Pacific/Tongatapu - Pacific/Truk - Pacific/Wake - Pacific/Wallis - Pacific/Yap - Poland - Portugal - ROC - ROK - Singapore - Turkey - UCT - US/Alaska - US/Aleutian - US/Arizona - US/Central - US/East-Indiana - US/Eastern - US/Hawaii - US/Indiana-Starke - US/Michigan - US/Mountain - US/Pacific - US/Samoa - UTC - Universal - W-SU - WET - Zulu - localtime minLength: 1 - type: 'null' title: Timezone audio_keyterms: items: type: string type: array title: Audio Keyterms description: A list of keyterms that are easy to get wrong during audio transcriptions that tend to occur commonly in audio sessions for this user. default: [] type: object title: Preferences src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec: properties: tool_id: type: string pattern: ^[a-f0-9]{24}$ title: Tool Id description: The ID of the tool. version_constraint: type: string title: Version Constraint description: A [Python packaging version constraint](https://packaging.python.org/en/latest/specifications/version-specifiers/#id5) of the tool. additional_instruction: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' description: Additional instruction to be supplied to the LLM in addition to the tool's description. audio_fillers: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array maxItems: 5 title: Audio Fillers description: A list of audio fillers to play in audio mode if the tool is taking a long time. audio_filler_triggered_after: type: number maximum: 10.0 exclusiveMinimum: 0.0 title: Audio Filler Triggered After description: The number of seconds to wait before playing an audio filler. result_persistence: $ref: '#/components/schemas/ResultPersistence' description: 'The type of result persistence for this tool call. - If `ephemeral`, the result of the tool call is only provided to the current LLM interaction. Any future LLM interactions will not see this tool result. - If `persisted-preferred`, the result of the tool call is reflected in all future LLM interactions if it''s less than 5000 characters long. Otherwise, it''s only visible in the current LLM interaction. - If `persisted`, the result of the tool call is reflected in all future LLM interactions, unless it''s more than 5000 characters long, in which case an error is thrown.' type: object required: - tool_id - version_constraint - additional_instruction - audio_fillers - audio_filler_triggered_after - result_persistence title: ToolCallSpec VoiceConfigInstance: properties: voice_id: type: string title: Voice Id description: The Cartesia voice ID for this agent. stability: type: number title: Stability default: 0 similarity_boost: type: number title: Similarity Boost default: 0 style: type: number title: Style default: 0 type: object required: - voice_id title: VoiceConfigInstance ToolCallState-Output: properties: type: type: string const: tool-call title: Type name: type: string title: Name description: The name of this state. next_state: anyOf: - type: string - prefixItems: - type: string - type: string type: array maxItems: 2 minItems: 2 title: Next State description: 'The state to transition to after the inner thought message is generated. If it''s a string, the session will transition to a state within this contextual graph. If it''s a tuple, the first element must be of the form `{external_contextual_graph_reference_name}.{state_name}` and represents a state in another contextual graph that the session will transition to, and the second element must be a state in this contextual graph that the session will transition to after reaching the terminal state of the external graph.' designated_tool: $ref: '#/components/schemas/amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__ToolCallSpec' description: The tool that the agent is to call in this state. designated_tool_call_params_generation_audio_fillers: items: type: string type: array title: Designated Tool Call Params Generation Audio Fillers description: A list of audio fillers to play in audio mode if the designated tool call's input generation is taking a long time. designated_tool_call_params_generation_audio_filler_triggered_after: type: number title: Designated Tool Call Params Generation Audio Filler Triggered After description: The number of seconds to wait after the designated tool call params generation starts before playing an audio filler. designated_tool_call_objective: type: string title: Designated Tool Call Objective description: 'The objective that the agent is to achieve when generating the input to the designated tool. High-level optimization goal defining what "ideal" means for this state. Frames the strategic intent and success criteria, not the technical tool description. Focuses on user value and conversation progress.' designated_tool_call_context: type: string title: Designated Tool Call Context description: 'The context that the agent can use when generating the input to the designated tool. The minimal information gap this tool state closes within the conversation flow. Explains what''s missing upstream and how this tool execution bridges to downstream states. Should be brief and only included when the tool''s purpose isn''t self-evident from the topology.' designated_tool_call_guidances: items: type: string type: array title: Designated Tool Call Guidances description: 'The guidance that the agent must follow when generating the input to the designated tool. Best practices and proven patterns for constructing quality payloads. Practical tips and heuristics to guide decisions. Suggestions, not strict requirements. Leave empty if tool schema and objective are self-explanatory.' designated_tool_call_validations: items: type: string type: array title: Designated Tool Call Validations description: 'A list of validations that the agent must ensure are satisfied when generating the input to the designated tool. Strict constraints that MUST be satisfied before payload handoff. Hard requirements and invariants verified before execution. Pass/fail checks, not suggestions. Leave empty if only schema compliance is required.' tool_call_specs: items: $ref: '#/components/schemas/amigo_lib__mongo__collections__service_hierarchical_state_machine__ServiceHierarchicalStateMachine__ToolCallSpec' type: array title: Tool Call Specs description: A list of tool calls that the agent can make to help generating the input to the designated tool. type: object required: - type - name - next_state - designated_tool - designated_tool_call_params_generation_audio_fillers - designated_tool_call_params_generation_audio_filler_triggered_after - designated_tool_call_objective - designated_tool_call_context - designated_tool_call_guidances - designated_tool_call_validations - tool_call_specs title: ToolCallState description: A state that executes a tool call. ExternalStateName: type: string pattern: ^[A-Za-z0-9_]+\.[A-Za-z0-9_]+$ ExitCondition-Output: properties: description: type: string title: Description description: A description of this exit condition. next_state: anyOf: - type: string - prefixItems: - type: string - type: string type: array maxItems: 2 minItems: 2 title: Next State description: 'The state to transition to if this exit condition is met. If it''s a string, the session will transition to a state within this contextual graph. If it''s a tuple, the first element must be of the form `{external_contextual_graph_reference_name}.{state_name}` and represents a state in another contextual graph that the session will transition to, and the second element must be a state in this contextual graph that the session will transition to after reaching the terminal state of the external graph.' type: object required: - description - next_state title: ExitCondition src__app__endpoints__organization__create_service_hierarchical_state_machine__Response: properties: id: type: string title: Id description: The ID of the newly created state machine. type: object required: - id title: Response amigo_lib__pydantic__base_model__StrippedNonemptyString__3: type: string maxLength: 3 minLength: 1 StrippedNonemptyString_a-z-______: type: string maxLength: 20 minLength: 1 pattern: ^[a-z-]+$ src__app__endpoints__organization__create_agent_version__Response: properties: version: type: integer title: Version description: 'Numerical version ID that describes how many iterations of this agent occurred before this version. Note that this is for reference only. Any identification of an agent version in Amigo APIs use the `id` field. For initial version of an agent, this field will be 1.' created_at: type: string format: date-time title: Created At description: The time at which this version was created. type: object required: - version - created_at title: Response src__app__endpoints__organization__modify_organization__Request: properties: logo: anyOf: - type: string format: base64 - type: 'null' title: Logo description: 'A logo for the organization that will be displayed on the Amigo frontend for this organization, as well as all Amigo communications to users on behalf of the organization. Must be provided as base64 encoded bytes of a PNG image of aspect ratio 5:2 with minimum size 400 * 160 pixels. Only updated if not null.' square_logo: anyOf: - type: string format: base64 - type: 'null' title: Square Logo description: A square logo of the organization. Must be provided as base64 encoded bytes of a square PNG image of size at least 40 * 40 pixels. Only updated if not null. favicon: anyOf: - type: string format: base64 - type: 'null' title: Favicon description: Favicon for the Amigo frontend for this organization. Must be provided as base64 encoded bytes of a square ICO image that's of size at least 40 * 40 pixels. Only updated if not null. user_dimensions: anyOf: - items: $ref: '#/components/schemas/UserDimension-Input' type: array minItems: 1 - type: 'null' title: User Dimensions description: User dimensions for the organization. If not set or `null`, this field is not updated. default_user_preferences: anyOf: - $ref: '#/components/schemas/src__app__endpoints__organization__modify_organization__Request__Preferences' - type: 'null' description: The default user preferences for the organization. If `null`, this field is not updated. type: object title: Request src__app__endpoints__organization__create_agent__Response: properties: id: type: string title: Id description: The ID of the newly created agent. type: object required: - id title: Response src__app__endpoints__organization__create_organization__Request: properties: org_name: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' description: A human friendly name of the organization. user_dimensions: items: $ref: '#/components/schemas/UserDimension-Input' type: array title: User Dimensions description: User dimensions for the organization. logo: type: string format: base64 title: Logo description: 'A logo for the organization that will be displayed on the Amigo frontend for this organization, as well as all Amigo communications to users on behalf of the organization. Must be provided as base64 encoded bytes of a PNG image of aspect ratio 5:2 with minimum size 400 * 160 pixels.' square_logo: type: string format: base64 title: Square Logo description: A square logo of the organization. Must be provided as base64 encoded bytes of a square PNG image of size at least 40 * 40 pixels. favicon: type: string format: base64 title: Favicon description: Favicon for the Amigo frontend for this organization. Must be provided as base64 encoded bytes of a square ICO image that's of size at least 40 * 40 pixels. default_user_preferences: $ref: '#/components/schemas/src__app__endpoints__organization__create_organization__Request__Preferences' description: Default user preferences for users in this organization. default: enable_response_recommendation: false conversations_visible_to_admins: true user_model_visible_to_admins: true audio_keyterms: [] azure_devops_team_name: $ref: '#/components/schemas/StrippedNonemptyString_a-z-______' description: 'The name of the Azure DevOps team to create (if it doesn''t exist) for this organization. All orgs with the same Azure DevOps team name will share access to the same Azure DevOps resources, namely the source code for tools.' type: object required: - org_name - user_dimensions - logo - square_logo - favicon - azure_devops_team_name title: Request APIKeyInstance: properties: _id: type: string title: Id name: anyOf: - type: string - type: 'null' title: Name description: The name of the API key. org_id: type: string title: Org Id description: The ID of the organization. created_at: type: string format: date-time title: Created At description: The UTC time at which this key was created. updated_at: type: string format: date-time title: Updated At description: The UTC time at which this key was last updated. key_id: type: string title: Key Id description: The ID of the API key. Instead of the key's Mongo ID, this UUID is used as the identifier for the key for backwards compatibility reasons. expires_at: type: string format: date-time title: Expires At description: The UTC time at which this key will expire. creator: $ref: '#/components/schemas/amigo_lib__mongo__collections__api_key__APIKey__UserInfo' description: The user who created this key. role_id: type: string title: Role Id description: The role ID of the creator of this key. type: object required: - _id - name - org_id - created_at - updated_at - key_id - expires_at - creator - role_id title: APIKeyInstance UserDimension-Output: properties: description: type: string title: Description tags: items: type: string type: array title: Tags type: object required: - description - tags title: UserDimension src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Request: properties: description: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' description: A description of the service hierarchical state machine. states: items: oneOf: - $ref: '#/components/schemas/ActionState-Input' - $ref: '#/components/schemas/DecisionState-Input' - $ref: '#/components/schemas/RecallState-Input' - $ref: '#/components/schemas/AnnotationState-Input' - $ref: '#/components/schemas/ReflectionState-Input' - $ref: '#/components/schemas/ToolCallState-Input' discriminator: propertyName: type mapping: action: '#/components/schemas/ActionState-Input' annotation: '#/components/schemas/AnnotationState-Input' decision: '#/components/schemas/DecisionState-Input' recall: '#/components/schemas/RecallState-Input' reflection: '#/components/schemas/ReflectionState-Input' tool-call: '#/components/schemas/ToolCallState-Input' type: array title: States description: The internal states in this service hierarchical state machine. new_user_initial_state: $ref: '#/components/schemas/StateOrRefName' description: The state a new user will be in when a session starts. This must be an action state, and must be an internal state. returning_user_initial_state: $ref: '#/components/schemas/StateOrRefName' description: The state a returning user will be in when a session starts. This must be an action state, and must be an internal state. terminal_state: $ref: '#/components/schemas/StateOrRefName' description: The state the user will be in when the session ends. This must be an action state, and must be an internal state. references: additionalProperties: prefixItems: - type: string pattern: ^[a-f0-9]{24}$ - type: integer type: array maxItems: 2 minItems: 2 propertyNames: $ref: '#/components/schemas/StateOrRefName' type: object title: References description: A dictionary of other service hierarchical state machines that this references to. This field is a map of the reference name to the machine's ID and its version number. global_intra_state_navigation_guidelines: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Global Intra State Navigation Guidelines description: A list of guidelines for how the agent will navigate between subgoals and exit conditions within this state. This is injected into the `intra_state_navigation_guidelines` field of every action state. global_action_guidelines: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Global Action Guidelines description: A list of guidelines for how the agent will behave when engaging with user. This is injected into the `action_guidelines` field of every action state. global_boundary_constraints: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array title: Global Boundary Constraints description: A list of guidelines for how the agent will not behave when engaging with user. This is injected into the `boundary_constraints` field of every action state. type: object required: - description - states - new_user_initial_state - returning_user_initial_state - terminal_state - references - global_intra_state_navigation_guidelines - global_action_guidelines - global_boundary_constraints title: Request ReflectionState-Input: properties: type: type: string const: reflection title: Type name: $ref: '#/components/schemas/StateOrRefName' problem: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' word_limit: type: integer exclusiveMinimum: 0.0 title: Word Limit next_state: anyOf: - $ref: '#/components/schemas/StateOrRefName' - prefixItems: - $ref: '#/components/schemas/ExternalStateName' - $ref: '#/components/schemas/StateOrRefName' type: array maxItems: 2 minItems: 2 title: Next State tool_call_specs: items: $ref: '#/components/schemas/src__app__endpoints__organization__create_service_hierarchical_state_machine_version__Request__ToolCallSpec' type: array title: Tool Call Specs audio_fillers: items: $ref: '#/components/schemas/amigo_lib__pydantic__base_model__StrippedNonemptyString__1' type: array maxItems: 5 title: Audio Fillers description: A list of audio fillers to play in audio mode if the reflection is taking too long to be generated. audio_filler_triggered_after: type: number maximum: 10.0 exclusiveMinimum: 0.0 title: Audio Filler Triggered After description: The number of seconds to wait before playing an audio filler. type: object required: - type - name - problem - word_limit - next_state - tool_call_specs - audio_fillers - audio_filler_triggered_after title: ReflectionState Preferences-Output: properties: enable_response_recommendation: type: boolean title: Enable Response Recommendation description: Whether to automatically recommend responses to the user if the user hasn't replied to the coach for a while. default: false preferred_language: anyOf: - type: string - type: 'null' title: Preferred Language description: 'The preferred language to use for the user. This field must be in the ISO 639-3 format. The agent will attempt to converse with the user in this language. If not set, the agent''s default spoken language is used.' conversations_visible_to_admins: type: boolean title: Conversations Visible To Admins description: Whether the user's conversations are visible to the admins. default: true user_model_visible_to_admins: type: boolean title: User Model Visible To Admins description: Whether the user's user model is visible to the admins. default: true timezone: anyOf: - type: string - type: 'null' title: Timezone description: The user's timezone in the IANA tz database format for all users in this organization. If not specified, UTC is used. audio_keyterms: items: type: string type: array title: Audio Keyterms description: A list of keyterms that are easy to get wrong during audio transcriptions that tend to occur commonly in audio sessions for this user. default: [] type: object title: Preferences description: Preferences that the user can set to customize their experience. securitySchemes: Bearer-Authorization: type: http scheme: bearer bearerFormat: JWT description: Amigo issued JWT token that identifies an user. It's issued either after logging in through the frontend, or manually through the [`SignInWithAPIKey`](sign-in-with-api-key) endpoint. Bearer-Authorization-Organization: type: apiKey in: header name: X-ORG-ID description: An optional organization identifier that indicates from which organization the token is issued. This is used in rare cases where the user to authenticate is making a request for resources in another organization. Basic: type: http scheme: basic description: The username should be set to {org_id}_{user_id}, and the password should be the Amigo issued JWT token that identifies the user.