content
stringlengths
1
1.05M
input_ids
sequencelengths
1
883k
ratio_char_token
float64
1
22.9
token_count
int64
1
883k
#!/usr/bin/python # -*- coding: utf-8 -*- from ansible.module_utils.openshift_common import OpenShiftAnsibleModule, OpenShiftAnsibleException DOCUMENTATION = ''' module: openshift_v1_build_config_list short_description: OpenShift BuildConfigList description: - Retrieve a list of build_configs. List operations provide a snapshot read of the underlying objects, returning a resource_version representing a consistent version of the listed objects. version_added: 2.3.0 author: OpenShift (@openshift) options: api_key: description: - Token used to connect to the API. cert_file: description: - Path to a certificate used to authenticate with the API. type: path context: description: - The name of a context found in the Kubernetes config file. debug: description: - Enable debug output from the OpenShift helper. Logging info is written to KubeObjHelper.log default: false type: bool force: description: - If set to C(True), and I(state) is C(present), an existing object will updated, and lists will be replaced, rather than merged. default: false type: bool host: description: - Provide a URL for acessing the Kubernetes API. key_file: description: - Path to a key file used to authenticate with the API. type: path kubeconfig: description: - Path to an existing Kubernetes config file. If not provided, and no other connection options are provided, the openshift client will attempt to load the default configuration file from I(~/.kube/config.json). type: path password: description: - Provide a password for connecting to the API. Use in conjunction with I(username). resource_definition: description: - Provide the YAML definition for the object, bypassing any modules parameters intended to define object attributes. type: dict src: description: - Provide a path to a file containing the YAML definition of the object. Mutually exclusive with I(resource_definition). type: path ssl_ca_cert: description: - Path to a CA certificate used to authenticate with the API. type: path state: description: - Determines if an object should be created, patched, or deleted. When set to C(present), the object will be created, if it does not exist, or patched, if parameter values differ from the existing object's attributes, and deleted, if set to C(absent). A patch operation results in merging lists and updating dictionaries, with lists being merged into a unique set of values. If a list contains a dictionary with a I(name) or I(type) attribute, a strategic merge is performed, where individual elements with a matching I(name_) or I(type) are merged. To force the replacement of lists, set the I(force) option to C(True). default: present choices: - present - absent username: description: - Provide a username for connecting to the API. verify_ssl: description: - Whether or not to verify the API server's SSL certificates. type: bool requirements: - openshift == 0.3.3 ''' EXAMPLES = ''' ''' RETURN = ''' api_version: type: string description: Requested API version build_config_list: type: complex returned: when I(state) = C(present) contains: api_version: description: - APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. type: str items: description: - items is a list of build configs type: list contains: api_version: description: - APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. type: str kind: description: - Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. type: str metadata: description: - metadata for BuildConfig. type: complex contains: annotations: description: - Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. type: complex contains: str, str cluster_name: description: - The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request. type: str creation_timestamp: description: - CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. type: complex contains: {} deletion_grace_period_seconds: description: - Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. type: int deletion_timestamp: description: - DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. type: complex contains: {} finalizers: description: - Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. type: list contains: str generate_name: description: - GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header). Applied only if Name is not specified. type: str generation: description: - A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. type: int initializers: description: - An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects. When an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user. type: complex contains: pending: description: - Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients. type: list contains: name: description: - name of the process that is responsible for initializing this object. type: str result: description: - If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion. type: complex contains: api_version: description: - APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. type: str code: description: - Suggested HTTP return code for this status, 0 if not set. type: int details: description: - Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type. type: complex contains: causes: description: - The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes. type: list contains: field: description: - 'The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional. Examples: "name" - the field "name" on the current resource "items[0].name" - the field "name" on the first array entry in "items"' type: str message: description: - A human-readable description of the cause of the error. This field may be presented as-is to a reader. type: str reason: description: - A machine-readable description of the cause of the error. If this value is empty there is no information available. type: str group: description: - The group attribute of the resource associated with the status StatusReason. type: str kind: description: - The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. type: str name: description: - The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described). type: str retry_after_seconds: description: - If specified, the time in seconds before the operation should be retried. type: int uid: description: - UID of the resource. (when there is a single resource which can be described). type: str kind: description: - Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. type: str message: description: - A human-readable description of the status of this operation. type: str metadata: description: - Standard list metadata. type: complex contains: resource_version: description: - String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. type: str self_link: description: - SelfLink is a URL representing this object. Populated by the system. Read-only. type: str reason: description: - A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. type: str status: description: - 'Status of the operation. One of: "Success" or "Failure".' type: str labels: description: - Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. type: complex contains: str, str name: description: - Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. type: str namespace: description: - Namespace defines the space within each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. type: str owner_references: description: - List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. type: list contains: api_version: description: - API version of the referent. type: str block_owner_deletion: description: - If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. type: bool controller: description: - If true, this reference points to the managing controller. type: bool kind: description: - Kind of the referent. type: str name: description: - Name of the referent. type: str uid: description: - UID of the referent. type: str resource_version: description: - An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . type: str self_link: description: - SelfLink is a URL representing this object. Populated by the system. Read-only. type: str uid: description: - UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. type: str spec: description: - spec holds all the input necessary to produce a new build, and the conditions when to trigger them. type: complex contains: completion_deadline_seconds: description: - completionDeadlineSeconds is an optional duration in seconds, counted from the time when a build pod gets scheduled in the system, that the build may be active on a node before the system actively tries to terminate the build; value must be positive integer type: int failed_builds_history_limit: description: - failedBuildsHistoryLimit is the number of old failed builds to retain. If not specified, all failed builds are retained. type: int node_selector: description: - nodeSelector is a selector which must be true for the build pod to fit on a node If nil, it can be overridden by default build nodeselector values for the cluster. If set to an empty map or a map with any values, default build nodeselector values are ignored. type: complex contains: str, str output: description: - output describes the Docker image the Strategy should produce. type: complex contains: image_labels: description: - imageLabels define a list of labels that are applied to the resulting image. If there are multiple labels with the same name then the last one in the list is used. type: list contains: name: description: - name defines the name of the label. It must have non-zero length. type: str value: description: - value defines the literal value of the label. type: str push_secret: description: - PushSecret is the name of a Secret that would be used for setting up the authentication for executing the Docker push to authentication enabled Docker Registry (or Docker Hub). type: complex contains: name: description: - Name of the referent. type: str to: description: - to defines an optional location to push the output of this build to. Kind must be one of 'ImageStreamTag' or 'DockerImage'. This value will be used to look up a Docker image repository to push to. In the case of an ImageStreamTag, the ImageStreamTag will be looked for in the namespace of the build unless Namespace is specified. type: complex contains: api_version: description: - API version of the referent. type: str field_path: description: - 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.' type: str kind: description: - Kind of the referent. type: str name: description: - Name of the referent. type: str namespace: description: - Namespace of the referent. type: str resource_version: description: - Specific resourceVersion to which this reference is made, if any. type: str uid: description: - UID of the referent. type: str post_commit: description: - postCommit is a build hook executed after the build output image is committed, before it is pushed to a registry. type: complex contains: args: description: - args is a list of arguments that are provided to either Command, Script or the Docker image's default entrypoint. The arguments are placed immediately after the command to be run. type: list contains: str command: description: - command is the command to run. It may not be specified with Script. This might be needed if the image doesn't have `/bin/sh`, or if you do not want to use a shell. In all other cases, using Script might be more convenient. type: list contains: str script: description: - script is a shell script to be run with `/bin/sh -ic`. It may not be specified with Command. Use Script when a shell script is appropriate to execute the post build hook, for example for running unit tests with `rake test`. If you need control over the image entrypoint, or if the image does not have `/bin/sh`, use Command and/or Args. The `-i` flag is needed to support CentOS and RHEL images that use Software Collections (SCL), in order to have the appropriate collections enabled in the shell. E.g., in the Ruby image, this is necessary to make `ruby`, `bundle` and other binaries available in the PATH. type: str resources: description: - resources computes resource requirements to execute the build. type: complex contains: limits: description: - Limits describes the maximum amount of compute resources allowed. type: complex contains: str, str requests: description: - Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. type: complex contains: str, str revision: description: - revision is the information from the source for a specific repo snapshot. This is optional. type: complex contains: git: description: - Git contains information about git-based build source type: complex contains: author: description: - author is the author of a specific commit type: complex contains: email: description: - email of the source control user type: str name: description: - name of the source control user type: str commit: description: - commit is the commit hash identifying a specific commit type: str committer: description: - committer is the committer of a specific commit type: complex contains: email: description: - email of the source control user type: str name: description: - name of the source control user type: str message: description: - message is the description of a specific commit type: str type: description: - type of the build source, may be one of 'Source', 'Dockerfile', 'Binary', or 'Images' type: str run_policy: description: - RunPolicy describes how the new build created from this build configuration will be scheduled for execution. This is optional, if not specified we default to "Serial". type: str service_account: description: - serviceAccount is the name of the ServiceAccount to use to run the pod created by this build. The pod will be allowed to use secrets referenced by the ServiceAccount type: str source: description: - source describes the SCM in use. type: complex contains: binary: description: - binary builds accept a binary as their input. The binary is generally assumed to be a tar, gzipped tar, or zip file depending on the strategy. For Docker builds, this is the build context and an optional Dockerfile may be specified to override any Dockerfile in the build context. For Source builds, this is assumed to be an archive as described above. For Source and Docker builds, if binary.asFile is set the build will receive a directory with a single file. contextDir may be used when an archive is provided. Custom builds will receive this binary as input on STDIN. type: complex contains: as_file: description: - asFile indicates that the provided binary input should be considered a single file within the build input. For example, specifying "webapp.war" would place the provided binary as `/webapp.war` for the builder. If left empty, the Docker and Source build strategies assume this file is a zip, tar, or tar.gz file and extract it as the source. The custom strategy receives this binary as standard input. This filename may not contain slashes or be '..' or '.'. type: str context_dir: description: - contextDir specifies the sub-directory where the source code for the application exists. This allows to have buildable sources in directory other than root of repository. type: str dockerfile: description: - dockerfile is the raw contents of a Dockerfile which should be built. When this option is specified, the FROM may be modified based on your strategy base image and additional ENV stanzas from your strategy environment will be added after the FROM, but before the rest of your Dockerfile stanzas. The Dockerfile source type may be used with other options like git - in those cases the Git repo will have any innate Dockerfile replaced in the context dir. type: str git: description: - git contains optional information about git build source type: complex contains: http_proxy: description: - httpProxy is a proxy used to reach the git repository over http type: str https_proxy: description: - httpsProxy is a proxy used to reach the git repository over https type: str no_proxy: description: - noProxy is the list of domains for which the proxy should not be used type: str ref: description: - ref is the branch/tag/ref to build. type: str uri: description: - uri points to the source that will be built. The structure of the source will depend on the type of build to run type: str images: description: - images describes a set of images to be used to provide source for the build type: list contains: _from: description: - from is a reference to an ImageStreamTag, ImageStreamImage, or DockerImage to copy source from. type: complex contains: api_version: description: - API version of the referent. type: str field_path: description: - 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.' type: str kind: description: - Kind of the referent. type: str name: description: - Name of the referent. type: str namespace: description: - Namespace of the referent. type: str resource_version: description: - Specific resourceVersion to which this reference is made, if any. type: str uid: description: - UID of the referent. type: str paths: description: - paths is a list of source and destination paths to copy from the image. type: list contains: destination_dir: description: - destinationDir is the relative directory within the build directory where files copied from the image are placed. type: str source_path: description: - sourcePath is the absolute path of the file or directory inside the image to copy to the build directory. If the source path ends in /. then the content of the directory will be copied, but the directory itself will not be created at the destination. type: str pull_secret: description: - pullSecret is a reference to a secret to be used to pull the image from a registry If the image is pulled from the OpenShift registry, this field does not need to be set. type: complex contains: name: description: - Name of the referent. type: str secrets: description: - secrets represents a list of secrets and their destinations that will be used only for the build. type: list contains: destination_dir: description: - destinationDir is the directory where the files from the secret should be available for the build time. For the Source build strategy, these will be injected into a container where the assemble script runs. Later, when the script finishes, all files injected will be truncated to zero length. For the Docker build strategy, these will be copied into the build directory, where the Dockerfile is located, so users can ADD or COPY them during docker build. type: str secret: description: - secret is a reference to an existing secret that you want to use in your build. type: complex contains: name: description: - Name of the referent. type: str source_secret: description: - "sourceSecret is the name of a Secret that would be used for setting\ \ up the authentication for cloning private repository. The secret\ \ contains valid credentials for remote repository, where the\ \ data's key represent the authentication method to be used and\ \ value is the base64 encoded credentials. Supported auth methods\ \ are: ssh-privatekey." type: complex contains: name: description: - Name of the referent. type: str type: description: - type of build input to accept type: str strategy: description: - strategy defines how to perform a build. type: complex contains: custom_strategy: description: - customStrategy holds the parameters to the Custom build strategy type: complex contains: _from: description: - from is reference to an DockerImage, ImageStreamTag, or ImageStreamImage from which the docker image should be pulled type: complex contains: api_version: description: - API version of the referent. type: str field_path: description: - 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.' type: str kind: description: - Kind of the referent. type: str name: description: - Name of the referent. type: str namespace: description: - Namespace of the referent. type: str resource_version: description: - Specific resourceVersion to which this reference is made, if any. type: str uid: description: - UID of the referent. type: str build_api_version: description: - buildAPIVersion is the requested API version for the Build object serialized and passed to the custom builder type: str env: description: - env contains additional environment variables you want to pass into a builder container. type: list contains: name: description: - Name of the environment variable. Must be a C_IDENTIFIER. type: str value: description: - 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' type: str value_from: description: - Source for the environment variable's value. Cannot be used if value is not empty. type: complex contains: config_map_key_ref: description: - Selects a key of a ConfigMap. type: complex contains: key: description: - The key to select. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the ConfigMap or it's key must be defined type: bool field_ref: description: - 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.' type: complex contains: api_version: description: - Version of the schema the FieldPath is written in terms of, defaults to "v1". type: str field_path: description: - Path of the field to select in the specified API version. type: str resource_field_ref: description: - 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' type: complex contains: container_name: description: - 'Container name: required for volumes, optional for env vars' type: str divisor: description: - Specifies the output format of the exposed resources, defaults to "1" type: str resource: description: - 'Required: resource to select' type: str secret_key_ref: description: - Selects a key of a secret in the pod's namespace type: complex contains: key: description: - The key of the secret to select from. Must be a valid secret key. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the Secret or it's key must be defined type: bool expose_docker_socket: description: - exposeDockerSocket will allow running Docker commands (and build Docker images) from inside the Docker container. type: bool force_pull: description: - forcePull describes if the controller should configure the build pod to always pull the images for the builder or only pull if it is not present locally type: bool pull_secret: description: - pullSecret is the name of a Secret that would be used for setting up the authentication for pulling the Docker images from the private Docker registries type: complex contains: name: description: - Name of the referent. type: str secrets: description: - secrets is a list of additional secrets that will be included in the build pod type: list contains: mount_path: description: - mountPath is the path at which to mount the secret type: str secret_source: description: - secretSource is a reference to the secret type: complex contains: name: description: - Name of the referent. type: str docker_strategy: description: - dockerStrategy holds the parameters to the Docker build strategy. type: complex contains: _from: description: - from is reference to an DockerImage, ImageStreamTag, or ImageStreamImage from which the docker image should be pulled the resulting image will be used in the FROM line of the Dockerfile for this build. type: complex contains: api_version: description: - API version of the referent. type: str field_path: description: - 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.' type: str kind: description: - Kind of the referent. type: str name: description: - Name of the referent. type: str namespace: description: - Namespace of the referent. type: str resource_version: description: - Specific resourceVersion to which this reference is made, if any. type: str uid: description: - UID of the referent. type: str build_args: description: - buildArgs contains build arguments that will be resolved in the Dockerfile. See type: list contains: name: description: - Name of the environment variable. Must be a C_IDENTIFIER. type: str value: description: - 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' type: str value_from: description: - Source for the environment variable's value. Cannot be used if value is not empty. type: complex contains: config_map_key_ref: description: - Selects a key of a ConfigMap. type: complex contains: key: description: - The key to select. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the ConfigMap or it's key must be defined type: bool field_ref: description: - 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.' type: complex contains: api_version: description: - Version of the schema the FieldPath is written in terms of, defaults to "v1". type: str field_path: description: - Path of the field to select in the specified API version. type: str resource_field_ref: description: - 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' type: complex contains: container_name: description: - 'Container name: required for volumes, optional for env vars' type: str divisor: description: - Specifies the output format of the exposed resources, defaults to "1" type: str resource: description: - 'Required: resource to select' type: str secret_key_ref: description: - Selects a key of a secret in the pod's namespace type: complex contains: key: description: - The key of the secret to select from. Must be a valid secret key. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the Secret or it's key must be defined type: bool dockerfile_path: description: - dockerfilePath is the path of the Dockerfile that will be used to build the Docker image, relative to the root of the context (contextDir). type: str env: description: - env contains additional environment variables you want to pass into a builder container. type: list contains: name: description: - Name of the environment variable. Must be a C_IDENTIFIER. type: str value: description: - 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' type: str value_from: description: - Source for the environment variable's value. Cannot be used if value is not empty. type: complex contains: config_map_key_ref: description: - Selects a key of a ConfigMap. type: complex contains: key: description: - The key to select. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the ConfigMap or it's key must be defined type: bool field_ref: description: - 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.' type: complex contains: api_version: description: - Version of the schema the FieldPath is written in terms of, defaults to "v1". type: str field_path: description: - Path of the field to select in the specified API version. type: str resource_field_ref: description: - 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' type: complex contains: container_name: description: - 'Container name: required for volumes, optional for env vars' type: str divisor: description: - Specifies the output format of the exposed resources, defaults to "1" type: str resource: description: - 'Required: resource to select' type: str secret_key_ref: description: - Selects a key of a secret in the pod's namespace type: complex contains: key: description: - The key of the secret to select from. Must be a valid secret key. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the Secret or it's key must be defined type: bool force_pull: description: - forcePull describes if the builder should pull the images from registry prior to building. type: bool image_optimization_policy: description: - imageOptimizationPolicy describes what optimizations the system can use when building images to reduce the final size or time spent building the image. The default policy is 'None' which means the final build image will be equivalent to an image created by the Docker build API. The experimental policy 'SkipLayers' will avoid commiting new layers in between each image step, and will fail if the Dockerfile cannot provide compatibility with the 'None' policy. An additional experimental policy 'SkipLayersAndWarn' is the same as 'SkipLayers' but simply warns if compatibility cannot be preserved. type: str no_cache: description: - noCache if set to true indicates that the docker build must be executed with the --no-cache=true flag type: bool pull_secret: description: - pullSecret is the name of a Secret that would be used for setting up the authentication for pulling the Docker images from the private Docker registries type: complex contains: name: description: - Name of the referent. type: str jenkins_pipeline_strategy: description: - JenkinsPipelineStrategy holds the parameters to the Jenkins Pipeline build strategy. This strategy is in tech preview. type: complex contains: env: description: - env contains additional environment variables you want to pass into a build pipeline. type: list contains: name: description: - Name of the environment variable. Must be a C_IDENTIFIER. type: str value: description: - 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' type: str value_from: description: - Source for the environment variable's value. Cannot be used if value is not empty. type: complex contains: config_map_key_ref: description: - Selects a key of a ConfigMap. type: complex contains: key: description: - The key to select. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the ConfigMap or it's key must be defined type: bool field_ref: description: - 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.' type: complex contains: api_version: description: - Version of the schema the FieldPath is written in terms of, defaults to "v1". type: str field_path: description: - Path of the field to select in the specified API version. type: str resource_field_ref: description: - 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' type: complex contains: container_name: description: - 'Container name: required for volumes, optional for env vars' type: str divisor: description: - Specifies the output format of the exposed resources, defaults to "1" type: str resource: description: - 'Required: resource to select' type: str secret_key_ref: description: - Selects a key of a secret in the pod's namespace type: complex contains: key: description: - The key of the secret to select from. Must be a valid secret key. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the Secret or it's key must be defined type: bool jenkinsfile: description: - Jenkinsfile defines the optional raw contents of a Jenkinsfile which defines a Jenkins pipeline build. type: str jenkinsfile_path: description: - JenkinsfilePath is the optional path of the Jenkinsfile that will be used to configure the pipeline relative to the root of the context (contextDir). If both JenkinsfilePath & Jenkinsfile are both not specified, this defaults to Jenkinsfile in the root of the specified contextDir. type: str source_strategy: description: - sourceStrategy holds the parameters to the Source build strategy. type: complex contains: _from: description: - from is reference to an DockerImage, ImageStreamTag, or ImageStreamImage from which the docker image should be pulled type: complex contains: api_version: description: - API version of the referent. type: str field_path: description: - 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.' type: str kind: description: - Kind of the referent. type: str name: description: - Name of the referent. type: str namespace: description: - Namespace of the referent. type: str resource_version: description: - Specific resourceVersion to which this reference is made, if any. type: str uid: description: - UID of the referent. type: str env: description: - env contains additional environment variables you want to pass into a builder container. type: list contains: name: description: - Name of the environment variable. Must be a C_IDENTIFIER. type: str value: description: - 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' type: str value_from: description: - Source for the environment variable's value. Cannot be used if value is not empty. type: complex contains: config_map_key_ref: description: - Selects a key of a ConfigMap. type: complex contains: key: description: - The key to select. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the ConfigMap or it's key must be defined type: bool field_ref: description: - 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.' type: complex contains: api_version: description: - Version of the schema the FieldPath is written in terms of, defaults to "v1". type: str field_path: description: - Path of the field to select in the specified API version. type: str resource_field_ref: description: - 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' type: complex contains: container_name: description: - 'Container name: required for volumes, optional for env vars' type: str divisor: description: - Specifies the output format of the exposed resources, defaults to "1" type: str resource: description: - 'Required: resource to select' type: str secret_key_ref: description: - Selects a key of a secret in the pod's namespace type: complex contains: key: description: - The key of the secret to select from. Must be a valid secret key. type: str name: description: - Name of the referent. type: str optional: description: - Specify whether the Secret or it's key must be defined type: bool force_pull: description: - forcePull describes if the builder should pull the images from registry prior to building. type: bool incremental: description: - incremental flag forces the Source build to do incremental builds if true. type: bool pull_secret: description: - pullSecret is the name of a Secret that would be used for setting up the authentication for pulling the Docker images from the private Docker registries type: complex contains: name: description: - Name of the referent. type: str runtime_artifacts: description: - 'runtimeArtifacts specifies a list of source/destination pairs that will be copied from the builder to the runtime image. sourcePath can be a file or directory. destinationDir must be a directory. destinationDir can also be empty or equal to ".", in this case it just refers to the root of WORKDIR. Deprecated: This feature will be removed in a future release. Use ImageSource to copy binary artifacts created from one build into a separate runtime image.' type: list contains: destination_dir: description: - destinationDir is the relative directory within the build directory where files copied from the image are placed. type: str source_path: description: - sourcePath is the absolute path of the file or directory inside the image to copy to the build directory. If the source path ends in /. then the content of the directory will be copied, but the directory itself will not be created at the destination. type: str runtime_image: description: - 'runtimeImage is an optional image that is used to run an application without unneeded dependencies installed. The building of the application is still done in the builder image but, post build, you can copy the needed artifacts in the runtime image for use. Deprecated: This feature will be removed in a future release. Use ImageSource to copy binary artifacts created from one build into a separate runtime image.' type: complex contains: api_version: description: - API version of the referent. type: str field_path: description: - 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.' type: str kind: description: - Kind of the referent. type: str name: description: - Name of the referent. type: str namespace: description: - Namespace of the referent. type: str resource_version: description: - Specific resourceVersion to which this reference is made, if any. type: str uid: description: - UID of the referent. type: str scripts: description: - scripts is the location of Source scripts type: str type: description: - type is the kind of build strategy. type: str successful_builds_history_limit: description: - successfulBuildsHistoryLimit is the number of old successful builds to retain. If not specified, all successful builds are retained. type: int triggers: description: - triggers determine how new Builds can be launched from a BuildConfig. If no triggers are defined, a new build can only occur as a result of an explicit client build creation. type: list contains: bitbucket: description: - BitbucketWebHook contains the parameters for a Bitbucket webhook type of trigger type: complex contains: allow_env: description: - allowEnv determines whether the webhook can set environment variables; can only be set to true for GenericWebHook. type: bool secret: description: - secret used to validate requests. type: str generic: description: - generic contains the parameters for a Generic webhook type of trigger type: complex contains: allow_env: description: - allowEnv determines whether the webhook can set environment variables; can only be set to true for GenericWebHook. type: bool secret: description: - secret used to validate requests. type: str github: description: - github contains the parameters for a GitHub webhook type of trigger type: complex contains: allow_env: description: - allowEnv determines whether the webhook can set environment variables; can only be set to true for GenericWebHook. type: bool secret: description: - secret used to validate requests. type: str gitlab: description: - GitLabWebHook contains the parameters for a GitLab webhook type of trigger type: complex contains: allow_env: description: - allowEnv determines whether the webhook can set environment variables; can only be set to true for GenericWebHook. type: bool secret: description: - secret used to validate requests. type: str image_change: description: - imageChange contains parameters for an ImageChange type of trigger type: complex contains: _from: description: - from is a reference to an ImageStreamTag that will trigger a build when updated It is optional. If no From is specified, the From image from the build strategy will be used. Only one ImageChangeTrigger with an empty From reference is allowed in a build configuration. type: complex contains: api_version: description: - API version of the referent. type: str field_path: description: - 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.' type: str kind: description: - Kind of the referent. type: str name: description: - Name of the referent. type: str namespace: description: - Namespace of the referent. type: str resource_version: description: - Specific resourceVersion to which this reference is made, if any. type: str uid: description: - UID of the referent. type: str last_triggered_image_id: description: - lastTriggeredImageID is used internally by the ImageChangeController to save last used image ID for build type: str type: description: - type is the type of build trigger type: str status: description: - status holds any relevant information about a build config type: complex contains: last_version: description: - lastVersion is used to inform about number of last triggered build. type: int kind: description: - Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. type: str metadata: description: - metadata for BuildConfigList. type: complex contains: resource_version: description: - String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. type: str self_link: description: - SelfLink is a URL representing this object. Populated by the system. Read-only. type: str ''' if __name__ == '__main__': main()
[ 2, 48443, 14629, 14, 8800, 14, 29412, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 6738, 9093, 856, 13, 21412, 62, 26791, 13, 44813, 29323, 62, 11321, 1330, 4946, 33377, 2025, 82, 856, 26796, 11, 4946, 33377, 2025, 82, 856, 16922, 198, 198, 38715, 5883, 3525, 6234, 796, 705, 7061, 198, 21412, 25, 9808, 29323, 62, 85, 16, 62, 11249, 62, 11250, 62, 4868, 198, 19509, 62, 11213, 25, 4946, 33377, 10934, 16934, 8053, 198, 11213, 25, 198, 12, 4990, 30227, 257, 1351, 286, 1382, 62, 11250, 82, 13, 7343, 4560, 2148, 257, 27479, 1100, 286, 262, 198, 220, 10238, 5563, 11, 8024, 257, 8271, 62, 9641, 10200, 257, 6414, 2196, 198, 220, 286, 262, 5610, 5563, 13, 198, 9641, 62, 29373, 25, 362, 13, 18, 13, 15, 198, 9800, 25, 4946, 33377, 4275, 44813, 29323, 8, 198, 25811, 25, 198, 220, 40391, 62, 2539, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 29130, 973, 284, 2018, 284, 262, 7824, 13, 198, 220, 5051, 62, 7753, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 10644, 284, 257, 10703, 973, 284, 8323, 5344, 351, 262, 7824, 13, 198, 220, 220, 220, 2099, 25, 3108, 198, 220, 4732, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 383, 1438, 286, 257, 4732, 1043, 287, 262, 12554, 527, 3262, 274, 4566, 2393, 13, 198, 220, 14257, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 27882, 14257, 5072, 422, 262, 4946, 33377, 31904, 13, 5972, 2667, 7508, 318, 3194, 284, 509, 3266, 49201, 47429, 13, 6404, 198, 220, 220, 220, 4277, 25, 3991, 198, 220, 220, 220, 2099, 25, 20512, 198, 220, 2700, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 1002, 900, 284, 327, 7, 17821, 828, 290, 314, 7, 5219, 8, 318, 327, 7, 25579, 828, 281, 4683, 2134, 481, 6153, 11, 198, 220, 220, 220, 220, 220, 290, 8341, 481, 307, 6928, 11, 2138, 621, 23791, 13, 198, 220, 220, 220, 4277, 25, 3991, 198, 220, 220, 220, 2099, 25, 20512, 198, 220, 2583, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 44290, 257, 10289, 329, 257, 919, 278, 262, 12554, 527, 3262, 274, 7824, 13, 198, 220, 1994, 62, 7753, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 10644, 284, 257, 1994, 2393, 973, 284, 8323, 5344, 351, 262, 7824, 13, 198, 220, 220, 220, 2099, 25, 3108, 198, 220, 479, 549, 721, 261, 5647, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 10644, 284, 281, 4683, 12554, 527, 3262, 274, 4566, 2393, 13, 1002, 407, 2810, 11, 290, 645, 584, 4637, 198, 220, 220, 220, 220, 220, 3689, 389, 2810, 11, 262, 9808, 29323, 5456, 481, 2230, 284, 3440, 262, 4277, 198, 220, 220, 220, 220, 220, 8398, 2393, 422, 314, 7, 93, 11757, 74, 3266, 14, 11250, 13, 17752, 737, 198, 220, 220, 220, 2099, 25, 3108, 198, 220, 9206, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 44290, 257, 9206, 329, 14320, 284, 262, 7824, 13, 5765, 287, 17856, 351, 314, 7, 29460, 737, 198, 220, 8271, 62, 46758, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 44290, 262, 575, 2390, 43, 6770, 329, 262, 2134, 11, 17286, 278, 597, 13103, 10007, 198, 220, 220, 220, 220, 220, 5292, 284, 8160, 2134, 12608, 13, 198, 220, 220, 220, 2099, 25, 8633, 198, 220, 12351, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 44290, 257, 3108, 284, 257, 2393, 7268, 262, 575, 2390, 43, 6770, 286, 262, 2134, 13, 13859, 935, 198, 220, 220, 220, 220, 220, 8568, 351, 314, 7, 31092, 62, 46758, 737, 198, 220, 220, 220, 2099, 25, 3108, 198, 220, 264, 6649, 62, 6888, 62, 22583, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 10644, 284, 257, 7257, 10703, 973, 284, 8323, 5344, 351, 262, 7824, 13, 198, 220, 220, 220, 2099, 25, 3108, 198, 220, 1181, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 360, 13221, 274, 611, 281, 2134, 815, 307, 2727, 11, 39378, 11, 393, 13140, 13, 1649, 900, 284, 198, 220, 220, 220, 220, 220, 327, 7, 25579, 828, 262, 2134, 481, 307, 2727, 11, 611, 340, 857, 407, 2152, 11, 393, 39378, 11, 611, 198, 220, 220, 220, 220, 220, 11507, 3815, 13238, 422, 262, 4683, 2134, 338, 12608, 11, 290, 13140, 11, 198, 220, 220, 220, 220, 220, 611, 900, 284, 327, 7, 8937, 298, 737, 317, 8529, 4905, 2482, 287, 35981, 8341, 290, 19698, 198, 220, 220, 220, 220, 220, 48589, 3166, 11, 351, 8341, 852, 23791, 656, 257, 3748, 900, 286, 3815, 13, 1002, 257, 1351, 198, 220, 220, 220, 220, 220, 4909, 257, 22155, 351, 257, 314, 7, 3672, 8, 393, 314, 7, 4906, 8, 11688, 11, 257, 10039, 20121, 198, 220, 220, 220, 220, 220, 318, 6157, 11, 810, 1981, 4847, 351, 257, 12336, 314, 7, 3672, 62, 8, 393, 314, 7, 4906, 8, 198, 220, 220, 220, 220, 220, 389, 23791, 13, 1675, 2700, 262, 9014, 286, 8341, 11, 900, 262, 314, 7, 3174, 8, 3038, 284, 327, 7, 17821, 737, 198, 220, 220, 220, 4277, 25, 1944, 198, 220, 220, 220, 7747, 25, 198, 220, 220, 220, 532, 1944, 198, 220, 220, 220, 532, 13717, 198, 220, 20579, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 44290, 257, 20579, 329, 14320, 284, 262, 7824, 13, 198, 220, 11767, 62, 45163, 25, 198, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 532, 10127, 393, 407, 284, 11767, 262, 7824, 4382, 338, 25952, 20835, 13, 198, 220, 220, 220, 2099, 25, 20512, 198, 8897, 18883, 25, 198, 12, 9808, 29323, 6624, 657, 13, 18, 13, 18, 198, 7061, 6, 198, 198, 6369, 2390, 6489, 1546, 796, 705, 7061, 198, 7061, 6, 198, 198, 26087, 27064, 796, 705, 7061, 198, 15042, 62, 9641, 25, 198, 220, 2099, 25, 4731, 198, 220, 6764, 25, 19390, 276, 7824, 2196, 198, 11249, 62, 11250, 62, 4868, 25, 198, 220, 2099, 25, 3716, 198, 220, 4504, 25, 618, 314, 7, 5219, 8, 796, 327, 7, 25579, 8, 198, 220, 4909, 25, 198, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 532, 3486, 3824, 6900, 15738, 262, 2196, 276, 32815, 286, 428, 10552, 286, 281, 2134, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2930, 690, 815, 10385, 8018, 3897, 5356, 284, 262, 3452, 5387, 1988, 11, 290, 198, 220, 220, 220, 220, 220, 220, 220, 743, 4968, 43483, 1143, 3815, 13, 198, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 3709, 25, 198, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 532, 3709, 318, 257, 1351, 286, 1382, 4566, 82, 198, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3486, 3824, 6900, 15738, 262, 2196, 276, 32815, 286, 428, 10552, 286, 281, 2134, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2930, 690, 815, 10385, 8018, 3897, 5356, 284, 262, 3452, 5387, 1988, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 743, 4968, 43483, 1143, 3815, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 318, 257, 4731, 1988, 10200, 262, 30617, 8271, 428, 2134, 6870, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2930, 690, 743, 13249, 428, 422, 262, 36123, 262, 5456, 850, 24883, 7007, 284, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26003, 307, 6153, 13, 554, 43281, 20448, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 20150, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 20150, 329, 10934, 16934, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37647, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 47939, 318, 281, 555, 7249, 1522, 1994, 1988, 3975, 8574, 351, 257, 8271, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 326, 743, 307, 900, 416, 7097, 4899, 284, 3650, 290, 19818, 14977, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20150, 13, 1119, 389, 407, 12405, 540, 290, 815, 307, 17232, 618, 30620, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5563, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 965, 11, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13946, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1438, 286, 262, 13946, 543, 262, 2134, 14448, 284, 13, 770, 318, 973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 15714, 4133, 351, 976, 1438, 290, 25745, 287, 1180, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23163, 13, 770, 2214, 318, 407, 900, 6609, 826, 783, 290, 2471, 5847, 332, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1016, 284, 8856, 340, 611, 900, 287, 2251, 393, 4296, 2581, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6282, 62, 16514, 27823, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 21582, 14967, 27823, 318, 257, 41033, 10200, 262, 4382, 640, 618, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 428, 2134, 373, 2727, 13, 632, 318, 407, 11462, 284, 307, 900, 287, 4325, 12, 19052, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1502, 1973, 4553, 4560, 13, 1012, 2334, 743, 407, 900, 428, 1988, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 632, 318, 7997, 287, 30978, 2091, 2670, 1296, 290, 318, 287, 18119, 13, 8099, 4817, 416, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1080, 13, 4149, 12, 8807, 13, 35886, 329, 8341, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 39948, 62, 2164, 558, 62, 41007, 62, 43012, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7913, 286, 4201, 3142, 329, 428, 2134, 284, 11542, 2759, 23654, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 878, 340, 481, 307, 4615, 422, 262, 1080, 13, 5514, 900, 618, 39948, 14967, 27823, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 635, 900, 13, 1737, 691, 307, 34464, 13, 4149, 12, 8807, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 39948, 62, 16514, 27823, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1024, 1616, 295, 14967, 27823, 318, 30978, 23460, 24, 3128, 290, 640, 379, 543, 428, 8271, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 307, 13140, 13, 770, 2214, 318, 900, 416, 262, 4382, 618, 257, 44363, 39948, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 9167, 416, 262, 2836, 11, 290, 318, 407, 3264, 2970, 540, 416, 257, 5456, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 8271, 318, 2938, 284, 307, 13140, 357, 3919, 2392, 7424, 422, 8271, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8341, 11, 290, 407, 3151, 540, 416, 1438, 8, 706, 262, 640, 287, 428, 2214, 13, 4874, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 11, 428, 1988, 743, 407, 307, 555, 2617, 393, 307, 900, 2252, 656, 262, 2003, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3584, 340, 743, 307, 34464, 393, 262, 8271, 743, 307, 13140, 3161, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 428, 640, 13, 1114, 1672, 11, 257, 2836, 743, 2581, 326, 257, 24573, 318, 13140, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 1542, 4201, 13, 383, 509, 3266, 1616, 481, 6324, 416, 7216, 257, 44363, 19883, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6737, 284, 262, 16472, 287, 262, 24573, 13, 2293, 326, 1542, 4201, 11, 262, 509, 3266, 1616, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 3758, 257, 1327, 19883, 6737, 357, 50, 3528, 42, 8267, 8, 284, 262, 9290, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 706, 27425, 11, 4781, 262, 24573, 422, 262, 7824, 13, 554, 262, 4931, 286, 3127, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43869, 11, 428, 2134, 743, 991, 2152, 706, 428, 41033, 11, 1566, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 281, 18382, 393, 16359, 1429, 460, 5004, 262, 8271, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3938, 23083, 13, 1002, 407, 900, 11, 44363, 39948, 286, 262, 2134, 468, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 587, 9167, 13, 8099, 4817, 416, 262, 1080, 618, 257, 44363, 39948, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 9167, 13, 4149, 12, 8807, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2457, 11341, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 12039, 307, 6565, 878, 262, 2134, 318, 13140, 422, 262, 20478, 13, 5501, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5726, 318, 281, 27421, 329, 262, 4497, 7515, 326, 481, 4781, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 5726, 422, 262, 1351, 13, 1002, 262, 39948, 14967, 27823, 286, 262, 2134, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1729, 12, 45991, 11, 12784, 287, 428, 1351, 460, 691, 307, 4615, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7716, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2980, 378, 5376, 318, 281, 11902, 21231, 11, 973, 416, 262, 4382, 11, 284, 7716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 3748, 1438, 22224, 16876, 262, 6530, 2214, 468, 407, 587, 2810, 13, 1002, 428, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 318, 973, 11, 262, 1438, 4504, 284, 262, 5456, 481, 307, 1180, 621, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1438, 3804, 13, 770, 1988, 481, 635, 307, 5929, 351, 257, 3748, 35488, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 2810, 1988, 468, 262, 976, 21201, 3173, 355, 262, 6530, 2214, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 743, 307, 40122, 515, 416, 262, 4129, 286, 262, 35488, 2672, 284, 787, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1988, 3748, 319, 262, 4382, 13, 1002, 428, 2214, 318, 7368, 290, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7560, 1438, 7160, 11, 262, 4382, 481, 5626, 1441, 257, 48132, 532, 2427, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 340, 481, 2035, 1441, 580, 15622, 393, 5323, 351, 23219, 9652, 48031, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12739, 257, 3748, 1438, 714, 407, 307, 1043, 287, 262, 640, 44554, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 262, 5456, 815, 1005, 563, 357, 18076, 453, 706, 262, 640, 8203, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 4990, 563, 12, 3260, 13639, 737, 27684, 691, 611, 6530, 318, 407, 7368, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5270, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 317, 8379, 1271, 10200, 257, 2176, 5270, 286, 262, 10348, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1181, 13, 8099, 4817, 416, 262, 1080, 13, 4149, 12, 8807, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4238, 11341, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1052, 4238, 7509, 318, 257, 10444, 543, 551, 27087, 617, 1080, 25275, 415, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 379, 2134, 6282, 640, 13, 770, 2214, 318, 257, 1351, 286, 4238, 11341, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 423, 407, 1865, 13134, 319, 428, 2134, 13, 1002, 18038, 393, 6565, 11, 428, 2134, 468, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 587, 3190, 23224, 13, 15323, 11, 262, 2134, 318, 3177, 555, 17532, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 318, 7104, 357, 259, 1351, 14, 8340, 290, 651, 3848, 8, 422, 7534, 326, 4398, 470, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11777, 1965, 284, 12414, 555, 17532, 5563, 13, 1649, 281, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 2727, 11, 262, 1080, 481, 48040, 428, 1351, 351, 262, 1459, 900, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 4238, 11341, 13, 5514, 21929, 2985, 743, 900, 393, 13096, 428, 1351, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4874, 340, 318, 6565, 11, 340, 743, 407, 307, 9518, 2252, 416, 597, 2836, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13310, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 350, 1571, 318, 257, 1351, 286, 4238, 11341, 326, 1276, 12260, 287, 1502, 878, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 428, 2134, 318, 7424, 13, 1649, 262, 938, 13310, 4238, 7509, 318, 4615, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 645, 9894, 1255, 318, 900, 11, 262, 4238, 11341, 2878, 481, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 900, 284, 18038, 290, 262, 2134, 318, 3177, 355, 23224, 290, 7424, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 477, 7534, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1438, 286, 262, 1429, 326, 318, 4497, 329, 4238, 2890, 428, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1002, 1255, 318, 900, 351, 262, 25743, 2214, 11, 262, 2134, 481, 307, 33264, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 6143, 290, 788, 13140, 11, 13359, 326, 584, 7534, 460, 12414, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 39948, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3486, 3824, 6900, 15738, 262, 2196, 276, 32815, 286, 428, 10552, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 281, 2134, 13, 2930, 690, 815, 10385, 8018, 3897, 5356, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 3452, 5387, 1988, 11, 290, 743, 4968, 43483, 1143, 3815, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 35042, 276, 14626, 1441, 2438, 329, 428, 3722, 11, 657, 611, 407, 900, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3307, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 24204, 1366, 3917, 351, 262, 1738, 13, 5501, 1738, 743, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8160, 663, 898, 7083, 3307, 13, 770, 2214, 318, 11902, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1366, 4504, 318, 407, 11462, 284, 17216, 284, 597, 32815, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 326, 5447, 416, 262, 1738, 2099, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5640, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 46865, 7177, 3407, 517, 3307, 3917, 351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 12678, 45008, 5287, 13, 1892, 477, 12678, 3041, 2812, 743, 2148, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6496, 5640, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 464, 2214, 286, 262, 8271, 326, 468, 4073, 428, 4049, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 355, 3706, 416, 663, 19449, 11389, 1634, 13, 1737, 2291, 16605, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 1281, 13049, 33274, 329, 28376, 12608, 13, 943, 20477, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 389, 6632, 12, 9630, 276, 13, 23948, 743, 1656, 517, 621, 1752, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 281, 7177, 286, 5640, 2233, 284, 7032, 1719, 3294, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8563, 13, 32233, 13, 21066, 25, 366, 3672, 1, 532, 262, 2214, 366, 3672, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 319, 262, 1459, 8271, 366, 23814, 58, 15, 4083, 3672, 1, 532, 262, 2214, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 3672, 1, 319, 262, 717, 7177, 5726, 287, 366, 23814, 30543, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3275, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 317, 1692, 12, 46155, 6764, 286, 262, 2728, 286, 262, 4049, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 2214, 743, 307, 5545, 355, 12, 271, 284, 257, 9173, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 317, 4572, 12, 46155, 6764, 286, 262, 2728, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4049, 13, 1002, 428, 1988, 318, 6565, 612, 318, 645, 1321, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1695, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1448, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1448, 11688, 286, 262, 8271, 3917, 351, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3722, 12678, 45008, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1611, 11688, 286, 262, 8271, 3917, 351, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3722, 12678, 45008, 13, 1550, 617, 4560, 743, 13238, 422, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 9167, 8271, 14927, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1438, 11688, 286, 262, 8271, 3917, 351, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3722, 12678, 45008, 357, 12518, 612, 318, 257, 2060, 1438, 543, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 460, 307, 3417, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1005, 563, 62, 8499, 62, 43012, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1002, 7368, 11, 262, 640, 287, 4201, 878, 262, 4905, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 815, 307, 1005, 2228, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 286, 262, 8271, 13, 357, 12518, 612, 318, 257, 2060, 8271, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 543, 460, 307, 3417, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 318, 257, 4731, 1988, 10200, 262, 30617, 8271, 428, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 6870, 13, 2930, 690, 743, 13249, 428, 422, 262, 36123, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 5456, 850, 24883, 7007, 284, 13, 26003, 307, 6153, 13, 554, 43281, 20448, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3275, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 317, 1692, 12, 46155, 6764, 286, 262, 3722, 286, 428, 4905, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20150, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 8997, 1351, 20150, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10903, 326, 21079, 262, 4382, 338, 5387, 2196, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 428, 2134, 326, 460, 307, 973, 416, 7534, 284, 5004, 618, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5563, 423, 3421, 13, 11052, 1276, 307, 5716, 355, 32191, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 7534, 290, 3804, 555, 41771, 736, 284, 262, 4382, 13, 8099, 4817, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 262, 1080, 13, 4149, 12, 8807, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 62, 8726, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 12189, 11280, 318, 257, 10289, 10200, 428, 2134, 13, 8099, 4817, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 262, 1080, 13, 4149, 12, 8807, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 317, 4572, 12, 46155, 6764, 286, 1521, 428, 4905, 318, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 366, 50015, 1, 3722, 13, 1002, 428, 1988, 318, 6565, 612, 318, 645, 1321, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1695, 13, 317, 23219, 10212, 6945, 281, 14626, 3722, 2438, 475, 857, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 20957, 340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3722, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 19580, 286, 262, 4905, 13, 1881, 286, 25, 366, 33244, 1, 393, 366, 50015, 1911, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14722, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9347, 286, 4731, 8251, 290, 3815, 326, 460, 307, 973, 284, 16481, 290, 17851, 1096, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 29982, 290, 2922, 8, 5563, 13, 1737, 2872, 2922, 669, 286, 30330, 20624, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 2594, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 965, 11, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 1276, 307, 3748, 1626, 257, 25745, 13, 1148, 2672, 618, 4441, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 11, 3584, 617, 4133, 743, 1249, 257, 5456, 284, 2581, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5270, 286, 281, 5035, 1438, 6338, 13, 6530, 318, 7525, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5292, 329, 6282, 4686, 368, 13059, 594, 290, 8398, 6770, 13, 26003, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 6153, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 28531, 10223, 15738, 262, 2272, 1626, 1123, 1438, 1276, 307, 3748, 13, 1052, 6565, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 318, 7548, 284, 262, 366, 12286, 1, 25745, 11, 475, 366, 12286, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 262, 40091, 10552, 13, 1892, 477, 5563, 389, 2672, 284, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 629, 19458, 284, 257, 25745, 532, 262, 1988, 286, 428, 2214, 329, 883, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 307, 6565, 13, 12039, 307, 257, 18538, 62, 48780, 3698, 13, 26003, 307, 6153, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4870, 62, 5420, 4972, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7343, 286, 5563, 33785, 416, 428, 2134, 13, 1002, 11096, 5563, 287, 262, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 423, 587, 13140, 11, 428, 2134, 481, 307, 15413, 7723, 13, 1002, 428, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 318, 5257, 416, 257, 10444, 11, 788, 281, 5726, 287, 428, 1351, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 966, 284, 428, 10444, 11, 351, 262, 10444, 2214, 900, 284, 2081, 13, 1318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2314, 307, 517, 621, 530, 11149, 10444, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7824, 2196, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2512, 62, 18403, 62, 2934, 1616, 295, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1002, 2081, 11, 5357, 611, 262, 4870, 468, 262, 366, 754, 2833, 5005, 1616, 295, 1, 2457, 7509, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 788, 262, 4870, 2314, 307, 13140, 422, 262, 1994, 12, 8367, 3650, 1566, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 428, 4941, 318, 4615, 13, 2896, 13185, 284, 3991, 13, 1675, 900, 428, 2214, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 2836, 2476, 366, 33678, 1, 7170, 286, 262, 4870, 11, 4306, 46588, 357, 3118, 14681, 540, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20885, 8, 481, 307, 4504, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10444, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1002, 2081, 11, 428, 4941, 2173, 284, 262, 11149, 10444, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1052, 32191, 1988, 326, 6870, 262, 5387, 2196, 286, 428, 2134, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 326, 460, 307, 973, 416, 7534, 284, 5004, 618, 5563, 423, 3421, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1737, 307, 973, 329, 16915, 1673, 13382, 11, 1487, 13326, 11, 290, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2342, 4905, 319, 257, 8271, 393, 900, 286, 4133, 13, 1012, 2334, 1276, 2190, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 777, 3815, 355, 32191, 290, 3804, 555, 41771, 736, 284, 262, 4382, 13, 1119, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 743, 691, 307, 4938, 329, 257, 1948, 8271, 393, 900, 286, 4133, 13, 8099, 4817, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 416, 262, 1080, 13, 4149, 12, 8807, 13, 11052, 1276, 307, 5716, 355, 32191, 416, 7534, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 764, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 62, 8726, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 12189, 11280, 318, 257, 10289, 10200, 428, 2134, 13, 8099, 4817, 416, 262, 1080, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4149, 12, 8807, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 318, 262, 3748, 287, 640, 290, 2272, 1988, 329, 428, 2134, 13, 632, 318, 6032, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7560, 416, 262, 4382, 319, 4388, 6282, 286, 257, 8271, 290, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 3142, 284, 1487, 319, 350, 3843, 4560, 13, 8099, 4817, 416, 262, 1080, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4149, 12, 8807, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 1020, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1020, 6622, 477, 262, 5128, 3306, 284, 4439, 257, 649, 1382, 11, 290, 262, 3403, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 618, 284, 7616, 606, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11939, 62, 25124, 1370, 62, 43012, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 11939, 20489, 1370, 12211, 82, 318, 281, 11902, 9478, 287, 4201, 11, 14789, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 262, 640, 618, 257, 1382, 24573, 3011, 7530, 287, 262, 1080, 11, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1382, 743, 307, 4075, 319, 257, 10139, 878, 262, 1080, 10630, 8404, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 23654, 262, 1382, 26, 1988, 1276, 307, 3967, 18253, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4054, 62, 11249, 82, 62, 23569, 62, 32374, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4054, 15580, 82, 18122, 39184, 318, 262, 1271, 286, 1468, 4054, 12188, 284, 12377, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 407, 7368, 11, 477, 4054, 12188, 389, 17383, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10139, 62, 19738, 273, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10139, 17563, 273, 318, 257, 31870, 543, 1276, 307, 2081, 329, 262, 1382, 24573, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4197, 319, 257, 10139, 1002, 18038, 11, 340, 460, 307, 23170, 4651, 416, 4277, 1382, 18666, 2771, 801, 273, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3815, 329, 262, 13946, 13, 1002, 900, 284, 281, 6565, 3975, 393, 257, 3975, 351, 597, 3815, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 1382, 18666, 2771, 801, 273, 3815, 389, 9514, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 965, 11, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 5072, 8477, 262, 25716, 2939, 262, 20561, 815, 4439, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 23912, 1424, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2939, 17822, 1424, 8160, 257, 1351, 286, 14722, 326, 389, 5625, 284, 262, 7186, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 13, 1002, 612, 389, 3294, 14722, 351, 262, 976, 1438, 788, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 938, 530, 287, 262, 1351, 318, 973, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1438, 15738, 262, 1438, 286, 262, 6167, 13, 632, 1276, 423, 1729, 12, 22570, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4129, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1988, 15738, 262, 18875, 1988, 286, 262, 6167, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4574, 62, 21078, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 23691, 23725, 318, 262, 1438, 286, 257, 3943, 326, 561, 307, 973, 329, 4634, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 510, 262, 18239, 329, 23710, 262, 25716, 4574, 284, 18239, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9343, 25716, 33432, 357, 273, 25716, 14699, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 284, 15738, 281, 11902, 4067, 284, 4574, 262, 5072, 286, 428, 1382, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 13, 14927, 1276, 307, 530, 286, 705, 5159, 12124, 24835, 6, 393, 705, 35, 12721, 5159, 4458, 770, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 481, 307, 973, 284, 804, 510, 257, 25716, 2939, 16099, 284, 4574, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 13, 554, 262, 1339, 286, 281, 7412, 12124, 24835, 11, 262, 7412, 12124, 24835, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 3114, 329, 287, 262, 25745, 286, 262, 1382, 4556, 28531, 10223, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7368, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7824, 2196, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 1532, 9759, 284, 257, 3704, 286, 281, 2134, 2427, 286, 281, 2104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 11, 428, 4731, 815, 3994, 257, 4938, 19449, 14, 5247, 2214, 1895, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2643, 11, 884, 355, 10348, 9012, 13, 805, 8409, 13, 3642, 50221, 58, 17, 4083, 1114, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1672, 11, 611, 262, 2134, 4941, 318, 284, 257, 9290, 1626, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 24573, 11, 428, 561, 1011, 319, 257, 1988, 588, 25, 366, 16684, 13, 3642, 50221, 90, 3672, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3003, 366, 3672, 1, 10229, 284, 262, 1438, 286, 262, 9290, 326, 13973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1785, 8, 393, 611, 645, 9290, 1438, 318, 7368, 366, 16684, 13, 3642, 50221, 58, 17, 30866, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 34924, 351, 6376, 362, 287, 428, 24573, 737, 770, 15582, 318, 7147, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 691, 284, 423, 617, 880, 12, 23211, 835, 286, 32578, 257, 636, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 281, 2134, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 28531, 10223, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17377, 8271, 14815, 284, 543, 428, 4941, 318, 925, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 597, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1281, 62, 41509, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1281, 6935, 270, 318, 257, 1382, 8011, 10945, 706, 262, 1382, 5072, 2939, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5364, 11, 878, 340, 318, 7121, 284, 257, 20478, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 26498, 318, 257, 1351, 286, 7159, 326, 389, 2810, 284, 2035, 9455, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12327, 393, 262, 25716, 2939, 338, 4277, 5726, 4122, 13, 383, 7159, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 389, 4624, 3393, 706, 262, 3141, 284, 307, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3141, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3141, 318, 262, 3141, 284, 1057, 13, 632, 743, 407, 307, 7368, 351, 12327, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 1244, 307, 2622, 611, 262, 2939, 1595, 470, 423, 4600, 14, 8800, 14, 1477, 47671, 393, 611, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 345, 466, 407, 765, 284, 779, 257, 7582, 13, 554, 477, 584, 2663, 11, 1262, 12327, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1244, 307, 517, 11282, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4226, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4226, 318, 257, 7582, 4226, 284, 307, 1057, 351, 4600, 14, 8800, 14, 1477, 532, 291, 44646, 632, 743, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 307, 7368, 351, 9455, 13, 5765, 12327, 618, 257, 7582, 4226, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 5035, 284, 12260, 262, 1281, 1382, 8011, 11, 329, 1672, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2491, 4326, 5254, 351, 4600, 33788, 1332, 44646, 1002, 345, 761, 1630, 625, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 2939, 5726, 4122, 11, 393, 611, 262, 2939, 857, 407, 423, 4600, 14, 8800, 14, 1477, 47671, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 779, 9455, 290, 14, 273, 943, 14542, 13, 383, 4600, 12, 72, 63, 6056, 318, 2622, 284, 1104, 32418, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 35662, 3698, 4263, 326, 779, 10442, 50004, 357, 50, 5097, 828, 287, 1502, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 423, 262, 5035, 17268, 9343, 287, 262, 7582, 13, 412, 13, 70, 1539, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 10888, 2939, 11, 428, 318, 3306, 284, 787, 4600, 49137, 47671, 4600, 65, 31249, 63, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 584, 38640, 1695, 287, 262, 46490, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4133, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4133, 552, 1769, 8271, 5359, 284, 12260, 262, 1382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7095, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 44943, 8477, 262, 5415, 2033, 286, 24061, 4133, 3142, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 965, 11, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7007, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9394, 3558, 8477, 262, 5288, 2033, 286, 24061, 4133, 2672, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 9394, 3558, 318, 22532, 329, 257, 9290, 11, 340, 26235, 284, 44943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 326, 318, 11777, 7368, 11, 4306, 284, 281, 7822, 12, 23211, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 965, 11, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18440, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18440, 318, 262, 1321, 422, 262, 2723, 329, 257, 2176, 29924, 27479, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 318, 11902, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17606, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 15151, 4909, 1321, 546, 17606, 12, 3106, 1382, 2723, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1772, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1772, 318, 262, 1772, 286, 257, 2176, 4589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3053, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3053, 286, 262, 2723, 1630, 2836, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1438, 286, 262, 2723, 1630, 2836, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4589, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4589, 318, 262, 4589, 12234, 13720, 257, 2176, 4589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 725, 1967, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 725, 1967, 318, 262, 725, 1967, 286, 257, 2176, 4589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3053, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3053, 286, 262, 2723, 1630, 2836, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1438, 286, 262, 2723, 1630, 2836, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3275, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3275, 318, 262, 6764, 286, 257, 2176, 4589, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2099, 286, 262, 1382, 2723, 11, 743, 307, 530, 286, 705, 7416, 3256, 705, 35, 12721, 7753, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 33, 3219, 3256, 393, 705, 29398, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1057, 62, 30586, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 5660, 36727, 8477, 703, 262, 649, 1382, 2727, 422, 428, 1382, 8398, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 307, 7530, 329, 9706, 13, 770, 318, 11902, 11, 611, 407, 7368, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 356, 4277, 284, 366, 32634, 1911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2139, 62, 23317, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2139, 30116, 318, 262, 1438, 286, 262, 4809, 30116, 284, 779, 284, 1057, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24573, 2727, 416, 428, 1382, 13, 383, 24573, 481, 307, 3142, 284, 779, 13141, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20717, 416, 262, 4809, 30116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2723, 8477, 262, 6374, 44, 287, 779, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13934, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 13934, 12188, 2453, 257, 13934, 355, 511, 5128, 13, 383, 13934, 318, 4143, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9672, 284, 307, 257, 13422, 11, 308, 89, 3949, 13422, 11, 393, 19974, 2393, 6906, 319, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4811, 13, 1114, 25716, 12188, 11, 428, 318, 262, 1382, 4732, 290, 281, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25716, 7753, 743, 307, 7368, 284, 20957, 597, 25716, 7753, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 1382, 4732, 13, 1114, 8090, 12188, 11, 428, 318, 9672, 284, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 281, 15424, 355, 3417, 2029, 13, 1114, 8090, 290, 25716, 12188, 11, 611, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13934, 13, 292, 8979, 318, 900, 262, 1382, 481, 3328, 257, 8619, 351, 257, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2060, 2393, 13, 4732, 35277, 743, 307, 973, 618, 281, 15424, 318, 2810, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8562, 12188, 481, 3328, 428, 13934, 355, 5128, 319, 48571, 1268, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 355, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 355, 8979, 9217, 326, 262, 2810, 13934, 5128, 815, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3177, 257, 2060, 2393, 1626, 262, 1382, 5128, 13, 1114, 1672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31577, 366, 12384, 1324, 13, 5767, 1, 561, 1295, 262, 2810, 13934, 355, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4600, 14, 12384, 1324, 13, 5767, 63, 329, 262, 27098, 13, 1002, 1364, 6565, 11, 262, 25716, 290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8090, 1382, 10064, 7048, 428, 2393, 318, 257, 19974, 11, 13422, 11, 393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13422, 13, 34586, 2393, 290, 7925, 340, 355, 262, 2723, 13, 383, 2183, 4811, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11583, 428, 13934, 355, 3210, 5128, 13, 770, 29472, 743, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 3994, 1017, 7465, 393, 307, 705, 492, 6, 393, 705, 2637, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4732, 62, 15908, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4732, 35277, 26052, 262, 850, 12, 34945, 810, 262, 2723, 2438, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 3586, 7160, 13, 770, 3578, 284, 423, 1382, 540, 4237, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 8619, 584, 621, 6808, 286, 16099, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36253, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 36253, 7753, 318, 262, 8246, 10154, 286, 257, 25716, 7753, 543, 815, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3170, 13, 1649, 428, 3038, 318, 7368, 11, 262, 16034, 743, 307, 9518, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1912, 319, 534, 4811, 2779, 2939, 290, 3224, 12964, 53, 336, 35410, 292, 422, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 534, 4811, 2858, 481, 307, 2087, 706, 262, 16034, 11, 475, 878, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 1334, 286, 534, 25716, 7753, 336, 35410, 292, 13, 383, 25716, 7753, 2723, 2099, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 743, 307, 973, 351, 584, 3689, 588, 17606, 532, 287, 883, 2663, 262, 15151, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29924, 481, 423, 597, 28690, 25716, 7753, 6928, 287, 262, 4732, 26672, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17606, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17606, 4909, 11902, 1321, 546, 17606, 1382, 2723, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2638, 62, 36436, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2638, 44148, 318, 257, 15741, 973, 284, 3151, 262, 17606, 16099, 625, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2638, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3740, 62, 36436, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3740, 44148, 318, 257, 15741, 973, 284, 3151, 262, 17606, 16099, 625, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3740, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 645, 62, 36436, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 645, 44148, 318, 262, 1351, 286, 18209, 329, 543, 262, 15741, 815, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 407, 307, 973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1006, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1006, 318, 262, 8478, 14, 12985, 14, 5420, 284, 1382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2956, 72, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2956, 72, 2173, 284, 262, 2723, 326, 481, 307, 3170, 13, 383, 4645, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 262, 2723, 481, 4745, 319, 262, 2099, 286, 1382, 284, 1057, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4263, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4263, 8477, 257, 900, 286, 4263, 284, 307, 973, 284, 2148, 2723, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 262, 1382, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 422, 318, 257, 4941, 284, 281, 7412, 12124, 24835, 11, 7412, 12124, 5159, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 393, 25716, 5159, 284, 4866, 2723, 422, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7824, 2196, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 1532, 9759, 284, 257, 3704, 286, 281, 2134, 2427, 286, 281, 2104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 11, 428, 4731, 815, 3994, 257, 4938, 19449, 14, 5247, 2214, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1895, 2643, 11, 884, 355, 10348, 9012, 13, 805, 8409, 13, 3642, 50221, 58, 17, 4083, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1114, 1672, 11, 611, 262, 2134, 4941, 318, 284, 257, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1626, 257, 24573, 11, 428, 561, 1011, 319, 257, 1988, 588, 25, 366, 16684, 13, 3642, 50221, 90, 3672, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3003, 366, 3672, 1, 10229, 284, 262, 1438, 286, 262, 9290, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13973, 262, 1785, 8, 393, 611, 645, 9290, 1438, 318, 7368, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16684, 13, 3642, 50221, 58, 17, 30866, 357, 34924, 351, 6376, 362, 287, 428, 24573, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 15582, 318, 7147, 691, 284, 423, 617, 880, 12, 23211, 835, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 32578, 257, 636, 286, 281, 2134, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 28531, 10223, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17377, 8271, 14815, 284, 543, 428, 4941, 318, 925, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 597, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13532, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 13532, 318, 257, 1351, 286, 2723, 290, 10965, 13532, 284, 4866, 422, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 2939, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10965, 62, 15908, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10965, 35277, 318, 262, 3585, 8619, 1626, 262, 1382, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8619, 810, 3696, 18984, 422, 262, 2939, 389, 4624, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2723, 15235, 318, 262, 4112, 3108, 286, 262, 2393, 393, 8619, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2641, 262, 2939, 284, 4866, 284, 262, 1382, 8619, 13, 1002, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 3108, 5645, 287, 1220, 13, 788, 262, 2695, 286, 262, 8619, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 307, 18984, 11, 475, 262, 8619, 2346, 481, 407, 307, 2727, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 379, 262, 10965, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2834, 62, 21078, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2834, 23725, 318, 257, 4941, 284, 257, 3200, 284, 307, 973, 284, 2834, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 422, 257, 20478, 1002, 262, 2939, 318, 5954, 422, 262, 4946, 33377, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20478, 11, 428, 2214, 857, 407, 761, 284, 307, 900, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13141, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 13141, 6870, 257, 1351, 286, 13141, 290, 511, 23982, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 307, 973, 691, 329, 262, 1382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10965, 62, 15908, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10965, 35277, 318, 262, 8619, 810, 262, 3696, 422, 262, 3200, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 815, 307, 1695, 329, 262, 1382, 640, 13, 1114, 262, 8090, 1382, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4811, 11, 777, 481, 307, 25077, 656, 257, 9290, 810, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25432, 4226, 4539, 13, 11450, 11, 618, 262, 4226, 20271, 11, 477, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3696, 25077, 481, 307, 40122, 515, 284, 6632, 4129, 13, 1114, 262, 25716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 4811, 11, 777, 481, 307, 18984, 656, 262, 1382, 8619, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 810, 262, 25716, 7753, 318, 5140, 11, 523, 2985, 460, 27841, 393, 27975, 56, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 606, 1141, 36253, 1382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3200, 318, 257, 4941, 284, 281, 4683, 3200, 326, 345, 765, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 779, 287, 534, 1382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 21078, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 366, 10459, 23725, 318, 262, 1438, 286, 257, 3943, 326, 561, 307, 973, 329, 4634, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 510, 262, 18239, 329, 45973, 2839, 16099, 13, 383, 3200, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 4909, 4938, 18031, 329, 6569, 16099, 11, 810, 262, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 1366, 338, 1994, 2380, 262, 18239, 2446, 284, 307, 973, 290, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 1988, 318, 262, 2779, 2414, 30240, 18031, 13, 36848, 6284, 5050, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3467, 389, 25, 26678, 12, 19734, 2539, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2099, 286, 1382, 5128, 284, 2453, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4811, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4811, 15738, 703, 284, 1620, 257, 1382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2183, 62, 2536, 4338, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2183, 13290, 4338, 6622, 262, 10007, 284, 262, 8562, 1382, 4811, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 422, 318, 4941, 284, 281, 25716, 5159, 11, 7412, 12124, 24835, 11, 393, 7412, 12124, 5159, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 543, 262, 36253, 2939, 815, 307, 5954, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7824, 2196, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 1532, 9759, 284, 257, 3704, 286, 281, 2134, 2427, 286, 281, 2104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 11, 428, 4731, 815, 3994, 257, 4938, 19449, 14, 5247, 2214, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1895, 2643, 11, 884, 355, 10348, 9012, 13, 805, 8409, 13, 3642, 50221, 58, 17, 4083, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1114, 1672, 11, 611, 262, 2134, 4941, 318, 284, 257, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1626, 257, 24573, 11, 428, 561, 1011, 319, 257, 1988, 588, 25, 366, 16684, 13, 3642, 50221, 90, 3672, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3003, 366, 3672, 1, 10229, 284, 262, 1438, 286, 262, 9290, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13973, 262, 1785, 8, 393, 611, 645, 9290, 1438, 318, 7368, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16684, 13, 3642, 50221, 58, 17, 30866, 357, 34924, 351, 6376, 362, 287, 428, 24573, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 15582, 318, 7147, 691, 284, 423, 617, 880, 12, 23211, 835, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 32578, 257, 636, 286, 281, 2134, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 28531, 10223, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17377, 8271, 14815, 284, 543, 428, 4941, 318, 925, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 597, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 15042, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1382, 2969, 3824, 6900, 318, 262, 9167, 7824, 2196, 329, 262, 10934, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 11389, 1143, 290, 3804, 284, 262, 2183, 27098, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17365, 4909, 3224, 2858, 9633, 345, 765, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 656, 257, 27098, 9290, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 2858, 7885, 13, 12039, 307, 257, 327, 62, 25256, 5064, 38311, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 43015, 10288, 29568, 53, 1503, 62, 20608, 8, 389, 9902, 1262, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2180, 5447, 2858, 9633, 287, 262, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 597, 2139, 2858, 9633, 13, 1002, 257, 7885, 2314, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 12939, 11, 262, 4941, 287, 262, 5128, 4731, 481, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21588, 13, 383, 29568, 53, 1503, 62, 20608, 8, 15582, 460, 307, 13537, 351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4274, 32382, 11, 37941, 25, 32382, 7, 53, 1503, 62, 20608, 737, 16319, 5813, 10288, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1239, 307, 9902, 11, 7692, 286, 1771, 262, 7885, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7160, 393, 407, 13, 2896, 13185, 284, 366, 1911, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 62, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 8090, 329, 262, 2858, 7885, 338, 1988, 13, 26003, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 973, 611, 1988, 318, 407, 6565, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 8899, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 17056, 13912, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 284, 2922, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 17056, 13912, 393, 340, 338, 1994, 1276, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 2214, 286, 262, 24573, 25, 6971, 20150, 13, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20150, 13, 14933, 10223, 11, 20150, 13, 23912, 1424, 11, 20150, 13, 34574, 602, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1020, 13, 17440, 5376, 11, 1020, 13, 15271, 30116, 5376, 11, 3722, 13, 4774, 4061, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3722, 13, 33320, 4061, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10628, 286, 262, 32815, 262, 7663, 15235, 318, 3194, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 2846, 286, 11, 26235, 284, 366, 85, 16, 1911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10644, 286, 262, 2214, 284, 2922, 287, 262, 7368, 7824, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 3245, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 8271, 286, 262, 9290, 25, 691, 4133, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7095, 290, 7007, 357, 49196, 13, 36166, 11, 7095, 13, 31673, 11, 7007, 13, 36166, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 7007, 13, 31673, 8, 389, 3058, 4855, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 29869, 1438, 25, 2672, 329, 15343, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 17365, 410, 945, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2659, 271, 273, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 6945, 262, 5072, 5794, 286, 262, 7362, 4133, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26235, 284, 366, 16, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 37374, 25, 8271, 284, 2922, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 3200, 287, 262, 24573, 338, 25745, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 286, 262, 3200, 284, 2922, 422, 13, 12039, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4938, 3200, 1994, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 3943, 393, 340, 338, 1994, 1276, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15651, 62, 45986, 62, 44971, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 15651, 35, 12721, 39105, 481, 1249, 2491, 25716, 9729, 357, 392, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 25716, 4263, 8, 422, 2641, 262, 25716, 9290, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 31216, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2700, 42940, 8477, 611, 262, 10444, 815, 17425, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 24573, 284, 1464, 2834, 262, 4263, 329, 262, 27098, 393, 691, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2834, 611, 340, 318, 407, 1944, 15726, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2834, 62, 21078, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2834, 23725, 318, 262, 1438, 286, 257, 3943, 326, 561, 307, 973, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4634, 510, 262, 18239, 329, 10427, 262, 25716, 4263, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 262, 2839, 25716, 4214, 1678, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13141, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 13141, 318, 257, 1351, 286, 3224, 13141, 326, 481, 307, 3017, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 1382, 24573, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3817, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3817, 15235, 318, 262, 3108, 379, 543, 284, 3817, 262, 3200, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 62, 10459, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3200, 7416, 318, 257, 4941, 284, 262, 3200, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36253, 62, 2536, 4338, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 36253, 13290, 4338, 6622, 262, 10007, 284, 262, 25716, 1382, 4811, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 422, 318, 4941, 284, 281, 25716, 5159, 11, 7412, 12124, 24835, 11, 393, 7412, 12124, 5159, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 543, 262, 36253, 2939, 815, 307, 5954, 262, 7186, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 481, 307, 973, 287, 262, 16034, 1627, 286, 262, 25716, 7753, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 428, 1382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7824, 2196, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 1532, 9759, 284, 257, 3704, 286, 281, 2134, 2427, 286, 281, 2104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 11, 428, 4731, 815, 3994, 257, 4938, 19449, 14, 5247, 2214, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1895, 2643, 11, 884, 355, 10348, 9012, 13, 805, 8409, 13, 3642, 50221, 58, 17, 4083, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1114, 1672, 11, 611, 262, 2134, 4941, 318, 284, 257, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1626, 257, 24573, 11, 428, 561, 1011, 319, 257, 1988, 588, 25, 366, 16684, 13, 3642, 50221, 90, 3672, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3003, 366, 3672, 1, 10229, 284, 262, 1438, 286, 262, 9290, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13973, 262, 1785, 8, 393, 611, 645, 9290, 1438, 318, 7368, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16684, 13, 3642, 50221, 58, 17, 30866, 357, 34924, 351, 6376, 362, 287, 428, 24573, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 15582, 318, 7147, 691, 284, 423, 617, 880, 12, 23211, 835, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 32578, 257, 636, 286, 281, 2134, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 28531, 10223, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17377, 8271, 14815, 284, 543, 428, 4941, 318, 925, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 597, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 62, 22046, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1382, 42035, 4909, 1382, 7159, 326, 481, 307, 12939, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 25716, 7753, 13, 4091, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 2858, 7885, 13, 12039, 307, 257, 327, 62, 25256, 5064, 38311, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 43015, 10288, 29568, 53, 1503, 62, 20608, 8, 389, 9902, 1262, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2180, 5447, 2858, 9633, 287, 262, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 597, 2139, 2858, 9633, 13, 1002, 257, 7885, 2314, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 12939, 11, 262, 4941, 287, 262, 5128, 4731, 481, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21588, 13, 383, 29568, 53, 1503, 62, 20608, 8, 15582, 460, 307, 13537, 351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4274, 32382, 11, 37941, 25, 32382, 7, 53, 1503, 62, 20608, 737, 16319, 5813, 10288, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1239, 307, 9902, 11, 7692, 286, 1771, 262, 7885, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7160, 393, 407, 13, 2896, 13185, 284, 366, 1911, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 62, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 8090, 329, 262, 2858, 7885, 338, 1988, 13, 26003, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 973, 611, 1988, 318, 407, 6565, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 8899, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 17056, 13912, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 284, 2922, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 17056, 13912, 393, 340, 338, 1994, 1276, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 2214, 286, 262, 24573, 25, 6971, 20150, 13, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20150, 13, 14933, 10223, 11, 20150, 13, 23912, 1424, 11, 20150, 13, 34574, 602, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1020, 13, 17440, 5376, 11, 1020, 13, 15271, 30116, 5376, 11, 3722, 13, 4774, 4061, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3722, 13, 33320, 4061, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10628, 286, 262, 32815, 262, 7663, 15235, 318, 3194, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 2846, 286, 11, 26235, 284, 366, 85, 16, 1911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10644, 286, 262, 2214, 284, 2922, 287, 262, 7368, 7824, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 3245, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 8271, 286, 262, 9290, 25, 691, 4133, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7095, 290, 7007, 357, 49196, 13, 36166, 11, 7095, 13, 31673, 11, 7007, 13, 36166, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 7007, 13, 31673, 8, 389, 3058, 4855, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 29869, 1438, 25, 2672, 329, 15343, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 17365, 410, 945, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2659, 271, 273, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 6945, 262, 5072, 5794, 286, 262, 7362, 4133, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26235, 284, 366, 16, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 37374, 25, 8271, 284, 2922, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 3200, 287, 262, 24573, 338, 25745, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 286, 262, 3200, 284, 2922, 422, 13, 12039, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4938, 3200, 1994, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 3943, 393, 340, 338, 1994, 1276, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 36253, 7753, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 36253, 7753, 15235, 318, 262, 3108, 286, 262, 25716, 7753, 326, 481, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 973, 284, 1382, 262, 25716, 2939, 11, 3585, 284, 262, 6808, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4732, 357, 22866, 35277, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17365, 4909, 3224, 2858, 9633, 345, 765, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 656, 257, 27098, 9290, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 2858, 7885, 13, 12039, 307, 257, 327, 62, 25256, 5064, 38311, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 43015, 10288, 29568, 53, 1503, 62, 20608, 8, 389, 9902, 1262, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2180, 5447, 2858, 9633, 287, 262, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 597, 2139, 2858, 9633, 13, 1002, 257, 7885, 2314, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 12939, 11, 262, 4941, 287, 262, 5128, 4731, 481, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21588, 13, 383, 29568, 53, 1503, 62, 20608, 8, 15582, 460, 307, 13537, 351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4274, 32382, 11, 37941, 25, 32382, 7, 53, 1503, 62, 20608, 737, 16319, 5813, 10288, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1239, 307, 9902, 11, 7692, 286, 1771, 262, 7885, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7160, 393, 407, 13, 2896, 13185, 284, 366, 1911, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 62, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 8090, 329, 262, 2858, 7885, 338, 1988, 13, 26003, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 973, 611, 1988, 318, 407, 6565, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 8899, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 17056, 13912, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 284, 2922, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 17056, 13912, 393, 340, 338, 1994, 1276, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 2214, 286, 262, 24573, 25, 6971, 20150, 13, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20150, 13, 14933, 10223, 11, 20150, 13, 23912, 1424, 11, 20150, 13, 34574, 602, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1020, 13, 17440, 5376, 11, 1020, 13, 15271, 30116, 5376, 11, 3722, 13, 4774, 4061, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3722, 13, 33320, 4061, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10628, 286, 262, 32815, 262, 7663, 15235, 318, 3194, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 2846, 286, 11, 26235, 284, 366, 85, 16, 1911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10644, 286, 262, 2214, 284, 2922, 287, 262, 7368, 7824, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 3245, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 8271, 286, 262, 9290, 25, 691, 4133, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7095, 290, 7007, 357, 49196, 13, 36166, 11, 7095, 13, 31673, 11, 7007, 13, 36166, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 7007, 13, 31673, 8, 389, 3058, 4855, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 29869, 1438, 25, 2672, 329, 15343, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 17365, 410, 945, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2659, 271, 273, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 6945, 262, 5072, 5794, 286, 262, 7362, 4133, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26235, 284, 366, 16, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 37374, 25, 8271, 284, 2922, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 3200, 287, 262, 24573, 338, 25745, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 286, 262, 3200, 284, 2922, 422, 13, 12039, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4938, 3200, 1994, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 3943, 393, 340, 338, 1994, 1276, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 31216, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2700, 42940, 8477, 611, 262, 27098, 815, 2834, 262, 4263, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 20478, 3161, 284, 2615, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 40085, 1634, 62, 30586, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2939, 27871, 320, 1634, 36727, 8477, 644, 41446, 262, 1080, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 460, 779, 618, 2615, 4263, 284, 4646, 262, 2457, 2546, 393, 640, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3377, 2615, 262, 2939, 13, 383, 4277, 2450, 318, 705, 14202, 6, 543, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1724, 262, 2457, 1382, 2939, 481, 307, 7548, 284, 281, 2939, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2727, 416, 262, 25716, 1382, 7824, 13, 383, 11992, 2450, 705, 50232, 43, 6962, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 3368, 725, 1780, 649, 11685, 287, 1022, 1123, 2939, 2239, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 481, 2038, 611, 262, 25716, 7753, 2314, 2148, 17764, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 262, 705, 14202, 6, 2450, 13, 1052, 3224, 11992, 2450, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 50232, 43, 6962, 1870, 54, 1501, 6, 318, 262, 976, 355, 705, 50232, 43, 6962, 6, 475, 2391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22145, 611, 17764, 2314, 307, 17232, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 645, 62, 23870, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 645, 30562, 611, 900, 284, 2081, 9217, 326, 262, 36253, 1382, 1276, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 10945, 351, 262, 1377, 3919, 12, 23870, 28, 7942, 6056, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2834, 62, 21078, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2834, 23725, 318, 262, 1438, 286, 257, 3943, 326, 561, 307, 973, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4634, 510, 262, 18239, 329, 10427, 262, 25716, 4263, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 262, 2839, 25716, 4214, 1678, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 268, 5331, 62, 79, 541, 4470, 62, 2536, 4338, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 21835, 47, 541, 4470, 13290, 4338, 6622, 262, 10007, 284, 262, 21835, 37709, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 4811, 13, 770, 4811, 318, 287, 7261, 12714, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17365, 4909, 3224, 2858, 9633, 345, 765, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 656, 257, 1382, 11523, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 2858, 7885, 13, 12039, 307, 257, 327, 62, 25256, 5064, 38311, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 43015, 10288, 29568, 53, 1503, 62, 20608, 8, 389, 9902, 1262, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2180, 5447, 2858, 9633, 287, 262, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 597, 2139, 2858, 9633, 13, 1002, 257, 7885, 2314, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 12939, 11, 262, 4941, 287, 262, 5128, 4731, 481, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21588, 13, 383, 29568, 53, 1503, 62, 20608, 8, 15582, 460, 307, 13537, 351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4274, 32382, 11, 37941, 25, 32382, 7, 53, 1503, 62, 20608, 737, 16319, 5813, 10288, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1239, 307, 9902, 11, 7692, 286, 1771, 262, 7885, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7160, 393, 407, 13, 2896, 13185, 284, 366, 1911, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 62, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 8090, 329, 262, 2858, 7885, 338, 1988, 13, 26003, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 973, 611, 1988, 318, 407, 6565, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 8899, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 17056, 13912, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 284, 2922, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 17056, 13912, 393, 340, 338, 1994, 1276, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 2214, 286, 262, 24573, 25, 6971, 20150, 13, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20150, 13, 14933, 10223, 11, 20150, 13, 23912, 1424, 11, 20150, 13, 34574, 602, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1020, 13, 17440, 5376, 11, 1020, 13, 15271, 30116, 5376, 11, 3722, 13, 4774, 4061, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3722, 13, 33320, 4061, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10628, 286, 262, 32815, 262, 7663, 15235, 318, 3194, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 2846, 286, 11, 26235, 284, 366, 85, 16, 1911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10644, 286, 262, 2214, 284, 2922, 287, 262, 7368, 7824, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 3245, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 8271, 286, 262, 9290, 25, 691, 4133, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7095, 290, 7007, 357, 49196, 13, 36166, 11, 7095, 13, 31673, 11, 7007, 13, 36166, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 7007, 13, 31673, 8, 389, 3058, 4855, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 29869, 1438, 25, 2672, 329, 15343, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 17365, 410, 945, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2659, 271, 273, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 6945, 262, 5072, 5794, 286, 262, 7362, 4133, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26235, 284, 366, 16, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 37374, 25, 8271, 284, 2922, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 3200, 287, 262, 24573, 338, 25745, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 286, 262, 3200, 284, 2922, 422, 13, 12039, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4938, 3200, 1994, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 3943, 393, 340, 338, 1994, 1276, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 268, 5331, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 21835, 7753, 15738, 262, 11902, 8246, 10154, 286, 257, 21835, 7753, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 543, 15738, 257, 21835, 11523, 1382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 268, 5331, 7753, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 21835, 7753, 15235, 318, 262, 11902, 3108, 286, 262, 21835, 7753, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 307, 973, 284, 17425, 262, 11523, 3585, 284, 262, 6808, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 262, 4732, 357, 22866, 35277, 737, 1002, 1111, 21835, 7753, 15235, 1222, 21835, 7753, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 389, 1111, 407, 7368, 11, 428, 26235, 284, 21835, 7753, 287, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6808, 286, 262, 7368, 4732, 35277, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 2536, 4338, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2723, 13290, 4338, 6622, 262, 10007, 284, 262, 8090, 1382, 4811, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 422, 318, 4941, 284, 281, 25716, 5159, 11, 7412, 12124, 24835, 11, 393, 7412, 12124, 5159, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 543, 262, 36253, 2939, 815, 307, 5954, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7824, 2196, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 1532, 9759, 284, 257, 3704, 286, 281, 2134, 2427, 286, 281, 2104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 11, 428, 4731, 815, 3994, 257, 4938, 19449, 14, 5247, 2214, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1895, 2643, 11, 884, 355, 10348, 9012, 13, 805, 8409, 13, 3642, 50221, 58, 17, 4083, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1114, 1672, 11, 611, 262, 2134, 4941, 318, 284, 257, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1626, 257, 24573, 11, 428, 561, 1011, 319, 257, 1988, 588, 25, 366, 16684, 13, 3642, 50221, 90, 3672, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3003, 366, 3672, 1, 10229, 284, 262, 1438, 286, 262, 9290, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13973, 262, 1785, 8, 393, 611, 645, 9290, 1438, 318, 7368, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16684, 13, 3642, 50221, 58, 17, 30866, 357, 34924, 351, 6376, 362, 287, 428, 24573, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 15582, 318, 7147, 691, 284, 423, 617, 880, 12, 23211, 835, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 32578, 257, 636, 286, 281, 2134, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 28531, 10223, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17377, 8271, 14815, 284, 543, 428, 4941, 318, 925, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 597, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17365, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17365, 4909, 3224, 2858, 9633, 345, 765, 284, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 656, 257, 27098, 9290, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 2858, 7885, 13, 12039, 307, 257, 327, 62, 25256, 5064, 38311, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 43015, 10288, 29568, 53, 1503, 62, 20608, 8, 389, 9902, 1262, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2180, 5447, 2858, 9633, 287, 262, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 597, 2139, 2858, 9633, 13, 1002, 257, 7885, 2314, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 12939, 11, 262, 4941, 287, 262, 5128, 4731, 481, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21588, 13, 383, 29568, 53, 1503, 62, 20608, 8, 15582, 460, 307, 13537, 351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4274, 32382, 11, 37941, 25, 32382, 7, 53, 1503, 62, 20608, 737, 16319, 5813, 10288, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1239, 307, 9902, 11, 7692, 286, 1771, 262, 7885, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7160, 393, 407, 13, 2896, 13185, 284, 366, 1911, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 62, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 8090, 329, 262, 2858, 7885, 338, 1988, 13, 26003, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 973, 611, 1988, 318, 407, 6565, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4566, 62, 8899, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 17056, 13912, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 284, 2922, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 17056, 13912, 393, 340, 338, 1994, 1276, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 2214, 286, 262, 24573, 25, 6971, 20150, 13, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20150, 13, 14933, 10223, 11, 20150, 13, 23912, 1424, 11, 20150, 13, 34574, 602, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1020, 13, 17440, 5376, 11, 1020, 13, 15271, 30116, 5376, 11, 3722, 13, 4774, 4061, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3722, 13, 33320, 4061, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10628, 286, 262, 32815, 262, 7663, 15235, 318, 3194, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 2846, 286, 11, 26235, 284, 366, 85, 16, 1911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10644, 286, 262, 2214, 284, 2922, 287, 262, 7368, 7824, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2196, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 3245, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 17563, 82, 257, 8271, 286, 262, 9290, 25, 691, 4133, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7095, 290, 7007, 357, 49196, 13, 36166, 11, 7095, 13, 31673, 11, 7007, 13, 36166, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 290, 7007, 13, 31673, 8, 389, 3058, 4855, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9290, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 29869, 1438, 25, 2672, 329, 15343, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 17365, 410, 945, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2659, 271, 273, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 6945, 262, 5072, 5794, 286, 262, 7362, 4133, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26235, 284, 366, 16, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 37374, 25, 8271, 284, 2922, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 62, 2539, 62, 5420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 9683, 82, 257, 1994, 286, 257, 3200, 287, 262, 24573, 338, 25745, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 383, 1994, 286, 262, 3200, 284, 2922, 422, 13, 12039, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 4938, 3200, 1994, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11902, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 18291, 1958, 1771, 262, 3943, 393, 340, 338, 1994, 1276, 307, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5447, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2700, 62, 31216, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2700, 42940, 8477, 611, 262, 27098, 815, 2834, 262, 4263, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 20478, 3161, 284, 2615, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 29497, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 29497, 6056, 3386, 262, 8090, 1382, 284, 466, 29497, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12188, 611, 2081, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2834, 62, 21078, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2834, 23725, 318, 262, 1438, 286, 257, 3943, 326, 561, 307, 973, 329, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4634, 510, 262, 18239, 329, 10427, 262, 25716, 4263, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 422, 262, 2839, 25716, 4214, 1678, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19124, 62, 50179, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 43282, 8001, 37199, 26052, 257, 1351, 286, 2723, 14, 16520, 1883, 14729, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 326, 481, 307, 18984, 422, 262, 27098, 284, 262, 19124, 2939, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 15235, 460, 307, 257, 2393, 393, 8619, 13, 10965, 35277, 1276, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 257, 8619, 13, 10965, 35277, 460, 635, 307, 6565, 393, 4961, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 366, 33283, 287, 428, 1339, 340, 655, 10229, 284, 262, 6808, 286, 30936, 34720, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2129, 31023, 25, 770, 3895, 481, 307, 4615, 287, 257, 2003, 2650, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5765, 7412, 7416, 284, 4866, 13934, 20316, 2727, 422, 530, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1382, 656, 257, 4553, 19124, 2939, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10965, 62, 15908, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10965, 35277, 318, 262, 3585, 8619, 1626, 262, 1382, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8619, 810, 3696, 18984, 422, 262, 2939, 389, 4624, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2723, 15235, 318, 262, 4112, 3108, 286, 262, 2393, 393, 8619, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2641, 262, 2939, 284, 4866, 284, 262, 1382, 8619, 13, 1002, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2723, 3108, 5645, 287, 1220, 13, 788, 262, 2695, 286, 262, 8619, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 481, 307, 18984, 11, 475, 262, 8619, 2346, 481, 407, 307, 2727, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 379, 262, 10965, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19124, 62, 9060, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 43282, 5159, 318, 281, 11902, 2939, 326, 318, 973, 284, 1057, 281, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3586, 1231, 555, 27938, 20086, 6589, 13, 383, 2615, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 262, 3586, 318, 991, 1760, 287, 262, 27098, 2939, 475, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1281, 1382, 11, 345, 460, 4866, 262, 2622, 20316, 287, 262, 19124, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 329, 779, 13, 2129, 31023, 25, 770, 3895, 481, 307, 4615, 287, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 2003, 2650, 13, 5765, 7412, 7416, 284, 4866, 13934, 20316, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2727, 422, 530, 1382, 656, 257, 4553, 19124, 2939, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7824, 2196, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 1532, 9759, 284, 257, 3704, 286, 281, 2134, 2427, 286, 281, 2104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 11, 428, 4731, 815, 3994, 257, 4938, 19449, 14, 5247, 2214, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1895, 2643, 11, 884, 355, 10348, 9012, 13, 805, 8409, 13, 3642, 50221, 58, 17, 4083, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1114, 1672, 11, 611, 262, 2134, 4941, 318, 284, 257, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1626, 257, 24573, 11, 428, 561, 1011, 319, 257, 1988, 588, 25, 366, 16684, 13, 3642, 50221, 90, 3672, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3003, 366, 3672, 1, 10229, 284, 262, 1438, 286, 262, 9290, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13973, 262, 1785, 8, 393, 611, 645, 9290, 1438, 318, 7368, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16684, 13, 3642, 50221, 58, 17, 30866, 357, 34924, 351, 6376, 362, 287, 428, 24573, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 15582, 318, 7147, 691, 284, 423, 617, 880, 12, 23211, 835, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 32578, 257, 636, 286, 281, 2134, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 28531, 10223, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17377, 8271, 14815, 284, 543, 428, 4941, 318, 925, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 597, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14750, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14750, 318, 262, 4067, 286, 8090, 14750, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2099, 318, 262, 1611, 286, 1382, 4811, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4388, 62, 11249, 82, 62, 23569, 62, 32374, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4388, 15580, 82, 18122, 39184, 318, 262, 1271, 286, 1468, 4388, 12188, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 12377, 13, 1002, 407, 7368, 11, 477, 4388, 12188, 389, 17383, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 493, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20022, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 20022, 5004, 703, 649, 10934, 82, 460, 307, 5611, 422, 257, 10934, 16934, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1002, 645, 20022, 389, 5447, 11, 257, 649, 1382, 460, 691, 3051, 355, 257, 1255, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 281, 7952, 5456, 1382, 6282, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1643, 27041, 316, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 4722, 27041, 316, 13908, 39, 566, 4909, 262, 10007, 329, 257, 4722, 27041, 316, 3992, 25480, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 286, 7616, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1249, 62, 24330, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1249, 4834, 85, 15947, 1771, 262, 3992, 25480, 460, 900, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9633, 26, 460, 691, 307, 900, 284, 2081, 329, 42044, 13908, 39, 566, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3200, 973, 284, 26571, 7007, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14276, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14276, 4909, 262, 10007, 329, 257, 42044, 3992, 25480, 2099, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7616, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1249, 62, 24330, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1249, 4834, 85, 15947, 1771, 262, 3992, 25480, 460, 900, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9633, 26, 460, 691, 307, 900, 284, 2081, 329, 42044, 13908, 39, 566, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3200, 973, 284, 26571, 7007, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33084, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 33084, 4909, 262, 10007, 329, 257, 21722, 3992, 25480, 2099, 286, 7616, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1249, 62, 24330, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1249, 4834, 85, 15947, 1771, 262, 3992, 25480, 460, 900, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9633, 26, 460, 691, 307, 900, 284, 2081, 329, 42044, 13908, 39, 566, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3200, 973, 284, 26571, 7007, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17606, 23912, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 15151, 17822, 13908, 39, 566, 4909, 262, 10007, 329, 257, 15151, 17822, 3992, 25480, 2099, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 7616, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1249, 62, 24330, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 1249, 4834, 85, 15947, 1771, 262, 3992, 25480, 460, 900, 2858, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9633, 26, 460, 691, 307, 900, 284, 2081, 329, 42044, 13908, 39, 566, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 20512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3200, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3200, 973, 284, 26571, 7007, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 3803, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2939, 19400, 4909, 10007, 329, 281, 7412, 19400, 2099, 286, 7616, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 6738, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 422, 318, 257, 4941, 284, 281, 7412, 12124, 24835, 326, 481, 7616, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 1382, 618, 6153, 632, 318, 11902, 13, 1002, 645, 3574, 318, 7368, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 262, 3574, 2939, 422, 262, 1382, 4811, 481, 307, 973, 13, 5514, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 530, 7412, 19400, 48344, 351, 281, 6565, 3574, 4941, 318, 3142, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 257, 1382, 8398, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 40391, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 7824, 2196, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2214, 62, 6978, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 705, 1532, 9759, 284, 257, 3704, 286, 281, 2134, 2427, 286, 281, 2104, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2134, 11, 428, 4731, 815, 3994, 257, 4938, 19449, 14, 5247, 2214, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1895, 2643, 11, 884, 355, 10348, 9012, 13, 805, 8409, 13, 3642, 50221, 58, 17, 4083, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1114, 1672, 11, 611, 262, 2134, 4941, 318, 284, 257, 9290, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1626, 257, 24573, 11, 428, 561, 1011, 319, 257, 1988, 588, 25, 366, 16684, 13, 3642, 50221, 90, 3672, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 3003, 366, 3672, 1, 10229, 284, 262, 1438, 286, 262, 9290, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 13973, 262, 1785, 8, 393, 611, 645, 9290, 1438, 318, 7368, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 16684, 13, 3642, 50221, 58, 17, 30866, 357, 34924, 351, 6376, 362, 287, 428, 24573, 737, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 770, 15582, 318, 7147, 691, 284, 423, 617, 880, 12, 23211, 835, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 286, 32578, 257, 636, 286, 281, 2134, 2637, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 14927, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 6530, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 28531, 10223, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 17377, 8271, 14815, 284, 543, 428, 4941, 318, 925, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 597, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 334, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 25105, 286, 262, 6773, 429, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 938, 62, 2213, 328, 10446, 62, 9060, 62, 312, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 938, 2898, 328, 10446, 5159, 2389, 318, 973, 20947, 416, 262, 7412, 19400, 22130, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 284, 3613, 938, 973, 2939, 4522, 329, 1382, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 2099, 318, 262, 2099, 286, 1382, 7616, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 3722, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 3722, 6622, 597, 5981, 1321, 546, 257, 1382, 4566, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 938, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 938, 14815, 318, 973, 284, 4175, 546, 1271, 286, 938, 13973, 1382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 493, 198, 220, 220, 220, 1611, 25, 198, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 532, 14927, 318, 257, 4731, 1988, 10200, 262, 30617, 8271, 428, 2134, 6870, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2930, 690, 743, 13249, 428, 422, 262, 36123, 262, 5456, 850, 24883, 7007, 284, 13, 26003, 198, 220, 220, 220, 220, 220, 220, 220, 307, 6153, 13, 554, 43281, 20448, 13, 198, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 20150, 25, 198, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 532, 20150, 329, 10934, 16934, 8053, 13, 198, 220, 220, 220, 220, 220, 2099, 25, 3716, 198, 220, 220, 220, 220, 220, 4909, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8271, 62, 9641, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 10903, 326, 21079, 262, 4382, 338, 5387, 2196, 286, 428, 2134, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 460, 307, 973, 416, 7534, 284, 5004, 618, 5563, 423, 3421, 13, 11052, 1276, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 307, 5716, 355, 32191, 416, 7534, 290, 3804, 555, 41771, 736, 284, 262, 4382, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8099, 4817, 416, 262, 1080, 13, 4149, 12, 8807, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 62, 8726, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6764, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 12189, 11280, 318, 257, 10289, 10200, 428, 2134, 13, 8099, 4817, 416, 262, 1080, 13, 4149, 12, 8807, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 25, 965, 198, 7061, 6, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
1.763511
54,641
import json import logging import os import inspect import urllib import urllib.request from urllib.error import HTTPError # logger logger = logging.getLogger() logger_level = logging.getLevelName(os.environ['LOGGER_LEVEL']) logger.setLevel(logger_level) # validate access # create response # download json file # entry point -> return region info # entry point -> return region info # End;
[ 11748, 33918, 198, 11748, 18931, 198, 11748, 28686, 198, 11748, 10104, 198, 11748, 2956, 297, 571, 198, 11748, 2956, 297, 571, 13, 25927, 198, 6738, 2956, 297, 571, 13, 18224, 1330, 14626, 12331, 198, 198, 2, 49706, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 3419, 198, 6404, 1362, 62, 5715, 796, 18931, 13, 1136, 4971, 5376, 7, 418, 13, 268, 2268, 17816, 25294, 30373, 62, 2538, 18697, 6, 12962, 198, 6404, 1362, 13, 2617, 4971, 7, 6404, 1362, 62, 5715, 8, 198, 198, 2, 26571, 1895, 198, 198, 2, 2251, 2882, 198, 198, 2, 4321, 33918, 2393, 198, 198, 2, 5726, 966, 4613, 1441, 3814, 7508, 198, 198, 2, 5726, 966, 4613, 1441, 3814, 7508, 198, 198, 2, 5268, 26 ]
3.254098
122
import math import torch import torch.nn as nn from models.neural import MultiHeadedAttention, PositionwiseFeedForward from models.rnn import LayerNormLSTM
[ 11748, 10688, 198, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 198, 6738, 4981, 13, 710, 1523, 1330, 15237, 13847, 276, 8086, 1463, 11, 23158, 3083, 18332, 39746, 198, 6738, 4981, 13, 81, 20471, 1330, 34398, 35393, 43, 2257, 44, 628, 628, 628, 628 ]
3.4375
48
import requests from allauth.socialaccount.providers.oauth2.views import ( OAuth2Adapter, OAuth2CallbackView, OAuth2LoginView, ) from .provider import DropboxOAuth2Provider oauth_login = OAuth2LoginView.adapter_view(DropboxOAuth2Adapter) oauth_callback = OAuth2CallbackView.adapter_view(DropboxOAuth2Adapter)
[ 11748, 7007, 198, 198, 6738, 477, 18439, 13, 14557, 23317, 13, 15234, 4157, 13, 12162, 1071, 17, 13, 33571, 1330, 357, 198, 220, 220, 220, 440, 30515, 17, 47307, 11, 198, 220, 220, 220, 440, 30515, 17, 47258, 7680, 11, 198, 220, 220, 220, 440, 30515, 17, 47790, 7680, 11, 198, 8, 198, 198, 6738, 764, 15234, 1304, 1330, 38930, 23621, 1071, 17, 29495, 628, 198, 198, 12162, 1071, 62, 38235, 796, 440, 30515, 17, 47790, 7680, 13, 324, 3429, 62, 1177, 7, 26932, 3524, 23621, 1071, 17, 47307, 8, 198, 12162, 1071, 62, 47423, 796, 440, 30515, 17, 47258, 7680, 13, 324, 3429, 62, 1177, 7, 26932, 3524, 23621, 1071, 17, 47307, 8, 198 ]
2.834783
115
# SPDX-License-Identifier: MIT # pylint: disable=redefined-builtin,invalid-name """See https://www.sphinx-doc.org/en/master/usage/configuration.html""" from typing import Sequence import os import sys # region Path setup sys.path.insert(0, os.path.abspath('..')) # endregion # region Project information project = 'Upkeep' copyright = '2020, Andrew Udvare' author = 'Andrew Udvare' # The short X.Y version version = '1.2.7' # The full version, including alpha/beta/rc tags release = f'v{version}' # endregion # region General configuration # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = ['sphinx.ext.autodoc', 'sphinx.ext.napoleon'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. exclude_patterns: Sequence[str] = [] master_doc = 'index' # endregion # region Options for HTML output # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = 'alabaster' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # endregion # region Extension configuration # endregion
[ 2, 30628, 55, 12, 34156, 12, 33234, 7483, 25, 17168, 198, 2, 279, 2645, 600, 25, 15560, 28, 445, 18156, 12, 18780, 259, 11, 259, 12102, 12, 3672, 198, 37811, 6214, 3740, 1378, 2503, 13, 82, 746, 28413, 12, 15390, 13, 2398, 14, 268, 14, 9866, 14, 26060, 14, 11250, 3924, 13, 6494, 37811, 198, 6738, 19720, 1330, 45835, 198, 11748, 28686, 198, 11748, 25064, 198, 198, 2, 3814, 10644, 9058, 198, 17597, 13, 6978, 13, 28463, 7, 15, 11, 28686, 13, 6978, 13, 397, 2777, 776, 10786, 492, 6, 4008, 198, 2, 886, 36996, 198, 198, 2, 3814, 4935, 1321, 198, 16302, 796, 705, 4933, 14894, 6, 198, 22163, 4766, 796, 705, 42334, 11, 6858, 35774, 85, 533, 6, 198, 9800, 796, 705, 20508, 35774, 85, 533, 6, 198, 2, 383, 1790, 1395, 13, 56, 2196, 198, 9641, 796, 705, 16, 13, 17, 13, 22, 6, 198, 2, 383, 1336, 2196, 11, 1390, 17130, 14, 31361, 14, 6015, 15940, 198, 20979, 796, 277, 6, 85, 90, 9641, 92, 6, 198, 2, 886, 36996, 198, 198, 2, 3814, 3611, 8398, 198, 2, 3060, 597, 45368, 28413, 7552, 8265, 3891, 994, 11, 355, 13042, 13, 1119, 460, 307, 198, 2, 18366, 2406, 351, 45368, 28413, 357, 13190, 705, 82, 746, 28413, 13, 2302, 15885, 11537, 393, 534, 2183, 198, 2, 3392, 13, 198, 2302, 5736, 796, 37250, 82, 746, 28413, 13, 2302, 13, 2306, 375, 420, 3256, 705, 82, 746, 28413, 13, 2302, 13, 77, 499, 25637, 20520, 198, 2, 3060, 597, 13532, 326, 3994, 24019, 994, 11, 3585, 284, 428, 8619, 13, 198, 11498, 17041, 62, 6978, 796, 37250, 62, 11498, 17041, 20520, 198, 2, 7343, 286, 7572, 11, 3585, 284, 2723, 8619, 11, 326, 2872, 3696, 290, 198, 2, 29196, 284, 8856, 618, 2045, 329, 2723, 3696, 13, 198, 2, 770, 3912, 635, 10975, 27711, 62, 12708, 62, 6978, 290, 27711, 62, 26086, 62, 6978, 13, 198, 1069, 9152, 62, 33279, 82, 25, 45835, 58, 2536, 60, 796, 17635, 198, 9866, 62, 15390, 796, 705, 9630, 6, 198, 2, 886, 36996, 198, 198, 2, 3814, 18634, 329, 11532, 5072, 198, 2, 383, 7505, 284, 779, 329, 11532, 290, 11532, 10478, 5468, 13, 220, 4091, 262, 10314, 329, 198, 2, 257, 1351, 286, 3170, 259, 13460, 13, 198, 6494, 62, 43810, 796, 705, 282, 397, 1603, 6, 198, 2, 3060, 597, 13532, 326, 3994, 2183, 9037, 3696, 357, 10508, 355, 3918, 15747, 8, 994, 11, 198, 2, 3585, 284, 428, 8619, 13, 1119, 389, 18984, 706, 262, 3170, 259, 9037, 3696, 11, 198, 2, 523, 257, 2393, 3706, 366, 12286, 13, 25471, 1, 481, 49312, 262, 3170, 259, 366, 12286, 13, 25471, 1911, 198, 6494, 62, 12708, 62, 6978, 796, 37250, 62, 12708, 20520, 198, 2, 886, 36996, 198, 198, 2, 3814, 27995, 8398, 198, 2, 886, 36996, 198 ]
3.409382
469
import os import platform import shutil import sys from collections import Counter from collections import defaultdict, OrderedDict from os.path import join from typing import List, Dict, Set from CppHeaderParser import CppHeaderParser from CppHeaderParser.CppHeaderParser import CppMethod import generators.dependency_tree from generators.config import common_includes, PCL_BASE, PATH_LOADER, PATH_MODULES, MODULES_TO_BUILD, \ HEADERS_TO_SKIP, ATTRIBUTES_TO_SKIP, CLASSES_TO_IGNORE, METHODS_TO_SKIP, SUBMODULES_TO_SKIP, EXPLICIT_INCLUDES, \ SPECIALIZED_TEMPLATED_TYPES_TO_SKIP from generators.definitions.function import generate_function_definitions, get_methods_defined_outside from generators.definitions.method import split_methods_by_type from generators.definitions.submodule_loader import generate_loader from generators.definitions.templated_class import ClassDefinition from generators.instantiations import Instantiations from generators.point_types_utils import unpack_yaml_point_types from generators.utils import make_header_include_name, sort_headers_by_dependencies, \ generate_main_loader, make_namespace_class, read_header_file def flag_instantiatable_class(dependency_tree, main_classes): """determine if the class can be instantiated""" main_classes_by_name_namespace = {make_namespace_class(c["namespace"], c["name"]): c for classes in main_classes.values() for c in classes} for module, header_name in main_classes: for class_ in main_classes[(module, header_name)]: can_be_instantiated = True if class_["abstract"]: can_be_instantiated = False else: # check if any pure virtual method is not implemented all_implemented_inherited_methods = get_all_class_methods_not_pure_virtual(class_) namespace_class = make_namespace_class(class_["namespace"], class_["name"]) for base_name_nsp in dependency_tree.breadth_first_iterator(namespace_class): base_class = main_classes_by_name_namespace.get(base_name_nsp) if base_class: base_class_methods = get_all_class_methods_not_pure_virtual(base_class) all_implemented_inherited_methods.update(base_class_methods) for base_name_nsp in dependency_tree.breadth_first_iterator(namespace_class): base_class = main_classes_by_name_namespace.get(base_name_nsp) if base_class and base_class["abstract"]: base_pure_virtual_methods = get_pure_virtual_methods(base_class) if base_pure_virtual_methods - all_implemented_inherited_methods: can_be_instantiated = False class_["can_be_instantiated"] = can_be_instantiated def generate(headers_to_generate, skip_macros, not_every_point_type=False) -> OrderedDict: """ :return: OrderedDict """ main_classes, module_functions, module_variables, module_enums = {}, {}, {}, {} for module, header_name, path in headers_to_generate[:]: header_full_path = join(PCL_BASE, path) if path else join(PCL_BASE, module, header_name) header = read_header(header_full_path, skip_macros) main_classes[(module, header_name)] = get_main_classes(header, module, header_name) module_functions[(module, header_name)] = get_functions(header, module) module_variables[(module, header_name)] = get_variables(header) module_enums[(module, header_name)] = get_enums(header) classes = [c for module, header, path in headers_to_generate for c in main_classes[(module, header)]] dependency_tree = generators.dependency_tree.DependencyTree(classes) loaded_point_types = load_yaml_point_types(not_every_point_type) classes_point_types: OrderedDict = dependency_tree.get_point_types_with_dependencies(loaded_point_types) classes_sorted_base_first = list(dependency_tree.leaf_iterator()) # sort classes inside modules based on inheritance for module, header in main_classes: main_classes[(module, header)] = list(sorted(main_classes[(module, header)], key=index_for_class)) headers_to_generate = sort_headers_by_dependencies(headers_to_generate, skip_macros=skip_macros) methods_need_overloading = check_if_needs_overloading(main_classes) flag_instantiatable_class(dependency_tree, main_classes) generated_headers = OrderedDict() for module, header, path in headers_to_generate: generated_headers[(module, header)] = generate_header(module, header, path, keep_if_no_instantiation=False) return generated_headers if __name__ == '__main__': main()
[ 11748, 28686, 198, 11748, 3859, 198, 11748, 4423, 346, 198, 11748, 25064, 198, 6738, 17268, 1330, 15034, 198, 6738, 17268, 1330, 4277, 11600, 11, 14230, 1068, 35, 713, 198, 6738, 28686, 13, 6978, 1330, 4654, 198, 6738, 19720, 1330, 7343, 11, 360, 713, 11, 5345, 198, 198, 6738, 327, 381, 39681, 46677, 1330, 327, 381, 39681, 46677, 198, 6738, 327, 381, 39681, 46677, 13, 34, 381, 39681, 46677, 1330, 327, 381, 17410, 198, 198, 11748, 27298, 13, 45841, 1387, 62, 21048, 198, 6738, 27298, 13, 11250, 1330, 2219, 62, 42813, 11, 4217, 43, 62, 33, 11159, 11, 46490, 62, 35613, 1137, 11, 46490, 62, 33365, 6239, 1546, 11, 19164, 6239, 1546, 62, 10468, 62, 19499, 26761, 11, 3467, 198, 220, 220, 220, 39837, 4877, 62, 10468, 62, 18831, 4061, 11, 5161, 5446, 9865, 3843, 1546, 62, 10468, 62, 18831, 4061, 11, 42715, 1546, 62, 10468, 62, 16284, 6965, 11, 337, 36252, 50, 62, 10468, 62, 18831, 4061, 11, 28932, 33365, 6239, 1546, 62, 10468, 62, 18831, 4061, 11, 7788, 31484, 2043, 62, 1268, 39149, 1546, 11, 3467, 198, 220, 220, 220, 38846, 14887, 1961, 62, 51, 3620, 6489, 11617, 62, 9936, 47, 1546, 62, 10468, 62, 18831, 4061, 198, 6738, 27298, 13, 4299, 50101, 13, 8818, 1330, 7716, 62, 8818, 62, 4299, 50101, 11, 651, 62, 24396, 82, 62, 23211, 62, 43435, 198, 6738, 27298, 13, 4299, 50101, 13, 24396, 1330, 6626, 62, 24396, 82, 62, 1525, 62, 4906, 198, 6738, 27298, 13, 4299, 50101, 13, 7266, 21412, 62, 29356, 1330, 7716, 62, 29356, 198, 6738, 27298, 13, 4299, 50101, 13, 11498, 489, 515, 62, 4871, 1330, 5016, 36621, 198, 6738, 27298, 13, 8625, 17096, 602, 1330, 2262, 17096, 602, 198, 6738, 27298, 13, 4122, 62, 19199, 62, 26791, 1330, 555, 8002, 62, 88, 43695, 62, 4122, 62, 19199, 198, 6738, 27298, 13, 26791, 1330, 787, 62, 25677, 62, 17256, 62, 3672, 11, 3297, 62, 50145, 62, 1525, 62, 45841, 3976, 11, 3467, 198, 220, 220, 220, 7716, 62, 12417, 62, 29356, 11, 787, 62, 14933, 10223, 62, 4871, 11, 1100, 62, 25677, 62, 7753, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 198, 4299, 6056, 62, 8625, 415, 5375, 540, 62, 4871, 7, 45841, 1387, 62, 21048, 11, 1388, 62, 37724, 2599, 198, 220, 220, 220, 37227, 67, 2357, 3810, 611, 262, 1398, 460, 307, 9113, 12931, 37811, 198, 220, 220, 220, 1388, 62, 37724, 62, 1525, 62, 3672, 62, 14933, 10223, 796, 1391, 15883, 62, 14933, 10223, 62, 4871, 7, 66, 14692, 14933, 10223, 33116, 269, 14692, 3672, 8973, 2599, 269, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 6097, 287, 1388, 62, 37724, 13, 27160, 3419, 329, 269, 287, 6097, 92, 628, 220, 220, 220, 329, 8265, 11, 13639, 62, 3672, 287, 1388, 62, 37724, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1398, 62, 287, 1388, 62, 37724, 58, 7, 21412, 11, 13639, 62, 3672, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 460, 62, 1350, 62, 8625, 415, 12931, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1398, 62, 14692, 397, 8709, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 460, 62, 1350, 62, 8625, 415, 12931, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2198, 611, 597, 5899, 7166, 2446, 318, 407, 9177, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 320, 1154, 12061, 62, 259, 372, 863, 62, 24396, 82, 796, 651, 62, 439, 62, 4871, 62, 24396, 82, 62, 1662, 62, 37424, 62, 32844, 7, 4871, 62, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 62, 4871, 796, 787, 62, 14933, 10223, 62, 4871, 7, 4871, 62, 14692, 14933, 10223, 33116, 1398, 62, 14692, 3672, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2779, 62, 3672, 62, 77, 2777, 287, 20203, 62, 21048, 13, 29573, 400, 62, 11085, 62, 48727, 7, 14933, 10223, 62, 4871, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2779, 62, 4871, 796, 1388, 62, 37724, 62, 1525, 62, 3672, 62, 14933, 10223, 13, 1136, 7, 8692, 62, 3672, 62, 77, 2777, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2779, 62, 4871, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2779, 62, 4871, 62, 24396, 82, 796, 651, 62, 439, 62, 4871, 62, 24396, 82, 62, 1662, 62, 37424, 62, 32844, 7, 8692, 62, 4871, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 320, 1154, 12061, 62, 259, 372, 863, 62, 24396, 82, 13, 19119, 7, 8692, 62, 4871, 62, 24396, 82, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2779, 62, 3672, 62, 77, 2777, 287, 20203, 62, 21048, 13, 29573, 400, 62, 11085, 62, 48727, 7, 14933, 10223, 62, 4871, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2779, 62, 4871, 796, 1388, 62, 37724, 62, 1525, 62, 3672, 62, 14933, 10223, 13, 1136, 7, 8692, 62, 3672, 62, 77, 2777, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2779, 62, 4871, 290, 2779, 62, 4871, 14692, 397, 8709, 1, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2779, 62, 37424, 62, 32844, 62, 24396, 82, 796, 651, 62, 37424, 62, 32844, 62, 24396, 82, 7, 8692, 62, 4871, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2779, 62, 37424, 62, 32844, 62, 24396, 82, 532, 477, 62, 320, 1154, 12061, 62, 259, 372, 863, 62, 24396, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 460, 62, 1350, 62, 8625, 415, 12931, 796, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1398, 62, 14692, 5171, 62, 1350, 62, 8625, 415, 12931, 8973, 796, 460, 62, 1350, 62, 8625, 415, 12931, 628, 628, 628, 628, 198, 4299, 7716, 7, 50145, 62, 1462, 62, 8612, 378, 11, 14267, 62, 20285, 4951, 11, 407, 62, 16833, 62, 4122, 62, 4906, 28, 25101, 8, 4613, 14230, 1068, 35, 713, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 7783, 25, 14230, 1068, 35, 713, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1388, 62, 37724, 11, 8265, 62, 12543, 2733, 11, 8265, 62, 25641, 2977, 11, 8265, 62, 268, 5700, 796, 1391, 5512, 1391, 5512, 1391, 5512, 23884, 628, 220, 220, 220, 329, 8265, 11, 13639, 62, 3672, 11, 3108, 287, 24697, 62, 1462, 62, 8612, 378, 58, 25, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 13639, 62, 12853, 62, 6978, 796, 4654, 7, 47, 5097, 62, 33, 11159, 11, 3108, 8, 611, 3108, 2073, 4654, 7, 47, 5097, 62, 33, 11159, 11, 8265, 11, 13639, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13639, 796, 1100, 62, 25677, 7, 25677, 62, 12853, 62, 6978, 11, 14267, 62, 20285, 4951, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1388, 62, 37724, 58, 7, 21412, 11, 13639, 62, 3672, 15437, 796, 651, 62, 12417, 62, 37724, 7, 25677, 11, 8265, 11, 13639, 62, 3672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 62, 12543, 2733, 58, 7, 21412, 11, 13639, 62, 3672, 15437, 796, 651, 62, 12543, 2733, 7, 25677, 11, 8265, 8, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 62, 25641, 2977, 58, 7, 21412, 11, 13639, 62, 3672, 15437, 796, 651, 62, 25641, 2977, 7, 25677, 8, 198, 220, 220, 220, 220, 220, 220, 220, 8265, 62, 268, 5700, 58, 7, 21412, 11, 13639, 62, 3672, 15437, 796, 651, 62, 268, 5700, 7, 25677, 8, 628, 220, 220, 220, 6097, 796, 685, 66, 329, 8265, 11, 13639, 11, 3108, 287, 24697, 62, 1462, 62, 8612, 378, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 269, 287, 1388, 62, 37724, 58, 7, 21412, 11, 13639, 8, 11907, 628, 220, 220, 220, 20203, 62, 21048, 796, 27298, 13, 45841, 1387, 62, 21048, 13, 35, 2690, 1387, 27660, 7, 37724, 8, 628, 220, 220, 220, 9639, 62, 4122, 62, 19199, 796, 3440, 62, 88, 43695, 62, 4122, 62, 19199, 7, 1662, 62, 16833, 62, 4122, 62, 4906, 8, 198, 220, 220, 220, 6097, 62, 4122, 62, 19199, 25, 14230, 1068, 35, 713, 796, 20203, 62, 21048, 13, 1136, 62, 4122, 62, 19199, 62, 4480, 62, 45841, 3976, 7, 14578, 62, 4122, 62, 19199, 8, 628, 220, 220, 220, 6097, 62, 82, 9741, 62, 8692, 62, 11085, 796, 1351, 7, 45841, 1387, 62, 21048, 13, 33201, 62, 48727, 28955, 628, 220, 220, 220, 1303, 3297, 6097, 2641, 13103, 1912, 319, 24155, 198, 220, 220, 220, 329, 8265, 11, 13639, 287, 1388, 62, 37724, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1388, 62, 37724, 58, 7, 21412, 11, 13639, 15437, 796, 1351, 7, 82, 9741, 7, 12417, 62, 37724, 58, 7, 21412, 11, 13639, 8, 4357, 1994, 28, 9630, 62, 1640, 62, 4871, 4008, 628, 220, 220, 220, 24697, 62, 1462, 62, 8612, 378, 796, 3297, 62, 50145, 62, 1525, 62, 45841, 3976, 7, 50145, 62, 1462, 62, 8612, 378, 11, 14267, 62, 20285, 4951, 28, 48267, 62, 20285, 4951, 8, 628, 220, 220, 220, 5050, 62, 31227, 62, 2502, 25138, 796, 2198, 62, 361, 62, 50032, 62, 2502, 25138, 7, 12417, 62, 37724, 8, 628, 220, 220, 220, 6056, 62, 8625, 415, 5375, 540, 62, 4871, 7, 45841, 1387, 62, 21048, 11, 1388, 62, 37724, 8, 628, 220, 220, 220, 7560, 62, 50145, 796, 14230, 1068, 35, 713, 3419, 198, 220, 220, 220, 329, 8265, 11, 13639, 11, 3108, 287, 24697, 62, 1462, 62, 8612, 378, 25, 198, 220, 220, 220, 220, 220, 220, 220, 7560, 62, 50145, 58, 7, 21412, 11, 13639, 15437, 796, 7716, 62, 25677, 7, 21412, 11, 13639, 11, 3108, 11, 1394, 62, 361, 62, 3919, 62, 8625, 415, 3920, 28, 25101, 8, 628, 220, 220, 220, 1441, 7560, 62, 50145, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
2.551797
1,892
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # All params from IdM is stored in environment and you can get them by os.environ["paramName"] import sys, os # this is needed for importing file winrm_wrapper from parent dir sys.path.append(os.path.join(os.path.dirname(__file__), '..')) import winrm_wrapper import codecs uid = os.environ["__UID__"] winrm_wrapper.writeLog("Delete start for " + uid) # Load PS script from file and replace params winrm_wrapper.writeLog("loading script") f = codecs.open(os.environ["script"], encoding='utf-8', mode='r') command = f.read() command = command.replace("$uid", uid) # Call wrapper winrm_wrapper.executeScript(os.environ["endpoint"], os.environ["authentication"], os.environ["user"], os.environ["password"], os.environ["caTrustPath"], os.environ["ignoreCaValidation"], command, uid) winrm_wrapper.writeLog("Delete end for " + uid) print("__UID__=" + uid) sys.exit()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 1439, 42287, 422, 5121, 44, 318, 8574, 287, 2858, 290, 345, 460, 651, 606, 416, 28686, 13, 268, 2268, 14692, 17143, 5376, 8973, 198, 11748, 25064, 11, 28686, 198, 2, 428, 318, 2622, 329, 33332, 2393, 1592, 26224, 62, 48553, 422, 2560, 26672, 198, 17597, 13, 6978, 13, 33295, 7, 418, 13, 6978, 13, 22179, 7, 418, 13, 6978, 13, 15908, 3672, 7, 834, 7753, 834, 828, 705, 492, 6, 4008, 198, 11748, 1592, 26224, 62, 48553, 198, 11748, 40481, 82, 198, 198, 27112, 796, 28686, 13, 268, 2268, 14692, 834, 27586, 834, 8973, 198, 198, 5404, 26224, 62, 48553, 13, 13564, 11187, 7203, 38727, 923, 329, 366, 1343, 334, 312, 8, 198, 198, 2, 8778, 6599, 4226, 422, 2393, 290, 6330, 42287, 198, 5404, 26224, 62, 48553, 13, 13564, 11187, 7203, 25138, 4226, 4943, 198, 69, 796, 40481, 82, 13, 9654, 7, 418, 13, 268, 2268, 14692, 12048, 33116, 21004, 11639, 40477, 12, 23, 3256, 4235, 11639, 81, 11537, 198, 21812, 796, 277, 13, 961, 3419, 198, 21812, 796, 3141, 13, 33491, 7203, 3, 27112, 1600, 334, 312, 8, 198, 198, 2, 4889, 29908, 198, 5404, 26224, 62, 48553, 13, 41049, 7391, 7, 418, 13, 268, 2268, 14692, 437, 4122, 33116, 28686, 13, 268, 2268, 14692, 41299, 3299, 33116, 28686, 13, 268, 2268, 14692, 7220, 33116, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 268, 2268, 14692, 28712, 33116, 28686, 13, 268, 2268, 14692, 6888, 33814, 15235, 33116, 28686, 13, 268, 2268, 14692, 46430, 24334, 7762, 24765, 33116, 3141, 11, 334, 312, 8, 198, 198, 5404, 26224, 62, 48553, 13, 13564, 11187, 7203, 38727, 886, 329, 366, 1343, 334, 312, 8, 198, 4798, 7203, 834, 27586, 834, 2625, 1343, 334, 312, 8, 198, 17597, 13, 37023, 3419, 198 ]
2.761628
344
# Copyright 2019-2021 ETH Zurich and the DaCe authors. All rights reserved. import unittest from aenum import Enum, auto from dace import registry if __name__ == '__main__': unittest.main()
[ 2, 15069, 13130, 12, 1238, 2481, 35920, 43412, 290, 262, 9637, 34, 68, 7035, 13, 1439, 2489, 10395, 13, 198, 11748, 555, 715, 395, 198, 6738, 257, 44709, 1330, 2039, 388, 11, 8295, 198, 6738, 288, 558, 1330, 20478, 628, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
3.125
64
import asyncio import logging from json import loads import pytest from aiologstash2 import create_tcp_handler logging.getLogger().setLevel(logging.DEBUG)
[ 11748, 30351, 952, 198, 11748, 18931, 198, 6738, 33918, 1330, 15989, 198, 198, 11748, 12972, 9288, 198, 198, 6738, 257, 72, 928, 301, 1077, 17, 1330, 2251, 62, 83, 13155, 62, 30281, 628, 198, 6404, 2667, 13, 1136, 11187, 1362, 22446, 2617, 4971, 7, 6404, 2667, 13, 30531, 8, 628, 628, 198 ]
3.134615
52
"""TcEx Framework Playbook module""" # standard library import base64 import json import re from collections import OrderedDict from collections.abc import Iterable def _is_tc_entity_array(self, data): """Return True if provided data has proper structure for TC Entity Array.""" for d in data: if not self._is_tc_entity(d): return False return True def _parse_output_variables(self): """Parse the output variables provided to Playbook Class. **Example Variable Format**:: ['#App:1234:status!String', '#App:1234:status_code!String'] """ self._output_variables_by_name = {} self._output_variables_by_type = {} for ov in self._output_variables: # parse the variable to get individual parts parsed_variable = self.parse_variable(ov) variable_name = parsed_variable.get('name') variable_type = parsed_variable.get('type') # store the variables in dict by name (e.g. "status_code") self._output_variables_by_name[variable_name] = {'variable': ov} # store the variables in dict by name-type (e.g. "status_code-String") self._output_variables_by_type[f'{variable_name}-{variable_type}'] = {'variable': ov} def _read(self, key, embedded=True, b64decode=True, decode=False): """Create the value in Redis if applicable.""" if key is None: self.log.warning('The key is None.') return None # get variable type from variable value variable_type = self.variable_type(key) try: value = self.tcex.key_value_store.read(self._context, key.strip()) except RuntimeError as e: self.log.error(e) return None if value is None: return value if variable_type == 'Binary': value = self._load_value(value) if b64decode: value = base64.b64decode(value) if decode: value = self._decode_binary(value) elif variable_type == 'KeyValue': # embedded variable can be unquoted, which breaks JSON. value = self._wrap_embedded_keyvalue(value) if embedded: value = self._read_embedded(value) value = self._load_value(value) elif variable_type == 'String': if embedded: value = self._read_embedded(value) # coerce string values value = self._coerce_string_value(self._load_value(value)) elif variable_type == 'TCEntity': value = self._load_value(value) return value def _read_array(self, key, embedded=True, b64decode=True, decode=False): """Create the value in Redis if applicable.""" if key is None: # pragma: no cover self.log.warning('The null value for key was provided.') return None # get variable type from variable value variable_type = self.variable_type(key) try: value = self.tcex.key_value_store.read(self._context, key.strip()) except RuntimeError as e: self.log.error(e) return None if value is None: return value if variable_type == 'BinaryArray': value = json.loads(value, object_pairs_hook=OrderedDict) values = [] for v in value: if v is not None and b64decode: v = base64.b64decode(v) if decode: v = self._decode_binary(v) values.append(v) value = values elif variable_type == 'KeyValueArray': # embedded variable can be unquoted, which breaks JSON. value = self._wrap_embedded_keyvalue(value) if embedded: value = self._read_embedded(value) try: value = json.loads(value, object_pairs_hook=OrderedDict) except ValueError as e: # pragma: no cover raise RuntimeError(f'Failed loading JSON data ({value}). Error: ({e})') elif variable_type == 'StringArray': if embedded: value = self._read_embedded(value) # convert int to str value_coerced = [] for v in self._load_value(value): # coerce string values value_coerced.append(self._coerce_string_value(v)) value = value_coerced elif variable_type in ['TCEntityArray', 'TCEnhancedEntity', 'TCEnhancedEntityArray']: value = self._load_value(value) # self.log.trace(f'pb create - context: {self._context}, key: {key}, value: {value}') return value def _read_embedded(self, value): """Read method for "embedded" variables. .. Note:: The ``read()`` method will automatically determine if the input is a variable or needs to be searched for embedded variables. Embedded variable rules: * Only user input can have embedded variables. * Only String and KeyValueArray variables can have embedded variables. * Variables can only be embedded one level deep. This method will automatically covert variables embedded in a string with value retrieved from DB. If there are no keys/variables the raw string will be returned. Examples:: DB Values #App:7979:variable_name!String: "embedded \\"variable\\"" #App:7979:two!String: "two" #App:7979:variable_name!StringArray: ["one", "two", "three"] Examples 1: Input: "This input has a embedded #App:7979:variable_name!String" Examples 2: Input: ["one", #App:7979:two!String, "three"] Examples 3: Input: [{ "key": "embedded string", "value": "This input has a embedded #App:7979:variable_name!String" }, { "key": "string array", "value": #App:7979:variable_name!StringArray }, { "key": "string", "value": #App:7979:variable_name!String }] Args: value (str): The value to parsed and updated from the DB. Returns: (str): Results retrieved from DB """ if value is None: # pragma: no cover return value for variable in (v.group(0) for v in re.finditer(self._variable_parse, str(value))): v = self.read(variable) self.log.trace(f'embedded variable: {variable}, value: {v}') if isinstance(v, (dict, list)): v = json.dumps(v) # for KeyValueArray with nested dict/list type replace the # quoted value to ensure the resulting data is loadable JSON value = re.sub(f'"{variable}"', v, value) if v is not None: # only replace variable if a non-null value is returned from kv store # APP-1030 need to revisit this to handle variable references in kv/kvarrays that # are None. Would like to be able to say if value is just the variable reference, # sub None value, else insert '' in string. That would require a kv-specific # version of this method that gets the entire list/dict instead of just the string. value = re.sub(variable, v, value) return value def _wrap_embedded_keyvalue(self, data): """Wrap keyvalue embedded variable in double quotes. Args: data (str): The data with embedded variables. Returns: (str): Results retrieved from DB """ # TODO: need to verify if core still sends improper JSON for KeyValueArrays if data is not None: # pragma: no cover variables = [] for v in re.finditer(self._vars_keyvalue_embedded, data): variables.append(v.group(0)) for var in set(variables): # recursion over set to handle duplicates # pull (#App:1441:embedded_string!String) from (": #App:1441:embedded_string!String) variable_string = re.search(self._variable_parse, var).group(0) # reformat to replace the correct instance only, handling the case where a variable # is embedded multiple times in the same key value array. data = data.replace(var, f'": "{variable_string}"') return data def create_raw(self, key, value): """Create method of CRUD operation for raw data. ..important:: Raw data can only be a byte, str or int. Other data structures (dict, list, etc) must be serialized. Args: key (str): The variable to write to the DB. value (bytes|int|string): The data to write to the DB. Returns: (str): Result of DB write. """ data = None if key is not None and value is not None: try: data = self.tcex.key_value_store.create(self._context, key.strip(), value) except RuntimeError as e: self.log.error(e) else: self.log.warning('The key or value field was None.') return data def read_raw(self, key): """Read method of CRUD operation for raw data. ..important:: Bytes input will be returned a as string as there is no way to determine data from redis originated as bytes or string. Args: key (str): The variable to read from the DB. Returns: (str): Results retrieved from DB. """ value = None if key is not None: value = self.tcex.key_value_store.read(self._context, key.strip()) else: self.log.warning('The key field was None.') return value def parse_variable(self, variable): # pragma: no cover """Set placeholder for child method.""" raise NotImplementedError('Implemented in child class') def read(self, key, array=False, embedded=True): # pragma: no cover """Set placeholder for child method.""" raise NotImplementedError('Implemented in child class') def variable_type(self, variable): # pragma: no cover """Set placeholder for child method.""" raise NotImplementedError('Implemented in child class')
[ 37811, 51, 66, 3109, 25161, 3811, 2070, 8265, 37811, 198, 2, 3210, 5888, 198, 11748, 2779, 2414, 198, 11748, 33918, 198, 11748, 302, 198, 6738, 17268, 1330, 14230, 1068, 35, 713, 198, 6738, 17268, 13, 39305, 1330, 40806, 540, 628, 198, 220, 220, 220, 825, 4808, 271, 62, 23047, 62, 26858, 62, 18747, 7, 944, 11, 1366, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 13615, 6407, 611, 2810, 1366, 468, 1774, 4645, 329, 17283, 20885, 15690, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 329, 288, 287, 1366, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13557, 271, 62, 23047, 62, 26858, 7, 67, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 628, 220, 220, 220, 825, 4808, 29572, 62, 22915, 62, 25641, 2977, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 10044, 325, 262, 5072, 9633, 2810, 284, 3811, 2070, 5016, 13, 628, 220, 220, 220, 220, 220, 220, 220, 12429, 16281, 35748, 18980, 1174, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37250, 2, 4677, 25, 1065, 2682, 25, 13376, 0, 10100, 3256, 705, 2, 4677, 25, 1065, 2682, 25, 13376, 62, 8189, 0, 10100, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 22915, 62, 25641, 2977, 62, 1525, 62, 3672, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 22915, 62, 25641, 2977, 62, 1525, 62, 4906, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 329, 19643, 287, 2116, 13557, 22915, 62, 25641, 2977, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 21136, 262, 7885, 284, 651, 1981, 3354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 44267, 62, 45286, 796, 2116, 13, 29572, 62, 45286, 7, 709, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7885, 62, 3672, 796, 44267, 62, 45286, 13, 1136, 10786, 3672, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7885, 62, 4906, 796, 44267, 62, 45286, 13, 1136, 10786, 4906, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3650, 262, 9633, 287, 8633, 416, 1438, 357, 68, 13, 70, 13, 366, 13376, 62, 8189, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 22915, 62, 25641, 2977, 62, 1525, 62, 3672, 58, 45286, 62, 3672, 60, 796, 1391, 6, 45286, 10354, 19643, 92, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3650, 262, 9633, 287, 8633, 416, 1438, 12, 4906, 357, 68, 13, 70, 13, 366, 13376, 62, 8189, 12, 10100, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 22915, 62, 25641, 2977, 62, 1525, 62, 4906, 58, 69, 6, 90, 45286, 62, 3672, 92, 12, 90, 45286, 62, 4906, 92, 20520, 796, 1391, 6, 45286, 10354, 19643, 92, 628, 220, 220, 220, 825, 4808, 961, 7, 944, 11, 1994, 11, 14553, 28, 17821, 11, 275, 2414, 12501, 1098, 28, 17821, 11, 36899, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16447, 262, 1988, 287, 2297, 271, 611, 9723, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1994, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 43917, 10786, 464, 1994, 318, 6045, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 651, 7885, 2099, 422, 7885, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 7885, 62, 4906, 796, 2116, 13, 45286, 62, 4906, 7, 2539, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13, 83, 344, 87, 13, 2539, 62, 8367, 62, 8095, 13, 961, 7, 944, 13557, 22866, 11, 1994, 13, 36311, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 43160, 12331, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 18224, 7, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 611, 7885, 62, 4906, 6624, 705, 33, 3219, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 2220, 62, 8367, 7, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 275, 2414, 12501, 1098, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2779, 2414, 13, 65, 2414, 12501, 1098, 7, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 36899, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 12501, 1098, 62, 39491, 7, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 7885, 62, 4906, 6624, 705, 9218, 11395, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 14553, 7885, 460, 307, 555, 421, 5191, 11, 543, 9457, 19449, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 37150, 62, 20521, 9395, 62, 2539, 8367, 7, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14553, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 961, 62, 20521, 9395, 7, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 2220, 62, 8367, 7, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 7885, 62, 4906, 6624, 705, 10100, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14553, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 961, 62, 20521, 9395, 7, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 31255, 344, 4731, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 1073, 263, 344, 62, 8841, 62, 8367, 7, 944, 13557, 2220, 62, 8367, 7, 8367, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 7885, 62, 4906, 6624, 705, 4825, 32398, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 2220, 62, 8367, 7, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 825, 4808, 961, 62, 18747, 7, 944, 11, 1994, 11, 14553, 28, 17821, 11, 275, 2414, 12501, 1098, 28, 17821, 11, 36899, 28, 25101, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16447, 262, 1988, 287, 2297, 271, 611, 9723, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1994, 318, 6045, 25, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 43917, 10786, 464, 9242, 1988, 329, 1994, 373, 2810, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 651, 7885, 2099, 422, 7885, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 7885, 62, 4906, 796, 2116, 13, 45286, 62, 4906, 7, 2539, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13, 83, 344, 87, 13, 2539, 62, 8367, 62, 8095, 13, 961, 7, 944, 13557, 22866, 11, 1994, 13, 36311, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 43160, 12331, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 18224, 7, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 611, 7885, 62, 4906, 6624, 705, 33, 3219, 19182, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 33918, 13, 46030, 7, 8367, 11, 2134, 62, 79, 3468, 62, 25480, 28, 35422, 1068, 35, 713, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3815, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 410, 287, 1988, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 410, 318, 407, 6045, 290, 275, 2414, 12501, 1098, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 796, 2779, 2414, 13, 65, 2414, 12501, 1098, 7, 85, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 36899, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 796, 2116, 13557, 12501, 1098, 62, 39491, 7, 85, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3815, 13, 33295, 7, 85, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 7885, 62, 4906, 6624, 705, 9218, 11395, 19182, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 14553, 7885, 460, 307, 555, 421, 5191, 11, 543, 9457, 19449, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 37150, 62, 20521, 9395, 62, 2539, 8367, 7, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14553, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 961, 62, 20521, 9395, 7, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 33918, 13, 46030, 7, 8367, 11, 2134, 62, 79, 3468, 62, 25480, 28, 35422, 1068, 35, 713, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 11052, 12331, 355, 304, 25, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 43160, 12331, 7, 69, 6, 37, 6255, 11046, 19449, 1366, 37913, 8367, 92, 737, 13047, 25, 37913, 68, 30072, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 7885, 62, 4906, 6624, 705, 10100, 19182, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 14553, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 961, 62, 20521, 9395, 7, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10385, 493, 284, 965, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 62, 1073, 263, 771, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 410, 287, 2116, 13557, 2220, 62, 8367, 7, 8367, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 31255, 344, 4731, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 62, 1073, 263, 771, 13, 33295, 7, 944, 13557, 1073, 263, 344, 62, 8841, 62, 8367, 7, 85, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 1988, 62, 1073, 263, 771, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 7885, 62, 4906, 287, 37250, 4825, 32398, 19182, 3256, 705, 4825, 49026, 32398, 3256, 705, 4825, 49026, 32398, 19182, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13557, 2220, 62, 8367, 7, 8367, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2116, 13, 6404, 13, 40546, 7, 69, 6, 40842, 2251, 532, 4732, 25, 1391, 944, 13557, 22866, 5512, 1994, 25, 1391, 2539, 5512, 1988, 25, 1391, 8367, 92, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 825, 4808, 961, 62, 20521, 9395, 7, 944, 11, 1988, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 2446, 329, 366, 20521, 9395, 1, 9633, 13, 628, 220, 220, 220, 220, 220, 220, 220, 11485, 5740, 3712, 383, 7559, 961, 3419, 15506, 2446, 481, 6338, 5004, 611, 262, 5128, 318, 257, 7885, 393, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2476, 284, 307, 16499, 329, 14553, 9633, 13, 628, 220, 220, 220, 220, 220, 220, 220, 13302, 47238, 7885, 3173, 25, 628, 220, 220, 220, 220, 220, 220, 220, 1635, 5514, 2836, 5128, 460, 423, 14553, 9633, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 5514, 10903, 290, 7383, 11395, 19182, 9633, 460, 423, 14553, 9633, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1635, 15965, 2977, 460, 691, 307, 14553, 530, 1241, 2769, 13, 628, 220, 220, 220, 220, 220, 220, 220, 770, 2446, 481, 6338, 22624, 9633, 14553, 287, 257, 4731, 351, 1988, 29517, 198, 220, 220, 220, 220, 220, 220, 220, 422, 20137, 13, 1002, 612, 389, 645, 8251, 14, 25641, 2977, 262, 8246, 4731, 481, 307, 4504, 13, 628, 220, 220, 220, 220, 220, 220, 220, 21066, 3712, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20137, 27068, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4677, 25, 3720, 3720, 25, 45286, 62, 3672, 0, 10100, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20521, 9395, 3467, 7879, 45286, 6852, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4677, 25, 3720, 3720, 25, 11545, 0, 10100, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11545, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4677, 25, 3720, 3720, 25, 45286, 62, 3672, 0, 10100, 19182, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14631, 505, 1600, 366, 11545, 1600, 366, 15542, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21066, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23412, 25, 220, 366, 1212, 5128, 468, 257, 14553, 1303, 4677, 25, 3720, 3720, 25, 45286, 62, 3672, 0, 10100, 1, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21066, 362, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23412, 25, 14631, 505, 1600, 1303, 4677, 25, 3720, 3720, 25, 11545, 0, 10100, 11, 366, 15542, 8973, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21066, 513, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23412, 25, 685, 90, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2539, 1298, 366, 20521, 9395, 4731, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8367, 1298, 366, 1212, 5128, 468, 257, 14553, 1303, 4677, 25, 3720, 3720, 25, 45286, 62, 3672, 0, 10100, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2539, 1298, 366, 8841, 7177, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8367, 1298, 1303, 4677, 25, 3720, 3720, 25, 45286, 62, 3672, 0, 10100, 19182, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8964, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2539, 1298, 366, 8841, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 8367, 1298, 1303, 4677, 25, 3720, 3720, 25, 45286, 62, 3672, 0, 10100, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 60, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 357, 2536, 2599, 383, 1988, 284, 44267, 290, 6153, 422, 262, 20137, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2536, 2599, 15691, 29517, 422, 20137, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1988, 318, 6045, 25, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 220, 220, 220, 220, 329, 7885, 287, 357, 85, 13, 8094, 7, 15, 8, 329, 410, 287, 302, 13, 19796, 2676, 7, 944, 13557, 45286, 62, 29572, 11, 965, 7, 8367, 4008, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 796, 2116, 13, 961, 7, 45286, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 40546, 7, 69, 6, 20521, 9395, 7885, 25, 1391, 45286, 5512, 1988, 25, 1391, 85, 92, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 85, 11, 357, 11600, 11, 1351, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 796, 33918, 13, 67, 8142, 7, 85, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 329, 7383, 11395, 19182, 351, 28376, 8633, 14, 4868, 2099, 6330, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10947, 1988, 284, 4155, 262, 7186, 1366, 318, 3440, 540, 19449, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 302, 13, 7266, 7, 69, 29653, 90, 45286, 36786, 3256, 410, 11, 1988, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 410, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 691, 6330, 7885, 611, 257, 1729, 12, 8423, 1988, 318, 4504, 422, 479, 85, 3650, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 43504, 12, 940, 1270, 761, 284, 32302, 428, 284, 5412, 7885, 10288, 287, 479, 85, 14, 74, 85, 3258, 592, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 389, 6045, 13, 220, 10928, 588, 284, 307, 1498, 284, 910, 611, 1988, 318, 655, 262, 7885, 4941, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 850, 6045, 1988, 11, 2073, 7550, 10148, 287, 4731, 13, 220, 1320, 561, 2421, 257, 479, 85, 12, 11423, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2196, 286, 428, 2446, 326, 3011, 262, 2104, 1351, 14, 11600, 2427, 286, 655, 262, 4731, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 302, 13, 7266, 7, 45286, 11, 410, 11, 1988, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 825, 4808, 37150, 62, 20521, 9395, 62, 2539, 8367, 7, 944, 11, 1366, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 54, 2416, 1994, 8367, 14553, 7885, 287, 4274, 13386, 13, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 357, 2536, 2599, 383, 1366, 351, 14553, 9633, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2536, 2599, 15691, 29517, 422, 20137, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 25, 761, 284, 11767, 611, 4755, 991, 12800, 18992, 19449, 329, 7383, 11395, 3163, 20477, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1366, 318, 407, 6045, 25, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9633, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 410, 287, 302, 13, 19796, 2676, 7, 944, 13557, 85, 945, 62, 2539, 8367, 62, 20521, 9395, 11, 1366, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9633, 13, 33295, 7, 85, 13, 8094, 7, 15, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1401, 287, 900, 7, 25641, 2977, 2599, 220, 1303, 664, 24197, 625, 900, 284, 5412, 14184, 16856, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2834, 17426, 4677, 25, 1415, 3901, 25, 20521, 9395, 62, 8841, 0, 10100, 8, 422, 357, 1298, 1303, 4677, 25, 1415, 3901, 25, 20521, 9395, 62, 8841, 0, 10100, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7885, 62, 8841, 796, 302, 13, 12947, 7, 944, 13557, 45286, 62, 29572, 11, 1401, 737, 8094, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4975, 265, 284, 6330, 262, 3376, 4554, 691, 11, 9041, 262, 1339, 810, 257, 7885, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 318, 14553, 3294, 1661, 287, 262, 976, 1994, 1988, 7177, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 1366, 13, 33491, 7, 7785, 11, 277, 6, 1298, 45144, 45286, 62, 8841, 36786, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 628, 220, 220, 220, 825, 2251, 62, 1831, 7, 944, 11, 1994, 11, 1988, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 16447, 2446, 286, 8740, 8322, 4905, 329, 8246, 1366, 13, 628, 220, 220, 220, 220, 220, 220, 220, 11485, 18049, 3712, 16089, 1366, 460, 691, 307, 257, 18022, 11, 965, 393, 493, 13, 3819, 1366, 8573, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 11600, 11, 1351, 11, 3503, 8, 1276, 307, 11389, 1143, 13, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 357, 2536, 2599, 383, 7885, 284, 3551, 284, 262, 20137, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 357, 33661, 91, 600, 91, 8841, 2599, 383, 1366, 284, 3551, 284, 262, 20137, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2536, 2599, 25414, 286, 20137, 3551, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1994, 318, 407, 6045, 290, 1988, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2116, 13, 83, 344, 87, 13, 2539, 62, 8367, 62, 8095, 13, 17953, 7, 944, 13557, 22866, 11, 1994, 13, 36311, 22784, 1988, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2845, 43160, 12331, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 18224, 7, 68, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 43917, 10786, 464, 1994, 393, 1988, 2214, 373, 6045, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1366, 628, 220, 220, 220, 825, 1100, 62, 1831, 7, 944, 11, 1994, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 5569, 2446, 286, 8740, 8322, 4905, 329, 8246, 1366, 13, 628, 220, 220, 220, 220, 220, 220, 220, 11485, 18049, 3712, 2750, 4879, 5128, 481, 307, 4504, 257, 355, 4731, 355, 612, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 645, 835, 284, 5004, 1366, 422, 2266, 271, 20973, 355, 9881, 393, 4731, 13, 628, 220, 220, 220, 220, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1994, 357, 2536, 2599, 383, 7885, 284, 1100, 422, 262, 20137, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 2536, 2599, 15691, 29517, 422, 20137, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1994, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1988, 796, 2116, 13, 83, 344, 87, 13, 2539, 62, 8367, 62, 8095, 13, 961, 7, 944, 13557, 22866, 11, 1994, 13, 36311, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 6404, 13, 43917, 10786, 464, 1994, 2214, 373, 6045, 2637, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1988, 628, 220, 220, 220, 825, 21136, 62, 45286, 7, 944, 11, 7885, 2599, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 46076, 329, 1200, 2446, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 10786, 3546, 1154, 12061, 287, 1200, 1398, 11537, 628, 220, 220, 220, 825, 1100, 7, 944, 11, 1994, 11, 7177, 28, 25101, 11, 14553, 28, 17821, 2599, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 46076, 329, 1200, 2446, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 10786, 3546, 1154, 12061, 287, 1200, 1398, 11537, 628, 220, 220, 220, 825, 7885, 62, 4906, 7, 944, 11, 7885, 2599, 220, 1303, 23864, 2611, 25, 645, 3002, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 7248, 46076, 329, 1200, 2446, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 1892, 3546, 1154, 12061, 12331, 10786, 3546, 1154, 12061, 287, 1200, 1398, 11537, 198 ]
2.233194
4,790
# coding=utf-8 # Copyright (c) 2019 NVIDIA CORPORATION. All rights reserved. # Copyright 2018 The Google AI Language Team Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """BERT finetuning runner.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function import collections import csv import os import modeling import optimization import tokenization import tensorflow as tf import horovod.tensorflow as hvd import time from utils.utils import LogEvalRunHook, LogTrainRunHook, setup_xla_flags from utils.gpu_affinity import set_affinity import utils.dllogger_class from dllogger import Verbosity from utils.create_glue_data import * import numpy as np import tf_metrics flags = tf.flags FLAGS = flags.FLAGS ## Required parameters flags.DEFINE_string( "data_dir", None, "The input data dir. Should contain the .tsv files (or other data files) " "for the task.") flags.DEFINE_string( "bert_config_file", None, "The config json file corresponding to the pre-trained BERT model. " "This specifies the model architecture.") flags.DEFINE_string("task_name", None, "The name of the task to train.") flags.DEFINE_string("vocab_file", None, "The vocabulary file that the BERT model was trained on.") flags.DEFINE_string( "output_dir", None, "The output directory where the model checkpoints will be written.") ## Other parameters flags.DEFINE_string( "dllog_path", "/results/bert_dllog.json", "filename where dllogger writes to") flags.DEFINE_string( "optimizer_type", "lamb", "Optimizer type : adam or lamb") flags.DEFINE_string( "init_checkpoint", None, "Initial checkpoint (usually from a pre-trained BERT model).") flags.DEFINE_bool( "do_lower_case", True, "Whether to lower case the input text. Should be True for uncased " "models and False for cased models.") flags.DEFINE_integer( "max_seq_length", 128, "The maximum total input sequence length after WordPiece tokenization. " "Sequences longer than this will be truncated, and sequences shorter " "than this will be padded.") flags.DEFINE_bool("do_train", False, "Whether to run training.") flags.DEFINE_bool("do_eval", False, "Whether to run eval on the dev set.") flags.DEFINE_bool( "do_predict", False, "Whether to run the model in inference mode on the test set.") flags.DEFINE_integer("train_batch_size", 32, "Total batch size for training.") flags.DEFINE_integer("eval_batch_size", 8, "Total batch size for eval.") flags.DEFINE_integer("predict_batch_size", 8, "Total batch size for predict.") flags.DEFINE_float("learning_rate", 5e-5, "The initial learning rate for Adam.") flags.DEFINE_bool("use_trt", False, "Whether to use TF-TRT") flags.DEFINE_float("num_train_epochs", 3.0, "Total number of training epochs to perform.") flags.DEFINE_float( "warmup_proportion", 0.1, "Proportion of training to perform linear learning rate warmup for. " "E.g., 0.1 = 10% of training.") flags.DEFINE_integer("save_checkpoints_steps", 1000, "How often to save the model checkpoint.") flags.DEFINE_integer("display_loss_steps", 10, "How often to print loss from estimator") flags.DEFINE_integer("iterations_per_loop", 1000, "How many steps to make in each estimator call.") flags.DEFINE_integer("num_accumulation_steps", 1, "Number of accumulation steps before gradient update" "Global batch size = num_accumulation_steps * train_batch_size") flags.DEFINE_bool("amp", True, "Whether to enable AMP ops. When false, uses TF32 on A100 and FP32 on V100 GPUS.") flags.DEFINE_bool("use_xla", True, "Whether to enable XLA JIT compilation.") flags.DEFINE_bool("horovod", False, "Whether to use Horovod for multi-gpu runs") flags.DEFINE_bool( "verbose_logging", False, "If true, all of the warnings related to data processing will be printed. " "A number of warnings are expected for a normal SQuAD evaluation.") def file_based_input_fn_builder(input_file, batch_size, seq_length, is_training, drop_remainder, hvd=None): """Creates an `input_fn` closure to be passed to Estimator.""" name_to_features = { "input_ids": tf.io.FixedLenFeature([seq_length], tf.int64), "input_mask": tf.io.FixedLenFeature([seq_length], tf.int64), "segment_ids": tf.io.FixedLenFeature([seq_length], tf.int64), "label_ids": tf.io.FixedLenFeature([], tf.int64), } def _decode_record(record, name_to_features): """Decodes a record to a TensorFlow example.""" example = tf.parse_single_example(record, name_to_features) # tf.Example only supports tf.int64, but the TPU only supports tf.int32. # So cast all int64 to int32. for name in list(example.keys()): t = example[name] if t.dtype == tf.int64: t = tf.to_int32(t) example[name] = t return example def input_fn(): """The actual input function.""" # For training, we want a lot of parallel reading and shuffling. # For eval, we want no shuffling and parallel reading doesn't matter. d = tf.data.TFRecordDataset(input_file) if is_training: if hvd is not None: d = d.shard(hvd.size(), hvd.rank()) d = d.repeat() d = d.shuffle(buffer_size=100) d = d.apply( tf.contrib.data.map_and_batch( lambda record: _decode_record(record, name_to_features), batch_size=batch_size, drop_remainder=drop_remainder)) return d return input_fn def create_model(bert_config, is_training, input_ids, input_mask, segment_ids, labels, num_labels, use_one_hot_embeddings): """Creates a classification model.""" model = modeling.BertModel( config=bert_config, is_training=is_training, input_ids=input_ids, input_mask=input_mask, token_type_ids=segment_ids, use_one_hot_embeddings=use_one_hot_embeddings, compute_type=tf.float32) # In the demo, we are doing a simple classification task on the entire # segment. # # If you want to use the token-level output, use model.get_sequence_output() # instead. output_layer = model.get_pooled_output() hidden_size = output_layer.shape[-1].value output_weights = tf.get_variable( "output_weights", [num_labels, hidden_size], initializer=tf.truncated_normal_initializer(stddev=0.02)) output_bias = tf.get_variable( "output_bias", [num_labels], initializer=tf.zeros_initializer()) with tf.variable_scope("loss"): if is_training: # I.e., 0.1 dropout output_layer = tf.nn.dropout(output_layer, keep_prob=0.9) logits = tf.matmul(output_layer, output_weights, transpose_b=True) logits = tf.nn.bias_add(logits, output_bias, name='cls_logits') probabilities = tf.nn.softmax(logits, axis=-1, name='cls_probabilities') log_probs = tf.nn.log_softmax(logits, axis=-1) one_hot_labels = tf.one_hot(labels, depth=num_labels, dtype=tf.float32) per_example_loss = -tf.reduce_sum(one_hot_labels * log_probs, axis=-1, name='cls_per_example_loss') loss = tf.reduce_mean(per_example_loss, name='cls_loss') return (loss, per_example_loss, logits, probabilities) def model_fn_builder(task_name, bert_config, num_labels, init_checkpoint, learning_rate, num_train_steps, num_warmup_steps, use_one_hot_embeddings, hvd=None): """Returns `model_fn` closure for Estimator.""" def model_fn(features, labels, mode, params): # pylint: disable=unused-argument """The `model_fn` for Estimator.""" tf.compat.v1.logging.info("*** Features ***") tf.compat.v1.logging.info("*** Features ***") for name in sorted(features.keys()): tf.compat.v1.logging.info(" name = %s, shape = %s" % (name, features[name].shape)) input_ids = features["input_ids"] input_mask = features["input_mask"] segment_ids = features["segment_ids"] label_ids = features["label_ids"] is_training = (mode == tf.estimator.ModeKeys.TRAIN) if not is_training and FLAGS.use_trt: trt_graph = get_frozen_tftrt_model(bert_config, input_ids.shape, num_labels, use_one_hot_embeddings, init_checkpoint) (total_loss, per_example_loss, logits, probabilities) = tf.import_graph_def(trt_graph, input_map={'input_ids':input_ids, 'input_mask':input_mask, 'segment_ids':segment_ids, 'label_ids':label_ids}, return_elements=['loss/cls_loss:0', 'loss/cls_per_example_loss:0', 'loss/cls_logits:0', 'loss/cls_probabilities:0'], name='') if mode == tf.estimator.ModeKeys.PREDICT: predictions = {"probabilities": probabilities} output_spec = tf.estimator.EstimatorSpec( mode=mode, predictions=predictions) elif mode == tf.estimator.ModeKeys.EVAL: eval_metric_ops = metric_fn(per_example_loss, label_ids, logits) output_spec = tf.estimator.EstimatorSpec( mode=mode, loss=total_loss, eval_metric_ops=eval_metric_ops) return output_spec (total_loss, per_example_loss, logits, probabilities) = create_model( bert_config, is_training, input_ids, input_mask, segment_ids, label_ids, num_labels, use_one_hot_embeddings) tvars = tf.trainable_variables() initialized_variable_names = {} if init_checkpoint and (hvd is None or hvd.rank() == 0): (assignment_map, initialized_variable_names ) = modeling.get_assignment_map_from_checkpoint(tvars, init_checkpoint) tf.train.init_from_checkpoint(init_checkpoint, assignment_map) if FLAGS.verbose_logging: tf.compat.v1.logging.info("**** Trainable Variables ****") for var in tvars: init_string = "" if var.name in initialized_variable_names: init_string = ", *INIT_FROM_CKPT*" tf.compat.v1.logging.info(" name = %s, shape = %s%s", var.name, var.shape, init_string) output_spec = None if mode == tf.estimator.ModeKeys.TRAIN: train_op = optimization.create_optimizer( total_loss, learning_rate, num_train_steps, num_warmup_steps, hvd, False, FLAGS.amp, FLAGS.num_accumulation_steps, FLAGS.optimizer_type) output_spec = tf.estimator.EstimatorSpec( mode=mode, loss=total_loss, train_op=train_op) elif mode == tf.estimator.ModeKeys.EVAL: dummy_op = tf.no_op() # Need to call mixed precision graph rewrite if fp16 to enable graph rewrite if FLAGS.amp: loss_scaler = tf.train.experimental.FixedLossScale(1) dummy_op = tf.train.experimental.enable_mixed_precision_graph_rewrite( optimization.LAMBOptimizer(learning_rate=0.0), loss_scaler) eval_metric_ops = metric_fn(per_example_loss, label_ids, logits) output_spec = tf.estimator.EstimatorSpec( mode=mode, loss=total_loss, eval_metric_ops=eval_metric_ops) else: dummy_op = tf.no_op() # Need to call mixed precision graph rewrite if fp16 to enable graph rewrite if FLAGS.amp: dummy_op = tf.train.experimental.enable_mixed_precision_graph_rewrite( optimization.LAMBOptimizer(learning_rate=0.0)) output_spec = tf.estimator.EstimatorSpec( mode=mode, predictions=probabilities) return output_spec return model_fn # This function is not used by this file but is still used by the Colab and # people who depend on it. def input_fn_builder(features, batch_size, seq_length, is_training, drop_remainder, hvd=None): """Creates an `input_fn` closure to be passed to Estimator.""" all_input_ids = [] all_input_mask = [] all_segment_ids = [] all_label_ids = [] for feature in features: all_input_ids.append(feature.input_ids) all_input_mask.append(feature.input_mask) all_segment_ids.append(feature.segment_ids) all_label_ids.append(feature.label_id) def input_fn(): """The actual input function.""" num_examples = len(features) # This is for demo purposes and does NOT scale to large data sets. We do # not use Dataset.from_generator() because that uses tf.py_func which is # not TPU compatible. The right way to load data is with TFRecordReader. d = tf.data.Dataset.from_tensor_slices({ "input_ids": tf.constant( all_input_ids, shape=[num_examples, seq_length], dtype=tf.int32), "input_mask": tf.constant( all_input_mask, shape=[num_examples, seq_length], dtype=tf.int32), "segment_ids": tf.constant( all_segment_ids, shape=[num_examples, seq_length], dtype=tf.int32), "label_ids": tf.constant(all_label_ids, shape=[num_examples], dtype=tf.int32), }) if is_training: if hvd is not None: d = d.shard(hvd.size(), hvd.rank()) d = d.repeat() d = d.shuffle(buffer_size=100) d = d.batch(batch_size=batch_size, drop_remainder=drop_remainder) return d return input_fn if __name__ == "__main__": flags.mark_flag_as_required("data_dir") flags.mark_flag_as_required("task_name") flags.mark_flag_as_required("vocab_file") flags.mark_flag_as_required("bert_config_file") flags.mark_flag_as_required("output_dir") tf.compat.v1.app.run()
[ 2, 19617, 28, 40477, 12, 23, 198, 2, 15069, 357, 66, 8, 13130, 15127, 23929, 44680, 6234, 13, 1439, 2489, 10395, 13, 198, 2, 15069, 2864, 383, 3012, 9552, 15417, 4816, 46665, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 198, 37811, 13246, 51, 957, 316, 46493, 17490, 526, 15931, 198, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 6738, 11593, 37443, 834, 1330, 7297, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 198, 11748, 17268, 198, 11748, 269, 21370, 198, 11748, 28686, 198, 11748, 21128, 198, 11748, 23989, 198, 11748, 11241, 1634, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 11748, 3076, 709, 375, 13, 83, 22854, 11125, 355, 289, 20306, 198, 11748, 640, 198, 6738, 3384, 4487, 13, 26791, 1330, 5972, 36, 2100, 10987, 39, 566, 11, 5972, 44077, 10987, 39, 566, 11, 9058, 62, 87, 5031, 62, 33152, 198, 6738, 3384, 4487, 13, 46999, 62, 2001, 6269, 1330, 900, 62, 2001, 6269, 198, 11748, 3384, 4487, 13, 12736, 519, 1362, 62, 4871, 198, 6738, 288, 297, 519, 1362, 1330, 49973, 16579, 198, 6738, 3384, 4487, 13, 17953, 62, 4743, 518, 62, 7890, 1330, 1635, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 48700, 62, 4164, 10466, 198, 198, 33152, 796, 48700, 13, 33152, 198, 198, 38948, 50, 796, 9701, 13, 38948, 50, 198, 198, 2235, 20906, 10007, 198, 33152, 13, 7206, 29940, 62, 8841, 7, 198, 220, 220, 220, 366, 7890, 62, 15908, 1600, 6045, 11, 198, 220, 220, 220, 366, 464, 5128, 1366, 26672, 13, 10358, 3994, 262, 764, 912, 85, 3696, 357, 273, 584, 1366, 3696, 8, 366, 198, 220, 220, 220, 366, 1640, 262, 4876, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 8841, 7, 198, 220, 220, 220, 366, 4835, 62, 11250, 62, 7753, 1600, 6045, 11, 198, 220, 220, 220, 366, 464, 4566, 33918, 2393, 11188, 284, 262, 662, 12, 35311, 347, 17395, 2746, 13, 366, 198, 220, 220, 220, 366, 1212, 26052, 262, 2746, 10959, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 8841, 7203, 35943, 62, 3672, 1600, 6045, 11, 366, 464, 1438, 286, 262, 4876, 284, 4512, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 8841, 7203, 18893, 397, 62, 7753, 1600, 6045, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 464, 25818, 2393, 326, 262, 347, 17395, 2746, 373, 8776, 319, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 8841, 7, 198, 220, 220, 220, 366, 22915, 62, 15908, 1600, 6045, 11, 198, 220, 220, 220, 366, 464, 5072, 8619, 810, 262, 2746, 36628, 481, 307, 3194, 19570, 198, 198, 2235, 3819, 10007, 198, 33152, 13, 7206, 29940, 62, 8841, 7, 198, 220, 220, 220, 366, 12736, 519, 62, 6978, 1600, 12813, 43420, 14, 4835, 62, 12736, 519, 13, 17752, 1600, 198, 220, 220, 220, 366, 34345, 810, 288, 297, 519, 1362, 6797, 284, 4943, 198, 198, 33152, 13, 7206, 29940, 62, 8841, 7, 198, 220, 220, 220, 366, 40085, 7509, 62, 4906, 1600, 366, 2543, 65, 1600, 198, 220, 220, 220, 366, 27871, 320, 7509, 2099, 1058, 23197, 393, 19343, 4943, 198, 198, 33152, 13, 7206, 29940, 62, 8841, 7, 198, 220, 220, 220, 366, 15003, 62, 9122, 4122, 1600, 6045, 11, 198, 220, 220, 220, 366, 24243, 26954, 357, 23073, 422, 257, 662, 12, 35311, 347, 17395, 2746, 8, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 30388, 7, 198, 220, 220, 220, 366, 4598, 62, 21037, 62, 7442, 1600, 6407, 11, 198, 220, 220, 220, 366, 15354, 284, 2793, 1339, 262, 5128, 2420, 13, 10358, 307, 6407, 329, 4591, 839, 366, 198, 220, 220, 220, 366, 27530, 290, 10352, 329, 269, 839, 4981, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 41433, 7, 198, 220, 220, 220, 366, 9806, 62, 41068, 62, 13664, 1600, 13108, 11, 198, 220, 220, 220, 366, 464, 5415, 2472, 5128, 8379, 4129, 706, 9678, 47, 8535, 11241, 1634, 13, 366, 198, 220, 220, 220, 366, 44015, 3007, 2392, 621, 428, 481, 307, 40122, 515, 11, 290, 16311, 12238, 366, 198, 220, 220, 220, 366, 14813, 428, 481, 307, 44582, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 30388, 7203, 4598, 62, 27432, 1600, 10352, 11, 366, 15354, 284, 1057, 3047, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 30388, 7203, 4598, 62, 18206, 1600, 10352, 11, 366, 15354, 284, 1057, 5418, 319, 262, 1614, 900, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 30388, 7, 198, 220, 220, 220, 366, 4598, 62, 79, 17407, 1600, 10352, 11, 198, 220, 220, 220, 366, 15354, 284, 1057, 262, 2746, 287, 32278, 4235, 319, 262, 1332, 900, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 41433, 7203, 27432, 62, 43501, 62, 7857, 1600, 3933, 11, 366, 14957, 15458, 2546, 329, 3047, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 41433, 7203, 18206, 62, 43501, 62, 7857, 1600, 807, 11, 366, 14957, 15458, 2546, 329, 5418, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 41433, 7203, 79, 17407, 62, 43501, 62, 7857, 1600, 807, 11, 366, 14957, 15458, 2546, 329, 4331, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 22468, 7203, 40684, 62, 4873, 1600, 642, 68, 12, 20, 11, 366, 464, 4238, 4673, 2494, 329, 7244, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 30388, 7203, 1904, 62, 2213, 83, 1600, 10352, 11, 366, 15354, 284, 779, 24958, 12, 5446, 51, 4943, 198, 198, 33152, 13, 7206, 29940, 62, 22468, 7203, 22510, 62, 27432, 62, 538, 5374, 82, 1600, 513, 13, 15, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14957, 1271, 286, 3047, 36835, 82, 284, 1620, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 22468, 7, 198, 220, 220, 220, 366, 31975, 929, 62, 1676, 16864, 1600, 657, 13, 16, 11, 198, 220, 220, 220, 366, 2964, 16864, 286, 3047, 284, 1620, 14174, 4673, 2494, 5814, 929, 329, 13, 366, 198, 220, 220, 220, 366, 36, 13, 70, 1539, 657, 13, 16, 796, 838, 4, 286, 3047, 19570, 198, 198, 33152, 13, 7206, 29940, 62, 41433, 7203, 21928, 62, 9122, 13033, 62, 20214, 1600, 8576, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2437, 1690, 284, 3613, 262, 2746, 26954, 19570, 198, 33152, 13, 7206, 29940, 62, 41433, 7203, 13812, 62, 22462, 62, 20214, 1600, 838, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2437, 1690, 284, 3601, 2994, 422, 3959, 1352, 4943, 198, 198, 33152, 13, 7206, 29940, 62, 41433, 7203, 2676, 602, 62, 525, 62, 26268, 1600, 8576, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2437, 867, 4831, 284, 787, 287, 1123, 3959, 1352, 869, 19570, 198, 33152, 13, 7206, 29940, 62, 41433, 7203, 22510, 62, 4134, 388, 1741, 62, 20214, 1600, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15057, 286, 24106, 4831, 878, 31312, 4296, 1, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22289, 15458, 2546, 796, 997, 62, 4134, 388, 1741, 62, 20214, 1635, 4512, 62, 43501, 62, 7857, 4943, 198, 33152, 13, 7206, 29940, 62, 30388, 7203, 696, 1600, 6407, 11, 366, 15354, 284, 7139, 3001, 47, 39628, 13, 1649, 3991, 11, 3544, 24958, 2624, 319, 317, 3064, 290, 31459, 2624, 319, 569, 3064, 14714, 2937, 19570, 198, 33152, 13, 7206, 29940, 62, 30388, 7203, 1904, 62, 87, 5031, 1600, 6407, 11, 366, 15354, 284, 7139, 1395, 13534, 449, 2043, 23340, 19570, 198, 33152, 13, 7206, 29940, 62, 30388, 7203, 17899, 709, 375, 1600, 10352, 11, 366, 15354, 284, 779, 6075, 709, 375, 329, 5021, 12, 46999, 4539, 4943, 198, 198, 33152, 13, 7206, 29940, 62, 30388, 7, 198, 220, 220, 220, 366, 19011, 577, 62, 6404, 2667, 1600, 10352, 11, 198, 220, 220, 220, 366, 1532, 2081, 11, 477, 286, 262, 14601, 3519, 284, 1366, 7587, 481, 307, 10398, 13, 366, 198, 220, 220, 220, 366, 32, 1271, 286, 14601, 389, 2938, 329, 257, 3487, 311, 4507, 2885, 12660, 19570, 628, 198, 4299, 2393, 62, 3106, 62, 15414, 62, 22184, 62, 38272, 7, 15414, 62, 7753, 11, 15458, 62, 7857, 11, 33756, 62, 13664, 11, 318, 62, 34409, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4268, 62, 2787, 391, 1082, 11, 289, 20306, 28, 14202, 2599, 198, 220, 37227, 16719, 274, 281, 4600, 15414, 62, 22184, 63, 16512, 284, 307, 3804, 284, 10062, 320, 1352, 526, 15931, 628, 220, 1438, 62, 1462, 62, 40890, 796, 1391, 198, 220, 220, 220, 220, 220, 366, 15414, 62, 2340, 1298, 48700, 13, 952, 13, 13715, 30659, 38816, 26933, 41068, 62, 13664, 4357, 48700, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 366, 15414, 62, 27932, 1298, 48700, 13, 952, 13, 13715, 30659, 38816, 26933, 41068, 62, 13664, 4357, 48700, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 366, 325, 5154, 62, 2340, 1298, 48700, 13, 952, 13, 13715, 30659, 38816, 26933, 41068, 62, 13664, 4357, 48700, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 366, 18242, 62, 2340, 1298, 48700, 13, 952, 13, 13715, 30659, 38816, 26933, 4357, 48700, 13, 600, 2414, 828, 198, 220, 1782, 628, 220, 825, 4808, 12501, 1098, 62, 22105, 7, 22105, 11, 1438, 62, 1462, 62, 40890, 2599, 198, 220, 220, 220, 37227, 10707, 4147, 257, 1700, 284, 257, 309, 22854, 37535, 1672, 526, 15931, 198, 220, 220, 220, 1672, 796, 48700, 13, 29572, 62, 29762, 62, 20688, 7, 22105, 11, 1438, 62, 1462, 62, 40890, 8, 628, 220, 220, 220, 1303, 48700, 13, 16281, 691, 6971, 48700, 13, 600, 2414, 11, 475, 262, 309, 5105, 691, 6971, 48700, 13, 600, 2624, 13, 198, 220, 220, 220, 1303, 1406, 3350, 477, 493, 2414, 284, 493, 2624, 13, 198, 220, 220, 220, 329, 1438, 287, 1351, 7, 20688, 13, 13083, 3419, 2599, 198, 220, 220, 220, 220, 220, 256, 796, 1672, 58, 3672, 60, 198, 220, 220, 220, 220, 220, 611, 256, 13, 67, 4906, 6624, 48700, 13, 600, 2414, 25, 198, 220, 220, 220, 220, 220, 220, 220, 256, 796, 48700, 13, 1462, 62, 600, 2624, 7, 83, 8, 198, 220, 220, 220, 220, 220, 1672, 58, 3672, 60, 796, 256, 628, 220, 220, 220, 1441, 1672, 628, 220, 825, 5128, 62, 22184, 33529, 198, 220, 220, 220, 37227, 464, 4036, 5128, 2163, 526, 15931, 628, 220, 220, 220, 1303, 1114, 3047, 11, 356, 765, 257, 1256, 286, 10730, 3555, 290, 32299, 1359, 13, 198, 220, 220, 220, 1303, 1114, 5418, 11, 356, 765, 645, 32299, 1359, 290, 10730, 3555, 1595, 470, 2300, 13, 198, 220, 220, 220, 288, 796, 48700, 13, 7890, 13, 10234, 23739, 27354, 292, 316, 7, 15414, 62, 7753, 8, 198, 220, 220, 220, 611, 318, 62, 34409, 25, 198, 220, 220, 220, 220, 220, 611, 289, 20306, 318, 407, 6045, 25, 288, 796, 288, 13, 1477, 446, 7, 71, 20306, 13, 7857, 22784, 289, 20306, 13, 43027, 28955, 198, 220, 220, 220, 220, 220, 288, 796, 288, 13, 44754, 3419, 198, 220, 220, 220, 220, 220, 288, 796, 288, 13, 1477, 18137, 7, 22252, 62, 7857, 28, 3064, 8, 628, 220, 220, 220, 288, 796, 288, 13, 39014, 7, 198, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 3642, 822, 13, 7890, 13, 8899, 62, 392, 62, 43501, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37456, 1700, 25, 4808, 12501, 1098, 62, 22105, 7, 22105, 11, 1438, 62, 1462, 62, 40890, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15458, 62, 7857, 28, 43501, 62, 7857, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4268, 62, 2787, 391, 1082, 28, 14781, 62, 2787, 391, 1082, 4008, 628, 220, 220, 220, 1441, 288, 628, 220, 1441, 5128, 62, 22184, 628, 198, 4299, 2251, 62, 19849, 7, 4835, 62, 11250, 11, 318, 62, 34409, 11, 5128, 62, 2340, 11, 5128, 62, 27932, 11, 10618, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14722, 11, 997, 62, 23912, 1424, 11, 779, 62, 505, 62, 8940, 62, 20521, 67, 654, 2599, 198, 220, 37227, 16719, 274, 257, 17923, 2746, 526, 15931, 198, 220, 2746, 796, 21128, 13, 33, 861, 17633, 7, 198, 220, 220, 220, 220, 220, 4566, 28, 4835, 62, 11250, 11, 198, 220, 220, 220, 220, 220, 318, 62, 34409, 28, 271, 62, 34409, 11, 198, 220, 220, 220, 220, 220, 5128, 62, 2340, 28, 15414, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 5128, 62, 27932, 28, 15414, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 11241, 62, 4906, 62, 2340, 28, 325, 5154, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 779, 62, 505, 62, 8940, 62, 20521, 67, 654, 28, 1904, 62, 505, 62, 8940, 62, 20521, 67, 654, 11, 198, 220, 220, 220, 220, 220, 24061, 62, 4906, 28, 27110, 13, 22468, 2624, 8, 628, 220, 1303, 554, 262, 13605, 11, 356, 389, 1804, 257, 2829, 17923, 4876, 319, 262, 2104, 198, 220, 1303, 10618, 13, 198, 220, 1303, 198, 220, 1303, 1002, 345, 765, 284, 779, 262, 11241, 12, 5715, 5072, 11, 779, 2746, 13, 1136, 62, 43167, 62, 22915, 3419, 198, 220, 1303, 2427, 13, 198, 220, 5072, 62, 29289, 796, 2746, 13, 1136, 62, 7742, 276, 62, 22915, 3419, 628, 220, 7104, 62, 7857, 796, 5072, 62, 29289, 13, 43358, 58, 12, 16, 4083, 8367, 628, 220, 5072, 62, 43775, 796, 48700, 13, 1136, 62, 45286, 7, 198, 220, 220, 220, 220, 220, 366, 22915, 62, 43775, 1600, 685, 22510, 62, 23912, 1424, 11, 7104, 62, 7857, 4357, 198, 220, 220, 220, 220, 220, 4238, 7509, 28, 27110, 13, 2213, 19524, 515, 62, 11265, 62, 36733, 7509, 7, 301, 1860, 1990, 28, 15, 13, 2999, 4008, 628, 220, 5072, 62, 65, 4448, 796, 48700, 13, 1136, 62, 45286, 7, 198, 220, 220, 220, 220, 220, 366, 22915, 62, 65, 4448, 1600, 685, 22510, 62, 23912, 1424, 4357, 4238, 7509, 28, 27110, 13, 9107, 418, 62, 36733, 7509, 28955, 628, 220, 351, 48700, 13, 45286, 62, 29982, 7203, 22462, 1, 2599, 198, 220, 220, 220, 611, 318, 62, 34409, 25, 198, 220, 220, 220, 220, 220, 1303, 314, 13, 68, 1539, 657, 13, 16, 4268, 448, 198, 220, 220, 220, 220, 220, 5072, 62, 29289, 796, 48700, 13, 20471, 13, 14781, 448, 7, 22915, 62, 29289, 11, 1394, 62, 1676, 65, 28, 15, 13, 24, 8, 628, 220, 220, 220, 2604, 896, 796, 48700, 13, 6759, 76, 377, 7, 22915, 62, 29289, 11, 5072, 62, 43775, 11, 1007, 3455, 62, 65, 28, 17821, 8, 198, 220, 220, 220, 2604, 896, 796, 48700, 13, 20471, 13, 65, 4448, 62, 2860, 7, 6404, 896, 11, 5072, 62, 65, 4448, 11, 1438, 11639, 565, 82, 62, 6404, 896, 11537, 198, 220, 220, 220, 39522, 796, 48700, 13, 20471, 13, 4215, 9806, 7, 6404, 896, 11, 16488, 10779, 16, 11, 1438, 11639, 565, 82, 62, 1676, 65, 5738, 11537, 198, 220, 220, 220, 2604, 62, 1676, 1443, 796, 48700, 13, 20471, 13, 6404, 62, 4215, 9806, 7, 6404, 896, 11, 16488, 10779, 16, 8, 628, 220, 220, 220, 530, 62, 8940, 62, 23912, 1424, 796, 48700, 13, 505, 62, 8940, 7, 23912, 1424, 11, 6795, 28, 22510, 62, 23912, 1424, 11, 288, 4906, 28, 27110, 13, 22468, 2624, 8, 628, 220, 220, 220, 583, 62, 20688, 62, 22462, 796, 532, 27110, 13, 445, 7234, 62, 16345, 7, 505, 62, 8940, 62, 23912, 1424, 1635, 2604, 62, 1676, 1443, 11, 16488, 10779, 16, 11, 1438, 11639, 565, 82, 62, 525, 62, 20688, 62, 22462, 11537, 198, 220, 220, 220, 2994, 796, 48700, 13, 445, 7234, 62, 32604, 7, 525, 62, 20688, 62, 22462, 11, 1438, 11639, 565, 82, 62, 22462, 11537, 628, 220, 220, 220, 1441, 357, 22462, 11, 583, 62, 20688, 62, 22462, 11, 2604, 896, 11, 39522, 8, 628, 198, 198, 4299, 2746, 62, 22184, 62, 38272, 7, 35943, 62, 3672, 11, 275, 861, 62, 11250, 11, 997, 62, 23912, 1424, 11, 2315, 62, 9122, 4122, 11, 4673, 62, 4873, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 997, 62, 27432, 62, 20214, 11, 997, 62, 31975, 929, 62, 20214, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 779, 62, 505, 62, 8940, 62, 20521, 67, 654, 11, 289, 20306, 28, 14202, 2599, 198, 220, 37227, 35561, 4600, 19849, 62, 22184, 63, 16512, 329, 10062, 320, 1352, 526, 15931, 628, 220, 825, 2746, 62, 22184, 7, 40890, 11, 14722, 11, 4235, 11, 42287, 2599, 220, 1303, 279, 2645, 600, 25, 15560, 28, 403, 1484, 12, 49140, 198, 220, 220, 220, 37227, 464, 4600, 19849, 62, 22184, 63, 329, 10062, 320, 1352, 526, 15931, 198, 220, 220, 220, 48700, 13, 5589, 265, 13, 85, 16, 13, 6404, 2667, 13, 10951, 7203, 8162, 17571, 17202, 4943, 198, 220, 220, 220, 48700, 13, 5589, 265, 13, 85, 16, 13, 6404, 2667, 13, 10951, 7203, 8162, 17571, 17202, 4943, 198, 220, 220, 220, 329, 1438, 287, 23243, 7, 40890, 13, 13083, 3419, 2599, 198, 220, 220, 220, 220, 220, 48700, 13, 5589, 265, 13, 85, 16, 13, 6404, 2667, 13, 10951, 7203, 220, 1438, 796, 4064, 82, 11, 5485, 796, 4064, 82, 1, 4064, 357, 3672, 11, 3033, 58, 3672, 4083, 43358, 4008, 628, 220, 220, 220, 5128, 62, 2340, 796, 3033, 14692, 15414, 62, 2340, 8973, 198, 220, 220, 220, 5128, 62, 27932, 796, 3033, 14692, 15414, 62, 27932, 8973, 198, 220, 220, 220, 10618, 62, 2340, 796, 3033, 14692, 325, 5154, 62, 2340, 8973, 198, 220, 220, 220, 6167, 62, 2340, 796, 3033, 14692, 18242, 62, 2340, 8973, 628, 220, 220, 220, 318, 62, 34409, 796, 357, 14171, 6624, 48700, 13, 395, 320, 1352, 13, 19076, 40729, 13, 51, 3861, 1268, 8, 628, 220, 220, 220, 611, 407, 318, 62, 34409, 290, 9977, 4760, 50, 13, 1904, 62, 2213, 83, 25, 198, 220, 220, 220, 220, 220, 220, 220, 491, 83, 62, 34960, 796, 651, 62, 69, 42005, 62, 83, 701, 17034, 62, 19849, 7, 4835, 62, 11250, 11, 5128, 62, 2340, 13, 43358, 11, 997, 62, 23912, 1424, 11, 779, 62, 505, 62, 8940, 62, 20521, 67, 654, 11, 2315, 62, 9122, 4122, 8, 198, 220, 220, 220, 220, 220, 220, 220, 357, 23350, 62, 22462, 11, 583, 62, 20688, 62, 22462, 11, 2604, 896, 11, 39522, 8, 220, 796, 48700, 13, 11748, 62, 34960, 62, 4299, 7, 2213, 83, 62, 34960, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 8899, 34758, 6, 15414, 62, 2340, 10354, 15414, 62, 2340, 11, 705, 15414, 62, 27932, 10354, 15414, 62, 27932, 11, 705, 325, 5154, 62, 2340, 10354, 325, 5154, 62, 2340, 11, 705, 18242, 62, 2340, 10354, 18242, 62, 2340, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 68, 3639, 28, 17816, 22462, 14, 565, 82, 62, 22462, 25, 15, 3256, 705, 22462, 14, 565, 82, 62, 525, 62, 20688, 62, 22462, 25, 15, 3256, 705, 22462, 14, 565, 82, 62, 6404, 896, 25, 15, 3256, 705, 22462, 14, 565, 82, 62, 1676, 65, 5738, 25, 15, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1438, 28, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4235, 6624, 48700, 13, 395, 320, 1352, 13, 19076, 40729, 13, 4805, 1961, 18379, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16277, 796, 19779, 1676, 65, 5738, 1298, 39522, 92, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 16684, 796, 48700, 13, 395, 320, 1352, 13, 22362, 320, 1352, 22882, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 28, 14171, 11, 16277, 28, 28764, 9278, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 4235, 6624, 48700, 13, 395, 320, 1352, 13, 19076, 40729, 13, 20114, 1847, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5418, 62, 4164, 1173, 62, 2840, 796, 18663, 62, 22184, 7, 525, 62, 20688, 62, 22462, 11, 6167, 62, 2340, 11, 2604, 896, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 16684, 796, 48700, 13, 395, 320, 1352, 13, 22362, 320, 1352, 22882, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 28, 14171, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2994, 28, 23350, 62, 22462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5418, 62, 4164, 1173, 62, 2840, 28, 18206, 62, 4164, 1173, 62, 2840, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 5072, 62, 16684, 198, 220, 220, 220, 357, 23350, 62, 22462, 11, 583, 62, 20688, 62, 22462, 11, 2604, 896, 11, 39522, 8, 796, 2251, 62, 19849, 7, 198, 220, 220, 220, 220, 220, 220, 220, 275, 861, 62, 11250, 11, 318, 62, 34409, 11, 5128, 62, 2340, 11, 5128, 62, 27932, 11, 10618, 62, 2340, 11, 6167, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 997, 62, 23912, 1424, 11, 779, 62, 505, 62, 8940, 62, 20521, 67, 654, 8, 628, 220, 220, 220, 31557, 945, 796, 48700, 13, 27432, 540, 62, 25641, 2977, 3419, 198, 220, 220, 220, 23224, 62, 45286, 62, 14933, 796, 23884, 198, 220, 220, 220, 611, 2315, 62, 9122, 4122, 290, 357, 71, 20306, 318, 6045, 393, 289, 20306, 13, 43027, 3419, 6624, 657, 2599, 198, 220, 220, 220, 220, 220, 357, 562, 16747, 62, 8899, 11, 23224, 62, 45286, 62, 14933, 198, 220, 220, 220, 220, 220, 1267, 796, 21128, 13, 1136, 62, 562, 16747, 62, 8899, 62, 6738, 62, 9122, 4122, 7, 14981, 945, 11, 2315, 62, 9122, 4122, 8, 198, 220, 220, 220, 220, 220, 48700, 13, 27432, 13, 15003, 62, 6738, 62, 9122, 4122, 7, 15003, 62, 9122, 4122, 11, 16237, 62, 8899, 8, 628, 220, 220, 220, 611, 9977, 4760, 50, 13, 19011, 577, 62, 6404, 2667, 25, 198, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 5589, 265, 13, 85, 16, 13, 6404, 2667, 13, 10951, 7203, 2466, 16835, 540, 15965, 2977, 25998, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 329, 1401, 287, 31557, 945, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2315, 62, 8841, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1401, 13, 3672, 287, 23224, 62, 45286, 62, 14933, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2315, 62, 8841, 796, 33172, 1635, 1268, 2043, 62, 10913, 2662, 62, 34, 42, 11571, 9, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 5589, 265, 13, 85, 16, 13, 6404, 2667, 13, 10951, 7203, 220, 1438, 796, 4064, 82, 11, 5485, 796, 4064, 82, 4, 82, 1600, 1401, 13, 3672, 11, 1401, 13, 43358, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2315, 62, 8841, 8, 628, 220, 220, 220, 5072, 62, 16684, 796, 6045, 198, 220, 220, 220, 611, 4235, 6624, 48700, 13, 395, 320, 1352, 13, 19076, 40729, 13, 51, 3861, 1268, 25, 628, 220, 220, 220, 220, 220, 4512, 62, 404, 796, 23989, 13, 17953, 62, 40085, 7509, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 22462, 11, 4673, 62, 4873, 11, 997, 62, 27432, 62, 20214, 11, 997, 62, 31975, 929, 62, 20214, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 289, 20306, 11, 10352, 11, 9977, 4760, 50, 13, 696, 11, 9977, 4760, 50, 13, 22510, 62, 4134, 388, 1741, 62, 20214, 11, 9977, 4760, 50, 13, 40085, 7509, 62, 4906, 8, 198, 220, 220, 220, 220, 220, 5072, 62, 16684, 796, 48700, 13, 395, 320, 1352, 13, 22362, 320, 1352, 22882, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 28, 14171, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2994, 28, 23350, 62, 22462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4512, 62, 404, 28, 27432, 62, 404, 8, 198, 220, 220, 220, 1288, 361, 4235, 6624, 48700, 13, 395, 320, 1352, 13, 19076, 40729, 13, 20114, 1847, 25, 198, 220, 220, 220, 220, 220, 31548, 62, 404, 796, 48700, 13, 3919, 62, 404, 3419, 198, 220, 220, 220, 220, 220, 1303, 10664, 284, 869, 7668, 15440, 4823, 28183, 611, 277, 79, 1433, 284, 7139, 4823, 28183, 198, 220, 220, 220, 220, 220, 611, 9977, 4760, 50, 13, 696, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2994, 62, 1416, 36213, 796, 48700, 13, 27432, 13, 23100, 9134, 13, 13715, 43, 793, 29990, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 31548, 62, 404, 796, 48700, 13, 27432, 13, 23100, 9134, 13, 21633, 62, 76, 2966, 62, 3866, 16005, 62, 34960, 62, 1809, 6525, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23989, 13, 43, 2390, 8202, 457, 320, 7509, 7, 40684, 62, 4873, 28, 15, 13, 15, 828, 2994, 62, 1416, 36213, 8, 198, 220, 220, 220, 220, 220, 5418, 62, 4164, 1173, 62, 2840, 796, 18663, 62, 22184, 7, 525, 62, 20688, 62, 22462, 11, 6167, 62, 2340, 11, 2604, 896, 8, 198, 220, 220, 220, 220, 220, 5072, 62, 16684, 796, 48700, 13, 395, 320, 1352, 13, 22362, 320, 1352, 22882, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 28, 14171, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2994, 28, 23350, 62, 22462, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5418, 62, 4164, 1173, 62, 2840, 28, 18206, 62, 4164, 1173, 62, 2840, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 31548, 62, 404, 796, 48700, 13, 3919, 62, 404, 3419, 198, 220, 220, 220, 220, 220, 1303, 10664, 284, 869, 7668, 15440, 4823, 28183, 611, 277, 79, 1433, 284, 7139, 4823, 28183, 198, 220, 220, 220, 220, 220, 611, 9977, 4760, 50, 13, 696, 25, 198, 220, 220, 220, 220, 220, 220, 220, 31548, 62, 404, 796, 48700, 13, 27432, 13, 23100, 9134, 13, 21633, 62, 76, 2966, 62, 3866, 16005, 62, 34960, 62, 1809, 6525, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 23989, 13, 43, 2390, 8202, 457, 320, 7509, 7, 40684, 62, 4873, 28, 15, 13, 15, 4008, 198, 220, 220, 220, 220, 220, 5072, 62, 16684, 796, 48700, 13, 395, 320, 1352, 13, 22362, 320, 1352, 22882, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4235, 28, 14171, 11, 16277, 28, 1676, 65, 5738, 8, 198, 220, 220, 220, 1441, 5072, 62, 16684, 628, 220, 1441, 2746, 62, 22184, 628, 198, 2, 770, 2163, 318, 407, 973, 416, 428, 2393, 475, 318, 991, 973, 416, 262, 1623, 397, 290, 198, 2, 661, 508, 4745, 319, 340, 13, 198, 4299, 5128, 62, 22184, 62, 38272, 7, 40890, 11, 15458, 62, 7857, 11, 33756, 62, 13664, 11, 318, 62, 34409, 11, 4268, 62, 2787, 391, 1082, 11, 289, 20306, 28, 14202, 2599, 198, 220, 37227, 16719, 274, 281, 4600, 15414, 62, 22184, 63, 16512, 284, 307, 3804, 284, 10062, 320, 1352, 526, 15931, 628, 220, 477, 62, 15414, 62, 2340, 796, 17635, 198, 220, 477, 62, 15414, 62, 27932, 796, 17635, 198, 220, 477, 62, 325, 5154, 62, 2340, 796, 17635, 198, 220, 477, 62, 18242, 62, 2340, 796, 17635, 628, 220, 329, 3895, 287, 3033, 25, 198, 220, 220, 220, 477, 62, 15414, 62, 2340, 13, 33295, 7, 30053, 13, 15414, 62, 2340, 8, 198, 220, 220, 220, 477, 62, 15414, 62, 27932, 13, 33295, 7, 30053, 13, 15414, 62, 27932, 8, 198, 220, 220, 220, 477, 62, 325, 5154, 62, 2340, 13, 33295, 7, 30053, 13, 325, 5154, 62, 2340, 8, 198, 220, 220, 220, 477, 62, 18242, 62, 2340, 13, 33295, 7, 30053, 13, 18242, 62, 312, 8, 628, 220, 825, 5128, 62, 22184, 33529, 198, 220, 220, 220, 37227, 464, 4036, 5128, 2163, 526, 15931, 628, 220, 220, 220, 997, 62, 1069, 12629, 796, 18896, 7, 40890, 8, 628, 220, 220, 220, 1303, 770, 318, 329, 13605, 4959, 290, 857, 5626, 5046, 284, 1588, 1366, 5621, 13, 775, 466, 198, 220, 220, 220, 1303, 407, 779, 16092, 292, 316, 13, 6738, 62, 8612, 1352, 3419, 780, 326, 3544, 48700, 13, 9078, 62, 20786, 543, 318, 198, 220, 220, 220, 1303, 407, 309, 5105, 11670, 13, 383, 826, 835, 284, 3440, 1366, 318, 351, 24958, 23739, 33634, 13, 198, 220, 220, 220, 288, 796, 48700, 13, 7890, 13, 27354, 292, 316, 13, 6738, 62, 83, 22854, 62, 82, 677, 274, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15414, 62, 2340, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 9979, 415, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 15414, 62, 2340, 11, 5485, 41888, 22510, 62, 1069, 12629, 11, 33756, 62, 13664, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15414, 62, 27932, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 9979, 415, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 15414, 62, 27932, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5485, 41888, 22510, 62, 1069, 12629, 11, 33756, 62, 13664, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 366, 325, 5154, 62, 2340, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 9979, 415, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 325, 5154, 62, 2340, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5485, 41888, 22510, 62, 1069, 12629, 11, 33756, 62, 13664, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18242, 62, 2340, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48700, 13, 9979, 415, 7, 439, 62, 18242, 62, 2340, 11, 5485, 41888, 22510, 62, 1069, 12629, 4357, 288, 4906, 28, 27110, 13, 600, 2624, 828, 198, 220, 220, 220, 32092, 628, 220, 220, 220, 611, 318, 62, 34409, 25, 198, 220, 220, 220, 220, 220, 611, 289, 20306, 318, 407, 6045, 25, 288, 796, 288, 13, 1477, 446, 7, 71, 20306, 13, 7857, 22784, 289, 20306, 13, 43027, 28955, 198, 220, 220, 220, 220, 220, 288, 796, 288, 13, 44754, 3419, 198, 220, 220, 220, 220, 220, 288, 796, 288, 13, 1477, 18137, 7, 22252, 62, 7857, 28, 3064, 8, 628, 220, 220, 220, 288, 796, 288, 13, 43501, 7, 43501, 62, 7857, 28, 43501, 62, 7857, 11, 4268, 62, 2787, 391, 1082, 28, 14781, 62, 2787, 391, 1082, 8, 198, 220, 220, 220, 1441, 288, 628, 220, 1441, 5128, 62, 22184, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 9701, 13, 4102, 62, 32109, 62, 292, 62, 35827, 7203, 7890, 62, 15908, 4943, 198, 220, 9701, 13, 4102, 62, 32109, 62, 292, 62, 35827, 7203, 35943, 62, 3672, 4943, 198, 220, 9701, 13, 4102, 62, 32109, 62, 292, 62, 35827, 7203, 18893, 397, 62, 7753, 4943, 198, 220, 9701, 13, 4102, 62, 32109, 62, 292, 62, 35827, 7203, 4835, 62, 11250, 62, 7753, 4943, 198, 220, 9701, 13, 4102, 62, 32109, 62, 292, 62, 35827, 7203, 22915, 62, 15908, 4943, 198, 220, 48700, 13, 5589, 265, 13, 85, 16, 13, 1324, 13, 5143, 3419, 198 ]
2.487469
5,666
import datetime import json import os import xlrd import logging from io import BytesIO from xlsxwriter.workbook import Workbook from xhtml2pdf import pisa from itertools import chain from django.contrib.auth.models import User from django.http import HttpResponse, HttpResponseRedirect, JsonResponse from django.shortcuts import get_object_or_404, render from django.template.loader import get_template from django.views.decorators.csrf import csrf_exempt from django.template.loader import render_to_string from django.contrib.auth.decorators import login_required from applications.academic_procedures.models import MinimumCredits, Register, InitialRegistration, course_registration, AssistantshipClaim,Assistantship_status from applications.globals.models import (Designation, ExtraInfo, HoldsDesignation, DepartmentInfo) from .forms import AcademicTimetableForm, ExamTimetableForm, MinuteForm from .models import (Calendar, Course, Exam_timetable, Grades, Curriculum_Instructor,Constants, Meeting, Student, Student_attendance, Timetable,Curriculum) from applications.programme_curriculum.models import (CourseSlot, Course as Courses, Batch, Semester, Programme, Discipline) from applications.academic_procedures.views import acad_proced_global_context from applications.programme_curriculum.models import Batch def get_context(request): """ This function gets basic gata from database to send to template @param: request - contains metadata about the requested page @variables: acadTtForm - the form to add academic calender examTtForm - the form required to add exam timetable exam_t - all the exam timetable objects timetable - all the academic timetable objects calendar - all the academic calender objects context - the datas to be displayed in the webpage this_sem_course - tha data of thsi semester courses next_sem_courses - the data of next semester courses courses - all the courses in curriculum course_type - list the type of courses """ if user_check(request): return HttpResponseRedirect('/academic-procedures/') course_list = sem_for_generate_sheet() if(course_list[0]==1): course_list_2 = [2, 4, 6, 8] else: course_list_2 = [1, 3, 5, 7] # examTtForm = ExamTimetableForm() # acadTtForm = AcademicTimetableForm() # calendar = Calendar.objects.all() # this_sem_courses = Curriculum.objects.all().filter(sem__in=course_list).filter(floated=True) # next_sem_courses = Curriculum.objects.all().filter(sem__in=course_list).filter(floated=True) # courses = Course.objects.all() # course_type = Constants.COURSE_TYPE # timetable = Timetable.objects.all() # exam_t = Exam_timetable.objects.all() procedures_context = acad_proced_global_context() try: examTtForm = ExamTimetableForm() acadTtForm = AcademicTimetableForm() calendar = Calendar.objects.all() this_sem_courses = Curriculum.objects.all().select_related().filter(sem__in=course_list).filter(floated=True) next_sem_courses = Curriculum.objects.all().select_related().filter(sem__in=course_list_2).filter(floated=True) courses = Course.objects.all() courses_list = Courses.objects.all() course_type = Constants.COURSE_TYPE timetable = Timetable.objects.all() exam_t = Exam_timetable.objects.all() pgstudent = Student.objects.filter(programme = "M.Tech") | Student.objects.filter(programme = "PhD") assistant_list = AssistantshipClaim.objects.filter(ta_supervisor_remark = True).filter(thesis_supervisor_remark = True).filter(hod_approval =True).filter(acad_approval = False) assistant_approve_list = AssistantshipClaim.objects.filter(ta_supervisor_remark = True).filter(thesis_supervisor_remark = True).filter(hod_approval =True).filter(hod_approval = True) assistant_list_length = len(assistant_list.filter(acad_approval = False)) assis_stat = Assistantship_status.objects.all() for obj in assis_stat: assistant_flag = obj.student_status hod_flag = obj.hod_status account_flag = obj.account_status except Exception as e: examTtForm = "" acadTtForm = "" calendar = "" this_sem_courses = "" next_sem_courses = "" courses = "" course_type = "" timetable = "" exam_t = "" pass context = { 'acadTtForm': acadTtForm, 'examTtForm': examTtForm, 'courses': courses, 'courses_list': courses_list, 'course_type': course_type, 'exam': exam_t, 'timetable': timetable, 'academic_calendar': calendar, 'next_sem_course': next_sem_courses, 'this_sem_course': this_sem_courses, 'curriculum': curriculum, 'pgstudent' : pgstudent, 'assistant_list' : assistant_list, 'assistant_approve_list' : assistant_approve_list, 'assistant_list_length' : assistant_list_length, 'tab_id': ['1','1'], 'context': procedures_context['context'], 'lists': procedures_context['lists'], 'date': procedures_context['date'], 'query_option1': procedures_context['query_option1'], 'query_option2': procedures_context['query_option2'], 'course_verification_date' : procedures_context['course_verification_date'], 'submitted_course_list' : procedures_context['submitted_course_list'], 'result_year' : procedures_context['result_year'], 'batch_grade_data' : procedures_context['batch_grade_data'], 'batch_branch_data' : procedures_context['batch_branch_data'], 'assistant_flag' : assistant_flag, 'hod_flag' : hod_flag, 'account_flag' : account_flag } return context # #################################### # # curriculum # # #################################### #Generate Attendance Sheet def sem_for_generate_sheet(): """ This function generates semester grade sheet @variables: now - current datetime month - current month """ now = datetime.datetime.now() month = int(now.month) if month >= 7 and month <= 12: return [1, 3, 5, 7] else: return [2, 4, 6, 8] def get_faculty_list(): """ to get faculty list from database @param: request - contains metadata about the requested page. @variables: f1,f2,f3 - temporary varibles faculty - details of faculty of data faculty_list - list of faculty """ try: f1 = HoldsDesignation.objects.select_related().filter(designation=Designation.objects.get(name = "Assistant Professor")) f2 = HoldsDesignation.objects.select_related().filter(designation=Designation.objects.get(name = "Professor")) f3 = HoldsDesignation.objects.select_related().filter(designation=Designation.objects.get(name = "Associate Professor")) except Exception as e: f1=f2=f3="" pass faculty = list(chain(f1,f2,f3)) faculty_list = [] for i in faculty: faculty_list.append(i) return faculty_list # # ---------------------senator------------------ # @csrf_exempt def senator(request): # """ # to add a new student senator # @param: # request - contains metadata about the requested page # @variables: # current_user - gets the data of current user. # user_details - gets the details of the required user. # desig_id - used to check the designation ID. # extraInfo - extraInfo object of the student with that rollno # s - designation object of senator # hDes - holdsDesignation object to store that the particualr student is holding the senator designation # student - the student object of the new senator # data - data of the student to be displayed in teh webpage # """ # current_user = get_object_or_404(User, username=request.user.username) # user_details = ExtraInfo.objects.all().filter(user=current_user).first() # desig_id = Designation.objects.all().filter(name='Upper Division Clerk') temp = HoldsDesignation.objects.all().select_related().filter(designation = desig_id).first() #print (temp) # print (current_user) # acadadmin = temp.working # k = str(user_details).split() # print(k) # final_user = k[2] # if (str(acadadmin) != str(final_user)): # return HttpResponseRedirect('/academic-procedures/') # if request.method == 'POST': # print(request.POST, ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>") # rollno = request.POST.getlist('Roll Number')[0] # # print(request.POST.get('rollno')) # extraInfo = ExtraInfo.objects.get(id=rollno) # s = Designation.objects.get(name='Senator') # hDes = HoldsDesignation() # hDes.user = extraInfo.user # hDes.working = extraInfo.user # hDes.designation = s # hDes.save() # student = Student.objects.get(id=extraInfo) # data = { # 'name': extraInfo.user.username, # 'rollno': extraInfo.id, # 'programme': student.programme, # 'branch': extraInfo.department.name # } # return HttpResponseRedirect('/aims/') # # return JsonResponse(data) # else: # return HttpResponseRedirect('/aims/') # @csrf_exempt # if request.POST: # s = get_object_or_404(Designation, name="Senator") # student = get_object_or_404(ExtraInfo, id=request.POST.getlist("senate_id")[0]) # hDes = get_object_or_404( HoldsDesignation, user = student.user) # hDes.delete() # return HttpResponseRedirect('/aims/') # else: # return HttpResponseRedirect('/aims/')# #################################################### # # ##########covenors and coconvenors################## # @csrf_exempt # p = Designation.objects.get(name='Co Convenor') # if request.method == 'POST': # rollno = request.POST.get('rollno_convenor') # extraInfo = ExtraInfo.objects.get(id=rollno) # s = Designation.objects.get(name='Convenor') # p = Designation.objects.get(name='Co Convenor') # result = request.POST.get('designation') # hDes = HoldsDesignation() # hDes.user = extraInfo.user # hDes.working = extraInfo.user # if result == "Convenor": # hDes.designation = s # else: # hDes.designation = p # hDes.save() # data = { # 'name': extraInfo.user.username, # 'rollno_convenor': extraInfo.id, # 'designation': hDes.designation.name, # } # return JsonResponse(data) # else: # data = {} # return JsonResponse(data) # @csrf_exempt # student = get_object_or_404(ExtraInfo, id=pk) # hDes = HoldsDesignation.objects.filter(user = student.user) # designation = [] # for des in hDes: # if des.designation == s or des.designation == c: # designation = des.designation.name # des.delete() # data = { # 'id': pk, # 'designation': designation, # } # return JsonResponse(data)# ###################################################### # # ##########Senate meeting Minute################## # @csrf_exempt # print (temp) # print (current_user) # acadadmin = temp.working # k = str(user_details).split() # print(k) # final_user = k[2] # if (str(acadadmin) != str(final_user)): # return HttpResponseRedirect('/academic-procedures/') # if request.method == 'POST' and request.FILES: # form = MinuteForm(request.POST, request.FILES) # if form.is_valid(): # form.save() # return HttpResponse('sucess') # else: # return HttpResponse('not uploaded') # return render(request, "ais/ais.html", {}) # # ###################################################### # # ##########Student basic profile################## # @csrf_exempt # roll = ExtraInfo.objects.get(id=request.POST.get('rollno')) # programme = request.POST.get('programme') # batch = request.POST.get('batch') # ph = request.POST.get('phoneno') # if not Student.objects.filter(id=roll).exists(): # db = Student() # st = ExtraInfo.objects.get(id=roll.id) # db.name = name.upper() # db.id = roll # db.batch = batch # db.programme = programme # st.phone_no = ph # db.save() # st.save() # data = { # 'name': name, # 'rollno': roll.id, # 'programme': programme, # 'phoneno': ph, # 'batch': batch # } # print(data) # return JsonResponse(data) # else: # data = {} # return JsonResponse(data) # else: # data = {} # return JsonResponse(data) # @csrf_exempt # user = get_object_or_404(User, username = e.user.username) # s = get_object_or_404(Student, id=e) # data = { # 'rollno': pk, # } # s.delete() # e.delete() # u.delete() # return JsonResponse(data)# ######################################################### # ''' # # view to add attendance data to database # def curriculum(request): # ''' # user_details = ExtraInfo.objects.all().filter(user=current_user).first() # desig_id = Designation.objects.all().filter(name='Upper Division Clerk') # temp = HoldsDesignation.objects.all().filter(designation = desig_id).first() # print (temp) # print (current_user) # acadadmin = temp.working # k = str(user_details).split() # print(k) # final_user = k[2] # if (str(acadadmin) != str(final_user)): # return HttpResponseRedirect('/academic-procedures/') # if request.method == "POST": # st = request.POST['delete'] # arr = st.split("-") # stu = arr[0] # if Student.objects.get(id=stu): # s = Student.objects.get(id=stu) # s.father_name = "" # s.mother_name = "" # s.hall_no = 1 # s.room_no = "" # s.save() # else: # return HttpResponse("Data Does Not Exist") # return HttpResponse("Data Deleted Successfully") # user_details = ExtraInfo.objects.all().filter(user=current_user).first() # desig_id = Designation.objects.all().filter(name='Upper Division Clerk') # temp = HoldsDesignation.objects.all().filter(designation = desig_id).first() # print (temp) # print (current_user) # acadadmin = temp.working # k = str(user_details).split() # print(k) # final_user = k[2] # if (str(acadadmin) != str(final_user)): # return HttpResponseRedirect('/academic-procedures/') # if request.method == "POST": # print(request.POST) # rollno=request.POST.get('roll') # print(rollno) # student = ExtraInfo.objects.get(id=rollno) # print(student.address) # if not student: # data = {} # return JsonResponse(data) # else: # father = request.POST.get('father') # mother = request.POST.get('mother') # add = request.POST.get('address') # hall = request.POST.get('hall') # room = request.POST.get('room') # cpi = request.POST.get('cpi') # student.address = str(hall) + " " + str(room) # student.save() # s = Student.objects.get(id=student) # s.father_name=father # s.mother_name=mother # s.hall_no = hall # s.room_no = room # s.save() # return HttpResponseRedirect('/academic-procedures/') # return HttpResponseRedirect('/academic-procedures/') # choices = request.POST.getlist('choice') # for i in choices: # course = Course.objects.all().filter(course_id=i).first() # course.acad_selection = True # course.save() # courses = Course.objects.all() # for i in courses: # if i.course_id not in choices: # i.acad_selection = False # i.save() # return HttpResponseRedirect('/academic-procedures/') # sem_cred.append(0) # for i in range(1, 10): # sem = "sem_"+"1" # sem_cred.append(request.POST.getlist(sem)[0]) # for i in range(1, 9): # sem = MinimumCredits.objects.all().filter(semester=i).first() # sem.credits = sem_cred[i+1] # sem.save() # return HttpResponse("Worked")
[ 11748, 4818, 8079, 198, 11748, 33918, 198, 11748, 28686, 198, 11748, 2124, 75, 4372, 198, 11748, 18931, 198, 6738, 33245, 1330, 2750, 4879, 9399, 198, 6738, 2124, 7278, 87, 16002, 13, 1818, 2070, 1330, 5521, 2070, 198, 6738, 2124, 6494, 17, 12315, 1330, 279, 9160, 198, 198, 6738, 340, 861, 10141, 1330, 6333, 198, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 27530, 1330, 11787, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 31077, 11, 367, 29281, 31077, 7738, 1060, 11, 449, 1559, 31077, 198, 6738, 42625, 14208, 13, 19509, 23779, 1330, 651, 62, 15252, 62, 273, 62, 26429, 11, 8543, 198, 6738, 42625, 14208, 13, 28243, 13, 29356, 1330, 651, 62, 28243, 198, 6738, 42625, 14208, 13, 33571, 13, 12501, 273, 2024, 13, 6359, 41871, 1330, 269, 27891, 69, 62, 42679, 198, 6738, 42625, 14208, 13, 28243, 13, 29356, 1330, 8543, 62, 1462, 62, 8841, 198, 6738, 42625, 14208, 13, 3642, 822, 13, 18439, 13, 12501, 273, 2024, 1330, 17594, 62, 35827, 198, 198, 6738, 5479, 13, 330, 49113, 62, 1676, 771, 942, 13, 27530, 1330, 26265, 42855, 11, 17296, 11, 20768, 47133, 11, 1781, 62, 2301, 33397, 11, 43627, 1187, 1056, 44819, 11, 8021, 396, 1187, 1056, 62, 13376, 198, 6738, 5479, 13, 4743, 672, 874, 13, 27530, 1330, 357, 23067, 341, 11, 17221, 12360, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9340, 82, 23067, 341, 11, 2732, 12360, 8, 198, 198, 6738, 764, 23914, 1330, 31421, 14967, 316, 540, 8479, 11, 35909, 14967, 316, 540, 8479, 11, 38573, 8479, 198, 6738, 764, 27530, 1330, 357, 9771, 9239, 11, 20537, 11, 35909, 62, 16514, 316, 540, 11, 1902, 2367, 11, 4424, 1173, 14452, 62, 43993, 273, 11, 34184, 1187, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22244, 11, 13613, 11, 13613, 62, 1078, 437, 590, 11, 5045, 316, 540, 11, 26628, 1173, 14452, 8, 198, 6738, 5479, 13, 23065, 1326, 62, 22019, 1173, 14452, 13, 27530, 1330, 357, 49046, 38963, 11, 20537, 355, 2734, 8448, 11, 347, 963, 11, 12449, 7834, 11, 35232, 11, 48532, 8, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 628, 198, 198, 6738, 5479, 13, 330, 49113, 62, 1676, 771, 942, 13, 33571, 1330, 5790, 62, 1676, 771, 62, 20541, 62, 22866, 198, 6738, 5479, 13, 23065, 1326, 62, 22019, 1173, 14452, 13, 27530, 1330, 347, 963, 628, 628, 198, 4299, 651, 62, 22866, 7, 25927, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 770, 2163, 3011, 4096, 308, 1045, 422, 6831, 284, 3758, 284, 11055, 628, 220, 220, 220, 2488, 17143, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2581, 532, 4909, 20150, 546, 262, 9167, 2443, 628, 220, 220, 220, 2488, 25641, 2977, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5790, 51, 83, 8479, 532, 262, 1296, 284, 751, 8233, 2386, 2194, 198, 220, 220, 220, 220, 220, 220, 220, 2814, 51, 83, 8479, 532, 262, 1296, 2672, 284, 751, 2814, 40021, 198, 220, 220, 220, 220, 220, 220, 220, 2814, 62, 83, 532, 477, 262, 2814, 40021, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 40021, 532, 477, 262, 8233, 40021, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 11845, 532, 477, 262, 8233, 2386, 2194, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 4732, 532, 262, 19395, 284, 307, 9066, 287, 262, 35699, 198, 220, 220, 220, 220, 220, 220, 220, 428, 62, 43616, 62, 17319, 532, 28110, 1366, 286, 294, 13396, 24878, 10902, 198, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 43616, 62, 66, 39975, 532, 262, 1366, 286, 1306, 24878, 10902, 198, 220, 220, 220, 220, 220, 220, 220, 10902, 532, 477, 262, 10902, 287, 20583, 198, 220, 220, 220, 220, 220, 220, 220, 1781, 62, 4906, 532, 1351, 262, 2099, 286, 10902, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 2836, 62, 9122, 7, 25927, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 330, 49113, 12, 1676, 771, 942, 14, 11537, 628, 220, 220, 220, 1781, 62, 4868, 796, 5026, 62, 1640, 62, 8612, 378, 62, 21760, 3419, 198, 220, 220, 220, 611, 7, 17319, 62, 4868, 58, 15, 60, 855, 16, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1781, 62, 4868, 62, 17, 796, 685, 17, 11, 604, 11, 718, 11, 807, 60, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1781, 62, 4868, 62, 17, 796, 685, 16, 11, 513, 11, 642, 11, 767, 60, 628, 220, 220, 220, 1303, 2814, 51, 83, 8479, 796, 35909, 14967, 316, 540, 8479, 3419, 198, 220, 220, 220, 1303, 5790, 51, 83, 8479, 796, 31421, 14967, 316, 540, 8479, 3419, 198, 220, 220, 220, 1303, 11845, 796, 26506, 13, 48205, 13, 439, 3419, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 428, 62, 43616, 62, 66, 39975, 796, 4424, 1173, 14452, 13, 48205, 13, 439, 22446, 24455, 7, 43616, 834, 259, 28, 17319, 62, 4868, 737, 24455, 7, 48679, 515, 28, 17821, 8, 198, 220, 220, 220, 1303, 1306, 62, 43616, 62, 66, 39975, 796, 4424, 1173, 14452, 13, 48205, 13, 439, 22446, 24455, 7, 43616, 834, 259, 28, 17319, 62, 4868, 737, 24455, 7, 48679, 515, 28, 17821, 8, 198, 220, 220, 220, 1303, 10902, 796, 20537, 13, 48205, 13, 439, 3419, 198, 220, 220, 220, 1303, 1781, 62, 4906, 796, 4757, 1187, 13, 34, 11698, 5188, 62, 25216, 198, 220, 220, 220, 1303, 40021, 796, 5045, 316, 540, 13, 48205, 13, 439, 3419, 198, 220, 220, 220, 1303, 2814, 62, 83, 796, 35909, 62, 16514, 316, 540, 13, 48205, 13, 439, 3419, 628, 220, 220, 220, 9021, 62, 22866, 796, 5790, 62, 1676, 771, 62, 20541, 62, 22866, 3419, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2814, 51, 83, 8479, 796, 35909, 14967, 316, 540, 8479, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 5790, 51, 83, 8479, 796, 31421, 14967, 316, 540, 8479, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 11845, 796, 26506, 13, 48205, 13, 439, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 428, 62, 43616, 62, 66, 39975, 796, 4424, 1173, 14452, 13, 48205, 13, 439, 22446, 19738, 62, 5363, 22446, 24455, 7, 43616, 834, 259, 28, 17319, 62, 4868, 737, 24455, 7, 48679, 515, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 43616, 62, 66, 39975, 796, 4424, 1173, 14452, 13, 48205, 13, 439, 22446, 19738, 62, 5363, 22446, 24455, 7, 43616, 834, 259, 28, 17319, 62, 4868, 62, 17, 737, 24455, 7, 48679, 515, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 10902, 796, 20537, 13, 48205, 13, 439, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 10902, 62, 4868, 796, 2734, 8448, 13, 48205, 13, 439, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1781, 62, 4906, 796, 4757, 1187, 13, 34, 11698, 5188, 62, 25216, 198, 220, 220, 220, 220, 220, 220, 220, 40021, 796, 5045, 316, 540, 13, 48205, 13, 439, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2814, 62, 83, 796, 35909, 62, 16514, 316, 540, 13, 48205, 13, 439, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 23241, 50139, 796, 13613, 13, 48205, 13, 24455, 7, 23065, 1326, 796, 366, 44, 13, 17760, 4943, 930, 13613, 13, 48205, 13, 24455, 7, 23065, 1326, 796, 366, 2725, 35, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 8796, 62, 4868, 796, 43627, 1187, 1056, 44819, 13, 48205, 13, 24455, 7, 8326, 62, 16668, 13131, 62, 2787, 668, 796, 6407, 737, 24455, 7, 83, 8497, 62, 16668, 13131, 62, 2787, 668, 796, 6407, 737, 24455, 7, 2065, 62, 21064, 2100, 796, 17821, 737, 24455, 7, 330, 324, 62, 21064, 2100, 796, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 8796, 62, 21064, 303, 62, 4868, 796, 43627, 1187, 1056, 44819, 13, 48205, 13, 24455, 7, 8326, 62, 16668, 13131, 62, 2787, 668, 796, 6407, 737, 24455, 7, 83, 8497, 62, 16668, 13131, 62, 2787, 668, 796, 6407, 737, 24455, 7, 2065, 62, 21064, 2100, 796, 17821, 737, 24455, 7, 2065, 62, 21064, 2100, 796, 6407, 8, 198, 220, 220, 220, 220, 220, 220, 220, 8796, 62, 4868, 62, 13664, 796, 18896, 7, 562, 10167, 62, 4868, 13, 24455, 7, 330, 324, 62, 21064, 2100, 796, 10352, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 840, 271, 62, 14269, 796, 43627, 1187, 1056, 62, 13376, 13, 48205, 13, 439, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 26181, 287, 840, 271, 62, 14269, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8796, 62, 32109, 796, 26181, 13, 50139, 62, 13376, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 289, 375, 62, 32109, 796, 26181, 13, 2065, 62, 13376, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1848, 62, 32109, 796, 26181, 13, 23317, 62, 13376, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2814, 51, 83, 8479, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 5790, 51, 83, 8479, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 11845, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 428, 62, 43616, 62, 66, 39975, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 1306, 62, 43616, 62, 66, 39975, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 10902, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 1781, 62, 4906, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 40021, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 2814, 62, 83, 796, 13538, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 4732, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 330, 324, 51, 83, 8479, 10354, 5790, 51, 83, 8479, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1069, 321, 51, 83, 8479, 10354, 2814, 51, 83, 8479, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 66, 39975, 10354, 10902, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 66, 39975, 62, 4868, 10354, 10902, 62, 4868, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17319, 62, 4906, 10354, 1781, 62, 4906, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 1069, 321, 10354, 2814, 62, 83, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 16514, 316, 540, 10354, 40021, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 330, 49113, 62, 9948, 9239, 10354, 11845, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 19545, 62, 43616, 62, 17319, 10354, 1306, 62, 43616, 62, 66, 39975, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 5661, 62, 43616, 62, 17319, 10354, 428, 62, 43616, 62, 66, 39975, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 22019, 1173, 14452, 10354, 20583, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6024, 50139, 6, 1058, 23241, 50139, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 562, 10167, 62, 4868, 6, 1058, 8796, 62, 4868, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 562, 10167, 62, 21064, 303, 62, 4868, 6, 1058, 8796, 62, 21064, 303, 62, 4868, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 562, 10167, 62, 4868, 62, 13664, 6, 1058, 8796, 62, 4868, 62, 13664, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 8658, 62, 312, 10354, 37250, 16, 41707, 16, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 22866, 10354, 9021, 62, 22866, 17816, 22866, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 20713, 10354, 9021, 62, 22866, 17816, 20713, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 4475, 10354, 9021, 62, 22866, 17816, 4475, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 22766, 62, 18076, 16, 10354, 9021, 62, 22866, 17816, 22766, 62, 18076, 16, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 22766, 62, 18076, 17, 10354, 9021, 62, 22866, 17816, 22766, 62, 18076, 17, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17319, 62, 332, 2649, 62, 4475, 6, 1058, 9021, 62, 22866, 17816, 17319, 62, 332, 2649, 62, 4475, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7266, 3291, 62, 17319, 62, 4868, 6, 1058, 9021, 62, 22866, 17816, 7266, 3291, 62, 17319, 62, 4868, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 20274, 62, 1941, 6, 1058, 9021, 62, 22866, 17816, 20274, 62, 1941, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43501, 62, 9526, 62, 7890, 6, 1058, 9021, 62, 22866, 17816, 43501, 62, 9526, 62, 7890, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 43501, 62, 1671, 3702, 62, 7890, 6, 1058, 9021, 62, 22866, 17816, 43501, 62, 1671, 3702, 62, 7890, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 562, 10167, 62, 32109, 6, 1058, 8796, 62, 32109, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2065, 62, 32109, 6, 1058, 289, 375, 62, 32109, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 23317, 62, 32109, 6, 1058, 1848, 62, 32109, 198, 220, 220, 220, 1782, 628, 220, 220, 220, 1441, 4732, 628, 628, 198, 2, 1303, 29113, 21017, 198, 2, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 20583, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 198, 2, 1303, 29113, 21017, 628, 628, 628, 628, 628, 628, 198, 198, 2, 8645, 378, 46502, 590, 21616, 198, 4299, 5026, 62, 1640, 62, 8612, 378, 62, 21760, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 770, 2163, 18616, 24878, 9559, 9629, 198, 220, 220, 220, 2488, 25641, 2977, 25, 198, 220, 220, 220, 220, 220, 220, 220, 783, 532, 1459, 4818, 8079, 198, 220, 220, 220, 220, 220, 220, 220, 1227, 532, 1459, 1227, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 783, 796, 4818, 8079, 13, 19608, 8079, 13, 2197, 3419, 198, 220, 220, 220, 1227, 796, 493, 7, 2197, 13, 8424, 8, 198, 220, 220, 220, 611, 1227, 18189, 767, 290, 1227, 19841, 1105, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 16, 11, 513, 11, 642, 11, 767, 60, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 685, 17, 11, 604, 11, 718, 11, 807, 60, 628, 628, 198, 198, 4299, 651, 62, 38942, 10672, 62, 4868, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 284, 651, 12829, 1351, 422, 6831, 628, 220, 220, 220, 2488, 17143, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2581, 532, 4909, 20150, 546, 262, 9167, 2443, 13, 628, 220, 220, 220, 2488, 25641, 2977, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 16, 11, 69, 17, 11, 69, 18, 532, 8584, 1401, 18764, 198, 220, 220, 220, 220, 220, 220, 220, 12829, 532, 3307, 286, 12829, 286, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 12829, 62, 4868, 532, 1351, 286, 12829, 628, 220, 220, 220, 37227, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 16, 796, 9340, 82, 23067, 341, 13, 48205, 13, 19738, 62, 5363, 22446, 24455, 7, 26124, 341, 28, 23067, 341, 13, 48205, 13, 1136, 7, 3672, 796, 366, 48902, 8129, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 277, 17, 796, 9340, 82, 23067, 341, 13, 48205, 13, 19738, 62, 5363, 22446, 24455, 7, 26124, 341, 28, 23067, 341, 13, 48205, 13, 1136, 7, 3672, 796, 366, 25031, 48774, 198, 220, 220, 220, 220, 220, 220, 220, 277, 18, 796, 9340, 82, 23067, 341, 13, 48205, 13, 19738, 62, 5363, 22446, 24455, 7, 26124, 341, 28, 23067, 341, 13, 48205, 13, 1136, 7, 3672, 796, 366, 8021, 47615, 8129, 48774, 198, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 277, 16, 28, 69, 17, 28, 69, 18, 33151, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198, 220, 220, 220, 12829, 796, 1351, 7, 7983, 7, 69, 16, 11, 69, 17, 11, 69, 18, 4008, 198, 220, 220, 220, 12829, 62, 4868, 796, 17635, 198, 220, 220, 220, 329, 1312, 287, 12829, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12829, 62, 4868, 13, 33295, 7, 72, 8, 198, 220, 220, 220, 1441, 12829, 62, 4868, 628, 628, 628, 628, 628, 628, 198, 198, 2, 1303, 41436, 12, 6248, 1352, 1783, 438, 198, 2, 2488, 6359, 41871, 62, 42679, 198, 4299, 12329, 7, 25927, 2599, 198, 2, 220, 220, 220, 220, 37227, 198, 2, 220, 220, 220, 220, 284, 751, 257, 649, 3710, 12329, 198, 198, 2, 220, 220, 220, 220, 2488, 17143, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2581, 532, 4909, 20150, 546, 262, 9167, 2443, 198, 198, 2, 220, 220, 220, 220, 2488, 25641, 2977, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1459, 62, 7220, 532, 3011, 262, 1366, 286, 1459, 2836, 13, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2836, 62, 36604, 532, 3011, 262, 3307, 286, 262, 2672, 2836, 13, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 748, 328, 62, 312, 532, 973, 284, 2198, 262, 22566, 4522, 13, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 12360, 532, 3131, 12360, 2134, 286, 262, 3710, 351, 326, 4836, 3919, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 264, 532, 22566, 2134, 286, 12329, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 532, 6622, 23067, 341, 2134, 284, 3650, 326, 262, 1344, 723, 81, 3710, 318, 4769, 262, 12329, 22566, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3710, 532, 262, 3710, 2134, 286, 262, 649, 12329, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 532, 1366, 286, 262, 3710, 284, 307, 9066, 287, 573, 71, 35699, 198, 198, 2, 220, 220, 220, 220, 37227, 198, 2, 220, 220, 220, 220, 1459, 62, 7220, 796, 651, 62, 15252, 62, 273, 62, 26429, 7, 12982, 11, 20579, 28, 25927, 13, 7220, 13, 29460, 8, 198, 2, 220, 220, 220, 220, 2836, 62, 36604, 796, 17221, 12360, 13, 48205, 13, 439, 22446, 24455, 7, 7220, 28, 14421, 62, 7220, 737, 11085, 3419, 198, 2, 220, 220, 220, 220, 748, 328, 62, 312, 796, 8495, 341, 13, 48205, 13, 439, 22446, 24455, 7, 3672, 11639, 52, 2848, 7458, 39905, 11537, 198, 220, 220, 220, 20218, 796, 9340, 82, 23067, 341, 13, 48205, 13, 439, 22446, 19738, 62, 5363, 22446, 24455, 7, 26124, 341, 796, 748, 328, 62, 312, 737, 11085, 3419, 198, 220, 220, 220, 1303, 4798, 357, 29510, 8, 198, 2, 220, 220, 220, 220, 3601, 357, 14421, 62, 7220, 8, 198, 2, 220, 220, 220, 220, 5790, 28482, 796, 20218, 13, 16090, 198, 2, 220, 220, 220, 220, 479, 796, 965, 7, 7220, 62, 36604, 737, 35312, 3419, 198, 2, 220, 220, 220, 220, 3601, 7, 74, 8, 198, 2, 220, 220, 220, 220, 2457, 62, 7220, 796, 479, 58, 17, 60, 198, 198, 2, 220, 220, 220, 220, 611, 357, 2536, 7, 330, 324, 28482, 8, 14512, 965, 7, 20311, 62, 7220, 8, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 330, 49113, 12, 1676, 771, 942, 14, 11537, 198, 2, 220, 220, 220, 220, 611, 2581, 13, 24396, 6624, 705, 32782, 10354, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 25927, 13, 32782, 11, 366, 33717, 33717, 33717, 33717, 33717, 33717, 33717, 4211, 4943, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 4836, 3919, 796, 2581, 13, 32782, 13, 1136, 4868, 10786, 26869, 7913, 11537, 58, 15, 60, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7, 25927, 13, 32782, 13, 1136, 10786, 2487, 3919, 6, 4008, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 12360, 796, 17221, 12360, 13, 48205, 13, 1136, 7, 312, 28, 2487, 3919, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 8495, 341, 13, 48205, 13, 1136, 7, 3672, 11639, 29774, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 796, 9340, 82, 23067, 341, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 7220, 796, 3131, 12360, 13, 7220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 16090, 796, 3131, 12360, 13, 7220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 26124, 341, 796, 264, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3710, 796, 13613, 13, 48205, 13, 1136, 7, 312, 28, 26086, 12360, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 1391, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3672, 10354, 3131, 12360, 13, 7220, 13, 29460, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2487, 3919, 10354, 3131, 12360, 13, 312, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23065, 1326, 10354, 3710, 13, 23065, 1326, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1671, 3702, 10354, 3131, 12360, 13, 10378, 1823, 13, 3672, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 1385, 82, 14, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1441, 449, 1559, 31077, 7, 7890, 8, 198, 2, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 1385, 82, 14, 11537, 198, 198, 2, 2488, 6359, 41871, 62, 42679, 198, 2, 220, 220, 220, 220, 611, 2581, 13, 32782, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 651, 62, 15252, 62, 273, 62, 26429, 7, 23067, 341, 11, 1438, 2625, 29774, 4943, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3710, 796, 651, 62, 15252, 62, 273, 62, 26429, 7, 27726, 12360, 11, 4686, 28, 25927, 13, 32782, 13, 1136, 4868, 7203, 6248, 378, 62, 312, 4943, 58, 15, 12962, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 796, 651, 62, 15252, 62, 273, 62, 26429, 7, 9340, 82, 23067, 341, 11, 2836, 796, 3710, 13, 7220, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 33678, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 1385, 82, 14, 11537, 198, 2, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 1385, 82, 14, 11537, 2, 1303, 29113, 14468, 21017, 628, 198, 2, 1303, 1303, 7804, 2, 1073, 574, 669, 290, 8954, 261, 574, 669, 14468, 2235, 198, 2, 2488, 6359, 41871, 62, 42679, 198, 2, 220, 220, 220, 220, 279, 796, 8495, 341, 13, 48205, 13, 1136, 7, 3672, 11639, 7222, 1482, 574, 273, 11537, 198, 2, 220, 220, 220, 220, 611, 2581, 13, 24396, 6624, 705, 32782, 10354, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 4836, 3919, 796, 2581, 13, 32782, 13, 1136, 10786, 2487, 3919, 62, 1102, 574, 273, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3131, 12360, 796, 17221, 12360, 13, 48205, 13, 1136, 7, 312, 28, 2487, 3919, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 8495, 341, 13, 48205, 13, 1136, 7, 3672, 11639, 3103, 574, 273, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 279, 796, 8495, 341, 13, 48205, 13, 1136, 7, 3672, 11639, 7222, 1482, 574, 273, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 2581, 13, 32782, 13, 1136, 10786, 26124, 341, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 796, 9340, 82, 23067, 341, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 7220, 796, 3131, 12360, 13, 7220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 16090, 796, 3131, 12360, 13, 7220, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1255, 6624, 366, 3103, 574, 273, 1298, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 26124, 341, 796, 264, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 26124, 341, 796, 279, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 289, 5960, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 1391, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3672, 10354, 3131, 12360, 13, 7220, 13, 29460, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2487, 3919, 62, 1102, 574, 273, 10354, 3131, 12360, 13, 312, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26124, 341, 10354, 289, 5960, 13, 26124, 341, 13, 3672, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 449, 1559, 31077, 7, 7890, 8, 198, 2, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 23884, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 449, 1559, 31077, 7, 7890, 8, 198, 198, 2, 2488, 6359, 41871, 62, 42679, 198, 2, 220, 220, 220, 220, 3710, 796, 651, 62, 15252, 62, 273, 62, 26429, 7, 27726, 12360, 11, 4686, 28, 79, 74, 8, 198, 2, 220, 220, 220, 220, 289, 5960, 796, 9340, 82, 23067, 341, 13, 48205, 13, 24455, 7, 7220, 796, 3710, 13, 7220, 8, 198, 2, 220, 220, 220, 220, 22566, 796, 17635, 198, 2, 220, 220, 220, 220, 329, 748, 287, 289, 5960, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 748, 13, 26124, 341, 6624, 264, 393, 748, 13, 26124, 341, 6624, 269, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22566, 796, 748, 13, 26124, 341, 13, 3672, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 748, 13, 33678, 3419, 198, 2, 220, 220, 220, 220, 1366, 796, 1391, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 705, 312, 10354, 279, 74, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 705, 26124, 341, 10354, 22566, 11, 198, 2, 220, 220, 220, 220, 1782, 198, 2, 220, 220, 220, 220, 1441, 449, 1559, 31077, 7, 7890, 8, 2, 1303, 29113, 14468, 4242, 2, 628, 198, 2, 1303, 1303, 7804, 2, 32998, 3249, 38573, 14468, 2235, 198, 2, 2488, 6359, 41871, 62, 42679, 198, 2, 220, 220, 220, 220, 3601, 357, 29510, 8, 198, 2, 220, 220, 220, 220, 3601, 357, 14421, 62, 7220, 8, 198, 2, 220, 220, 220, 220, 5790, 28482, 796, 20218, 13, 16090, 198, 2, 220, 220, 220, 220, 479, 796, 965, 7, 7220, 62, 36604, 737, 35312, 3419, 198, 2, 220, 220, 220, 220, 3601, 7, 74, 8, 198, 2, 220, 220, 220, 220, 2457, 62, 7220, 796, 479, 58, 17, 60, 198, 198, 2, 220, 220, 220, 220, 611, 357, 2536, 7, 330, 324, 28482, 8, 14512, 965, 7, 20311, 62, 7220, 8, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 330, 49113, 12, 1676, 771, 942, 14, 11537, 198, 2, 220, 220, 220, 220, 611, 2581, 13, 24396, 6624, 705, 32782, 6, 290, 2581, 13, 46700, 1546, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1296, 796, 38573, 8479, 7, 25927, 13, 32782, 11, 2581, 13, 46700, 1546, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1296, 13, 271, 62, 12102, 33529, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1296, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 10786, 2385, 919, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 10786, 1662, 19144, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 8543, 7, 25927, 11, 366, 15152, 14, 15152, 13, 6494, 1600, 23884, 8, 198, 198, 2, 1303, 1303, 29113, 14468, 4242, 2, 628, 198, 2, 1303, 1303, 7804, 2, 38778, 4096, 7034, 14468, 2235, 198, 2, 2488, 6359, 41871, 62, 42679, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 4836, 796, 17221, 12360, 13, 48205, 13, 1136, 7, 312, 28, 25927, 13, 32782, 13, 1136, 10786, 2487, 3919, 6, 4008, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 11383, 796, 2581, 13, 32782, 13, 1136, 10786, 23065, 1326, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 15458, 796, 2581, 13, 32782, 13, 1136, 10786, 43501, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 872, 796, 2581, 13, 32782, 13, 1136, 10786, 746, 261, 23397, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 13613, 13, 48205, 13, 24455, 7, 312, 28, 2487, 737, 1069, 1023, 33529, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 796, 13613, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 796, 17221, 12360, 13, 48205, 13, 1136, 7, 312, 28, 2487, 13, 312, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 3672, 796, 1438, 13, 45828, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 312, 796, 4836, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 43501, 796, 15458, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 23065, 1326, 796, 11383, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 13, 4862, 62, 3919, 796, 872, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 20613, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 1391, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 3672, 10354, 1438, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2487, 3919, 10354, 4836, 13, 312, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23065, 1326, 10354, 11383, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 746, 261, 23397, 10354, 872, 11, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 43501, 10354, 15458, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 7890, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 449, 1559, 31077, 7, 7890, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 23884, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 449, 1559, 31077, 7, 7890, 8, 198, 2, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 23884, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 449, 1559, 31077, 7, 7890, 8, 628, 198, 2, 2488, 6359, 41871, 62, 42679, 198, 2, 220, 220, 220, 220, 2836, 796, 651, 62, 15252, 62, 273, 62, 26429, 7, 12982, 11, 20579, 796, 304, 13, 7220, 13, 29460, 8, 198, 2, 220, 220, 220, 220, 264, 796, 651, 62, 15252, 62, 273, 62, 26429, 7, 38778, 11, 4686, 28, 68, 8, 198, 2, 220, 220, 220, 220, 1366, 796, 1391, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2487, 3919, 10354, 279, 74, 11, 198, 2, 220, 220, 220, 220, 1782, 198, 2, 220, 220, 220, 220, 264, 13, 33678, 3419, 198, 2, 220, 220, 220, 220, 304, 13, 33678, 3419, 198, 2, 220, 220, 220, 220, 334, 13, 33678, 3419, 198, 2, 220, 220, 220, 220, 1441, 449, 1559, 31077, 7, 7890, 8, 2, 1303, 29113, 14468, 7804, 198, 198, 2, 705, 7061, 198, 2, 1303, 1570, 284, 751, 14858, 1366, 284, 6831, 198, 2, 825, 20583, 7, 25927, 2599, 198, 198, 2, 705, 7061, 198, 2, 220, 220, 220, 220, 2836, 62, 36604, 796, 17221, 12360, 13, 48205, 13, 439, 22446, 24455, 7, 7220, 28, 14421, 62, 7220, 737, 11085, 3419, 198, 2, 220, 220, 220, 220, 748, 328, 62, 312, 796, 8495, 341, 13, 48205, 13, 439, 22446, 24455, 7, 3672, 11639, 52, 2848, 7458, 39905, 11537, 198, 2, 220, 220, 220, 220, 20218, 796, 9340, 82, 23067, 341, 13, 48205, 13, 439, 22446, 24455, 7, 26124, 341, 796, 748, 328, 62, 312, 737, 11085, 3419, 198, 2, 220, 220, 220, 220, 3601, 357, 29510, 8, 198, 2, 220, 220, 220, 220, 3601, 357, 14421, 62, 7220, 8, 198, 2, 220, 220, 220, 220, 5790, 28482, 796, 20218, 13, 16090, 198, 2, 220, 220, 220, 220, 479, 796, 965, 7, 7220, 62, 36604, 737, 35312, 3419, 198, 2, 220, 220, 220, 220, 3601, 7, 74, 8, 198, 2, 220, 220, 220, 220, 2457, 62, 7220, 796, 479, 58, 17, 60, 198, 198, 2, 220, 220, 220, 220, 611, 357, 2536, 7, 330, 324, 28482, 8, 14512, 965, 7, 20311, 62, 7220, 8, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 330, 49113, 12, 1676, 771, 942, 14, 11537, 198, 2, 220, 220, 220, 220, 611, 2581, 13, 24396, 6624, 366, 32782, 1298, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 336, 796, 2581, 13, 32782, 17816, 33678, 20520, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 5240, 796, 336, 13, 35312, 7203, 12, 4943, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 336, 84, 796, 5240, 58, 15, 60, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 13613, 13, 48205, 13, 1136, 7, 312, 28, 301, 84, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 13613, 13, 48205, 13, 1136, 7, 312, 28, 301, 84, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 11358, 62, 3672, 796, 13538, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 13552, 62, 3672, 796, 13538, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 18323, 62, 3919, 796, 352, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 3823, 62, 3919, 796, 13538, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7203, 6601, 8314, 1892, 1475, 396, 4943, 198, 198, 2, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7203, 6601, 1024, 33342, 16282, 2759, 4943, 198, 198, 2, 220, 220, 220, 220, 2836, 62, 36604, 796, 17221, 12360, 13, 48205, 13, 439, 22446, 24455, 7, 7220, 28, 14421, 62, 7220, 737, 11085, 3419, 198, 2, 220, 220, 220, 220, 748, 328, 62, 312, 796, 8495, 341, 13, 48205, 13, 439, 22446, 24455, 7, 3672, 11639, 52, 2848, 7458, 39905, 11537, 198, 2, 220, 220, 220, 220, 20218, 796, 9340, 82, 23067, 341, 13, 48205, 13, 439, 22446, 24455, 7, 26124, 341, 796, 748, 328, 62, 312, 737, 11085, 3419, 198, 2, 220, 220, 220, 220, 3601, 357, 29510, 8, 198, 2, 220, 220, 220, 220, 3601, 357, 14421, 62, 7220, 8, 198, 2, 220, 220, 220, 220, 5790, 28482, 796, 20218, 13, 16090, 198, 2, 220, 220, 220, 220, 479, 796, 965, 7, 7220, 62, 36604, 737, 35312, 3419, 198, 2, 220, 220, 220, 220, 3601, 7, 74, 8, 198, 2, 220, 220, 220, 220, 2457, 62, 7220, 796, 479, 58, 17, 60, 198, 198, 2, 220, 220, 220, 220, 611, 357, 2536, 7, 330, 324, 28482, 8, 14512, 965, 7, 20311, 62, 7220, 8, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 330, 49113, 12, 1676, 771, 942, 14, 11537, 198, 2, 220, 220, 220, 220, 611, 2581, 13, 24396, 6624, 366, 32782, 1298, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 25927, 13, 32782, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 4836, 3919, 28, 25927, 13, 32782, 13, 1136, 10786, 2487, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 2487, 3919, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3710, 796, 17221, 12360, 13, 48205, 13, 1136, 7, 312, 28, 2487, 3919, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 50139, 13, 21975, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 3710, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 23884, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 449, 1559, 31077, 7, 7890, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2988, 796, 2581, 13, 32782, 13, 1136, 10786, 11358, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2802, 796, 2581, 13, 32782, 13, 1136, 10786, 13552, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 751, 796, 2581, 13, 32782, 13, 1136, 10786, 21975, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6899, 796, 2581, 13, 32782, 13, 1136, 10786, 18323, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2119, 796, 2581, 13, 32782, 13, 1136, 10786, 3823, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 14415, 796, 2581, 13, 32782, 13, 1136, 10786, 13155, 72, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3710, 13, 21975, 796, 965, 7, 18323, 8, 1343, 366, 366, 1343, 965, 7, 3823, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3710, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 13613, 13, 48205, 13, 1136, 7, 312, 28, 50139, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 11358, 62, 3672, 28, 11358, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 13552, 62, 3672, 28, 13552, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 18323, 62, 3919, 796, 6899, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 3823, 62, 3919, 796, 2119, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 13, 21928, 3419, 198, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 330, 49113, 12, 1676, 771, 942, 14, 11537, 198, 2, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 330, 49113, 12, 1676, 771, 942, 14, 11537, 628, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 7747, 796, 2581, 13, 32782, 13, 1136, 4868, 10786, 25541, 11537, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 7747, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1781, 796, 20537, 13, 48205, 13, 439, 22446, 24455, 7, 17319, 62, 312, 28, 72, 737, 11085, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1781, 13, 330, 324, 62, 49283, 796, 6407, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1781, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 10902, 796, 20537, 13, 48205, 13, 439, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 10902, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 13, 17319, 62, 312, 407, 287, 7747, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1312, 13, 330, 324, 62, 49283, 796, 10352, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1312, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7738, 1060, 10786, 14, 330, 49113, 12, 1676, 771, 942, 14, 11537, 198, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 5026, 62, 66, 445, 13, 33295, 7, 15, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 16, 11, 838, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5026, 796, 366, 43616, 62, 1, 10, 1, 16, 1, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5026, 62, 66, 445, 13, 33295, 7, 25927, 13, 32782, 13, 1136, 4868, 7, 43616, 38381, 15, 12962, 198, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 287, 2837, 7, 16, 11, 860, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5026, 796, 26265, 42855, 13, 48205, 13, 439, 22446, 24455, 7, 325, 6880, 353, 28, 72, 737, 11085, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5026, 13, 66, 20696, 796, 5026, 62, 66, 445, 58, 72, 10, 16, 60, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5026, 13, 21928, 3419, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 367, 29281, 31077, 7203, 12468, 276, 4943, 628, 220, 220, 220, 220, 628, 628, 628, 198 ]
2.297855
7,460
# Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Functional test cases for subject-replicator""" import sys from subject.tests import functional from subject.tests.utils import execute
[ 2, 220, 220, 220, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 345, 743, 198, 2, 220, 220, 220, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 921, 743, 7330, 198, 2, 220, 220, 220, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 220, 220, 220, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 220, 220, 220, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 198, 2, 220, 220, 220, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 4091, 262, 198, 2, 220, 220, 220, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 11247, 198, 2, 220, 220, 220, 739, 262, 13789, 13, 198, 198, 37811, 22203, 282, 1332, 2663, 329, 2426, 12, 35666, 26407, 37811, 198, 198, 11748, 25064, 198, 198, 6738, 2426, 13, 41989, 1330, 10345, 198, 6738, 2426, 13, 41989, 13, 26791, 1330, 12260, 628 ]
3.539604
202
# -*- coding: utf-8 -*- # marketanalysis # ---------------- # A fast, efficient Python library for generating country, province and state # specific sets of marketmarketholidayss on the fly. It aims to make determining whether a # specific date is a holiday as fast and flexible as possible. # # Author: MichealOmojola <[email protected]> # Website: https://github.com/OmoMicheal/trading_days # License: MIT (see LICENSE file) # Version: 0.1 (April 7, 2021) import unittest from datetime import date from dateutil.relativedelta import relativedelta # import sys # sys.path.insert(0, 'C:/Users/momojola/projects/marketanalysis/marketanalysis/') from marketanalysis import marketholidays from marketanalysis import markettradingdays # if __name__ == "__main__": # unittest.main()
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 220, 1910, 20930, 198, 2, 220, 34400, 198, 2, 220, 317, 3049, 11, 6942, 11361, 5888, 329, 15453, 1499, 11, 8473, 290, 1181, 198, 2, 220, 2176, 5621, 286, 1910, 4102, 2788, 10180, 592, 82, 319, 262, 6129, 13, 632, 12031, 284, 787, 13213, 1771, 257, 198, 2, 220, 2176, 3128, 318, 257, 9912, 355, 3049, 290, 12846, 355, 1744, 13, 198, 2, 198, 2, 220, 6434, 25, 220, 27407, 282, 46, 5908, 73, 5708, 1279, 32542, 13210, 5708, 31, 64, 436, 13, 15532, 13, 782, 29, 198, 2, 220, 15887, 25, 3740, 1378, 12567, 13, 785, 14, 46, 5908, 44, 14234, 282, 14, 2213, 4980, 62, 12545, 198, 2, 220, 13789, 25, 17168, 357, 3826, 38559, 24290, 2393, 8, 198, 2, 220, 10628, 25, 657, 13, 16, 357, 16784, 767, 11, 33448, 8, 198, 198, 11748, 555, 715, 395, 198, 198, 6738, 4818, 8079, 1330, 3128, 198, 6738, 3128, 22602, 13, 2411, 265, 1572, 12514, 1330, 48993, 1572, 12514, 198, 198, 2, 1330, 25064, 198, 2, 25064, 13, 6978, 13, 28463, 7, 15, 11, 705, 34, 14079, 14490, 14, 32542, 13210, 5708, 14, 42068, 14, 10728, 20930, 14, 10728, 20930, 14, 11537, 198, 198, 6738, 1910, 20930, 1330, 1910, 3937, 13842, 198, 6738, 1910, 20930, 1330, 1910, 2213, 4980, 12545, 628, 220, 220, 220, 220, 220, 220, 220, 220, 198, 198, 2, 611, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 2, 220, 220, 220, 220, 555, 715, 395, 13, 12417, 3419 ]
3.103448
261
#!/usr/bin/env python from distutils.core import setup from catkin_pkg.python_setup import generate_distutils_setup d = generate_distutils_setup( packages=['rosmsg'], package_dir={'': 'src'}, scripts=['scripts/rosmsg', 'scripts/rosmsg-proto', 'scripts/rossrv'], requires=['genmsg', 'rosbag', 'roslib', 'rospkg'] ) setup(**d)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 6738, 1233, 26791, 13, 7295, 1330, 9058, 198, 6738, 3797, 5116, 62, 35339, 13, 29412, 62, 40406, 1330, 7716, 62, 17080, 26791, 62, 40406, 198, 198, 67, 796, 7716, 62, 17080, 26791, 62, 40406, 7, 198, 220, 220, 220, 10392, 28, 17816, 4951, 19662, 6, 4357, 198, 220, 220, 220, 5301, 62, 15908, 34758, 7061, 25, 705, 10677, 6, 5512, 198, 220, 220, 220, 14750, 28, 17816, 46521, 14, 4951, 19662, 3256, 705, 46521, 14, 4951, 19662, 12, 1676, 1462, 3256, 705, 46521, 14, 1214, 81, 85, 6, 4357, 198, 220, 220, 220, 4433, 28, 17816, 5235, 19662, 3256, 705, 4951, 21454, 3256, 705, 4951, 8019, 3256, 705, 305, 2777, 10025, 20520, 198, 8, 198, 198, 40406, 7, 1174, 67, 8, 198 ]
2.606061
132
#!/usr/bin/env python # linked_list.py - Linked list implementation in Python by Sergey 2015 """ Linked list implementation in Python """ # Standard modules import unittest import sys import os import argparse import re import random import subprocess import getpass import shutil # Additional modules ############################################################################### # Linked_list Class ############################################################################### ############################################################################### # Executable code ############################################################################### def main(): # Sandbox sb = Linked_list(" ".join(sys.argv[1:])) sb.run() ############################################################################### # Unit Tests ############################################################################### if __name__ == "__main__": if sys.argv[-1] == "-ut": unittest.main(argv=[" "]) main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 6692, 62, 4868, 13, 9078, 532, 7502, 276, 1351, 7822, 287, 11361, 416, 36106, 1853, 198, 198, 37811, 198, 11280, 276, 1351, 7822, 287, 11361, 198, 198, 37811, 198, 198, 2, 8997, 13103, 198, 11748, 555, 715, 395, 198, 11748, 25064, 198, 11748, 28686, 198, 11748, 1822, 29572, 198, 11748, 302, 198, 11748, 4738, 198, 11748, 850, 14681, 198, 11748, 651, 6603, 198, 11748, 4423, 346, 198, 198, 2, 15891, 13103, 628, 198, 29113, 29113, 7804, 4242, 21017, 198, 2, 7502, 276, 62, 4868, 5016, 198, 29113, 29113, 7804, 4242, 21017, 628, 198, 29113, 29113, 7804, 4242, 21017, 198, 2, 8393, 18187, 2438, 198, 29113, 29113, 7804, 4242, 21017, 628, 198, 4299, 1388, 33529, 628, 220, 220, 220, 1303, 3837, 3524, 198, 220, 220, 220, 264, 65, 796, 7502, 276, 62, 4868, 7203, 27071, 22179, 7, 17597, 13, 853, 85, 58, 16, 47715, 4008, 198, 220, 220, 220, 264, 65, 13, 5143, 3419, 198, 198, 29113, 29113, 7804, 4242, 21017, 198, 2, 11801, 30307, 198, 29113, 29113, 7804, 4242, 21017, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 611, 25064, 13, 853, 85, 58, 12, 16, 60, 6624, 27444, 315, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 555, 715, 395, 13, 12417, 7, 853, 85, 28, 14692, 366, 12962, 198, 220, 220, 220, 1388, 3419, 198 ]
4.377119
236
from devito import VectorTimeFunction, TimeFunction, NODE from devito.tools import memoized_meth from examples.seismic import PointSource from examples.seismic.viscoacoustic.operators import (ForwardOperator, AdjointOperator) def adjoint(self, rec, srca=None, va=None, pa=None, vp=None, qp=None, b=None, r=None, **kwargs): """ Adjoint modelling function that creates the necessary data objects for running an adjoint modelling operator. Parameters ---------- rec : SparseTimeFunction or array-like The receiver data. Please note that these act as the source term in the adjoint run. srca : SparseTimeFunction or array-like The resulting data for the interpolated at the original source location. va : VectorTimeFunction, optional The computed particle velocity. pa : TimeFunction, optional Stores the computed wavefield. vp : Function or float, optional The time-constant velocity. qp : Function, optional The P-wave quality factor. b : Function, optional The time-constant inverse density. r : TimeFunction, optional The computed memory variable. Returns ------- Adjoint source, wavefield and performance summary. """ # Create a new adjoint source and receiver symbol srca = srca or PointSource(name='srca', grid=self.model.grid, time_range=self.geometry.time_axis, coordinates=self.geometry.src_positions) if self.time_order == 1: va = va or VectorTimeFunction(name="va", grid=self.model.grid, time_order=self.time_order, space_order=self.space_order) kwargs.update({k.name: k for k in va}) pa = pa or TimeFunction(name="pa", grid=self.model.grid, time_order=self.time_order, space_order=self.space_order, staggered=NODE) # Memory variable: r = r or TimeFunction(name="r", grid=self.model.grid, time_order=self.time_order, space_order=self.space_order, staggered=NODE) b = b or self.model.b qp = qp or self.model.qp # Pick vp from model unless explicitly provided vp = vp or self.model.vp # Execute operator and return wavefield and receiver data if self.kernel == 'sls': # Execute operator and return wavefield and receiver data # With Memory variable summary = self.op_adj().apply(src=srca, rec=rec, pa=pa, r=r, b=b, vp=vp, qp=qp, dt=kwargs.pop('dt', self.dt), **kwargs) else: summary = self.op_adj().apply(src=srca, rec=rec, pa=pa, vp=vp, b=b, qp=qp, dt=kwargs.pop('dt', self.dt), **kwargs) return srca, pa, va, summary
[ 6738, 1614, 10094, 1330, 20650, 7575, 22203, 11, 3862, 22203, 11, 399, 16820, 198, 6738, 1614, 10094, 13, 31391, 1330, 16155, 1143, 62, 76, 2788, 198, 6738, 6096, 13, 325, 1042, 291, 1330, 6252, 7416, 198, 6738, 6096, 13, 325, 1042, 291, 13, 4703, 1073, 330, 21618, 13, 3575, 2024, 1330, 357, 39746, 18843, 1352, 11, 1215, 73, 1563, 18843, 1352, 8, 628, 198, 220, 220, 220, 825, 9224, 1563, 7, 944, 11, 664, 11, 12351, 64, 28, 14202, 11, 46935, 28, 14202, 11, 14187, 28, 14202, 11, 410, 79, 28, 14202, 11, 10662, 79, 28, 14202, 11, 275, 28, 14202, 11, 374, 28, 14202, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1215, 73, 1563, 38591, 2163, 326, 8075, 262, 3306, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 5563, 329, 2491, 281, 9224, 1563, 38591, 10088, 13, 628, 220, 220, 220, 220, 220, 220, 220, 40117, 198, 220, 220, 220, 220, 220, 220, 220, 24200, 438, 198, 220, 220, 220, 220, 220, 220, 220, 664, 1058, 1338, 17208, 7575, 22203, 393, 7177, 12, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 9733, 1366, 13, 4222, 3465, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 777, 719, 355, 262, 2723, 3381, 287, 262, 9224, 1563, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 12351, 64, 1058, 1338, 17208, 7575, 22203, 393, 7177, 12, 2339, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 7186, 1366, 329, 262, 39555, 515, 379, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2656, 2723, 4067, 13, 198, 220, 220, 220, 220, 220, 220, 220, 46935, 1058, 20650, 7575, 22203, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 29231, 18758, 15432, 13, 198, 220, 220, 220, 220, 220, 220, 220, 14187, 1058, 3862, 22203, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41835, 262, 29231, 6769, 3245, 13, 198, 220, 220, 220, 220, 220, 220, 220, 410, 79, 1058, 15553, 393, 12178, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 640, 12, 9979, 415, 15432, 13, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 79, 1058, 15553, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 350, 12, 19204, 3081, 5766, 13, 198, 220, 220, 220, 220, 220, 220, 220, 275, 1058, 15553, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 640, 12, 9979, 415, 34062, 12109, 13, 198, 220, 220, 220, 220, 220, 220, 220, 374, 1058, 3862, 22203, 11, 11902, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 383, 29231, 4088, 7885, 13, 628, 220, 220, 220, 220, 220, 220, 220, 16409, 198, 220, 220, 220, 220, 220, 220, 220, 35656, 198, 220, 220, 220, 220, 220, 220, 220, 1215, 73, 1563, 2723, 11, 6769, 3245, 290, 2854, 10638, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 257, 649, 9224, 1563, 2723, 290, 9733, 6194, 198, 220, 220, 220, 220, 220, 220, 220, 12351, 64, 796, 12351, 64, 393, 6252, 7416, 7, 3672, 11639, 10677, 64, 3256, 10706, 28, 944, 13, 19849, 13, 25928, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 62, 9521, 28, 944, 13, 469, 15748, 13, 2435, 62, 22704, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22715, 28, 944, 13, 469, 15748, 13, 10677, 62, 1930, 1756, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 2435, 62, 2875, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 46935, 796, 46935, 393, 20650, 7575, 22203, 7, 3672, 2625, 6862, 1600, 10706, 28, 944, 13, 19849, 13, 25928, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 62, 2875, 28, 944, 13, 2435, 62, 2875, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2272, 62, 2875, 28, 944, 13, 13200, 62, 2875, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 13, 19119, 15090, 74, 13, 3672, 25, 479, 329, 479, 287, 46935, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 14187, 796, 14187, 393, 3862, 22203, 7, 3672, 2625, 8957, 1600, 10706, 28, 944, 13, 19849, 13, 25928, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 640, 62, 2875, 28, 944, 13, 2435, 62, 2875, 11, 2272, 62, 2875, 28, 944, 13, 13200, 62, 2875, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48480, 28, 45, 16820, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 14059, 7885, 25, 198, 220, 220, 220, 220, 220, 220, 220, 374, 796, 374, 393, 3862, 22203, 7, 3672, 2625, 81, 1600, 10706, 28, 944, 13, 19849, 13, 25928, 11, 640, 62, 2875, 28, 944, 13, 2435, 62, 2875, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2272, 62, 2875, 28, 944, 13, 13200, 62, 2875, 11, 48480, 28, 45, 16820, 8, 628, 220, 220, 220, 220, 220, 220, 220, 275, 796, 275, 393, 2116, 13, 19849, 13, 65, 198, 220, 220, 220, 220, 220, 220, 220, 10662, 79, 796, 10662, 79, 393, 2116, 13, 19849, 13, 80, 79, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 12346, 410, 79, 422, 2746, 4556, 11777, 2810, 198, 220, 220, 220, 220, 220, 220, 220, 410, 79, 796, 410, 79, 393, 2116, 13, 19849, 13, 36133, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 8393, 1133, 10088, 290, 1441, 6769, 3245, 290, 9733, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 33885, 6624, 705, 6649, 82, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8393, 1133, 10088, 290, 1441, 6769, 3245, 290, 9733, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2080, 14059, 7885, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10638, 796, 2116, 13, 404, 62, 41255, 22446, 39014, 7, 10677, 28, 10677, 64, 11, 664, 28, 8344, 11, 14187, 28, 8957, 11, 374, 28, 81, 11, 275, 28, 65, 11, 410, 79, 28, 36133, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10662, 79, 28, 80, 79, 11, 288, 83, 28, 46265, 22046, 13, 12924, 10786, 28664, 3256, 2116, 13, 28664, 828, 12429, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10638, 796, 2116, 13, 404, 62, 41255, 22446, 39014, 7, 10677, 28, 10677, 64, 11, 664, 28, 8344, 11, 14187, 28, 8957, 11, 410, 79, 28, 36133, 11, 275, 28, 65, 11, 10662, 79, 28, 80, 79, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 288, 83, 28, 46265, 22046, 13, 12924, 10786, 28664, 3256, 2116, 13, 28664, 828, 12429, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 12351, 64, 11, 14187, 11, 46935, 11, 10638, 198 ]
2.109987
1,482
import pandas as pd import os from tqdm import tqdm from collections import defaultdict from mlxtend.preprocessing import TransactionEncoder from mlxtend.frequent_patterns import apriori dataPath = "data/static" itemSetList = [] if __name__ == '__main__': dataInit() loadDataSet() df = myApriori() frequent_itemsets = apriori(df, min_support=0.0035, use_colnames=True) frequent_itemsets['length'] = frequent_itemsets['itemsets'].apply(lambda x: len(x)) print(frequent_itemsets[(frequent_itemsets['length'] >= 2)])
[ 11748, 19798, 292, 355, 279, 67, 198, 11748, 28686, 198, 6738, 256, 80, 36020, 1330, 256, 80, 36020, 198, 6738, 17268, 1330, 4277, 11600, 198, 6738, 25962, 742, 437, 13, 3866, 36948, 1330, 45389, 27195, 12342, 198, 6738, 25962, 742, 437, 13, 69, 46018, 62, 33279, 82, 1330, 2471, 7701, 72, 198, 198, 7890, 15235, 796, 366, 7890, 14, 12708, 1, 198, 9186, 7248, 8053, 796, 17635, 628, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1366, 31768, 3419, 198, 220, 220, 220, 3440, 6601, 7248, 3419, 198, 220, 220, 220, 47764, 796, 616, 32, 3448, 10145, 3419, 198, 220, 220, 220, 10792, 62, 23814, 1039, 796, 2471, 7701, 72, 7, 7568, 11, 949, 62, 11284, 28, 15, 13, 405, 2327, 11, 779, 62, 4033, 14933, 28, 17821, 8, 198, 220, 220, 220, 10792, 62, 23814, 1039, 17816, 13664, 20520, 796, 10792, 62, 23814, 1039, 17816, 23814, 1039, 6, 4083, 39014, 7, 50033, 2124, 25, 18896, 7, 87, 4008, 198, 220, 220, 220, 3601, 7, 69, 46018, 62, 23814, 1039, 58, 7, 69, 46018, 62, 23814, 1039, 17816, 13664, 20520, 18189, 362, 8, 12962, 198 ]
2.804124
194
import os from tonclient.client import TonClient from tonclient.types import Abi, CallSet, Signer, ClientConfig, \ ParamsOfEncodeMessage, ParamsOfProcessMessage BASE_DIR = os.path.dirname(__file__) SAMPLES_DIR = os.path.join(BASE_DIR, 'samples') GIVER_ADDRESS = '0:f5c2510bfe407363cb1db6b9d7bc1184a05f8b343aeaa828189c580e8569ee23' client_config = ClientConfig() client_config.network.endpoints = ['https://tonos.freeton.surf'] async_core_client = TonClient(config=client_config) sync_core_client = TonClient(config=client_config, is_core_async=False)
[ 11748, 28686, 198, 198, 6738, 5680, 16366, 13, 16366, 1330, 16859, 11792, 198, 6738, 5680, 16366, 13, 19199, 1330, 2275, 72, 11, 4889, 7248, 11, 5865, 263, 11, 20985, 16934, 11, 3467, 198, 220, 220, 220, 2547, 4105, 5189, 4834, 8189, 12837, 11, 2547, 4105, 5189, 18709, 12837, 198, 198, 33, 11159, 62, 34720, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 834, 7753, 834, 8, 198, 49302, 6489, 1546, 62, 34720, 796, 28686, 13, 6978, 13, 22179, 7, 33, 11159, 62, 34720, 11, 705, 82, 12629, 11537, 198, 38, 38757, 62, 2885, 7707, 7597, 796, 705, 15, 25, 69, 20, 66, 1495, 940, 65, 5036, 30120, 35447, 21101, 16, 9945, 21, 65, 24, 67, 22, 15630, 1157, 5705, 64, 2713, 69, 23, 65, 32118, 3609, 7252, 23, 2078, 23362, 66, 39322, 68, 5332, 3388, 1453, 1954, 6, 198, 198, 16366, 62, 11250, 796, 20985, 16934, 3419, 198, 16366, 62, 11250, 13, 27349, 13, 437, 13033, 796, 37250, 5450, 1378, 1122, 418, 13, 69, 2871, 261, 13, 11793, 69, 20520, 198, 292, 13361, 62, 7295, 62, 16366, 796, 16859, 11792, 7, 11250, 28, 16366, 62, 11250, 8, 198, 27261, 62, 7295, 62, 16366, 796, 16859, 11792, 7, 11250, 28, 16366, 62, 11250, 11, 318, 62, 7295, 62, 292, 13361, 28, 25101, 8, 628, 198 ]
2.616822
214
from kajiki import i18n from flask import request from flask_kajiki import render_template # N. B. settting i18n.gettext would affect tests from all modules, # so we test for request path that only functions from this module could set i18n.gettext = gettext def test_does_translations(app): """Callback interface is able to inject Translator filter""" with app.test_request_context(path='/test_i18n'): rendered = render_template('i18n.html') # TODO DOCTYPE; see also render_args expected = '<p>HELLO!</p>' assert rendered == expected
[ 6738, 479, 1228, 5580, 1330, 1312, 1507, 77, 198, 6738, 42903, 1330, 2581, 198, 6738, 42903, 62, 74, 1228, 5580, 1330, 8543, 62, 28243, 628, 198, 2, 399, 13, 347, 13, 2970, 889, 1312, 1507, 77, 13, 1136, 5239, 561, 2689, 5254, 422, 477, 13103, 11, 198, 2, 523, 356, 1332, 329, 2581, 3108, 326, 691, 5499, 422, 428, 8265, 714, 900, 198, 72, 1507, 77, 13, 1136, 5239, 796, 651, 5239, 628, 198, 4299, 1332, 62, 22437, 62, 7645, 49905, 7, 1324, 2599, 198, 220, 220, 220, 37227, 47258, 7071, 318, 1498, 284, 8677, 3602, 41880, 8106, 37811, 198, 220, 220, 220, 351, 598, 13, 9288, 62, 25927, 62, 22866, 7, 6978, 11639, 14, 9288, 62, 72, 1507, 77, 6, 2599, 628, 220, 220, 220, 220, 220, 220, 220, 15111, 796, 8543, 62, 28243, 10786, 72, 1507, 77, 13, 6494, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 16926, 46, 8410, 4177, 56, 11401, 26, 766, 635, 8543, 62, 22046, 198, 220, 220, 220, 220, 220, 220, 220, 2938, 796, 705, 27, 79, 29, 13909, 3069, 46, 0, 3556, 79, 29, 6, 628, 220, 220, 220, 220, 220, 220, 220, 6818, 15111, 6624, 2938, 198 ]
2.929293
198
import numpy as np import torch import torch.nn as nn import torch.nn.functional as F from mmcv.cnn import ConvModule, build_upsample_layer from mmcv.ops import Conv2d from mmcv.ops.carafe import CARAFEPack from mmcv.runner import auto_fp16, force_fp32 from torch.nn.modules.utils import _pair from mmdet.core import mask_target from mmdet.models.builder import HEADS, build_loss BYTES_PER_FLOAT = 4 # TODO: This memory limit may be too much or too little. It would be better to # determine it based on available resources. GPU_MEM_LIMIT = 1024**3 # 1 GB memory limit def _do_paste_mask(masks, boxes, img_h, img_w, skip_empty=True): """Paste instance masks acoording to boxes. This implementation is modified from https://github.com/facebookresearch/detectron2/ Args: masks (Tensor): N, 1, H, W boxes (Tensor): N, 4 img_h (int): Height of the image to be pasted. img_w (int): Width of the image to be pasted. skip_empty (bool): Only paste masks within the region that tightly bound all boxes, and returns the results this region only. An important optimization for CPU. Returns: tuple: (Tensor, tuple). The first item is mask tensor, the second one is the slice object. If skip_empty == False, the whole image will be pasted. It will return a mask of shape (N, img_h, img_w) and an empty tuple. If skip_empty == True, only area around the mask will be pasted. A mask of shape (N, h', w') and its start and end coordinates in the original image will be returned. """ # On GPU, paste all masks together (up to chunk size) # by using the entire image to sample the masks # Compared to pasting them one by one, # this has more operations but is faster on COCO-scale dataset. device = masks.device if skip_empty: x0_int, y0_int = torch.clamp( boxes.min(dim=0).values.floor()[:2] - 1, min=0).to(dtype=torch.int32) x1_int = torch.clamp( boxes[:, 2].max().ceil() + 1, max=img_w).to(dtype=torch.int32) y1_int = torch.clamp( boxes[:, 3].max().ceil() + 1, max=img_h).to(dtype=torch.int32) else: x0_int, y0_int = 0, 0 x1_int, y1_int = img_w, img_h x0, y0, x1, y1 = torch.split(boxes, 1, dim=1) # each is Nx1 N = masks.shape[0] img_y = torch.arange( y0_int, y1_int, device=device, dtype=torch.float32) + 0.5 img_x = torch.arange( x0_int, x1_int, device=device, dtype=torch.float32) + 0.5 img_y = (img_y - y0) / (y1 - y0) * 2 - 1 img_x = (img_x - x0) / (x1 - x0) * 2 - 1 # img_x, img_y have shapes (N, w), (N, h) if torch.isinf(img_x).any(): inds = torch.where(torch.isinf(img_x)) img_x[inds] = 0 if torch.isinf(img_y).any(): inds = torch.where(torch.isinf(img_y)) img_y[inds] = 0 gx = img_x[:, None, :].expand(N, img_y.size(1), img_x.size(1)) gy = img_y[:, :, None].expand(N, img_y.size(1), img_x.size(1)) grid = torch.stack([gx, gy], dim=3) img_masks = F.grid_sample( masks.to(dtype=torch.float32), grid, align_corners=False) if skip_empty: return img_masks[:, 0], (slice(y0_int, y1_int), slice(x0_int, x1_int)) else: return img_masks[:, 0], ()
[ 11748, 299, 32152, 355, 45941, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 376, 198, 6738, 8085, 33967, 13, 66, 20471, 1330, 34872, 26796, 11, 1382, 62, 4739, 1403, 62, 29289, 198, 6738, 8085, 33967, 13, 2840, 1330, 34872, 17, 67, 198, 6738, 8085, 33967, 13, 2840, 13, 7718, 8635, 1330, 17368, 8579, 8905, 441, 198, 6738, 8085, 33967, 13, 16737, 1330, 8295, 62, 46428, 1433, 11, 2700, 62, 46428, 2624, 198, 6738, 28034, 13, 20471, 13, 18170, 13, 26791, 1330, 4808, 24874, 198, 198, 6738, 8085, 15255, 13, 7295, 1330, 9335, 62, 16793, 198, 6738, 8085, 15255, 13, 27530, 13, 38272, 1330, 39837, 50, 11, 1382, 62, 22462, 198, 198, 17513, 51, 1546, 62, 18973, 62, 3697, 46, 1404, 796, 604, 198, 2, 16926, 46, 25, 770, 4088, 4179, 743, 307, 1165, 881, 393, 1165, 1310, 13, 632, 561, 307, 1365, 284, 198, 2, 5004, 340, 1912, 319, 1695, 4133, 13, 198, 33346, 62, 44, 3620, 62, 43, 3955, 2043, 796, 28119, 1174, 18, 220, 1303, 352, 13124, 4088, 4179, 628, 198, 198, 4299, 4808, 4598, 62, 34274, 62, 27932, 7, 5356, 591, 11, 10559, 11, 33705, 62, 71, 11, 33705, 62, 86, 11, 14267, 62, 28920, 28, 17821, 2599, 198, 220, 220, 220, 37227, 47, 4594, 4554, 20680, 936, 78, 1284, 284, 10559, 13, 628, 220, 220, 220, 770, 7822, 318, 9518, 422, 198, 220, 220, 220, 3740, 1378, 12567, 13, 785, 14, 19024, 34033, 14, 15255, 478, 1313, 17, 14, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 20680, 357, 51, 22854, 2599, 399, 11, 352, 11, 367, 11, 370, 198, 220, 220, 220, 220, 220, 220, 220, 10559, 357, 51, 22854, 2599, 399, 11, 604, 198, 220, 220, 220, 220, 220, 220, 220, 33705, 62, 71, 357, 600, 2599, 27280, 286, 262, 2939, 284, 307, 1613, 276, 13, 198, 220, 220, 220, 220, 220, 220, 220, 33705, 62, 86, 357, 600, 2599, 38807, 286, 262, 2939, 284, 307, 1613, 276, 13, 198, 220, 220, 220, 220, 220, 220, 220, 14267, 62, 28920, 357, 30388, 2599, 5514, 17008, 20680, 1626, 262, 3814, 326, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17707, 5421, 477, 10559, 11, 290, 5860, 262, 2482, 428, 3814, 691, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1052, 1593, 23989, 329, 9135, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 46545, 25, 357, 51, 22854, 11, 46545, 737, 383, 717, 2378, 318, 9335, 11192, 273, 11, 262, 1218, 530, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 318, 262, 16416, 2134, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 14267, 62, 28920, 6624, 10352, 11, 262, 2187, 2939, 481, 307, 1613, 276, 13, 632, 481, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 257, 9335, 286, 5485, 357, 45, 11, 33705, 62, 71, 11, 33705, 62, 86, 8, 290, 281, 6565, 46545, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1002, 14267, 62, 28920, 6624, 6407, 11, 691, 1989, 1088, 262, 9335, 481, 307, 1613, 276, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 317, 9335, 286, 5485, 357, 45, 11, 289, 3256, 266, 11537, 290, 663, 923, 290, 886, 22715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 287, 262, 2656, 2939, 481, 307, 4504, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 1550, 11362, 11, 17008, 477, 20680, 1978, 357, 929, 284, 16058, 2546, 8, 198, 220, 220, 220, 1303, 416, 1262, 262, 2104, 2939, 284, 6291, 262, 20680, 198, 220, 220, 220, 1303, 27492, 284, 1613, 278, 606, 530, 416, 530, 11, 198, 220, 220, 220, 1303, 428, 468, 517, 4560, 475, 318, 5443, 319, 327, 4503, 46, 12, 9888, 27039, 13, 198, 220, 220, 220, 3335, 796, 20680, 13, 25202, 198, 220, 220, 220, 611, 14267, 62, 28920, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 15, 62, 600, 11, 331, 15, 62, 600, 796, 28034, 13, 565, 696, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10559, 13, 1084, 7, 27740, 28, 15, 737, 27160, 13, 28300, 3419, 58, 25, 17, 60, 532, 352, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 949, 28, 15, 737, 1462, 7, 67, 4906, 28, 13165, 354, 13, 600, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 16, 62, 600, 796, 28034, 13, 565, 696, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10559, 58, 45299, 362, 4083, 9806, 22446, 344, 346, 3419, 1343, 352, 11, 3509, 28, 9600, 62, 86, 737, 1462, 7, 67, 4906, 28, 13165, 354, 13, 600, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 331, 16, 62, 600, 796, 28034, 13, 565, 696, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10559, 58, 45299, 513, 4083, 9806, 22446, 344, 346, 3419, 1343, 352, 11, 3509, 28, 9600, 62, 71, 737, 1462, 7, 67, 4906, 28, 13165, 354, 13, 600, 2624, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 15, 62, 600, 11, 331, 15, 62, 600, 796, 657, 11, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 16, 62, 600, 11, 331, 16, 62, 600, 796, 33705, 62, 86, 11, 33705, 62, 71, 198, 220, 220, 220, 2124, 15, 11, 331, 15, 11, 2124, 16, 11, 331, 16, 796, 28034, 13, 35312, 7, 29305, 11, 352, 11, 5391, 28, 16, 8, 220, 1303, 1123, 318, 399, 87, 16, 628, 220, 220, 220, 399, 796, 20680, 13, 43358, 58, 15, 60, 628, 220, 220, 220, 33705, 62, 88, 796, 28034, 13, 283, 858, 7, 198, 220, 220, 220, 220, 220, 220, 220, 331, 15, 62, 600, 11, 331, 16, 62, 600, 11, 3335, 28, 25202, 11, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 8, 1343, 657, 13, 20, 198, 220, 220, 220, 33705, 62, 87, 796, 28034, 13, 283, 858, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 15, 62, 600, 11, 2124, 16, 62, 600, 11, 3335, 28, 25202, 11, 288, 4906, 28, 13165, 354, 13, 22468, 2624, 8, 1343, 657, 13, 20, 198, 220, 220, 220, 33705, 62, 88, 796, 357, 9600, 62, 88, 532, 331, 15, 8, 1220, 357, 88, 16, 532, 331, 15, 8, 1635, 362, 532, 352, 198, 220, 220, 220, 33705, 62, 87, 796, 357, 9600, 62, 87, 532, 2124, 15, 8, 1220, 357, 87, 16, 532, 2124, 15, 8, 1635, 362, 532, 352, 198, 220, 220, 220, 1303, 33705, 62, 87, 11, 33705, 62, 88, 423, 15268, 357, 45, 11, 266, 828, 357, 45, 11, 289, 8, 198, 220, 220, 220, 611, 28034, 13, 271, 10745, 7, 9600, 62, 87, 737, 1092, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 773, 82, 796, 28034, 13, 3003, 7, 13165, 354, 13, 271, 10745, 7, 9600, 62, 87, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 33705, 62, 87, 58, 521, 82, 60, 796, 657, 198, 220, 220, 220, 611, 28034, 13, 271, 10745, 7, 9600, 62, 88, 737, 1092, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 773, 82, 796, 28034, 13, 3003, 7, 13165, 354, 13, 271, 10745, 7, 9600, 62, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 33705, 62, 88, 58, 521, 82, 60, 796, 657, 628, 220, 220, 220, 308, 87, 796, 33705, 62, 87, 58, 45299, 6045, 11, 1058, 4083, 11201, 392, 7, 45, 11, 33705, 62, 88, 13, 7857, 7, 16, 828, 33705, 62, 87, 13, 7857, 7, 16, 4008, 198, 220, 220, 220, 21486, 796, 33705, 62, 88, 58, 45299, 1058, 11, 6045, 4083, 11201, 392, 7, 45, 11, 33705, 62, 88, 13, 7857, 7, 16, 828, 33705, 62, 87, 13, 7857, 7, 16, 4008, 198, 220, 220, 220, 10706, 796, 28034, 13, 25558, 26933, 70, 87, 11, 21486, 4357, 5391, 28, 18, 8, 628, 220, 220, 220, 33705, 62, 5356, 591, 796, 376, 13, 25928, 62, 39873, 7, 198, 220, 220, 220, 220, 220, 220, 220, 20680, 13, 1462, 7, 67, 4906, 28, 13165, 354, 13, 22468, 2624, 828, 10706, 11, 10548, 62, 20772, 364, 28, 25101, 8, 628, 220, 220, 220, 611, 14267, 62, 28920, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 33705, 62, 5356, 591, 58, 45299, 657, 4357, 357, 48369, 7, 88, 15, 62, 600, 11, 331, 16, 62, 600, 828, 16416, 7, 87, 15, 62, 600, 11, 2124, 16, 62, 600, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 33705, 62, 5356, 591, 58, 45299, 657, 4357, 7499, 198 ]
2.26298
1,483
# -*- coding:utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function
[ 2, 532, 9, 12, 19617, 25, 40477, 12, 23, 532, 9, 12, 201, 198, 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 201, 198, 6738, 11593, 37443, 834, 1330, 7297, 201, 198, 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 201, 198, 201, 198, 201, 198 ]
3.043478
46
import torch.nn as nn import torch as torch import math import torch.utils.model_zoo as model_zoo ########################################################### # # U-ResNet # U-net witih ResNet modules # # Semantic segmentation network used by MicroBooNE # to label track/shower pixels # # resnet implementation from pytorch.torchvision module # U-net from (cite) # # meant to be copy of caffe version # ########################################################### def conv3x3(in_planes, out_planes, stride=1): """3x3 convolution with padding""" return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride,padding=1, bias=False)
[ 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 355, 28034, 198, 11748, 10688, 198, 11748, 28034, 13, 26791, 13, 19849, 62, 89, 2238, 355, 2746, 62, 89, 2238, 198, 198, 29113, 14468, 7804, 21017, 198, 2, 198, 2, 471, 12, 4965, 7934, 198, 2, 471, 12, 3262, 20868, 4449, 1874, 7934, 13103, 198, 2, 198, 2, 12449, 5109, 10618, 341, 3127, 973, 416, 4527, 46120, 12161, 198, 2, 284, 6167, 2610, 14, 1477, 789, 17848, 198, 2, 198, 2, 581, 3262, 7822, 422, 12972, 13165, 354, 13, 13165, 354, 10178, 8265, 198, 2, 471, 12, 3262, 422, 357, 66, 578, 8, 198, 2, 198, 2, 4001, 284, 307, 4866, 286, 21121, 2196, 198, 2, 220, 198, 29113, 14468, 7804, 21017, 628, 198, 4299, 3063, 18, 87, 18, 7, 259, 62, 22587, 11, 503, 62, 22587, 11, 33769, 28, 16, 2599, 198, 220, 220, 220, 37227, 18, 87, 18, 3063, 2122, 351, 24511, 37811, 198, 220, 220, 220, 1441, 299, 77, 13, 3103, 85, 17, 67, 7, 259, 62, 22587, 11, 503, 62, 22587, 11, 9720, 62, 7857, 28, 18, 11, 33769, 28, 2536, 485, 11, 39231, 28, 16, 11, 10690, 28, 25101, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 628, 220, 220, 220, 220, 198, 220, 220, 220, 220, 628, 198 ]
2.978166
229
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. # Copyright 2018 The HuggingFace Inc. team. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import os import random import time import json import math from functools import partial import numpy as np import paddle from paddle.io import DataLoader from args import parse_args import paddlenlp as ppnlp from paddlenlp.data import Pad, Stack, Tuple, Dict from paddlenlp.transformers import BertForQuestionAnswering, BertTokenizer from paddlenlp.transformers import ErnieForQuestionAnswering, ErnieTokenizer from paddlenlp.transformers import ErnieGramForQuestionAnswering, ErnieGramTokenizer from paddlenlp.transformers import RobertaForQuestionAnswering, RobertaTokenizer from paddlenlp.transformers import LinearDecayWithWarmup from paddlenlp.metrics.squad import squad_evaluate, compute_prediction from paddlenlp.datasets import load_dataset MODEL_CLASSES = { "bert": (BertForQuestionAnswering, BertTokenizer), "ernie": (ErnieForQuestionAnswering, ErnieTokenizer), "ernie_gram": (ErnieGramForQuestionAnswering, ErnieGramTokenizer), "roberta": (RobertaForQuestionAnswering, RobertaTokenizer) } def run(args): paddle.set_device(args.device) if paddle.distributed.get_world_size() > 1: paddle.distributed.init_parallel_env() rank = paddle.distributed.get_rank() task_name = args.task_name.lower() args.model_type = args.model_type.lower() model_class, tokenizer_class = MODEL_CLASSES[args.model_type] tokenizer = tokenizer_class.from_pretrained(args.model_name_or_path) set_seed(args) if rank == 0: if os.path.exists(args.model_name_or_path): print("init checkpoint from %s" % args.model_name_or_path) model = model_class.from_pretrained(args.model_name_or_path) if paddle.distributed.get_world_size() > 1: model = paddle.DataParallel(model) if args.do_train: if args.train_file: train_ds = load_dataset(task_name, data_files=args.train_file) else: train_ds = load_dataset(task_name, splits='train') train_ds.map(prepare_train_features, batched=True) train_batch_sampler = paddle.io.DistributedBatchSampler( train_ds, batch_size=args.batch_size, shuffle=True) train_batchify_fn = lambda samples, fn=Dict({ "input_ids": Pad(axis=0, pad_val=tokenizer.pad_token_id), "token_type_ids": Pad(axis=0, pad_val=tokenizer.pad_token_type_id), "start_positions": Stack(dtype="int64"), "end_positions": Stack(dtype="int64") }): fn(samples) train_data_loader = DataLoader( dataset=train_ds, batch_sampler=train_batch_sampler, collate_fn=train_batchify_fn, return_list=True) num_training_steps = args.max_steps if args.max_steps > 0 else len( train_data_loader) * args.num_train_epochs num_train_epochs = math.ceil(num_training_steps / len(train_data_loader)) lr_scheduler = LinearDecayWithWarmup( args.learning_rate, num_training_steps, args.warmup_proportion) # Generate parameter names needed to perform weight decay. # All bias and LayerNorm parameters are excluded. decay_params = [ p.name for n, p in model.named_parameters() if not any(nd in n for nd in ["bias", "norm"]) ] optimizer = paddle.optimizer.AdamW( learning_rate=lr_scheduler, epsilon=args.adam_epsilon, parameters=model.parameters(), weight_decay=args.weight_decay, apply_decay_param_fun=lambda x: x in decay_params) criterion = CrossEntropyLossForSQuAD() global_step = 0 tic_train = time.time() for epoch in range(num_train_epochs): for step, batch in enumerate(train_data_loader): global_step += 1 input_ids, token_type_ids, start_positions, end_positions = batch logits = model( input_ids=input_ids, token_type_ids=token_type_ids) loss = criterion(logits, (start_positions, end_positions)) if global_step % args.logging_steps == 0: print( "global step %d, epoch: %d, batch: %d, loss: %f, speed: %.2f step/s" % (global_step, epoch + 1, step + 1, loss, args.logging_steps / (time.time() - tic_train))) tic_train = time.time() loss.backward() optimizer.step() lr_scheduler.step() optimizer.clear_grad() if global_step % args.save_steps == 0 or global_step == num_training_steps: if rank == 0: output_dir = os.path.join(args.output_dir, "model_%d" % global_step) if not os.path.exists(output_dir): os.makedirs(output_dir) # need better way to get inner model of DataParallel model_to_save = model._layers if isinstance( model, paddle.DataParallel) else model model_to_save.save_pretrained(output_dir) tokenizer.save_pretrained(output_dir) print('Saving checkpoint to:', output_dir) if global_step == num_training_steps: break if args.do_predict and rank == 0: if args.predict_file: dev_ds = load_dataset(task_name, data_files=args.predict_file) else: dev_ds = load_dataset(task_name, splits='dev') dev_ds.map(prepare_validation_features, batched=True) dev_batch_sampler = paddle.io.BatchSampler( dev_ds, batch_size=args.batch_size, shuffle=False) dev_batchify_fn = lambda samples, fn=Dict({ "input_ids": Pad(axis=0, pad_val=tokenizer.pad_token_id), "token_type_ids": Pad(axis=0, pad_val=tokenizer.pad_token_type_id) }): fn(samples) dev_data_loader = DataLoader( dataset=dev_ds, batch_sampler=dev_batch_sampler, collate_fn=dev_batchify_fn, return_list=True) evaluate(model, dev_data_loader, args) if __name__ == "__main__": args = parse_args() run(args)
[ 2, 15069, 357, 66, 8, 12131, 350, 37382, 47, 37382, 46665, 13, 1439, 6923, 33876, 13, 198, 2, 15069, 2864, 383, 12905, 2667, 32388, 3457, 13, 1074, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 198, 11748, 28686, 198, 11748, 4738, 198, 11748, 640, 198, 11748, 33918, 198, 11748, 10688, 198, 198, 6738, 1257, 310, 10141, 1330, 13027, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 39517, 198, 198, 6738, 39517, 13, 952, 1330, 6060, 17401, 198, 6738, 26498, 1330, 21136, 62, 22046, 198, 198, 11748, 14098, 11925, 34431, 355, 9788, 21283, 79, 198, 198, 6738, 14098, 11925, 34431, 13, 7890, 1330, 15744, 11, 23881, 11, 309, 29291, 11, 360, 713, 198, 6738, 14098, 11925, 34431, 13, 35636, 364, 1330, 22108, 1890, 24361, 2025, 2032, 1586, 11, 22108, 30642, 7509, 198, 6738, 14098, 11925, 34431, 13, 35636, 364, 1330, 5256, 11952, 1890, 24361, 2025, 2032, 1586, 11, 5256, 11952, 30642, 7509, 198, 6738, 14098, 11925, 34431, 13, 35636, 364, 1330, 5256, 11952, 38, 859, 1890, 24361, 2025, 2032, 1586, 11, 5256, 11952, 38, 859, 30642, 7509, 198, 6738, 14098, 11925, 34431, 13, 35636, 364, 1330, 5199, 64, 1890, 24361, 2025, 2032, 1586, 11, 5199, 64, 30642, 7509, 198, 6738, 14098, 11925, 34431, 13, 35636, 364, 1330, 44800, 10707, 323, 3152, 54, 1670, 929, 198, 6738, 14098, 11925, 34431, 13, 4164, 10466, 13, 16485, 324, 1330, 8244, 62, 49786, 11, 24061, 62, 28764, 2867, 198, 6738, 14098, 11925, 34431, 13, 19608, 292, 1039, 1330, 3440, 62, 19608, 292, 316, 198, 198, 33365, 3698, 62, 31631, 1546, 796, 1391, 198, 220, 220, 220, 366, 4835, 1298, 357, 33, 861, 1890, 24361, 2025, 2032, 1586, 11, 22108, 30642, 7509, 828, 198, 220, 220, 220, 366, 1142, 494, 1298, 357, 9139, 11952, 1890, 24361, 2025, 2032, 1586, 11, 5256, 11952, 30642, 7509, 828, 198, 220, 220, 220, 366, 1142, 494, 62, 4546, 1298, 357, 9139, 11952, 38, 859, 1890, 24361, 2025, 2032, 1586, 11, 5256, 11952, 38, 859, 30642, 7509, 828, 198, 220, 220, 220, 366, 305, 4835, 64, 1298, 357, 15924, 8326, 1890, 24361, 2025, 2032, 1586, 11, 5199, 64, 30642, 7509, 8, 198, 92, 628, 628, 198, 198, 4299, 1057, 7, 22046, 2599, 198, 220, 220, 220, 39517, 13, 2617, 62, 25202, 7, 22046, 13, 25202, 8, 198, 220, 220, 220, 611, 39517, 13, 17080, 6169, 13, 1136, 62, 6894, 62, 7857, 3419, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 39517, 13, 17080, 6169, 13, 15003, 62, 1845, 29363, 62, 24330, 3419, 198, 220, 220, 220, 4279, 796, 39517, 13, 17080, 6169, 13, 1136, 62, 43027, 3419, 628, 220, 220, 220, 4876, 62, 3672, 796, 26498, 13, 35943, 62, 3672, 13, 21037, 3419, 198, 220, 220, 220, 26498, 13, 19849, 62, 4906, 796, 26498, 13, 19849, 62, 4906, 13, 21037, 3419, 198, 220, 220, 220, 2746, 62, 4871, 11, 11241, 7509, 62, 4871, 796, 19164, 3698, 62, 31631, 1546, 58, 22046, 13, 19849, 62, 4906, 60, 198, 220, 220, 220, 11241, 7509, 796, 11241, 7509, 62, 4871, 13, 6738, 62, 5310, 13363, 7, 22046, 13, 19849, 62, 3672, 62, 273, 62, 6978, 8, 198, 220, 220, 220, 900, 62, 28826, 7, 22046, 8, 198, 220, 220, 220, 611, 4279, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 28686, 13, 6978, 13, 1069, 1023, 7, 22046, 13, 19849, 62, 3672, 62, 273, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 15003, 26954, 422, 4064, 82, 1, 4064, 26498, 13, 19849, 62, 3672, 62, 273, 62, 6978, 8, 628, 220, 220, 220, 2746, 796, 2746, 62, 4871, 13, 6738, 62, 5310, 13363, 7, 22046, 13, 19849, 62, 3672, 62, 273, 62, 6978, 8, 628, 220, 220, 220, 611, 39517, 13, 17080, 6169, 13, 1136, 62, 6894, 62, 7857, 3419, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2746, 796, 39517, 13, 6601, 10044, 29363, 7, 19849, 8, 628, 220, 220, 220, 611, 26498, 13, 4598, 62, 27432, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 26498, 13, 27432, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4512, 62, 9310, 796, 3440, 62, 19608, 292, 316, 7, 35943, 62, 3672, 11, 1366, 62, 16624, 28, 22046, 13, 27432, 62, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4512, 62, 9310, 796, 3440, 62, 19608, 292, 316, 7, 35943, 62, 3672, 11, 30778, 11639, 27432, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 4512, 62, 9310, 13, 8899, 7, 46012, 533, 62, 27432, 62, 40890, 11, 7365, 1740, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4512, 62, 43501, 62, 37687, 20053, 796, 39517, 13, 952, 13, 20344, 6169, 33, 963, 16305, 20053, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4512, 62, 9310, 11, 15458, 62, 7857, 28, 22046, 13, 43501, 62, 7857, 11, 36273, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 4512, 62, 43501, 1958, 62, 22184, 796, 37456, 8405, 11, 24714, 28, 35, 713, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15414, 62, 2340, 1298, 15744, 7, 22704, 28, 15, 11, 14841, 62, 2100, 28, 30001, 7509, 13, 15636, 62, 30001, 62, 312, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30001, 62, 4906, 62, 2340, 1298, 15744, 7, 22704, 28, 15, 11, 14841, 62, 2100, 28, 30001, 7509, 13, 15636, 62, 30001, 62, 4906, 62, 312, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 9688, 62, 1930, 1756, 1298, 23881, 7, 67, 4906, 2625, 600, 2414, 12340, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 437, 62, 1930, 1756, 1298, 23881, 7, 67, 4906, 2625, 600, 2414, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 2599, 24714, 7, 82, 12629, 8, 628, 220, 220, 220, 220, 220, 220, 220, 4512, 62, 7890, 62, 29356, 796, 6060, 17401, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27039, 28, 27432, 62, 9310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15458, 62, 37687, 20053, 28, 27432, 62, 43501, 62, 37687, 20053, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2927, 378, 62, 22184, 28, 27432, 62, 43501, 1958, 62, 22184, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4868, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 997, 62, 34409, 62, 20214, 796, 26498, 13, 9806, 62, 20214, 611, 26498, 13, 9806, 62, 20214, 1875, 657, 2073, 18896, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4512, 62, 7890, 62, 29356, 8, 1635, 26498, 13, 22510, 62, 27432, 62, 538, 5374, 82, 198, 220, 220, 220, 220, 220, 220, 220, 997, 62, 27432, 62, 538, 5374, 82, 796, 10688, 13, 344, 346, 7, 22510, 62, 34409, 62, 20214, 1220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 18896, 7, 27432, 62, 7890, 62, 29356, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 300, 81, 62, 1416, 704, 18173, 796, 44800, 10707, 323, 3152, 54, 1670, 929, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 40684, 62, 4873, 11, 997, 62, 34409, 62, 20214, 11, 26498, 13, 31975, 929, 62, 1676, 16864, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 2980, 378, 11507, 3891, 2622, 284, 1620, 3463, 22119, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1439, 10690, 290, 34398, 35393, 10007, 389, 15009, 13, 198, 220, 220, 220, 220, 220, 220, 220, 22119, 62, 37266, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 13, 3672, 329, 299, 11, 279, 287, 2746, 13, 13190, 62, 17143, 7307, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 597, 7, 358, 287, 299, 329, 299, 67, 287, 14631, 65, 4448, 1600, 366, 27237, 8973, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 6436, 7509, 796, 39517, 13, 40085, 7509, 13, 23159, 54, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4673, 62, 4873, 28, 14050, 62, 1416, 704, 18173, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 862, 33576, 28, 22046, 13, 324, 321, 62, 538, 18217, 261, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 10007, 28, 19849, 13, 17143, 7307, 22784, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3463, 62, 12501, 323, 28, 22046, 13, 6551, 62, 12501, 323, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4174, 62, 12501, 323, 62, 17143, 62, 12543, 28, 50033, 2124, 25, 2124, 287, 22119, 62, 37266, 8, 198, 220, 220, 220, 220, 220, 220, 220, 34054, 796, 6372, 14539, 28338, 43, 793, 1890, 50, 4507, 2885, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 3298, 62, 9662, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 256, 291, 62, 27432, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 329, 36835, 287, 2837, 7, 22510, 62, 27432, 62, 538, 5374, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 2239, 11, 15458, 287, 27056, 378, 7, 27432, 62, 7890, 62, 29356, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3298, 62, 9662, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 2340, 11, 11241, 62, 4906, 62, 2340, 11, 923, 62, 1930, 1756, 11, 886, 62, 1930, 1756, 796, 15458, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 896, 796, 2746, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 2340, 28, 15414, 62, 2340, 11, 11241, 62, 4906, 62, 2340, 28, 30001, 62, 4906, 62, 2340, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2994, 796, 34054, 7, 6404, 896, 11, 357, 9688, 62, 1930, 1756, 11, 886, 62, 1930, 1756, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3298, 62, 9662, 4064, 26498, 13, 6404, 2667, 62, 20214, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 20541, 2239, 4064, 67, 11, 36835, 25, 4064, 67, 11, 15458, 25, 4064, 67, 11, 2994, 25, 4064, 69, 11, 2866, 25, 4064, 13, 17, 69, 2239, 14, 82, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4064, 357, 20541, 62, 9662, 11, 36835, 1343, 352, 11, 2239, 1343, 352, 11, 2994, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 26498, 13, 6404, 2667, 62, 20214, 1220, 357, 2435, 13, 2435, 3419, 532, 256, 291, 62, 27432, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 291, 62, 27432, 796, 640, 13, 2435, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2994, 13, 1891, 904, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6436, 7509, 13, 9662, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 300, 81, 62, 1416, 704, 18173, 13, 9662, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6436, 7509, 13, 20063, 62, 9744, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3298, 62, 9662, 4064, 26498, 13, 21928, 62, 20214, 6624, 657, 393, 3298, 62, 9662, 6624, 997, 62, 34409, 62, 20214, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 4279, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 15908, 796, 28686, 13, 6978, 13, 22179, 7, 22046, 13, 22915, 62, 15908, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19849, 62, 4, 67, 1, 4064, 3298, 62, 9662, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 22915, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 76, 4335, 17062, 7, 22915, 62, 15908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 761, 1365, 835, 284, 651, 8434, 2746, 286, 6060, 10044, 29363, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2746, 62, 1462, 62, 21928, 796, 2746, 13557, 75, 6962, 611, 318, 39098, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2746, 11, 39517, 13, 6601, 10044, 29363, 8, 2073, 2746, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2746, 62, 1462, 62, 21928, 13, 21928, 62, 5310, 13363, 7, 22915, 62, 15908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 7509, 13, 21928, 62, 5310, 13363, 7, 22915, 62, 15908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 10786, 50, 2703, 26954, 284, 25, 3256, 5072, 62, 15908, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 3298, 62, 9662, 6624, 997, 62, 34409, 62, 20214, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 611, 26498, 13, 4598, 62, 79, 17407, 290, 4279, 6624, 657, 25, 628, 220, 220, 220, 220, 220, 220, 220, 611, 26498, 13, 79, 17407, 62, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1614, 62, 9310, 796, 3440, 62, 19608, 292, 316, 7, 35943, 62, 3672, 11, 1366, 62, 16624, 28, 22046, 13, 79, 17407, 62, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1614, 62, 9310, 796, 3440, 62, 19608, 292, 316, 7, 35943, 62, 3672, 11, 30778, 11639, 7959, 11537, 628, 220, 220, 220, 220, 220, 220, 220, 1614, 62, 9310, 13, 8899, 7, 46012, 533, 62, 12102, 341, 62, 40890, 11, 7365, 1740, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1614, 62, 43501, 62, 37687, 20053, 796, 39517, 13, 952, 13, 33, 963, 16305, 20053, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1614, 62, 9310, 11, 15458, 62, 7857, 28, 22046, 13, 43501, 62, 7857, 11, 36273, 28, 25101, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1614, 62, 43501, 1958, 62, 22184, 796, 37456, 8405, 11, 24714, 28, 35, 713, 15090, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 15414, 62, 2340, 1298, 15744, 7, 22704, 28, 15, 11, 14841, 62, 2100, 28, 30001, 7509, 13, 15636, 62, 30001, 62, 312, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 30001, 62, 4906, 62, 2340, 1298, 15744, 7, 22704, 28, 15, 11, 14841, 62, 2100, 28, 30001, 7509, 13, 15636, 62, 30001, 62, 4906, 62, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 2599, 24714, 7, 82, 12629, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1614, 62, 7890, 62, 29356, 796, 6060, 17401, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27039, 28, 7959, 62, 9310, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 15458, 62, 37687, 20053, 28, 7959, 62, 43501, 62, 37687, 20053, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2927, 378, 62, 22184, 28, 7959, 62, 43501, 1958, 62, 22184, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 62, 4868, 28, 17821, 8, 628, 220, 220, 220, 220, 220, 220, 220, 13446, 7, 19849, 11, 1614, 62, 7890, 62, 29356, 11, 26498, 8, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 26498, 796, 21136, 62, 22046, 3419, 198, 220, 220, 220, 1057, 7, 22046, 8, 198 ]
2.192726
3,217
# Credit to https://medium.com/emergent-future/simple-reinforcement-learning-with-tensorflow-part-0-q-learning-with-tables-and-neural-networks-d195264329d0 import gym import tensorflow as tf import numpy as np import matplotlib.pyplot as plt env = gym.make('FrozenLake-v0') # NEURAL NETWORK IMPLEMENTATION tf.reset_default_graph() # Feature vector for current state representation input1 = tf.placeholder(shape=[1, env.observation_space.n], dtype=tf.float32) # tf.Variable(<initial-value>, name=<optional-name>) # tf.random_uniform(shape, minval=0, maxval=None, dtype=tf.float32, seed=None, name=None) # Weighting W vector in range 0 - 0.01 (like the way Andrew Ng did with *0.01 W = tf.Variable(tf.random_uniform([env.observation_space.n, env.action_space.n], 0, 0.01)) # Qout with shape [1, env.action_space.n] - Action state value for Q[s, a] with every a available at a state Qout = tf.matmul(input1, W) # Greedy action at a state predict = tf.argmax(Qout, axis=1) # Feature vector for next state representation nextQ = tf.placeholder(shape=[1, env.action_space.n], dtype=tf.float32) # Entropy loss loss = tf.reduce_sum(tf.square(Qout - nextQ)) trainer = tf.train.GradientDescentOptimizer(learning_rate=0.1) updateModel = trainer.minimize(loss) # TRAIN THE NETWORK init = tf.global_variables_initializer() # Set learning parameters y = 0.99 e = 0.1 number_episodes = 2000 # List to store total rewards and steps per episode jList = [] rList = [] with tf.Session() as sess: sess.run(init) for i in range(number_episodes): print("Episode #{} is running!".format(i)) # First state s = env.reset() rAll = 0 d = False j = 0 # Q network while j < 200: # or While not d: j += 1 # Choose action by epsilon (e) greedy # print("s = ", s," --> Identity s:s+1: ", np.identity(env.observation_space.n)[s:s+1]) # s = 0 --> Identity s: s + 1: [[1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]] # s = 1 --> Identity s: s + 1: [[0. 1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]] # Identity [s:s+1] is a one-hot vector # Therefore W is the actual Q value a, allQ = sess.run([predict, Qout], feed_dict={input1: np.identity(env.observation_space.n)[s:s+1]}) if np.random.rand(1) < e: a[0] = env.action_space.sample() s1, r, d, _ = env.step(a[0]) # Obtain next state Q value by feeding the new state throughout the network Q1 = sess.run(Qout, feed_dict={input1: np.identity(env.observation_space.n)[s1:s1+1]}) maxQ1 = np.max(Q1) targetQ = allQ targetQ[0, a[0]] = r + y * maxQ1 # Train our network using target and predicted Q values _, W1 = sess.run([updateModel, W], feed_dict={input1: np.identity(env.observation_space.n)[s:s+1], nextQ: targetQ}) rAll += r s = s1 if d: e = 1./((i/50) + 10) break jList.append(j) rList.append(rAll) env.close() plt.figure() plt.plot(rList, label="Return - Q Learning") plt.show() plt.figure() plt.plot(jList, label="Steps - Q Learning") plt.show() # ------------------------------------------------------------------------- # TABULAR IMPLEMENTATION # # # Set learning parameters # lr = 0.8 # y = 0.95 # number_episodes = 20000 # # # Initial table with all zeros # Q = np.zeros([env.observation_space.n, env.action_space.n]) # # # List of reward and steps per episode # rList = [] # for i in range (number_episodes): # print("Episode #{} is running!".format(i)) # s = env.reset() # rAll = 0 # d = False # j = 0 # while j < 99: # j += 1 # # Choose an action by greedily (with noise) picking from Q table # # Because of the noise, it is epsilon-greedy with epsilon decreasing over time # a = np.argmax(Q[s, :] + np.random.rand(1, env.action_space.n)*(1./(i + 1))) # s1, r, d, _ = env.step(a) # # env.render() # # # Update Q table with new knowledge # Q[s, a] = Q[s, a] + lr * (r + y * np.max(Q[s1, :]) - Q[s, a]) # rAll += r # s = s1 # if d: # break # rList.append(rAll)
[ 2, 10504, 284, 3740, 1378, 24132, 13, 785, 14, 368, 6422, 298, 12, 37443, 14, 36439, 12, 260, 259, 13442, 12, 40684, 12, 4480, 12, 83, 22854, 11125, 12, 3911, 12, 15, 12, 80, 12, 40684, 12, 4480, 12, 83, 2977, 12, 392, 12, 710, 1523, 12, 3262, 5225, 12, 67, 22186, 2075, 3559, 1959, 67, 15, 198, 198, 11748, 11550, 198, 11748, 11192, 273, 11125, 355, 48700, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 628, 198, 24330, 796, 11550, 13, 15883, 10786, 37, 42005, 43035, 12, 85, 15, 11537, 198, 198, 2, 10635, 4261, 1847, 49791, 30023, 2538, 10979, 6234, 198, 27110, 13, 42503, 62, 12286, 62, 34960, 3419, 198, 198, 2, 27018, 15879, 329, 1459, 1181, 10552, 198, 15414, 16, 796, 48700, 13, 5372, 13829, 7, 43358, 41888, 16, 11, 17365, 13, 672, 3168, 341, 62, 13200, 13, 77, 4357, 288, 4906, 28, 27110, 13, 22468, 2624, 8, 198, 198, 2, 48700, 13, 43015, 7, 27, 36733, 12, 8367, 22330, 1438, 28, 27, 25968, 12, 3672, 43734, 198, 2, 48700, 13, 25120, 62, 403, 6933, 7, 43358, 11, 949, 2100, 28, 15, 11, 3509, 2100, 28, 14202, 11, 288, 4906, 28, 27110, 13, 22468, 2624, 11, 9403, 28, 14202, 11, 1438, 28, 14202, 8, 198, 198, 2, 14331, 278, 370, 15879, 287, 2837, 657, 532, 657, 13, 486, 357, 2339, 262, 835, 6858, 34786, 750, 351, 1635, 15, 13, 486, 198, 54, 796, 48700, 13, 43015, 7, 27110, 13, 25120, 62, 403, 6933, 26933, 24330, 13, 672, 3168, 341, 62, 13200, 13, 77, 11, 17365, 13, 2673, 62, 13200, 13, 77, 4357, 657, 11, 657, 13, 486, 4008, 198, 198, 2, 1195, 448, 351, 5485, 685, 16, 11, 17365, 13, 2673, 62, 13200, 13, 77, 60, 532, 7561, 1181, 1988, 329, 1195, 58, 82, 11, 257, 60, 351, 790, 257, 1695, 379, 257, 1181, 198, 48, 448, 796, 48700, 13, 6759, 76, 377, 7, 15414, 16, 11, 370, 8, 198, 198, 2, 11955, 4716, 2223, 379, 257, 1181, 198, 79, 17407, 796, 48700, 13, 853, 9806, 7, 48, 448, 11, 16488, 28, 16, 8, 198, 198, 2, 27018, 15879, 329, 1306, 1181, 10552, 198, 19545, 48, 796, 48700, 13, 5372, 13829, 7, 43358, 41888, 16, 11, 17365, 13, 2673, 62, 13200, 13, 77, 4357, 288, 4906, 28, 27110, 13, 22468, 2624, 8, 198, 198, 2, 7232, 28338, 2994, 198, 22462, 796, 48700, 13, 445, 7234, 62, 16345, 7, 27110, 13, 23415, 7, 48, 448, 532, 1306, 48, 4008, 198, 2213, 10613, 796, 48700, 13, 27432, 13, 42731, 1153, 5960, 1087, 27871, 320, 7509, 7, 40684, 62, 4873, 28, 15, 13, 16, 8, 198, 19119, 17633, 796, 21997, 13, 1084, 48439, 7, 22462, 8, 198, 198, 2, 29125, 1268, 3336, 49791, 198, 15003, 796, 48700, 13, 20541, 62, 25641, 2977, 62, 36733, 7509, 3419, 198, 198, 2, 5345, 4673, 10007, 198, 88, 796, 657, 13, 2079, 198, 68, 796, 657, 13, 16, 198, 17618, 62, 538, 8052, 796, 4751, 198, 198, 2, 7343, 284, 3650, 2472, 11530, 290, 4831, 583, 4471, 198, 73, 8053, 796, 17635, 198, 81, 8053, 796, 17635, 198, 4480, 48700, 13, 36044, 3419, 355, 264, 408, 25, 198, 220, 220, 220, 264, 408, 13, 5143, 7, 15003, 8, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 17618, 62, 538, 8052, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 23758, 1303, 90, 92, 318, 2491, 48220, 18982, 7, 72, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3274, 1181, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 17365, 13, 42503, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 374, 3237, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 288, 796, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 474, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1195, 3127, 198, 220, 220, 220, 220, 220, 220, 220, 981, 474, 1279, 939, 25, 220, 1303, 393, 2893, 407, 288, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 474, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17489, 2223, 416, 304, 862, 33576, 357, 68, 8, 31828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3601, 7203, 82, 796, 33172, 264, 553, 14610, 27207, 264, 25, 82, 10, 16, 25, 33172, 45941, 13, 738, 414, 7, 24330, 13, 672, 3168, 341, 62, 13200, 13, 77, 38381, 82, 25, 82, 10, 16, 12962, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 264, 796, 657, 14610, 27207, 264, 25, 264, 1343, 352, 25, 220, 16410, 16, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 8183, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 264, 796, 352, 14610, 27207, 264, 25, 264, 1343, 352, 25, 220, 16410, 15, 13, 352, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 13, 657, 8183, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 27207, 685, 82, 25, 82, 10, 16, 60, 318, 257, 530, 12, 8940, 15879, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 8447, 370, 318, 262, 4036, 1195, 1988, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 11, 477, 48, 796, 264, 408, 13, 5143, 26933, 79, 17407, 11, 1195, 448, 4357, 3745, 62, 11600, 34758, 15414, 16, 25, 45941, 13, 738, 414, 7, 24330, 13, 672, 3168, 341, 62, 13200, 13, 77, 38381, 82, 25, 82, 10, 16, 60, 30072, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 45941, 13, 25120, 13, 25192, 7, 16, 8, 1279, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 257, 58, 15, 60, 796, 17365, 13, 2673, 62, 13200, 13, 39873, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 16, 11, 374, 11, 288, 11, 4808, 796, 17365, 13, 9662, 7, 64, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1835, 3153, 1306, 1181, 1195, 1988, 416, 13017, 262, 649, 1181, 3690, 262, 3127, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1195, 16, 796, 264, 408, 13, 5143, 7, 48, 448, 11, 3745, 62, 11600, 34758, 15414, 16, 25, 45941, 13, 738, 414, 7, 24330, 13, 672, 3168, 341, 62, 13200, 13, 77, 38381, 82, 16, 25, 82, 16, 10, 16, 60, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3509, 48, 16, 796, 45941, 13, 9806, 7, 48, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 48, 796, 477, 48, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 48, 58, 15, 11, 257, 58, 15, 11907, 796, 374, 1343, 331, 1635, 3509, 48, 16, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 16835, 674, 3127, 1262, 2496, 290, 11001, 1195, 3815, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4808, 11, 370, 16, 796, 264, 408, 13, 5143, 26933, 19119, 17633, 11, 370, 4357, 3745, 62, 11600, 34758, 15414, 16, 25, 45941, 13, 738, 414, 7, 24330, 13, 672, 3168, 341, 62, 13200, 13, 77, 38381, 82, 25, 82, 10, 16, 4357, 1306, 48, 25, 2496, 48, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 374, 3237, 15853, 374, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 264, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 288, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 304, 796, 352, 19571, 19510, 72, 14, 1120, 8, 1343, 838, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 628, 220, 220, 220, 220, 220, 220, 220, 474, 8053, 13, 33295, 7, 73, 8, 198, 220, 220, 220, 220, 220, 220, 220, 374, 8053, 13, 33295, 7, 81, 3237, 8, 198, 198, 24330, 13, 19836, 3419, 198, 198, 489, 83, 13, 26875, 3419, 198, 489, 83, 13, 29487, 7, 81, 8053, 11, 6167, 2625, 13615, 532, 1195, 18252, 4943, 198, 489, 83, 13, 12860, 3419, 198, 198, 489, 83, 13, 26875, 3419, 198, 489, 83, 13, 29487, 7, 73, 8053, 11, 6167, 2625, 8600, 82, 532, 1195, 18252, 4943, 198, 489, 83, 13, 12860, 3419, 198, 198, 2, 16529, 45537, 198, 198, 2, 309, 6242, 37232, 30023, 2538, 10979, 6234, 198, 2, 198, 2, 1303, 5345, 4673, 10007, 198, 2, 300, 81, 796, 657, 13, 23, 198, 2, 331, 796, 657, 13, 3865, 198, 2, 1271, 62, 538, 8052, 796, 939, 405, 198, 2, 198, 2, 1303, 20768, 3084, 351, 477, 1976, 27498, 198, 2, 1195, 796, 45941, 13, 9107, 418, 26933, 24330, 13, 672, 3168, 341, 62, 13200, 13, 77, 11, 17365, 13, 2673, 62, 13200, 13, 77, 12962, 198, 2, 198, 2, 1303, 7343, 286, 6721, 290, 4831, 583, 4471, 198, 2, 374, 8053, 796, 17635, 198, 2, 329, 1312, 287, 2837, 357, 17618, 62, 538, 8052, 2599, 198, 2, 220, 220, 220, 220, 3601, 7203, 23758, 1303, 90, 92, 318, 2491, 48220, 18982, 7, 72, 4008, 198, 2, 220, 220, 220, 220, 264, 796, 17365, 13, 42503, 3419, 198, 2, 220, 220, 220, 220, 374, 3237, 796, 657, 198, 2, 220, 220, 220, 220, 288, 796, 10352, 198, 2, 220, 220, 220, 220, 474, 796, 657, 198, 2, 220, 220, 220, 220, 981, 474, 1279, 7388, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 474, 15853, 352, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17489, 281, 2223, 416, 25474, 813, 357, 4480, 7838, 8, 10868, 422, 1195, 3084, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4362, 286, 262, 7838, 11, 340, 318, 304, 862, 33576, 12, 16694, 4716, 351, 304, 862, 33576, 24030, 625, 640, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 257, 796, 45941, 13, 853, 9806, 7, 48, 58, 82, 11, 1058, 60, 1343, 45941, 13, 25120, 13, 25192, 7, 16, 11, 17365, 13, 2673, 62, 13200, 13, 77, 27493, 7, 16, 19571, 7, 72, 1343, 352, 22305, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 264, 16, 11, 374, 11, 288, 11, 4808, 796, 17365, 13, 9662, 7, 64, 8, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 17365, 13, 13287, 3419, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10133, 1195, 3084, 351, 649, 3725, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1195, 58, 82, 11, 257, 60, 796, 1195, 58, 82, 11, 257, 60, 1343, 300, 81, 1635, 357, 81, 1343, 331, 1635, 45941, 13, 9806, 7, 48, 58, 82, 16, 11, 1058, 12962, 532, 1195, 58, 82, 11, 257, 12962, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 374, 3237, 15853, 374, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 264, 16, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 611, 288, 25, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 2, 220, 220, 220, 220, 374, 8053, 13, 33295, 7, 81, 3237, 8, 628, 628, 198 ]
2.200509
1,965
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """All KeyTypes and which languages support them.""" # Placeholder for import for type annotations from tink import aead from tink import daead from tink import hybrid from tink import mac from tink import prf from tink import signature from tink import streaming_aead from tink.proto import tink_pb2 # All languages supported by cross-language tests. ALL_LANGUAGES = ['cc', 'java', 'go', 'python'] # All KeyTypes (without the prefix 'type.googleapis.com/google.crypto.tink.') AEAD_KEY_TYPES = [ 'AesEaxKey', 'AesGcmKey', 'AesGcmSivKey', 'AesCtrHmacAeadKey', 'ChaCha20Poly1305Key', 'XChaCha20Poly1305Key', ] DAEAD_KEY_TYPES = ['AesSivKey'] STREAMING_AEAD_KEY_TYPES = [ 'AesCtrHmacStreamingKey', 'AesGcmHkdfStreamingKey', ] HYBRID_PRIVATE_KEY_TYPES = ['EciesAeadHkdfPrivateKey'] MAC_KEY_TYPES = [ 'AesCmacKey', 'HmacKey', ] SIGNATURE_KEY_TYPES = [ 'EcdsaPrivateKey', 'Ed25519PrivateKey', 'RsaSsaPkcs1PrivateKey', 'RsaSsaPssPrivateKey', ] PRF_KEY_TYPES = [ 'AesCmacPrfKey', 'HmacPrfKey', 'HkdfPrfKey', ] ALL_KEY_TYPES = ( AEAD_KEY_TYPES + DAEAD_KEY_TYPES + STREAMING_AEAD_KEY_TYPES + HYBRID_PRIVATE_KEY_TYPES + MAC_KEY_TYPES + SIGNATURE_KEY_TYPES + PRF_KEY_TYPES) # All languages that are supported by a KeyType SUPPORTED_LANGUAGES = { 'AesEaxKey': ['cc', 'java', 'python'], 'AesGcmKey': ['cc', 'java', 'go', 'python'], 'AesGcmSivKey': ['cc', 'python'], 'AesCtrHmacAeadKey': ['cc', 'java', 'go', 'python'], 'ChaCha20Poly1305Key': ['java', 'go'], 'XChaCha20Poly1305Key': ['cc', 'java', 'go', 'python'], 'AesSivKey': ['cc', 'java', 'go', 'python'], 'AesCtrHmacStreamingKey': ['cc', 'java', 'go', 'python'], 'AesGcmHkdfStreamingKey': ['cc', 'java', 'go', 'python'], 'EciesAeadHkdfPrivateKey': ['cc', 'java', 'go', 'python'], 'AesCmacKey': ['cc', 'java', 'go', 'python'], 'HmacKey': ['cc', 'java', 'go', 'python'], 'EcdsaPrivateKey': ['cc', 'java', 'go', 'python'], 'Ed25519PrivateKey': ['cc', 'java', 'go', 'python'], 'RsaSsaPkcs1PrivateKey': ['cc', 'java', 'python'], 'RsaSsaPssPrivateKey': ['cc', 'java', 'python'], 'AesCmacPrfKey': ['cc', 'java', 'go', 'python'], 'HmacPrfKey': ['cc', 'java', 'go', 'python'], 'HkdfPrfKey': ['cc', 'java', 'go', 'python'], } KEY_TYPE_FROM_URL = { 'type.googleapis.com/google.crypto.tink.' + key_type: key_type for key_type in ALL_KEY_TYPES} # For each KeyType, a list of all KeyTemplate Names that must be supported. KEY_TEMPLATE_NAMES = { 'AesEaxKey': ['AES128_EAX', 'AES256_EAX'], 'AesGcmKey': ['AES128_GCM', 'AES256_GCM'], 'AesGcmSivKey': ['AES128_GCM_SIV', 'AES256_GCM_SIV'], 'AesCtrHmacAeadKey': ['AES128_CTR_HMAC_SHA256', 'AES256_CTR_HMAC_SHA256'], 'ChaCha20Poly1305Key': ['CHACHA20_POLY1305'], 'XChaCha20Poly1305Key': ['XCHACHA20_POLY1305'], 'AesSivKey': ['AES256_SIV'], 'AesCtrHmacStreamingKey': [ 'AES128_CTR_HMAC_SHA256_4KB', 'AES256_CTR_HMAC_SHA256_4KB', ], 'AesGcmHkdfStreamingKey': [ 'AES128_GCM_HKDF_4KB', 'AES256_GCM_HKDF_4KB', 'AES256_GCM_HKDF_1MB', ], 'EciesAeadHkdfPrivateKey': [ 'ECIES_P256_HKDF_HMAC_SHA256_AES128_GCM', 'ECIES_P256_HKDF_HMAC_SHA256_AES128_CTR_HMAC_SHA256' ], 'AesCmacKey': ['AES_CMAC'], 'HmacKey': [ 'HMAC_SHA256_128BITTAG', 'HMAC_SHA256_256BITTAG', 'HMAC_SHA512_256BITTAG', 'HMAC_SHA512_512BITTAG' ], 'EcdsaPrivateKey': [ 'ECDSA_P256', 'ECDSA_P384', 'ECDSA_P384_SHA384', 'ECDSA_P521', 'ECDSA_P256_IEEE_P1363', 'ECDSA_P384_IEEE_P1363', 'ECDSA_P384_SHA384_IEEE_P1363', 'ECDSA_P521_IEEE_P1363' ], 'Ed25519PrivateKey': ['ED25519'], 'RsaSsaPkcs1PrivateKey': [ 'RSA_SSA_PKCS1_3072_SHA256_F4', 'RSA_SSA_PKCS1_4096_SHA512_F4' ], 'RsaSsaPssPrivateKey': [ 'RSA_SSA_PSS_3072_SHA256_SHA256_32_F4', 'RSA_SSA_PSS_4096_SHA512_SHA512_64_F4' ], 'AesCmacPrfKey': ['AES_CMAC_PRF'], 'HmacPrfKey': ['HMAC_PRF_SHA256', 'HMAC_PRF_SHA512'], 'HkdfPrfKey': ['HKDF_PRF_SHA256'], } # KeyTemplate (as Protobuf) for each KeyTemplate name. KEY_TEMPLATE = { 'AES128_EAX': aead.aead_key_templates.AES128_EAX, 'AES256_EAX': aead.aead_key_templates.AES256_EAX, 'AES128_GCM': aead.aead_key_templates.AES128_GCM, 'AES256_GCM': aead.aead_key_templates.AES256_GCM, 'AES128_GCM_SIV': aead.aead_key_templates.AES128_GCM_SIV, 'AES256_GCM_SIV': aead.aead_key_templates.AES256_GCM_SIV, 'AES128_CTR_HMAC_SHA256': aead.aead_key_templates.AES128_CTR_HMAC_SHA256, 'AES256_CTR_HMAC_SHA256': aead.aead_key_templates.AES256_CTR_HMAC_SHA256, 'CHACHA20_POLY1305': tink_pb2.KeyTemplate( type_url=('type.googleapis.com/google.crypto.tink.' + 'ChaCha20Poly1305Key'), output_prefix_type=tink_pb2.TINK), 'XCHACHA20_POLY1305': aead.aead_key_templates.XCHACHA20_POLY1305, 'AES256_SIV': daead.deterministic_aead_key_templates.AES256_SIV, 'AES128_CTR_HMAC_SHA256_4KB': streaming_aead.streaming_aead_key_templates.AES128_CTR_HMAC_SHA256_4KB, 'AES256_CTR_HMAC_SHA256_4KB': streaming_aead.streaming_aead_key_templates.AES256_CTR_HMAC_SHA256_4KB, 'AES128_GCM_HKDF_4KB': streaming_aead.streaming_aead_key_templates.AES128_GCM_HKDF_4KB, 'AES256_GCM_HKDF_4KB': streaming_aead.streaming_aead_key_templates.AES256_GCM_HKDF_4KB, 'AES256_GCM_HKDF_1MB': streaming_aead.streaming_aead_key_templates.AES256_GCM_HKDF_1MB, 'ECIES_P256_HKDF_HMAC_SHA256_AES128_GCM': hybrid.hybrid_key_templates.ECIES_P256_HKDF_HMAC_SHA256_AES128_GCM, 'ECIES_P256_HKDF_HMAC_SHA256_AES128_CTR_HMAC_SHA256': hybrid.hybrid_key_templates .ECIES_P256_HKDF_HMAC_SHA256_AES128_CTR_HMAC_SHA256, 'AES_CMAC': mac.mac_key_templates.AES_CMAC, 'HMAC_SHA256_128BITTAG': mac.mac_key_templates.HMAC_SHA256_128BITTAG, 'HMAC_SHA256_256BITTAG': mac.mac_key_templates.HMAC_SHA256_256BITTAG, 'HMAC_SHA512_256BITTAG': mac.mac_key_templates.HMAC_SHA512_256BITTAG, 'HMAC_SHA512_512BITTAG': mac.mac_key_templates.HMAC_SHA512_512BITTAG, 'ECDSA_P256': signature.signature_key_templates.ECDSA_P256, 'ECDSA_P384': signature.signature_key_templates.ECDSA_P384, 'ECDSA_P384_SHA384': signature.signature_key_templates.ECDSA_P384_SHA384, 'ECDSA_P521': signature.signature_key_templates.ECDSA_P521, 'ECDSA_P256_IEEE_P1363': signature.signature_key_templates.ECDSA_P256_IEEE_P1363, 'ECDSA_P384_IEEE_P1363': signature.signature_key_templates.ECDSA_P384_IEEE_P1363, 'ECDSA_P384_SHA384_IEEE_P1363': signature.signature_key_templates.ECDSA_P384_SHA384_IEEE_P1363, 'ECDSA_P521_IEEE_P1363': signature.signature_key_templates.ECDSA_P521_IEEE_P1363, 'ED25519': signature.signature_key_templates.ED25519, 'RSA_SSA_PKCS1_3072_SHA256_F4': signature.signature_key_templates.RSA_SSA_PKCS1_3072_SHA256_F4, 'RSA_SSA_PKCS1_4096_SHA512_F4': signature.signature_key_templates.RSA_SSA_PKCS1_4096_SHA512_F4, 'RSA_SSA_PSS_3072_SHA256_SHA256_32_F4': signature.signature_key_templates.RSA_SSA_PSS_3072_SHA256_SHA256_32_F4, 'RSA_SSA_PSS_4096_SHA512_SHA512_64_F4': signature.signature_key_templates.RSA_SSA_PSS_4096_SHA512_SHA512_64_F4, 'AES_CMAC_PRF': prf.prf_key_templates.AES_CMAC, 'HMAC_PRF_SHA256': prf.prf_key_templates.HMAC_SHA256, 'HMAC_PRF_SHA512': prf.prf_key_templates.HMAC_SHA512, 'HKDF_PRF_SHA256': prf.prf_key_templates.HKDF_SHA256, } SUPPORTED_LANGUAGES_BY_TEMPLATE_NAME = { name: SUPPORTED_LANGUAGES[KEY_TYPE_FROM_URL[template.type_url]] for name, template in KEY_TEMPLATE.items() }
[ 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 37811, 3237, 7383, 31431, 290, 543, 8950, 1104, 606, 526, 15931, 198, 198, 2, 8474, 13829, 329, 1330, 329, 2099, 37647, 198, 198, 6738, 44569, 1330, 257, 1329, 198, 6738, 44569, 1330, 12379, 1329, 198, 6738, 44569, 1330, 14554, 198, 6738, 44569, 1330, 8352, 198, 6738, 44569, 1330, 778, 69, 198, 6738, 44569, 1330, 9877, 198, 6738, 44569, 1330, 11305, 62, 64, 1329, 198, 198, 6738, 44569, 13, 1676, 1462, 1330, 44569, 62, 40842, 17, 198, 198, 2, 1439, 8950, 4855, 416, 3272, 12, 16129, 5254, 13, 198, 7036, 62, 43, 15567, 52, 25552, 796, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 20520, 198, 198, 2, 1439, 7383, 31431, 357, 19419, 262, 21231, 705, 4906, 13, 13297, 499, 271, 13, 785, 14, 13297, 13, 29609, 78, 13, 83, 676, 2637, 8, 198, 14242, 2885, 62, 20373, 62, 9936, 47, 1546, 796, 685, 198, 220, 220, 220, 705, 32, 274, 36, 897, 9218, 3256, 198, 220, 220, 220, 705, 32, 274, 38, 11215, 9218, 3256, 198, 220, 220, 220, 705, 32, 274, 38, 11215, 50, 452, 9218, 3256, 198, 220, 220, 220, 705, 32, 274, 34, 2213, 39, 20285, 32, 1329, 9218, 3256, 198, 220, 220, 220, 705, 1925, 64, 1925, 64, 1238, 34220, 12952, 20, 9218, 3256, 198, 220, 220, 220, 705, 55, 1925, 64, 1925, 64, 1238, 34220, 12952, 20, 9218, 3256, 198, 60, 198, 5631, 36, 2885, 62, 20373, 62, 9936, 47, 1546, 796, 37250, 32, 274, 50, 452, 9218, 20520, 198, 2257, 32235, 2751, 62, 14242, 2885, 62, 20373, 62, 9936, 47, 1546, 796, 685, 198, 220, 220, 220, 705, 32, 274, 34, 2213, 39, 20285, 12124, 278, 9218, 3256, 198, 220, 220, 220, 705, 32, 274, 38, 11215, 39, 74, 7568, 12124, 278, 9218, 3256, 198, 60, 198, 42598, 11473, 2389, 62, 4805, 3824, 6158, 62, 20373, 62, 9936, 47, 1546, 796, 37250, 36, 3171, 32, 1329, 39, 74, 7568, 29067, 9218, 20520, 198, 44721, 62, 20373, 62, 9936, 47, 1546, 796, 685, 198, 220, 220, 220, 705, 32, 274, 34, 20285, 9218, 3256, 198, 220, 220, 220, 705, 39, 20285, 9218, 3256, 198, 60, 198, 46224, 40086, 62, 20373, 62, 9936, 47, 1546, 796, 685, 198, 220, 220, 220, 705, 49136, 9310, 64, 29067, 9218, 3256, 198, 220, 220, 220, 705, 7407, 13381, 1129, 29067, 9218, 3256, 198, 220, 220, 220, 705, 49, 11400, 50, 11400, 47, 74, 6359, 16, 29067, 9218, 3256, 198, 220, 220, 220, 705, 49, 11400, 50, 11400, 47, 824, 29067, 9218, 3256, 198, 60, 198, 4805, 37, 62, 20373, 62, 9936, 47, 1546, 796, 685, 198, 220, 220, 220, 705, 32, 274, 34, 20285, 6836, 69, 9218, 3256, 198, 220, 220, 220, 705, 39, 20285, 6836, 69, 9218, 3256, 198, 220, 220, 220, 705, 39, 74, 7568, 6836, 69, 9218, 3256, 198, 60, 198, 7036, 62, 20373, 62, 9936, 47, 1546, 796, 357, 198, 220, 220, 220, 25603, 2885, 62, 20373, 62, 9936, 47, 1546, 1343, 360, 14242, 2885, 62, 20373, 62, 9936, 47, 1546, 1343, 3563, 32235, 2751, 62, 14242, 2885, 62, 20373, 62, 9936, 47, 1546, 1343, 198, 220, 220, 220, 43624, 11473, 2389, 62, 4805, 3824, 6158, 62, 20373, 62, 9936, 47, 1546, 1343, 20582, 62, 20373, 62, 9936, 47, 1546, 1343, 36771, 40086, 62, 20373, 62, 9936, 47, 1546, 1343, 198, 220, 220, 220, 4810, 37, 62, 20373, 62, 9936, 47, 1546, 8, 198, 198, 2, 1439, 8950, 326, 389, 4855, 416, 257, 7383, 6030, 198, 40331, 15490, 1961, 62, 43, 15567, 52, 25552, 796, 1391, 198, 220, 220, 220, 705, 32, 274, 36, 897, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 38, 11215, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 38, 11215, 50, 452, 9218, 10354, 37250, 535, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 34, 2213, 39, 20285, 32, 1329, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 1925, 64, 1925, 64, 1238, 34220, 12952, 20, 9218, 10354, 37250, 12355, 3256, 705, 2188, 6, 4357, 198, 220, 220, 220, 705, 55, 1925, 64, 1925, 64, 1238, 34220, 12952, 20, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 50, 452, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 34, 2213, 39, 20285, 12124, 278, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 38, 11215, 39, 74, 7568, 12124, 278, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 36, 3171, 32, 1329, 39, 74, 7568, 29067, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 34, 20285, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 39, 20285, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 49136, 9310, 64, 29067, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 7407, 13381, 1129, 29067, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 49, 11400, 50, 11400, 47, 74, 6359, 16, 29067, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 49, 11400, 50, 11400, 47, 824, 29067, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 34, 20285, 6836, 69, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 39, 20285, 6836, 69, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 220, 220, 220, 705, 39, 74, 7568, 6836, 69, 9218, 10354, 37250, 535, 3256, 705, 12355, 3256, 705, 2188, 3256, 705, 29412, 6, 4357, 198, 92, 198, 198, 20373, 62, 25216, 62, 10913, 2662, 62, 21886, 796, 1391, 198, 220, 220, 220, 705, 4906, 13, 13297, 499, 271, 13, 785, 14, 13297, 13, 29609, 78, 13, 83, 676, 2637, 1343, 1994, 62, 4906, 25, 1994, 62, 4906, 198, 220, 220, 220, 329, 1994, 62, 4906, 287, 11096, 62, 20373, 62, 9936, 47, 1546, 92, 198, 198, 2, 1114, 1123, 7383, 6030, 11, 257, 1351, 286, 477, 7383, 30800, 28531, 326, 1276, 307, 4855, 13, 198, 20373, 62, 51, 3620, 6489, 6158, 62, 45, 29559, 796, 1391, 198, 220, 220, 220, 705, 32, 274, 36, 897, 9218, 10354, 37250, 32, 1546, 12762, 62, 16412, 55, 3256, 705, 32, 1546, 11645, 62, 16412, 55, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 38, 11215, 9218, 10354, 37250, 32, 1546, 12762, 62, 15916, 44, 3256, 705, 32, 1546, 11645, 62, 15916, 44, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 38, 11215, 50, 452, 9218, 10354, 37250, 32, 1546, 12762, 62, 15916, 44, 62, 50, 3824, 3256, 705, 32, 1546, 11645, 62, 15916, 44, 62, 50, 3824, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 34, 2213, 39, 20285, 32, 1329, 9218, 10354, 37250, 32, 1546, 12762, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 3256, 705, 32, 1546, 11645, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 6, 4357, 198, 220, 220, 220, 705, 1925, 64, 1925, 64, 1238, 34220, 12952, 20, 9218, 10354, 37250, 3398, 2246, 7801, 1238, 62, 45472, 56, 12952, 20, 6, 4357, 198, 220, 220, 220, 705, 55, 1925, 64, 1925, 64, 1238, 34220, 12952, 20, 9218, 10354, 37250, 55, 3398, 2246, 7801, 1238, 62, 45472, 56, 12952, 20, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 50, 452, 9218, 10354, 37250, 32, 1546, 11645, 62, 50, 3824, 6, 4357, 198, 220, 220, 220, 705, 32, 274, 34, 2213, 39, 20285, 12124, 278, 9218, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 705, 32, 1546, 12762, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 62, 19, 22764, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 32, 1546, 11645, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 62, 19, 22764, 3256, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 705, 32, 274, 38, 11215, 39, 74, 7568, 12124, 278, 9218, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 705, 32, 1546, 12762, 62, 15916, 44, 62, 38730, 8068, 62, 19, 22764, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 32, 1546, 11645, 62, 15916, 44, 62, 38730, 8068, 62, 19, 22764, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 32, 1546, 11645, 62, 15916, 44, 62, 38730, 8068, 62, 16, 10744, 3256, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 705, 36, 3171, 32, 1329, 39, 74, 7568, 29067, 9218, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2943, 11015, 62, 47, 11645, 62, 38730, 8068, 62, 36905, 2246, 62, 37596, 11645, 62, 32, 1546, 12762, 62, 15916, 44, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 2943, 11015, 62, 47, 11645, 62, 38730, 8068, 62, 36905, 2246, 62, 37596, 11645, 62, 32, 1546, 12762, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 6, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 705, 32, 274, 34, 20285, 9218, 10354, 37250, 32, 1546, 62, 24187, 2246, 6, 4357, 198, 220, 220, 220, 705, 39, 20285, 9218, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 705, 36905, 2246, 62, 37596, 11645, 62, 12762, 33, 22470, 4760, 3256, 705, 36905, 2246, 62, 37596, 11645, 62, 11645, 33, 22470, 4760, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 36905, 2246, 62, 37596, 25836, 62, 11645, 33, 22470, 4760, 3256, 705, 36905, 2246, 62, 37596, 25836, 62, 25836, 33, 22470, 4760, 6, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 705, 49136, 9310, 64, 29067, 9218, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 705, 27295, 4090, 62, 47, 11645, 3256, 705, 27295, 4090, 62, 47, 22842, 3256, 705, 27295, 4090, 62, 47, 22842, 62, 37596, 22842, 3256, 705, 27295, 4090, 62, 47, 20, 2481, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 27295, 4090, 62, 47, 11645, 62, 40, 31909, 62, 47, 1485, 5066, 3256, 705, 27295, 4090, 62, 47, 22842, 62, 40, 31909, 62, 47, 1485, 5066, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 27295, 4090, 62, 47, 22842, 62, 37596, 22842, 62, 40, 31909, 62, 47, 1485, 5066, 3256, 705, 27295, 4090, 62, 47, 20, 2481, 62, 40, 31909, 62, 47, 1485, 5066, 6, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 705, 7407, 13381, 1129, 29067, 9218, 10354, 37250, 1961, 13381, 1129, 6, 4357, 198, 220, 220, 220, 705, 49, 11400, 50, 11400, 47, 74, 6359, 16, 29067, 9218, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 705, 49, 4090, 62, 50, 4090, 62, 40492, 7902, 16, 62, 1270, 4761, 62, 37596, 11645, 62, 37, 19, 3256, 705, 49, 4090, 62, 50, 4090, 62, 40492, 7902, 16, 62, 1821, 4846, 62, 37596, 25836, 62, 37, 19, 6, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 705, 49, 11400, 50, 11400, 47, 824, 29067, 9218, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 705, 49, 4090, 62, 50, 4090, 62, 3705, 50, 62, 1270, 4761, 62, 37596, 11645, 62, 37596, 11645, 62, 2624, 62, 37, 19, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 49, 4090, 62, 50, 4090, 62, 3705, 50, 62, 1821, 4846, 62, 37596, 25836, 62, 37596, 25836, 62, 2414, 62, 37, 19, 6, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 705, 32, 274, 34, 20285, 6836, 69, 9218, 10354, 37250, 32, 1546, 62, 24187, 2246, 62, 4805, 37, 6, 4357, 198, 220, 220, 220, 705, 39, 20285, 6836, 69, 9218, 10354, 37250, 36905, 2246, 62, 4805, 37, 62, 37596, 11645, 3256, 705, 36905, 2246, 62, 4805, 37, 62, 37596, 25836, 6, 4357, 198, 220, 220, 220, 705, 39, 74, 7568, 6836, 69, 9218, 10354, 37250, 38730, 8068, 62, 4805, 37, 62, 37596, 11645, 6, 4357, 198, 92, 198, 198, 2, 7383, 30800, 357, 292, 5038, 672, 3046, 8, 329, 1123, 7383, 30800, 1438, 13, 198, 20373, 62, 51, 3620, 6489, 6158, 796, 1391, 198, 220, 220, 220, 705, 32, 1546, 12762, 62, 16412, 55, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1329, 13, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 12762, 62, 16412, 55, 11, 198, 220, 220, 220, 705, 32, 1546, 11645, 62, 16412, 55, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1329, 13, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 11645, 62, 16412, 55, 11, 198, 220, 220, 220, 705, 32, 1546, 12762, 62, 15916, 44, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1329, 13, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 12762, 62, 15916, 44, 11, 198, 220, 220, 220, 705, 32, 1546, 11645, 62, 15916, 44, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1329, 13, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 11645, 62, 15916, 44, 11, 198, 220, 220, 220, 705, 32, 1546, 12762, 62, 15916, 44, 62, 50, 3824, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1329, 13, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 12762, 62, 15916, 44, 62, 50, 3824, 11, 198, 220, 220, 220, 705, 32, 1546, 11645, 62, 15916, 44, 62, 50, 3824, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1329, 13, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 11645, 62, 15916, 44, 62, 50, 3824, 11, 198, 220, 220, 220, 705, 32, 1546, 12762, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1329, 13, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 12762, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 11, 198, 220, 220, 220, 705, 32, 1546, 11645, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1329, 13, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 11645, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 11, 198, 220, 220, 220, 705, 3398, 2246, 7801, 1238, 62, 45472, 56, 12952, 20, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 44569, 62, 40842, 17, 13, 9218, 30800, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 6371, 28, 10786, 4906, 13, 13297, 499, 271, 13, 785, 14, 13297, 13, 29609, 78, 13, 83, 676, 2637, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 1925, 64, 1925, 64, 1238, 34220, 12952, 20, 9218, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 40290, 62, 4906, 28, 83, 676, 62, 40842, 17, 13, 51, 17248, 828, 198, 220, 220, 220, 705, 55, 3398, 2246, 7801, 1238, 62, 45472, 56, 12952, 20, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 257, 1329, 13, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 55, 3398, 2246, 7801, 1238, 62, 45472, 56, 12952, 20, 11, 198, 220, 220, 220, 705, 32, 1546, 11645, 62, 50, 3824, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 12379, 1329, 13, 67, 2357, 49228, 62, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 11645, 62, 50, 3824, 11, 198, 220, 220, 220, 705, 32, 1546, 12762, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 62, 19, 22764, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 11305, 62, 64, 1329, 13, 5532, 278, 62, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 12762, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 62, 19, 22764, 11, 198, 220, 220, 220, 705, 32, 1546, 11645, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 62, 19, 22764, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 11305, 62, 64, 1329, 13, 5532, 278, 62, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 11645, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 62, 19, 22764, 11, 198, 220, 220, 220, 705, 32, 1546, 12762, 62, 15916, 44, 62, 38730, 8068, 62, 19, 22764, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 11305, 62, 64, 1329, 13, 5532, 278, 62, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 12762, 62, 15916, 44, 62, 38730, 8068, 62, 19, 22764, 11, 198, 220, 220, 220, 705, 32, 1546, 11645, 62, 15916, 44, 62, 38730, 8068, 62, 19, 22764, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 11305, 62, 64, 1329, 13, 5532, 278, 62, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 11645, 62, 15916, 44, 62, 38730, 8068, 62, 19, 22764, 11, 198, 220, 220, 220, 705, 32, 1546, 11645, 62, 15916, 44, 62, 38730, 8068, 62, 16, 10744, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 11305, 62, 64, 1329, 13, 5532, 278, 62, 64, 1329, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 11645, 62, 15916, 44, 62, 38730, 8068, 62, 16, 10744, 11, 198, 220, 220, 220, 705, 2943, 11015, 62, 47, 11645, 62, 38730, 8068, 62, 36905, 2246, 62, 37596, 11645, 62, 32, 1546, 12762, 62, 15916, 44, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 14554, 13, 12114, 10236, 62, 2539, 62, 11498, 17041, 13, 2943, 11015, 62, 47, 11645, 62, 38730, 8068, 62, 36905, 2246, 62, 37596, 11645, 62, 32, 1546, 12762, 62, 15916, 44, 11, 198, 220, 220, 220, 705, 2943, 11015, 62, 47, 11645, 62, 38730, 8068, 62, 36905, 2246, 62, 37596, 11645, 62, 32, 1546, 12762, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 14554, 13, 12114, 10236, 62, 2539, 62, 11498, 17041, 198, 220, 220, 220, 220, 220, 220, 220, 764, 2943, 11015, 62, 47, 11645, 62, 38730, 8068, 62, 36905, 2246, 62, 37596, 11645, 62, 32, 1546, 12762, 62, 4177, 49, 62, 36905, 2246, 62, 37596, 11645, 11, 198, 220, 220, 220, 705, 32, 1546, 62, 24187, 2246, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 8352, 13, 20285, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 62, 24187, 2246, 11, 198, 220, 220, 220, 705, 36905, 2246, 62, 37596, 11645, 62, 12762, 33, 22470, 4760, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 8352, 13, 20285, 62, 2539, 62, 11498, 17041, 13, 36905, 2246, 62, 37596, 11645, 62, 12762, 33, 22470, 4760, 11, 198, 220, 220, 220, 705, 36905, 2246, 62, 37596, 11645, 62, 11645, 33, 22470, 4760, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 8352, 13, 20285, 62, 2539, 62, 11498, 17041, 13, 36905, 2246, 62, 37596, 11645, 62, 11645, 33, 22470, 4760, 11, 198, 220, 220, 220, 705, 36905, 2246, 62, 37596, 25836, 62, 11645, 33, 22470, 4760, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 8352, 13, 20285, 62, 2539, 62, 11498, 17041, 13, 36905, 2246, 62, 37596, 25836, 62, 11645, 33, 22470, 4760, 11, 198, 220, 220, 220, 705, 36905, 2246, 62, 37596, 25836, 62, 25836, 33, 22470, 4760, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 8352, 13, 20285, 62, 2539, 62, 11498, 17041, 13, 36905, 2246, 62, 37596, 25836, 62, 25836, 33, 22470, 4760, 11, 198, 220, 220, 220, 705, 27295, 4090, 62, 47, 11645, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 27295, 4090, 62, 47, 11645, 11, 198, 220, 220, 220, 705, 27295, 4090, 62, 47, 22842, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 27295, 4090, 62, 47, 22842, 11, 198, 220, 220, 220, 705, 27295, 4090, 62, 47, 22842, 62, 37596, 22842, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 27295, 4090, 62, 47, 22842, 62, 37596, 22842, 11, 198, 220, 220, 220, 705, 27295, 4090, 62, 47, 20, 2481, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 27295, 4090, 62, 47, 20, 2481, 11, 198, 220, 220, 220, 705, 27295, 4090, 62, 47, 11645, 62, 40, 31909, 62, 47, 1485, 5066, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 27295, 4090, 62, 47, 11645, 62, 40, 31909, 62, 47, 1485, 5066, 11, 198, 220, 220, 220, 705, 27295, 4090, 62, 47, 22842, 62, 40, 31909, 62, 47, 1485, 5066, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 27295, 4090, 62, 47, 22842, 62, 40, 31909, 62, 47, 1485, 5066, 11, 198, 220, 220, 220, 705, 27295, 4090, 62, 47, 22842, 62, 37596, 22842, 62, 40, 31909, 62, 47, 1485, 5066, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 27295, 4090, 62, 47, 22842, 62, 37596, 22842, 62, 40, 31909, 62, 47, 1485, 5066, 11, 198, 220, 220, 220, 705, 27295, 4090, 62, 47, 20, 2481, 62, 40, 31909, 62, 47, 1485, 5066, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 27295, 4090, 62, 47, 20, 2481, 62, 40, 31909, 62, 47, 1485, 5066, 11, 198, 220, 220, 220, 705, 1961, 13381, 1129, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 1961, 13381, 1129, 11, 198, 220, 220, 220, 705, 49, 4090, 62, 50, 4090, 62, 40492, 7902, 16, 62, 1270, 4761, 62, 37596, 11645, 62, 37, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 49, 4090, 62, 50, 4090, 62, 40492, 7902, 16, 62, 1270, 4761, 62, 37596, 11645, 62, 37, 19, 11, 198, 220, 220, 220, 705, 49, 4090, 62, 50, 4090, 62, 40492, 7902, 16, 62, 1821, 4846, 62, 37596, 25836, 62, 37, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 49, 4090, 62, 50, 4090, 62, 40492, 7902, 16, 62, 1821, 4846, 62, 37596, 25836, 62, 37, 19, 11, 198, 220, 220, 220, 705, 49, 4090, 62, 50, 4090, 62, 3705, 50, 62, 1270, 4761, 62, 37596, 11645, 62, 37596, 11645, 62, 2624, 62, 37, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 49, 4090, 62, 50, 4090, 62, 3705, 50, 62, 1270, 4761, 62, 37596, 11645, 62, 37596, 11645, 62, 2624, 62, 37, 19, 11, 198, 220, 220, 220, 705, 49, 4090, 62, 50, 4090, 62, 3705, 50, 62, 1821, 4846, 62, 37596, 25836, 62, 37596, 25836, 62, 2414, 62, 37, 19, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 9877, 13, 12683, 1300, 62, 2539, 62, 11498, 17041, 13, 49, 4090, 62, 50, 4090, 62, 3705, 50, 62, 1821, 4846, 62, 37596, 25836, 62, 37596, 25836, 62, 2414, 62, 37, 19, 11, 198, 220, 220, 220, 705, 32, 1546, 62, 24187, 2246, 62, 4805, 37, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 778, 69, 13, 1050, 69, 62, 2539, 62, 11498, 17041, 13, 32, 1546, 62, 24187, 2246, 11, 198, 220, 220, 220, 705, 36905, 2246, 62, 4805, 37, 62, 37596, 11645, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 778, 69, 13, 1050, 69, 62, 2539, 62, 11498, 17041, 13, 36905, 2246, 62, 37596, 11645, 11, 198, 220, 220, 220, 705, 36905, 2246, 62, 4805, 37, 62, 37596, 25836, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 778, 69, 13, 1050, 69, 62, 2539, 62, 11498, 17041, 13, 36905, 2246, 62, 37596, 25836, 11, 198, 220, 220, 220, 705, 38730, 8068, 62, 4805, 37, 62, 37596, 11645, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 778, 69, 13, 1050, 69, 62, 2539, 62, 11498, 17041, 13, 38730, 8068, 62, 37596, 11645, 11, 198, 92, 198, 198, 40331, 15490, 1961, 62, 43, 15567, 52, 25552, 62, 17513, 62, 51, 3620, 6489, 6158, 62, 20608, 796, 1391, 198, 220, 220, 220, 1438, 25, 43333, 1961, 62, 43, 15567, 52, 25552, 58, 20373, 62, 25216, 62, 10913, 2662, 62, 21886, 58, 28243, 13, 4906, 62, 6371, 11907, 198, 220, 220, 220, 329, 1438, 11, 11055, 287, 35374, 62, 51, 3620, 6489, 6158, 13, 23814, 3419, 198, 92, 198 ]
1.960314
4,334
#!/usr/bin/env python3 ######################################################### # Written by Carl Youngblood, [email protected] # Copyright (c) 2018 Blockscale LLC # released under the MIT license ######################################################### from flask import Flask, request, Response, json, jsonify from src.remote_signer import RemoteSigner from os import path import logging logging.basicConfig(filename='./remote-signer.log', format='%(asctime)s %(message)s', level=logging.INFO) app = Flask(__name__) # sample config used for testing config = { 'hsm_username': 'resigner', 'hsm_slot': 1, 'hsm_lib': '/opt/cloudhsm/lib/libcloudhsm_pkcs11.so', 'node_addr': 'http://node.internal:8732', 'keys': { 'tz3aTaJ3d7Rh4yXpereo4yBm21xrs4bnzQvW': { 'public_key': 'p2pk67jx4rEadFpbHdiPhsKxZ4KCoczLWqsEpNarWZ7WQ1SqKMf7JsS', 'private_handle': 7, 'public_handle': 9 } } } logging.info('Opening keys.json') if path.isfile('keys.json'): logging.info('Found keys.json') with open('keys.json', 'r') as myfile: json_blob = myfile.read().replace('\n', '') logging.info('Parsed keys.json successfully as JSON') config = json.loads(json_blob) logging.info('Config contains: {}'.format(json.dumps(config, indent=2))) if __name__ == '__main__': app.run(host='127.0.0.1', port=5000, debug=True)
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 198, 29113, 14468, 7804, 2, 198, 2, 22503, 416, 8124, 6960, 18041, 11, 1097, 75, 31, 27372, 38765, 13, 3262, 198, 2, 15069, 357, 66, 8, 2864, 35111, 38765, 11419, 198, 2, 2716, 739, 262, 17168, 5964, 198, 29113, 14468, 7804, 2, 198, 198, 6738, 42903, 1330, 46947, 11, 2581, 11, 18261, 11, 33918, 11, 33918, 1958, 198, 6738, 12351, 13, 47960, 62, 12683, 263, 1330, 21520, 11712, 263, 198, 6738, 28686, 1330, 3108, 198, 11748, 18931, 198, 198, 6404, 2667, 13, 35487, 16934, 7, 34345, 28, 4458, 14, 47960, 12, 12683, 263, 13, 6404, 3256, 5794, 11639, 4, 7, 292, 310, 524, 8, 82, 4064, 7, 20500, 8, 82, 3256, 1241, 28, 6404, 2667, 13, 10778, 8, 198, 198, 1324, 796, 46947, 7, 834, 3672, 834, 8, 198, 198, 2, 6291, 4566, 973, 329, 4856, 198, 11250, 796, 1391, 198, 220, 220, 220, 705, 71, 5796, 62, 29460, 10354, 705, 411, 570, 263, 3256, 198, 220, 220, 220, 705, 71, 5796, 62, 43384, 10354, 352, 11, 198, 220, 220, 220, 705, 71, 5796, 62, 8019, 10354, 31051, 8738, 14, 17721, 71, 5796, 14, 8019, 14, 8019, 17721, 71, 5796, 62, 79, 74, 6359, 1157, 13, 568, 3256, 198, 220, 220, 220, 705, 17440, 62, 29851, 10354, 705, 4023, 1378, 17440, 13, 32538, 25, 5774, 2624, 3256, 198, 220, 220, 220, 705, 13083, 10354, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 22877, 18, 64, 38586, 41, 18, 67, 22, 38576, 19, 88, 55, 431, 260, 78, 19, 88, 33, 76, 2481, 87, 3808, 19, 9374, 89, 48, 85, 54, 10354, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 11377, 62, 2539, 10354, 705, 79, 17, 79, 74, 3134, 73, 87, 19, 81, 36, 324, 37, 40842, 39, 10989, 2725, 82, 42, 87, 57, 19, 36222, 420, 89, 43, 54, 48382, 13807, 40059, 54, 57, 22, 54, 48, 16, 50, 80, 42, 44, 69, 22, 49044, 50, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 19734, 62, 28144, 10354, 767, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 11377, 62, 28144, 10354, 860, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 1782, 198, 92, 198, 198, 6404, 2667, 13, 10951, 10786, 43093, 8251, 13, 17752, 11537, 198, 361, 3108, 13, 4468, 576, 10786, 13083, 13, 17752, 6, 2599, 198, 220, 220, 220, 18931, 13, 10951, 10786, 21077, 8251, 13, 17752, 11537, 198, 220, 220, 220, 351, 1280, 10786, 13083, 13, 17752, 3256, 705, 81, 11537, 355, 616, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33918, 62, 2436, 672, 796, 616, 7753, 13, 961, 22446, 33491, 10786, 59, 77, 3256, 10148, 8, 198, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 10951, 10786, 47, 945, 276, 8251, 13, 17752, 7675, 355, 19449, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 33918, 13, 46030, 7, 17752, 62, 2436, 672, 8, 198, 220, 220, 220, 220, 220, 220, 220, 18931, 13, 10951, 10786, 16934, 4909, 25, 23884, 4458, 18982, 7, 17752, 13, 67, 8142, 7, 11250, 11, 33793, 28, 17, 22305, 628, 628, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 598, 13, 5143, 7, 4774, 11639, 16799, 13, 15, 13, 15, 13, 16, 3256, 2493, 28, 27641, 11, 14257, 28, 17821, 8, 198 ]
2.442341
581
from binaryninja import log from .utils import BinjaStruct, read_pe_header, split_bits, update_percentage # https://msdn.microsoft.com/en-us/library/ft9x1kdx.aspx RUNTIME_FUNCTION_t = BinjaStruct('<III', names = ('BeginAddress', 'EndAddress', 'UnwindData')) UNWIND_INFO_t = BinjaStruct('<BBBB', names = ('VersionAndFlags', 'SizeOfProlog', 'CountOfCodes', 'FrameRegisterAndOffset')) UNW_FLAG_NHANDLER = 0x0 UNW_FLAG_EHANDLER = 0x1 UNW_FLAG_UHANDLER = 0x2 UNW_FLAG_FHANDLER = 0x3 UNW_FLAG_CHAININFO = 0x4 UNWIND_CODE_t = BinjaStruct('<BB', names = ('CodeOffset', 'UnwindOpAndInfo'))
[ 6738, 13934, 35073, 6592, 1330, 2604, 198, 6738, 764, 26791, 1330, 20828, 6592, 44909, 11, 1100, 62, 431, 62, 25677, 11, 6626, 62, 9895, 11, 4296, 62, 25067, 496, 198, 198, 2, 3740, 1378, 907, 32656, 13, 40485, 13, 785, 14, 268, 12, 385, 14, 32016, 14, 701, 24, 87, 16, 74, 34350, 13, 31740, 198, 198, 49, 4944, 34694, 62, 42296, 4177, 2849, 62, 83, 796, 20828, 6592, 44909, 10786, 27, 10855, 3256, 3891, 796, 19203, 44140, 20231, 3256, 705, 12915, 20231, 3256, 705, 3118, 7972, 6601, 6, 4008, 628, 198, 4944, 28929, 62, 10778, 62, 83, 796, 20828, 6592, 44909, 10786, 27, 15199, 15199, 3256, 3891, 796, 19203, 14815, 1870, 40053, 3256, 705, 10699, 5189, 2964, 6404, 3256, 705, 12332, 5189, 34, 4147, 3256, 705, 19778, 38804, 1870, 34519, 6, 4008, 198, 198, 4944, 54, 62, 38948, 62, 33863, 6981, 39878, 796, 657, 87, 15, 198, 4944, 54, 62, 38948, 62, 42413, 6981, 39878, 796, 657, 87, 16, 198, 4944, 54, 62, 38948, 62, 52, 39, 6981, 39878, 796, 657, 87, 17, 198, 4944, 54, 62, 38948, 62, 44602, 6981, 39878, 796, 657, 87, 18, 198, 4944, 54, 62, 38948, 62, 3398, 29833, 10778, 796, 657, 87, 19, 628, 198, 4944, 28929, 62, 34, 16820, 62, 83, 796, 20828, 6592, 44909, 10786, 27, 15199, 3256, 3891, 796, 19203, 10669, 34519, 3256, 705, 3118, 7972, 18257, 1870, 12360, 6, 4008, 628 ]
2.538793
232
""" 3D visualization primitives based on Plotly. We might want to instead use a more powerful library like Open3D. Plotly however supports animations, buttons and sliders. 1) Initialize a figure with `fig = init_figure()` 2) Plot points, cameras, lines, or create a slider animation. 3) Call `fig.show()` to render the figure. """ import plotly.graph_objects as go import numpy as np from ..pixlib.geometry.utils import to_homogeneous def init_figure(height=800): """Initialize a 3D figure.""" fig = go.Figure() fig.update_layout( height=height, scene_camera=dict( eye=dict(x=0., y=-.1, z=-2), up=dict(x=0, y=-1., z=0)), scene=dict( xaxis=dict(showbackground=False), yaxis=dict(showbackground=False), aspectmode='data', dragmode='orbit'), margin=dict(l=0, r=0, b=0, t=0, pad=0)) # noqa E741 return fig def plot_points(fig, pts, color='rgba(255, 0, 0, 1)', ps=2): """Plot a set of 3D points.""" x, y, z = pts.T tr = go.Scatter3d( x=x, y=y, z=z, mode='markers', marker_size=ps, marker_color=color, marker_line_width=.2) fig.add_trace(tr) def plot_camera(fig, R, t, K, color='rgb(0, 0, 255)'): """Plot a camera as a cone with camera frustum.""" x, y, z = t u, v, w = R @ -np.array([0, 0, 1]) tr = go.Cone( x=[x], y=[y], z=[z], u=[u], v=[v], w=[w], anchor='tip', showscale=False, colorscale=[[0, color], [1, color]], sizemode='absolute') fig.add_trace(tr) W, H = K[0, 2]*2, K[1, 2]*2 corners = np.array([[0, 0], [W, 0], [W, H], [0, H], [0, 0]]) corners = to_homogeneous(corners) @ np.linalg.inv(K).T corners = (corners/2) @ R.T + t x, y, z = corners.T tr = go.Scatter3d( x=x, y=y, z=z, line=dict(color='rgba(0, 0, 0, .5)'), marker=dict(size=0.0001), showlegend=False) fig.add_trace(tr) def create_slider_animation(fig, traces): """Create a slider that animates a list of traces (e.g. 3D points).""" slider = {'steps': []} frames = [] fig.add_trace(traces[0]) idx = len(fig.data) - 1 for i, tr in enumerate(traces): frames.append(go.Frame(name=str(i), traces=[idx], data=[tr])) step = {"args": [ [str(i)], {"frame": {"redraw": True}, "mode": "immediate"}], "label": i, "method": "animate"} slider['steps'].append(step) fig.frames = tuple(frames) fig.layout.sliders = (slider,)
[ 37811, 198, 18, 35, 32704, 2684, 20288, 1912, 319, 28114, 306, 13, 198, 1135, 1244, 765, 284, 2427, 779, 257, 517, 3665, 5888, 588, 4946, 18, 35, 13, 198, 43328, 306, 2158, 6971, 22407, 11, 12163, 290, 1017, 4157, 13, 198, 198, 16, 8, 20768, 1096, 257, 3785, 351, 4600, 5647, 796, 2315, 62, 26875, 3419, 63, 198, 17, 8, 28114, 2173, 11, 9073, 11, 3951, 11, 393, 2251, 257, 28982, 11034, 13, 198, 18, 8, 4889, 4600, 5647, 13, 12860, 3419, 63, 284, 8543, 262, 3785, 13, 198, 37811, 198, 198, 11748, 7110, 306, 13, 34960, 62, 48205, 355, 467, 198, 11748, 299, 32152, 355, 45941, 198, 198, 6738, 11485, 79, 844, 8019, 13, 469, 15748, 13, 26791, 1330, 284, 62, 26452, 32269, 628, 198, 4299, 2315, 62, 26875, 7, 17015, 28, 7410, 2599, 198, 220, 220, 220, 37227, 24243, 1096, 257, 513, 35, 3785, 526, 15931, 198, 220, 220, 220, 2336, 796, 467, 13, 11337, 3419, 198, 220, 220, 220, 2336, 13, 19119, 62, 39786, 7, 198, 220, 220, 220, 220, 220, 220, 220, 6001, 28, 17015, 11, 198, 220, 220, 220, 220, 220, 220, 220, 3715, 62, 25695, 28, 11600, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4151, 28, 11600, 7, 87, 28, 15, 1539, 331, 10779, 13, 16, 11, 1976, 10779, 17, 828, 510, 28, 11600, 7, 87, 28, 15, 11, 331, 10779, 16, 1539, 1976, 28, 15, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 3715, 28, 11600, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2124, 22704, 28, 11600, 7, 12860, 25249, 28, 25101, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 331, 22704, 28, 11600, 7, 12860, 25249, 28, 25101, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4843, 14171, 11639, 7890, 3256, 6715, 14171, 11639, 42594, 33809, 198, 220, 220, 220, 220, 220, 220, 220, 10330, 28, 11600, 7, 75, 28, 15, 11, 374, 28, 15, 11, 275, 28, 15, 11, 256, 28, 15, 11, 14841, 28, 15, 4008, 220, 1303, 645, 20402, 412, 22, 3901, 198, 220, 220, 220, 1441, 2336, 628, 198, 4299, 7110, 62, 13033, 7, 5647, 11, 43344, 11, 3124, 11639, 41345, 7012, 7, 13381, 11, 657, 11, 657, 11, 352, 8, 3256, 26692, 28, 17, 2599, 198, 220, 220, 220, 37227, 43328, 257, 900, 286, 513, 35, 2173, 526, 15931, 198, 220, 220, 220, 2124, 11, 331, 11, 1976, 796, 43344, 13, 51, 198, 220, 220, 220, 491, 796, 467, 13, 3351, 1436, 18, 67, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 87, 11, 331, 28, 88, 11, 1976, 28, 89, 11, 4235, 11639, 4102, 364, 3256, 18364, 62, 7857, 28, 862, 11, 198, 220, 220, 220, 220, 220, 220, 220, 18364, 62, 8043, 28, 8043, 11, 18364, 62, 1370, 62, 10394, 28, 13, 17, 8, 198, 220, 220, 220, 2336, 13, 2860, 62, 40546, 7, 2213, 8, 628, 198, 4299, 7110, 62, 25695, 7, 5647, 11, 371, 11, 256, 11, 509, 11, 3124, 11639, 81, 22296, 7, 15, 11, 657, 11, 14280, 33047, 2599, 198, 220, 220, 220, 37227, 43328, 257, 4676, 355, 257, 27763, 351, 4676, 6730, 388, 526, 15931, 198, 220, 220, 220, 2124, 11, 331, 11, 1976, 796, 256, 198, 220, 220, 220, 334, 11, 410, 11, 266, 796, 371, 2488, 532, 37659, 13, 18747, 26933, 15, 11, 657, 11, 352, 12962, 198, 220, 220, 220, 491, 796, 467, 13, 34, 505, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 41888, 87, 4357, 331, 41888, 88, 4357, 1976, 41888, 89, 4357, 334, 41888, 84, 4357, 410, 41888, 85, 4357, 266, 41888, 86, 4357, 18021, 11639, 22504, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 905, 9888, 28, 25101, 11, 7577, 38765, 28, 30109, 15, 11, 3124, 4357, 685, 16, 11, 3124, 60, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 264, 528, 368, 1098, 11639, 48546, 11537, 198, 220, 220, 220, 2336, 13, 2860, 62, 40546, 7, 2213, 8, 628, 220, 220, 220, 370, 11, 367, 796, 509, 58, 15, 11, 362, 60, 9, 17, 11, 509, 58, 16, 11, 362, 60, 9, 17, 198, 220, 220, 220, 14371, 796, 45941, 13, 18747, 26933, 58, 15, 11, 657, 4357, 685, 54, 11, 657, 4357, 685, 54, 11, 367, 4357, 685, 15, 11, 367, 4357, 685, 15, 11, 657, 11907, 8, 198, 220, 220, 220, 14371, 796, 284, 62, 26452, 32269, 7, 20772, 364, 8, 2488, 45941, 13, 75, 1292, 70, 13, 16340, 7, 42, 737, 51, 198, 220, 220, 220, 14371, 796, 357, 20772, 364, 14, 17, 8, 2488, 371, 13, 51, 1343, 256, 198, 220, 220, 220, 2124, 11, 331, 11, 1976, 796, 14371, 13, 51, 198, 220, 220, 220, 491, 796, 467, 13, 3351, 1436, 18, 67, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 28, 87, 11, 331, 28, 88, 11, 1976, 28, 89, 11, 1627, 28, 11600, 7, 8043, 11639, 41345, 7012, 7, 15, 11, 657, 11, 657, 11, 764, 20, 33047, 828, 198, 220, 220, 220, 220, 220, 220, 220, 18364, 28, 11600, 7, 7857, 28, 15, 13, 18005, 828, 905, 1455, 437, 28, 25101, 8, 198, 220, 220, 220, 2336, 13, 2860, 62, 40546, 7, 2213, 8, 628, 198, 4299, 2251, 62, 6649, 1304, 62, 11227, 341, 7, 5647, 11, 20675, 2599, 198, 220, 220, 220, 37227, 16447, 257, 28982, 326, 2355, 689, 257, 1351, 286, 20675, 357, 68, 13, 70, 13, 513, 35, 2173, 21387, 15931, 198, 220, 220, 220, 28982, 796, 1391, 6, 20214, 10354, 17635, 92, 198, 220, 220, 220, 13431, 796, 17635, 198, 220, 220, 220, 2336, 13, 2860, 62, 40546, 7, 2213, 2114, 58, 15, 12962, 198, 220, 220, 220, 4686, 87, 796, 18896, 7, 5647, 13, 7890, 8, 532, 352, 198, 220, 220, 220, 329, 1312, 11, 491, 287, 27056, 378, 7, 2213, 2114, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 13431, 13, 33295, 7, 2188, 13, 19778, 7, 3672, 28, 2536, 7, 72, 828, 20675, 41888, 312, 87, 4357, 1366, 41888, 2213, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2239, 796, 19779, 22046, 1298, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 2536, 7, 72, 8, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19779, 14535, 1298, 19779, 445, 1831, 1298, 6407, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14171, 1298, 366, 320, 13857, 20662, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 18242, 1298, 1312, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 24396, 1298, 366, 45685, 20662, 198, 220, 220, 220, 220, 220, 220, 220, 28982, 17816, 20214, 6, 4083, 33295, 7, 9662, 8, 198, 220, 220, 220, 2336, 13, 37805, 796, 46545, 7, 37805, 8, 198, 220, 220, 220, 2336, 13, 39786, 13, 6649, 4157, 796, 357, 6649, 1304, 35751, 198 ]
2.129195
1,192
import numpy as np GRID_SIZE = 5 def check_victory(check_grids: np.ndarray) -> set[int]: """return empty set if no victory, else set of id of the wining grids""" return set(np.where(check_grids.sum(axis=1).max(axis=1) == 5)[0]).union( np.where(check_grids.sum(axis=2).max(axis=1) == 5)[0] ) if __name__ == "__main__": main()
[ 11748, 299, 32152, 355, 45941, 198, 198, 10761, 2389, 62, 33489, 796, 642, 628, 628, 198, 4299, 2198, 62, 32433, 652, 7, 9122, 62, 2164, 2340, 25, 45941, 13, 358, 18747, 8, 4613, 900, 58, 600, 5974, 198, 220, 220, 220, 37227, 7783, 6565, 900, 611, 645, 5373, 11, 2073, 900, 286, 4686, 286, 262, 1592, 278, 50000, 37811, 198, 220, 220, 220, 1441, 900, 7, 37659, 13, 3003, 7, 9122, 62, 2164, 2340, 13, 16345, 7, 22704, 28, 16, 737, 9806, 7, 22704, 28, 16, 8, 6624, 642, 38381, 15, 35944, 24592, 7, 198, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 3003, 7, 9122, 62, 2164, 2340, 13, 16345, 7, 22704, 28, 17, 737, 9806, 7, 22704, 28, 16, 8, 6624, 642, 38381, 15, 60, 198, 220, 220, 220, 1267, 628, 628, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.339869
153
''' US Population Pyramid Over Time =============================== A population pyramid shows the distribution of age groups within a population. It uses a slider widget that is bound to the year to visualize the age distribution over time. ''' # category: case studies import altair as alt from altair.expr import datum, if_ from vega_datasets import data pop = data.population.url slider = alt.binding_range(min=1850, max=2000, step=10) select_year = alt.selection_single(name='year', fields=['year'], bind=slider) base = alt.Chart(pop).add_selection( select_year ).transform_filter( select_year ).transform_calculate( gender=if_(datum.sex == 1, 'Male', 'Female') ) title = alt.Axis(title='population') color_scale = alt.Scale(domain=['Male', 'Female'], range=['#1f77b4', '#e377c2']) left = base.transform_filter( datum.gender == 'Female' ).encode( y=alt.X('age:O', axis=None), x=alt.X('sum(people):Q', axis=title, sort=alt.SortOrder('descending')), color=alt.Color('gender:N', scale=color_scale, legend=None) ).mark_bar().properties(title='Female') middle = base.encode( y=alt.X('age:O', axis=None), text=alt.Text('age:Q'), ).mark_text().properties(width=20) right = base.transform_filter( datum.gender == 'Male' ).encode( y=alt.X('age:O', axis=None), x=alt.X('sum(people):Q', axis=title), color=alt.Color('gender:N', scale=color_scale, legend=None) ).mark_bar().properties(title='Male') left | middle | right
[ 7061, 6, 198, 2937, 20133, 41450, 3827, 3862, 198, 4770, 25609, 18604, 198, 32, 3265, 27944, 2523, 262, 6082, 286, 2479, 2628, 1626, 257, 3265, 13, 198, 1026, 3544, 257, 28982, 26295, 326, 318, 5421, 284, 262, 614, 284, 38350, 262, 2479, 198, 17080, 3890, 625, 640, 13, 198, 7061, 6, 198, 2, 6536, 25, 1339, 3640, 198, 11748, 5988, 958, 355, 5988, 198, 6738, 5988, 958, 13, 31937, 1330, 4818, 388, 11, 611, 62, 198, 6738, 1569, 4908, 62, 19608, 292, 1039, 1330, 1366, 198, 198, 12924, 796, 1366, 13, 39748, 13, 6371, 198, 198, 6649, 1304, 796, 5988, 13, 30786, 62, 9521, 7, 1084, 28, 1507, 1120, 11, 3509, 28, 11024, 11, 2239, 28, 940, 8, 198, 19738, 62, 1941, 796, 5988, 13, 49283, 62, 29762, 7, 3672, 11639, 1941, 3256, 7032, 28, 17816, 1941, 6, 4357, 11007, 28, 6649, 1304, 8, 198, 198, 8692, 796, 5988, 13, 45488, 7, 12924, 737, 2860, 62, 49283, 7, 198, 220, 220, 220, 2922, 62, 1941, 198, 737, 35636, 62, 24455, 7, 198, 220, 220, 220, 2922, 62, 1941, 198, 737, 35636, 62, 9948, 3129, 378, 7, 198, 220, 220, 220, 5279, 28, 361, 41052, 19608, 388, 13, 8044, 6624, 352, 11, 705, 25486, 3256, 705, 27273, 11537, 198, 8, 198, 198, 7839, 796, 5988, 13, 31554, 271, 7, 7839, 11639, 39748, 11537, 198, 8043, 62, 9888, 796, 5988, 13, 29990, 7, 27830, 28, 17816, 25486, 3256, 705, 27273, 6, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2837, 28, 17816, 2, 16, 69, 3324, 65, 19, 3256, 705, 2, 68, 26514, 66, 17, 6, 12962, 198, 198, 9464, 796, 2779, 13, 35636, 62, 24455, 7, 198, 220, 220, 220, 4818, 388, 13, 8388, 6624, 705, 27273, 6, 198, 737, 268, 8189, 7, 198, 220, 220, 220, 331, 28, 2501, 13, 55, 10786, 496, 25, 46, 3256, 16488, 28, 14202, 828, 198, 220, 220, 220, 2124, 28, 2501, 13, 55, 10786, 16345, 7, 15332, 2599, 48, 3256, 16488, 28, 7839, 11, 3297, 28, 2501, 13, 42758, 18743, 10786, 20147, 1571, 11537, 828, 198, 220, 220, 220, 3124, 28, 2501, 13, 10258, 10786, 8388, 25, 45, 3256, 5046, 28, 8043, 62, 9888, 11, 8177, 28, 14202, 8, 198, 737, 4102, 62, 5657, 22446, 48310, 7, 7839, 11639, 27273, 11537, 198, 198, 27171, 796, 2779, 13, 268, 8189, 7, 198, 220, 220, 220, 331, 28, 2501, 13, 55, 10786, 496, 25, 46, 3256, 16488, 28, 14202, 828, 198, 220, 220, 220, 2420, 28, 2501, 13, 8206, 10786, 496, 25, 48, 33809, 198, 737, 4102, 62, 5239, 22446, 48310, 7, 10394, 28, 1238, 8, 198, 198, 3506, 796, 2779, 13, 35636, 62, 24455, 7, 198, 220, 220, 220, 4818, 388, 13, 8388, 6624, 705, 25486, 6, 198, 737, 268, 8189, 7, 198, 220, 220, 220, 331, 28, 2501, 13, 55, 10786, 496, 25, 46, 3256, 16488, 28, 14202, 828, 198, 220, 220, 220, 2124, 28, 2501, 13, 55, 10786, 16345, 7, 15332, 2599, 48, 3256, 16488, 28, 7839, 828, 198, 220, 220, 220, 3124, 28, 2501, 13, 10258, 10786, 8388, 25, 45, 3256, 5046, 28, 8043, 62, 9888, 11, 8177, 28, 14202, 8, 198, 737, 4102, 62, 5657, 22446, 48310, 7, 7839, 11639, 25486, 11537, 198, 198, 9464, 930, 3504, 930, 826 ]
2.697297
555
from django.db import migrations, models import django.utils.timezone import model_utils.fields
[ 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 198, 11748, 42625, 14208, 13, 26791, 13, 2435, 11340, 198, 11748, 2746, 62, 26791, 13, 25747, 628 ]
3.592593
27
from palm_tree import db # # class Logs(db.Model): # id = db.Column(db.Integer, primary_key=True) # uuid = db.Column(db.Integer) # payload = db.Column(db.Text) # datetime = db.Column(db.DateTime) # # def __init__(self, uuid, payload, datetime): # self.uuid = uuid # self.payload = payload # self.datetime = datetime # # def __repr__(self): # return '<Data %r>' % self.payload
[ 6738, 18057, 62, 21048, 1330, 20613, 628, 198, 2, 198, 2, 1398, 5972, 82, 7, 9945, 13, 17633, 2599, 198, 2, 220, 220, 220, 220, 4686, 796, 20613, 13, 39470, 7, 9945, 13, 46541, 11, 4165, 62, 2539, 28, 17821, 8, 198, 2, 220, 220, 220, 220, 334, 27112, 796, 20613, 13, 39470, 7, 9945, 13, 46541, 8, 198, 2, 220, 220, 220, 220, 21437, 796, 20613, 13, 39470, 7, 9945, 13, 8206, 8, 198, 2, 220, 220, 220, 220, 4818, 8079, 796, 20613, 13, 39470, 7, 9945, 13, 10430, 7575, 8, 198, 2, 198, 2, 220, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 334, 27112, 11, 21437, 11, 4818, 8079, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 12303, 312, 796, 334, 27112, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 15577, 2220, 796, 21437, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 19608, 8079, 796, 4818, 8079, 198, 2, 198, 2, 220, 220, 220, 220, 825, 11593, 260, 1050, 834, 7, 944, 2599, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 27, 6601, 4064, 81, 29, 6, 4064, 2116, 13, 15577, 2220, 198 ]
2.117073
205
# Copyright 2013 Mirantis, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. import functools import re import subprocess import sys from scapy import all as scapy DHCP_OFFER_COLUMNS = ('iface', 'mac', 'server_ip', 'server_id', 'gateway', 'dport', 'message', 'yiaddr') def command_util(*command): """object with stderr and stdout """ return subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) def _check_vconfig(): """Check vconfig installed or not """ return not command_util('which', 'vconfig').stderr.read() def _iface_state(iface): """For a given iface return it's state returns UP, DOWN, UNKNOWN """ state = command_util('ip', 'link', 'show', iface).stdout.read() search_result = re.search(r'.*<(?P<state>.*)>.*', state) if search_result: state_list = search_result.groupdict().get('state', []) if 'UP' in state_list: return 'UP' else: return 'DOWN' return 'UNKNOWN' def check_iface_exist(iface): """Check provided interface exists """ return not command_util("ip", "link", "show", iface).stderr.read() def get_item_properties(item, columns): """Get specified in columns properties, with preserved order. Required for correct cli table generation :param item: dict :param columns: list with arbitrary keys """ properties = [] for key in columns: properties.append(item.get(key, '')) return properties def format_options(options): """Util for serializing dhcp options @options = [1,2,3] >>> format_options([1, 2, 3]) '\x01\x02\x03' """ return "".join((chr(item) for item in options)) def single_format(func): """Manage format of dhcp response """ return formatter
[ 2, 220, 220, 220, 15069, 2211, 7381, 20836, 11, 3457, 13, 198, 2, 198, 2, 220, 220, 220, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 345, 743, 198, 2, 220, 220, 220, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 921, 743, 7330, 198, 2, 220, 220, 220, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 220, 220, 220, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 220, 220, 220, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 198, 2, 220, 220, 220, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 4091, 262, 198, 2, 220, 220, 220, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 11247, 198, 2, 220, 220, 220, 739, 262, 13789, 13, 198, 11748, 1257, 310, 10141, 198, 11748, 302, 198, 11748, 850, 14681, 198, 11748, 25064, 198, 198, 6738, 629, 12826, 1330, 477, 355, 629, 12826, 628, 198, 41473, 8697, 62, 27977, 1137, 62, 25154, 5883, 8035, 796, 19203, 361, 558, 3256, 705, 20285, 3256, 705, 15388, 62, 541, 3256, 705, 15388, 62, 312, 3256, 705, 10494, 1014, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 67, 634, 3256, 705, 20500, 3256, 705, 48111, 29851, 11537, 628, 198, 4299, 3141, 62, 22602, 46491, 21812, 2599, 198, 220, 220, 220, 37227, 15252, 351, 336, 1082, 81, 290, 14367, 448, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 850, 14681, 13, 47, 9654, 7, 21812, 11, 14367, 448, 28, 7266, 14681, 13, 47, 4061, 36, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 336, 1082, 81, 28, 7266, 14681, 13, 47, 4061, 36, 8, 628, 198, 4299, 4808, 9122, 62, 85, 11250, 33529, 198, 220, 220, 220, 37227, 9787, 410, 11250, 6589, 393, 407, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 407, 3141, 62, 22602, 10786, 4758, 3256, 705, 85, 11250, 27691, 301, 1082, 81, 13, 961, 3419, 628, 198, 4299, 4808, 361, 558, 62, 5219, 7, 361, 558, 2599, 198, 220, 220, 220, 37227, 1890, 257, 1813, 611, 558, 1441, 340, 338, 1181, 198, 220, 220, 220, 5860, 15958, 11, 30320, 11, 4725, 44706, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1181, 796, 3141, 62, 22602, 10786, 541, 3256, 705, 8726, 3256, 705, 12860, 3256, 611, 558, 737, 19282, 448, 13, 961, 3419, 198, 220, 220, 220, 2989, 62, 20274, 796, 302, 13, 12947, 7, 81, 4458, 9, 27, 7, 30, 47, 27, 5219, 29, 15885, 8, 29, 15885, 3256, 1181, 8, 198, 220, 220, 220, 611, 2989, 62, 20274, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1181, 62, 4868, 796, 2989, 62, 20274, 13, 8094, 11600, 22446, 1136, 10786, 5219, 3256, 685, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 8577, 6, 287, 1181, 62, 4868, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 8577, 6, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 41925, 6, 198, 220, 220, 220, 1441, 705, 4944, 44706, 6, 628, 198, 198, 4299, 2198, 62, 361, 558, 62, 38476, 7, 361, 558, 2599, 198, 220, 220, 220, 37227, 9787, 2810, 7071, 7160, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 407, 3141, 62, 22602, 7203, 541, 1600, 366, 8726, 1600, 366, 12860, 1600, 611, 558, 737, 301, 1082, 81, 13, 961, 3419, 628, 628, 198, 4299, 651, 62, 9186, 62, 48310, 7, 9186, 11, 15180, 2599, 198, 220, 220, 220, 37227, 3855, 7368, 287, 15180, 6608, 11, 351, 17232, 1502, 13, 198, 220, 220, 220, 20906, 329, 3376, 537, 72, 3084, 5270, 628, 220, 220, 220, 1058, 17143, 2378, 25, 8633, 198, 220, 220, 220, 1058, 17143, 15180, 25, 1351, 351, 14977, 8251, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6608, 796, 17635, 198, 220, 220, 220, 329, 1994, 287, 15180, 25, 198, 220, 220, 220, 220, 220, 220, 220, 6608, 13, 33295, 7, 9186, 13, 1136, 7, 2539, 11, 10148, 4008, 198, 220, 220, 220, 1441, 6608, 628, 198, 4299, 5794, 62, 25811, 7, 25811, 2599, 198, 220, 220, 220, 37227, 18274, 346, 329, 11389, 2890, 34590, 13155, 3689, 198, 220, 220, 220, 2488, 25811, 796, 685, 16, 11, 17, 11, 18, 60, 198, 220, 220, 220, 13163, 5794, 62, 25811, 26933, 16, 11, 362, 11, 513, 12962, 198, 220, 220, 220, 705, 59, 87, 486, 59, 87, 2999, 59, 87, 3070, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 366, 1911, 22179, 19510, 354, 81, 7, 9186, 8, 329, 2378, 287, 3689, 4008, 628, 628, 198, 4299, 2060, 62, 18982, 7, 20786, 2599, 198, 220, 220, 220, 37227, 5124, 496, 5794, 286, 34590, 13155, 2882, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 1296, 1436, 628, 628, 198 ]
2.661093
897
from ma import ma from models.johnson_scanner_data import JohnsonScannerDataModel from schemas.brand import BrandSchema from schemas.category import CategorySchema from schemas.facts_in_data import FactsInDataSchema from schemas.market import MarketSchema from schemas.period import PeriodSchema
[ 6738, 17266, 1330, 17266, 198, 6738, 4981, 13, 30686, 1559, 62, 35836, 1008, 62, 7890, 1330, 5030, 33351, 1008, 6601, 17633, 198, 6738, 3897, 5356, 13, 17938, 1330, 13512, 27054, 2611, 198, 6738, 3897, 5356, 13, 22872, 1330, 21743, 27054, 2611, 198, 6738, 3897, 5356, 13, 37473, 62, 259, 62, 7890, 1330, 26972, 818, 6601, 27054, 2611, 198, 6738, 3897, 5356, 13, 10728, 1330, 5991, 27054, 2611, 198, 6738, 3897, 5356, 13, 41007, 1330, 18581, 27054, 2611, 628, 628, 198 ]
3.75
80
#!/usr/bin/env python # coding: utf-8 # In[ ]: ################################################################################ # CSE 253: Programming Assignment 3 # Winter 2019 # Code author: Jenny Hamer (+ modifications by Tejash Desai) # # Filename: baseline_cnn.py # # Description: # # This file contains the starter code for the baseline architecture you will use # to get a little practice with PyTorch and compare the results of with your # improved architecture. # # Be sure to fill in the code in the areas marked #TODO. ################################################################################ # PyTorch and neural network imports import torch from torch.autograd import Variable import torch.nn as nn import torch.nn.functional as func import torch.nn.init as torch_init import torch.optim as optim # Data utils and dataloader import torchvision from torchvision import transforms, utils from xray_dataloader_zscored import ChestXrayDataset, create_split_loaders import matplotlib.pyplot as plt import numpy as np import os
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 19617, 25, 3384, 69, 12, 23, 198, 198, 2, 554, 58, 2361, 25, 628, 198, 29113, 29113, 14468, 198, 2, 327, 5188, 32056, 25, 30297, 50144, 513, 198, 2, 10633, 13130, 198, 2, 6127, 1772, 25, 28437, 367, 2382, 11502, 19008, 416, 1665, 73, 1077, 2935, 1872, 8, 198, 2, 198, 2, 7066, 12453, 25, 14805, 62, 66, 20471, 13, 9078, 198, 2, 198, 2, 12489, 25, 198, 2, 198, 2, 770, 2393, 4909, 262, 14217, 2438, 329, 262, 14805, 10959, 345, 481, 779, 198, 2, 284, 651, 257, 1310, 3357, 351, 9485, 15884, 354, 290, 8996, 262, 2482, 286, 351, 534, 198, 2, 6596, 10959, 13, 198, 2, 198, 2, 1355, 1654, 284, 6070, 287, 262, 2438, 287, 262, 3006, 7498, 1303, 51, 3727, 46, 13, 198, 29113, 29113, 14468, 628, 198, 2, 9485, 15884, 354, 290, 17019, 3127, 17944, 198, 11748, 28034, 198, 6738, 28034, 13, 2306, 519, 6335, 1330, 35748, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 11748, 28034, 13, 20471, 13, 45124, 355, 25439, 198, 11748, 28034, 13, 20471, 13, 15003, 355, 28034, 62, 15003, 198, 11748, 28034, 13, 40085, 355, 6436, 198, 198, 2, 6060, 3384, 4487, 290, 4818, 282, 1170, 263, 198, 11748, 28034, 10178, 198, 6738, 28034, 10178, 1330, 31408, 11, 3384, 4487, 198, 6738, 2124, 2433, 62, 67, 10254, 1170, 263, 62, 89, 1416, 1850, 1330, 25544, 55, 2433, 27354, 292, 316, 11, 2251, 62, 35312, 62, 2220, 364, 198, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28686, 628, 628 ]
3.867647
272
import json import urllib.request import credentials from datetime import datetime, timedelta api = NewsAPI(credentials.NYT_API) date_time_obj = datetime.now() api.get_nyt_last_week_articles('election', date_time_obj)
[ 11748, 33918, 198, 11748, 2956, 297, 571, 13, 25927, 198, 11748, 18031, 198, 6738, 4818, 8079, 1330, 4818, 8079, 11, 28805, 12514, 198, 198, 15042, 796, 3000, 17614, 7, 66, 445, 14817, 13, 12805, 51, 62, 17614, 8, 198, 4475, 62, 2435, 62, 26801, 796, 4818, 8079, 13, 2197, 3419, 198, 15042, 13, 1136, 62, 3281, 83, 62, 12957, 62, 10464, 62, 26845, 10786, 14300, 3256, 3128, 62, 2435, 62, 26801, 8 ]
3.027778
72
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). You # may not use this file except in compliance with the License. A copy of # the License is located at # # http://aws.amazon.com/apache2.0/ # # or in the "license" file accompanying this file. This file is # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. from smexperiments import trial_component, api_types import datetime import pytest import unittest.mock
[ 2, 15069, 13130, 6186, 13, 785, 11, 3457, 13, 393, 663, 29116, 13, 1439, 6923, 33876, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 11074, 921, 198, 2, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 317, 4866, 286, 198, 2, 262, 13789, 318, 5140, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 8356, 13, 33103, 13, 785, 14, 43073, 17, 13, 15, 14, 198, 2, 198, 2, 393, 287, 262, 366, 43085, 1, 2393, 19249, 428, 2393, 13, 770, 2393, 318, 198, 2, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 198, 2, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 4091, 262, 13789, 329, 262, 2176, 198, 2, 3303, 15030, 21627, 290, 11247, 739, 262, 13789, 13, 198, 6738, 895, 23100, 6800, 1330, 4473, 62, 42895, 11, 40391, 62, 19199, 198, 198, 11748, 4818, 8079, 198, 11748, 12972, 9288, 198, 11748, 555, 715, 395, 13, 76, 735, 628, 628, 628, 628, 628 ]
3.710383
183
from cadnano.cnproxy import UndoCommand from cadnano.strand import Strand from cadnano import getBatch import cadnano.preferences as prefs import random # end class # end class
[ 6738, 20603, 77, 5733, 13, 31522, 36436, 1330, 13794, 78, 21575, 198, 6738, 20603, 77, 5733, 13, 2536, 392, 1330, 4285, 392, 198, 6738, 20603, 77, 5733, 1330, 651, 33, 963, 198, 11748, 20603, 77, 5733, 13, 3866, 69, 4972, 355, 7694, 82, 198, 11748, 4738, 198, 2, 886, 1398, 198, 2, 886, 1398 ]
3.259259
54
from w1thermsensor import W1ThermSensor sensor = W1ThermSensor() temperature_in_celsius = sensor.get_temperature() temperature_in_fahrenheit = sensor.get_temperature(W1ThermSensor.DEGREES_F) temperature_in_all_units = sensor.get_temperatures([W1ThermSensor.DEGREES_C, W1ThermSensor.DEGREES_F, W1ThermSensor.KELVIN]) print("Sensor id:" + sensor.id) print(temperature_in_celsius)
[ 6738, 266, 16, 490, 907, 22854, 1330, 370, 16, 35048, 76, 47864, 198, 198, 82, 22854, 796, 370, 16, 35048, 76, 47864, 3419, 198, 11498, 21069, 62, 259, 62, 5276, 82, 3754, 796, 12694, 13, 1136, 62, 11498, 21069, 3419, 198, 11498, 21069, 62, 259, 62, 69, 993, 34032, 796, 12694, 13, 1136, 62, 11498, 21069, 7, 54, 16, 35048, 76, 47864, 13, 35, 7156, 2200, 1546, 62, 37, 8, 198, 11498, 21069, 62, 259, 62, 439, 62, 41667, 796, 12694, 13, 1136, 62, 11498, 525, 6691, 26933, 54, 16, 35048, 76, 47864, 13, 35, 7156, 2200, 1546, 62, 34, 11, 370, 16, 35048, 76, 47864, 13, 35, 7156, 2200, 1546, 62, 37, 11, 370, 16, 35048, 76, 47864, 13, 42, 3698, 53, 1268, 12962, 198, 4798, 7203, 47864, 4686, 11097, 1343, 12694, 13, 312, 8, 198, 4798, 7, 11498, 21069, 62, 259, 62, 5276, 82, 3754, 8, 198 ]
2.543624
149
# Generated by Django 3.1.1 on 2020-09-01 17:04 from django.db import migrations, models
[ 2, 2980, 515, 416, 37770, 513, 13, 16, 13, 16, 319, 12131, 12, 2931, 12, 486, 1596, 25, 3023, 198, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 628 ]
2.84375
32
#Copyright ReportLab Europe Ltd. 2000-2016 #see license.txt for license details #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/graphics/charts/__init__.py __version__='3.3.0' __doc__='''Business charts'''
[ 2, 15269, 6358, 17822, 2031, 12052, 13, 4751, 12, 5304, 198, 2, 3826, 5964, 13, 14116, 329, 5964, 3307, 198, 2, 23569, 2638, 1378, 2503, 13, 13116, 23912, 13, 1073, 13, 2724, 14, 37157, 12, 8800, 14, 1177, 66, 14259, 13, 37157, 14, 11377, 14, 13116, 23912, 14, 2213, 2954, 14, 13116, 23912, 14, 70, 11549, 14, 354, 5889, 14, 834, 15003, 834, 13, 9078, 198, 834, 9641, 834, 11639, 18, 13, 18, 13, 15, 6, 198, 834, 15390, 834, 28, 7061, 6, 24749, 15907, 7061, 6, 198 ]
2.806818
88
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # pylint:disable=too-many-lines import os try: from urllib.parse import urlparse except ImportError: from urlparse import urlparse # pylint: disable=import-error from knack.log import get_logger from knack.util import CLIError from azure.cli.core.commands.validators import ( get_default_location_from_resource_group, validate_file_or_dict, validate_parameter_set, validate_tags) from azure.cli.core.util import hash_string from azure.cli.command_modules.vm._vm_utils import check_existence, get_target_network_api, get_storage_blob_uri from azure.cli.command_modules.vm._template_builder import StorageProfile import azure.cli.core.keys as keys from ._client_factory import _compute_client_factory from ._actions import _get_latest_image_version logger = get_logger(__name__) def _get_resource_group_from_vault_name(cli_ctx, vault_name): """ Fetch resource group from vault name :param str vault_name: name of the key vault :return: resource group name or None :rtype: str """ from azure.cli.core.profiles import ResourceType from azure.cli.core.commands.client_factory import get_mgmt_service_client from msrestazure.tools import parse_resource_id client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_KEYVAULT).vaults for vault in client.list(): id_comps = parse_resource_id(vault.id) if id_comps['name'] == vault_name: return id_comps['resource_group'] return None def _validate_secrets(secrets, os_type): """ Validates a parsed JSON array containing secrets for use in VM Creation Secrets JSON structure [{ "sourceVault": { "id": "value" }, "vaultCertificates": [{ "certificateUrl": "value", "certificateStore": "cert store name (only on windows)" }] }] :param dict secrets: Dict fitting the JSON description above :param string os_type: the type of OS (linux or windows) :return: errors if any were found :rtype: list """ is_windows = os_type == 'windows' errors = [] try: loaded_secret = [validate_file_or_dict(secret) for secret in secrets] except Exception as err: raise CLIError('Error decoding secrets: {0}'.format(err)) for idx_arg, narg_secret in enumerate(loaded_secret): for idx, secret in enumerate(narg_secret): if 'sourceVault' not in secret: errors.append( 'Secret is missing sourceVault key at index {0} in arg {1}'.format( idx, idx_arg)) if 'sourceVault' in secret and 'id' not in secret['sourceVault']: errors.append( 'Secret is missing sourceVault.id key at index {0} in arg {1}'.format( idx, idx_arg)) if 'vaultCertificates' not in secret or not secret['vaultCertificates']: err = 'Secret is missing vaultCertificates array or it is empty at index {0} in ' \ 'arg {1} ' errors.append(err.format(idx, idx_arg)) else: for jdx, cert in enumerate(secret['vaultCertificates']): message = 'Secret is missing {0} within vaultCertificates array at secret ' \ 'index {1} and vaultCertificate index {2} in arg {3}' if 'certificateUrl' not in cert: errors.append(message.format('certificateUrl', idx, jdx, idx_arg)) if is_windows and 'certificateStore' not in cert: errors.append(message.format('certificateStore', idx, jdx, idx_arg)) if errors: raise CLIError('\n'.join(errors)) # region VM Create Validators def _parse_image_argument(cmd, namespace): """ Systematically determines what type is supplied for the --image parameter. Updates the namespace and returns the type for subsequent processing. """ from msrestazure.tools import is_valid_resource_id from msrestazure.azure_exceptions import CloudError import re # 1 - check if a fully-qualified ID (assumes it is an image ID) if is_valid_resource_id(namespace.image): return 'image_id' # 2 - attempt to match an URN pattern urn_match = re.match('([^:]*):([^:]*):([^:]*):([^:]*)', namespace.image) if urn_match: namespace.os_publisher = urn_match.group(1) namespace.os_offer = urn_match.group(2) namespace.os_sku = urn_match.group(3) namespace.os_version = urn_match.group(4) if not any([namespace.plan_name, namespace.plan_product, namespace.plan_publisher]): image_plan = _get_image_plan_info_if_exists(cmd, namespace) if image_plan: namespace.plan_name = image_plan.name namespace.plan_product = image_plan.product namespace.plan_publisher = image_plan.publisher return 'urn' # 3 - unmanaged vhd based images? if urlparse(namespace.image).scheme: return 'uri' # 4 - attempt to match an URN alias (most likely) from azure.cli.command_modules.vm._actions import load_images_from_aliases_doc images = load_images_from_aliases_doc(cmd.cli_ctx) matched = next((x for x in images if x['urnAlias'].lower() == namespace.image.lower()), None) if matched: namespace.os_publisher = matched['publisher'] namespace.os_offer = matched['offer'] namespace.os_sku = matched['sku'] namespace.os_version = matched['version'] return 'urn' # 5 - check if an existing managed disk image resource compute_client = _compute_client_factory(cmd.cli_ctx) try: compute_client.images.get(namespace.resource_group_name, namespace.image) namespace.image = _get_resource_id(cmd.cli_ctx, namespace.image, namespace.resource_group_name, 'images', 'Microsoft.Compute') return 'image_id' except CloudError: err = 'Invalid image "{}". Use a custom image name, id, or pick one from {}' raise CLIError(err.format(namespace.image, [x['urnAlias'] for x in images])) # pylint: disable=inconsistent-return-statements # pylint: disable=too-many-branches, too-many-statements # endregion # region VMSS Create Validators # endregion # region disk, snapshot, image validators # TODO move to its own command module https://github.com/Azure/azure-cli/issues/5105 # endregion
[ 2, 16529, 1783, 10541, 198, 2, 15069, 357, 66, 8, 5413, 10501, 13, 1439, 2489, 10395, 13, 198, 2, 49962, 739, 262, 17168, 13789, 13, 4091, 13789, 13, 14116, 287, 262, 1628, 6808, 329, 5964, 1321, 13, 198, 2, 16529, 1783, 10541, 198, 198, 2, 279, 2645, 600, 25, 40223, 28, 18820, 12, 21834, 12, 6615, 198, 198, 11748, 28686, 198, 28311, 25, 198, 220, 220, 220, 422, 2956, 297, 571, 13, 29572, 1330, 19016, 29572, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 422, 19016, 29572, 1330, 19016, 29572, 220, 1303, 279, 2645, 600, 25, 15560, 28, 11748, 12, 18224, 198, 198, 6738, 47868, 13, 6404, 1330, 651, 62, 6404, 1362, 198, 6738, 47868, 13, 22602, 1330, 43749, 12331, 198, 198, 6738, 35560, 495, 13, 44506, 13, 7295, 13, 9503, 1746, 13, 12102, 2024, 1330, 357, 198, 220, 220, 220, 651, 62, 12286, 62, 24886, 62, 6738, 62, 31092, 62, 8094, 11, 26571, 62, 7753, 62, 273, 62, 11600, 11, 26571, 62, 17143, 2357, 62, 2617, 11, 26571, 62, 31499, 8, 198, 6738, 35560, 495, 13, 44506, 13, 7295, 13, 22602, 1330, 12234, 62, 8841, 198, 6738, 35560, 495, 13, 44506, 13, 21812, 62, 18170, 13, 14761, 13557, 14761, 62, 26791, 1330, 2198, 62, 41084, 11, 651, 62, 16793, 62, 27349, 62, 15042, 11, 651, 62, 35350, 62, 2436, 672, 62, 9900, 198, 6738, 35560, 495, 13, 44506, 13, 21812, 62, 18170, 13, 14761, 13557, 28243, 62, 38272, 1330, 20514, 37046, 198, 11748, 35560, 495, 13, 44506, 13, 7295, 13, 13083, 355, 8251, 198, 198, 6738, 47540, 16366, 62, 69, 9548, 1330, 4808, 5589, 1133, 62, 16366, 62, 69, 9548, 198, 6738, 47540, 4658, 1330, 4808, 1136, 62, 42861, 62, 9060, 62, 9641, 198, 6404, 1362, 796, 651, 62, 6404, 1362, 7, 834, 3672, 834, 8, 628, 628, 628, 198, 4299, 4808, 1136, 62, 31092, 62, 8094, 62, 6738, 62, 85, 1721, 62, 3672, 7, 44506, 62, 49464, 11, 22563, 62, 3672, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 376, 7569, 8271, 1448, 422, 22563, 1438, 198, 220, 220, 220, 1058, 17143, 965, 22563, 62, 3672, 25, 1438, 286, 262, 1994, 22563, 198, 220, 220, 220, 1058, 7783, 25, 8271, 1448, 1438, 393, 6045, 198, 220, 220, 220, 1058, 81, 4906, 25, 965, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 35560, 495, 13, 44506, 13, 7295, 13, 5577, 2915, 1330, 20857, 6030, 198, 220, 220, 220, 422, 35560, 495, 13, 44506, 13, 7295, 13, 9503, 1746, 13, 16366, 62, 69, 9548, 1330, 651, 62, 11296, 16762, 62, 15271, 62, 16366, 198, 220, 220, 220, 422, 13845, 2118, 1031, 495, 13, 31391, 1330, 21136, 62, 31092, 62, 312, 198, 220, 220, 220, 5456, 796, 651, 62, 11296, 16762, 62, 15271, 62, 16366, 7, 44506, 62, 49464, 11, 20857, 6030, 13, 20474, 13752, 62, 20373, 11731, 16724, 737, 85, 13185, 198, 220, 220, 220, 329, 22563, 287, 5456, 13, 4868, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 4686, 62, 785, 862, 796, 21136, 62, 31092, 62, 312, 7, 85, 1721, 13, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 4686, 62, 785, 862, 17816, 3672, 20520, 6624, 22563, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4686, 62, 785, 862, 17816, 31092, 62, 8094, 20520, 198, 220, 220, 220, 1441, 6045, 628, 628, 628, 198, 4299, 4808, 12102, 378, 62, 2363, 8004, 7, 2363, 8004, 11, 28686, 62, 4906, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3254, 37051, 257, 44267, 19449, 7177, 7268, 13141, 329, 779, 287, 16990, 21582, 198, 220, 220, 220, 23561, 19449, 4645, 198, 220, 220, 220, 685, 90, 198, 220, 220, 220, 220, 220, 220, 220, 366, 10459, 53, 1721, 1298, 1391, 366, 312, 1298, 366, 8367, 1, 8964, 198, 220, 220, 220, 220, 220, 220, 220, 366, 85, 1721, 37608, 811, 689, 1298, 685, 90, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22583, 22460, 28165, 1298, 366, 8367, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 22583, 22460, 22658, 1298, 366, 22583, 3650, 1438, 357, 8807, 319, 9168, 16725, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 60, 198, 220, 220, 220, 1782, 60, 198, 220, 220, 220, 1058, 17143, 8633, 13141, 25, 360, 713, 15830, 262, 19449, 6764, 2029, 198, 220, 220, 220, 1058, 17143, 4731, 28686, 62, 4906, 25, 262, 2099, 286, 7294, 357, 23289, 393, 9168, 8, 198, 220, 220, 220, 1058, 7783, 25, 8563, 611, 597, 547, 1043, 198, 220, 220, 220, 1058, 81, 4906, 25, 1351, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 318, 62, 28457, 796, 28686, 62, 4906, 6624, 705, 28457, 6, 198, 220, 220, 220, 8563, 796, 17635, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9639, 62, 21078, 796, 685, 12102, 378, 62, 7753, 62, 273, 62, 11600, 7, 21078, 8, 329, 3200, 287, 13141, 60, 198, 220, 220, 220, 2845, 35528, 355, 11454, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 43749, 12331, 10786, 12331, 39938, 13141, 25, 1391, 15, 92, 4458, 18982, 7, 8056, 4008, 628, 220, 220, 220, 329, 4686, 87, 62, 853, 11, 299, 853, 62, 21078, 287, 27056, 378, 7, 14578, 62, 21078, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 4686, 87, 11, 3200, 287, 27056, 378, 7, 77, 853, 62, 21078, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 10459, 53, 1721, 6, 407, 287, 3200, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8563, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23725, 318, 4814, 2723, 53, 1721, 1994, 379, 6376, 1391, 15, 92, 287, 1822, 1391, 16, 92, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 11, 4686, 87, 62, 853, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 10459, 53, 1721, 6, 287, 3200, 290, 705, 312, 6, 407, 287, 3200, 17816, 10459, 53, 1721, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8563, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 23725, 318, 4814, 2723, 53, 1721, 13, 312, 1994, 379, 6376, 1391, 15, 92, 220, 287, 1822, 1391, 16, 92, 4458, 18982, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4686, 87, 11, 4686, 87, 62, 853, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 85, 1721, 37608, 811, 689, 6, 407, 287, 3200, 393, 407, 3200, 17816, 85, 1721, 37608, 811, 689, 6, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11454, 796, 705, 23725, 318, 4814, 22563, 37608, 811, 689, 7177, 393, 340, 318, 6565, 379, 6376, 1391, 15, 92, 287, 705, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 853, 1391, 16, 92, 705, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8563, 13, 33295, 7, 8056, 13, 18982, 7, 312, 87, 11, 4686, 87, 62, 853, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 474, 34350, 11, 5051, 287, 27056, 378, 7, 21078, 17816, 85, 1721, 37608, 811, 689, 20520, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3275, 796, 705, 23725, 318, 4814, 1391, 15, 92, 1626, 22563, 37608, 811, 689, 7177, 379, 3200, 705, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9630, 1391, 16, 92, 290, 22563, 37608, 22460, 6376, 1391, 17, 92, 287, 1822, 1391, 18, 92, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 705, 22583, 22460, 28165, 6, 407, 287, 5051, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8563, 13, 33295, 7, 20500, 13, 18982, 10786, 22583, 22460, 28165, 3256, 4686, 87, 11, 474, 34350, 11, 4686, 87, 62, 853, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 62, 28457, 290, 705, 22583, 22460, 22658, 6, 407, 287, 5051, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8563, 13, 33295, 7, 20500, 13, 18982, 10786, 22583, 22460, 22658, 3256, 4686, 87, 11, 474, 34350, 11, 4686, 87, 62, 853, 4008, 628, 220, 220, 220, 611, 8563, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 43749, 12331, 10786, 59, 77, 4458, 22179, 7, 48277, 4008, 628, 198, 2, 3814, 16990, 13610, 48951, 2024, 628, 198, 4299, 4808, 29572, 62, 9060, 62, 49140, 7, 28758, 11, 25745, 2599, 198, 220, 220, 220, 37227, 4482, 4142, 15947, 644, 2099, 318, 14275, 329, 262, 1377, 9060, 11507, 13, 28090, 262, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 290, 5860, 262, 2099, 329, 8840, 7587, 13, 37227, 198, 220, 220, 220, 422, 13845, 2118, 1031, 495, 13, 31391, 1330, 318, 62, 12102, 62, 31092, 62, 312, 198, 220, 220, 220, 422, 13845, 2118, 1031, 495, 13, 1031, 495, 62, 1069, 11755, 1330, 10130, 12331, 198, 220, 220, 220, 1330, 302, 628, 220, 220, 220, 1303, 352, 532, 2198, 611, 257, 3938, 12, 22557, 4522, 357, 562, 8139, 340, 318, 281, 2939, 4522, 8, 198, 220, 220, 220, 611, 318, 62, 12102, 62, 31092, 62, 312, 7, 14933, 10223, 13, 9060, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 9060, 62, 312, 6, 628, 220, 220, 220, 1303, 362, 532, 2230, 284, 2872, 281, 37902, 45, 3912, 198, 220, 220, 220, 220, 700, 62, 15699, 796, 302, 13, 15699, 10786, 26933, 61, 47715, 9, 2599, 26933, 61, 47715, 9, 2599, 26933, 61, 47715, 9, 2599, 26933, 61, 47715, 28104, 3256, 25745, 13, 9060, 8, 198, 220, 220, 220, 611, 220, 700, 62, 15699, 25, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 418, 62, 12984, 8191, 796, 220, 700, 62, 15699, 13, 8094, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 418, 62, 47895, 796, 220, 700, 62, 15699, 13, 8094, 7, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 418, 62, 8135, 84, 796, 220, 700, 62, 15699, 13, 8094, 7, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 418, 62, 9641, 796, 220, 700, 62, 15699, 13, 8094, 7, 19, 8, 628, 220, 220, 220, 220, 220, 220, 220, 611, 407, 597, 26933, 14933, 10223, 13, 11578, 62, 3672, 11, 25745, 13, 11578, 62, 11167, 11, 25745, 13, 11578, 62, 12984, 8191, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2939, 62, 11578, 796, 4808, 1136, 62, 9060, 62, 11578, 62, 10951, 62, 361, 62, 1069, 1023, 7, 28758, 11, 25745, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2939, 62, 11578, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 11578, 62, 3672, 796, 2939, 62, 11578, 13, 3672, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 11578, 62, 11167, 796, 2939, 62, 11578, 13, 11167, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 11578, 62, 12984, 8191, 796, 2939, 62, 11578, 13, 12984, 8191, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 700, 6, 628, 220, 220, 220, 1303, 513, 532, 29389, 1886, 410, 31298, 1912, 4263, 30, 198, 220, 220, 220, 611, 19016, 29572, 7, 14933, 10223, 13, 9060, 737, 15952, 1326, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 9900, 6, 628, 220, 220, 220, 1303, 604, 532, 2230, 284, 2872, 281, 37902, 45, 16144, 357, 1712, 1884, 8, 198, 220, 220, 220, 422, 35560, 495, 13, 44506, 13, 21812, 62, 18170, 13, 14761, 13557, 4658, 1330, 3440, 62, 17566, 62, 6738, 62, 7344, 1386, 62, 15390, 198, 220, 220, 220, 4263, 796, 3440, 62, 17566, 62, 6738, 62, 7344, 1386, 62, 15390, 7, 28758, 13, 44506, 62, 49464, 8, 198, 220, 220, 220, 14451, 796, 1306, 19510, 87, 329, 2124, 287, 4263, 611, 2124, 17816, 700, 40489, 6, 4083, 21037, 3419, 6624, 25745, 13, 9060, 13, 21037, 3419, 828, 6045, 8, 198, 220, 220, 220, 611, 14451, 25, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 418, 62, 12984, 8191, 796, 14451, 17816, 12984, 8191, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 418, 62, 47895, 796, 14451, 17816, 47895, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 418, 62, 8135, 84, 796, 14451, 17816, 8135, 84, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 418, 62, 9641, 796, 14451, 17816, 9641, 20520, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 700, 6, 628, 220, 220, 220, 1303, 642, 532, 2198, 611, 281, 4683, 5257, 11898, 2939, 8271, 198, 220, 220, 220, 24061, 62, 16366, 796, 4808, 5589, 1133, 62, 16366, 62, 69, 9548, 7, 28758, 13, 44506, 62, 49464, 8, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 24061, 62, 16366, 13, 17566, 13, 1136, 7, 14933, 10223, 13, 31092, 62, 8094, 62, 3672, 11, 25745, 13, 9060, 8, 198, 220, 220, 220, 220, 220, 220, 220, 25745, 13, 9060, 796, 4808, 1136, 62, 31092, 62, 312, 7, 28758, 13, 44506, 62, 49464, 11, 25745, 13, 9060, 11, 25745, 13, 31092, 62, 8094, 62, 3672, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 17566, 3256, 705, 15905, 13, 7293, 1133, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 9060, 62, 312, 6, 198, 220, 220, 220, 2845, 10130, 12331, 25, 198, 220, 220, 220, 220, 220, 220, 220, 11454, 796, 705, 44651, 2939, 45144, 92, 1911, 5765, 257, 2183, 2939, 1438, 11, 4686, 11, 393, 2298, 530, 422, 23884, 6, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 43749, 12331, 7, 8056, 13, 18982, 7, 14933, 10223, 13, 9060, 11, 685, 87, 17816, 700, 40489, 20520, 329, 2124, 287, 4263, 60, 4008, 628, 198, 198, 2, 279, 2645, 600, 25, 15560, 28, 1939, 684, 7609, 12, 7783, 12, 14269, 3196, 628, 628, 198, 2, 279, 2645, 600, 25, 15560, 28, 18820, 12, 21834, 12, 1671, 12140, 11, 1165, 12, 21834, 12, 14269, 3196, 628, 628, 628, 628, 628, 628, 628, 628, 628, 198, 198, 2, 886, 36996, 628, 198, 2, 3814, 16990, 5432, 13610, 48951, 2024, 628, 628, 198, 198, 2, 886, 36996, 628, 198, 2, 3814, 11898, 11, 27479, 11, 2939, 4938, 2024, 628, 628, 628, 628, 198, 198, 2, 16926, 46, 1445, 284, 663, 898, 3141, 8265, 3740, 1378, 12567, 13, 785, 14, 26903, 495, 14, 1031, 495, 12, 44506, 14, 37165, 14, 20, 13348, 198, 198, 2, 886, 36996, 198 ]
2.544177
2,705
import re import httplib2 from bs4 import BeautifulSoup from scraping.faqscrapperutil import stripExtra, removeDuplicates, removeBlackListedQuestions, getBlackListedQuestions, convertToJsonList, saveToMongo from scraping.Constants import ENABLE_CUSTOM_QUESTIONS_FILTER, FAQ_LINKS, COLLECTION_NAME # link = "https://transportation.oregonstate.edu/aabc/frequently-asked-questions" # questions, answerList = getFaqOfLink(link) if __name__== "__main__": with open(FAQ_LINKS, 'r') as myfile: FAQ_LINKS = myfile.read().split('\n') faqJsonList = [] for i in range(0, len(FAQ_LINKS)): link = FAQ_LINKS[i] questions, answerList = getFaqOfLink(link) jsonList = convertToJsonList(link, questions, answerList) faqJsonList.extend(jsonList) # saveJsonToFile(faqJsonList, "output.txt") saveToMongo(faqJsonList, COLLECTION_NAME)
[ 11748, 302, 198, 11748, 1841, 489, 571, 17, 198, 6738, 275, 82, 19, 1330, 23762, 50, 10486, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 6738, 46743, 13, 13331, 80, 1416, 430, 2848, 22602, 1330, 10283, 27726, 11, 4781, 35660, 489, 16856, 11, 4781, 9915, 43, 6347, 35741, 11, 651, 9915, 43, 6347, 35741, 11, 10385, 2514, 41, 1559, 8053, 11, 3613, 2514, 44, 25162, 198, 6738, 46743, 13, 34184, 1187, 1330, 412, 4535, 19146, 62, 34, 7759, 2662, 62, 35780, 11053, 62, 46700, 5781, 11, 18749, 62, 43, 17248, 50, 11, 20444, 16779, 2849, 62, 20608, 628, 198, 198, 2, 2792, 796, 366, 5450, 1378, 7645, 10189, 13, 382, 14520, 5219, 13, 15532, 14, 64, 39305, 14, 69, 37971, 12, 2093, 276, 12, 6138, 507, 1, 198, 2, 2683, 11, 3280, 8053, 796, 651, 37, 30188, 5189, 11280, 7, 8726, 8, 628, 198, 361, 11593, 3672, 834, 855, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 351, 1280, 7, 42680, 62, 43, 17248, 50, 11, 705, 81, 11537, 355, 616, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 18749, 62, 43, 17248, 50, 796, 616, 7753, 13, 961, 22446, 35312, 10786, 59, 77, 11537, 198, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 24685, 80, 41, 1559, 8053, 796, 17635, 198, 220, 220, 220, 329, 1312, 287, 2837, 7, 15, 11, 18896, 7, 42680, 62, 43, 17248, 50, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2792, 796, 18749, 62, 43, 17248, 50, 58, 72, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2683, 11, 3280, 8053, 796, 651, 37, 30188, 5189, 11280, 7, 8726, 8, 198, 220, 220, 220, 220, 220, 220, 220, 33918, 8053, 796, 10385, 2514, 41, 1559, 8053, 7, 8726, 11, 2683, 11, 3280, 8053, 8, 198, 220, 220, 220, 220, 220, 220, 220, 24685, 80, 41, 1559, 8053, 13, 2302, 437, 7, 17752, 8053, 8, 198, 220, 220, 220, 220, 220, 220, 198, 2, 220, 220, 220, 220, 3613, 41, 1559, 2514, 8979, 7, 13331, 80, 41, 1559, 8053, 11, 366, 22915, 13, 14116, 4943, 220, 220, 220, 220, 198, 220, 220, 220, 3613, 2514, 44, 25162, 7, 13331, 80, 41, 1559, 8053, 11, 20444, 16779, 2849, 62, 20608, 8 ]
2.364341
387
"""Terminal utilities specific to message archives. Creates colored text and helps write Messages output. """ from contextlib import contextmanager import itertools import readline FG_COLORS = dict(itertools.chain( zip(("black", "red", "green", "yellow", "blue", "magenta", "cyan", "white", ), range(30, 38)), zip(("bright_black", "bright_red", "bright_green", "bright_yellow", "bright_blue", "bright_magenta", "bright_cyan", "bright_white", ), range(90, 98)))) BG_COLORS = dict((f"on_{key}", val + 10) for key, val in FG_COLORS.items()) ATTRIBUTES = dict( zip(("bold", "faint", "italic", "underline", "slow_blink", "rapid_blink", "reverse", "conceal", "strikethrough", ), range(1, 10))) def colored(text, color=None, on_color=None, attrs=None, escape=False): """Wraps text with ANSI escape codes to achieve the desired look. Args: color: The foreground color. on_color: The background color. attrs: A list of effects. escape: True to escape invisibles (for readline); else False. Returns: A string with the original text wrapped by escape codes. """ codes = [] if color: codes.append(FG_COLORS[color]) if on_color: codes.append(BG_COLORS[on_color]) if attrs: codes.extend(ATTRIBUTES[attr] for attr in attrs) if not escape: esc = lambda n: n return "%s%s%s" % (esc(sgr(*codes)), text, esc(sgr(0))) def confirm(text): """Presents a yes/no prompt to the user and handles replies. Args: text: A message string to present before confirmation. Returns: True if the user confirmed the prompt; else False. """ replies = { "yes": True, "no": False, } prompt = "%s (yes/no): " % colored("Are you sure?", "red", attrs=["bold"], escape=True) reply = "" with readline_disabled(): print(text) while reply not in replies: try: reply = input(prompt).casefold() except (EOFError, KeyboardInterrupt): reply = "no" print(reply) return replies[reply]
[ 37811, 44798, 282, 20081, 2176, 284, 3275, 22415, 13, 198, 198, 16719, 274, 16396, 2420, 290, 5419, 3551, 43534, 5072, 13, 198, 37811, 198, 198, 6738, 4732, 8019, 1330, 4732, 37153, 198, 11748, 340, 861, 10141, 198, 11748, 1100, 1370, 198, 198, 30386, 62, 25154, 20673, 796, 8633, 7, 270, 861, 10141, 13, 7983, 7, 198, 220, 220, 220, 19974, 7, 7203, 13424, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 445, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 14809, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 36022, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 17585, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 19726, 29188, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 948, 272, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 11186, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 10612, 2837, 7, 1270, 11, 4353, 36911, 198, 220, 220, 220, 19974, 7, 7203, 29199, 62, 13424, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29199, 62, 445, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29199, 62, 14809, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29199, 62, 36022, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29199, 62, 17585, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29199, 62, 19726, 29188, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29199, 62, 948, 272, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 29199, 62, 11186, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 10612, 2837, 7, 3829, 11, 9661, 35514, 198, 198, 40469, 62, 25154, 20673, 796, 8633, 19510, 69, 1, 261, 23330, 2539, 92, 1600, 1188, 1343, 838, 8, 329, 1994, 11, 1188, 287, 25503, 62, 25154, 20673, 13, 23814, 28955, 198, 198, 1404, 5446, 9865, 3843, 1546, 796, 8633, 7, 198, 220, 220, 220, 19974, 7, 7203, 36575, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 69, 2913, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1287, 291, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 4625, 1370, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 38246, 62, 2436, 676, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 2416, 312, 62, 2436, 676, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 50188, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 1102, 344, 282, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 366, 301, 12602, 2788, 740, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 10612, 2837, 7, 16, 11, 838, 22305, 198, 198, 4299, 16396, 7, 5239, 11, 3124, 28, 14202, 11, 319, 62, 8043, 28, 14202, 11, 708, 3808, 28, 14202, 11, 6654, 28, 25101, 2599, 198, 220, 37227, 36918, 862, 2420, 351, 3537, 11584, 6654, 12416, 284, 4620, 262, 10348, 804, 13, 628, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 3124, 25, 383, 36282, 3124, 13, 198, 220, 220, 220, 220, 220, 319, 62, 8043, 25, 383, 4469, 3124, 13, 198, 220, 220, 220, 220, 220, 708, 3808, 25, 317, 1351, 286, 3048, 13, 198, 220, 220, 220, 220, 220, 6654, 25, 6407, 284, 6654, 44837, 18764, 357, 1640, 1100, 1370, 1776, 2073, 10352, 13, 628, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 317, 4731, 351, 262, 2656, 2420, 12908, 416, 6654, 12416, 13, 198, 220, 37227, 628, 220, 12416, 796, 17635, 198, 220, 611, 3124, 25, 198, 220, 220, 220, 12416, 13, 33295, 7, 30386, 62, 25154, 20673, 58, 8043, 12962, 198, 220, 611, 319, 62, 8043, 25, 198, 220, 220, 220, 12416, 13, 33295, 7, 40469, 62, 25154, 20673, 58, 261, 62, 8043, 12962, 198, 220, 611, 708, 3808, 25, 198, 220, 220, 220, 12416, 13, 2302, 437, 7, 1404, 5446, 9865, 3843, 1546, 58, 35226, 60, 329, 708, 81, 287, 708, 3808, 8, 628, 220, 611, 407, 6654, 25, 198, 220, 220, 220, 3671, 796, 37456, 299, 25, 299, 628, 220, 1441, 36521, 82, 4, 82, 4, 82, 1, 4064, 357, 3798, 7, 82, 2164, 46491, 40148, 36911, 2420, 11, 3671, 7, 82, 2164, 7, 15, 22305, 198, 198, 4299, 6216, 7, 5239, 2599, 198, 220, 37227, 47, 6629, 257, 3763, 14, 3919, 6152, 284, 262, 2836, 290, 17105, 20616, 13, 628, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 2420, 25, 317, 3275, 4731, 284, 1944, 878, 12641, 13, 628, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 6407, 611, 262, 2836, 4999, 262, 6152, 26, 2073, 10352, 13, 198, 220, 37227, 198, 220, 20616, 796, 1391, 198, 220, 220, 220, 220, 220, 366, 8505, 1298, 6407, 11, 198, 220, 220, 220, 220, 220, 366, 3919, 1298, 10352, 11, 198, 220, 1782, 628, 220, 6152, 796, 36521, 82, 357, 8505, 14, 3919, 2599, 366, 4064, 16396, 7203, 8491, 345, 1654, 35379, 366, 445, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 708, 3808, 28, 14692, 36575, 33116, 6654, 28, 17821, 8, 198, 220, 10971, 796, 13538, 198, 220, 351, 1100, 1370, 62, 47730, 33529, 198, 220, 220, 220, 3601, 7, 5239, 8, 198, 220, 220, 220, 981, 10971, 407, 287, 20616, 25, 198, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 10971, 796, 5128, 7, 16963, 457, 737, 7442, 11379, 3419, 198, 220, 220, 220, 220, 220, 2845, 357, 4720, 37, 12331, 11, 31973, 9492, 3622, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 10971, 796, 366, 3919, 1, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 47768, 8, 628, 220, 1441, 20616, 58, 47768, 60, 198 ]
2.277555
998
# Copyright 2020 - 2021 MONAI Consortium # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import unittest import torch import torch.nn as nn from parameterized import parameterized from monai.networks import eval_mode from monai.networks.blocks import SubpixelUpsample from monai.networks.layers.factories import Conv TEST_CASE_SUBPIXEL = [] for inch in range(1, 5): for dim in range(1, 4): for factor in range(1, 3): test_case = [ {"dimensions": dim, "in_channels": inch, "scale_factor": factor}, (2, inch, *([8] * dim)), (2, inch, *([8 * factor] * dim)), ] TEST_CASE_SUBPIXEL.append(test_case) TEST_CASE_SUBPIXEL_2D_EXTRA = [ {"dimensions": 2, "in_channels": 2, "scale_factor": 3}, (2, 2, 8, 4), # different size for H and W (2, 2, 24, 12), ] TEST_CASE_SUBPIXEL_3D_EXTRA = [ {"dimensions": 3, "in_channels": 1, "scale_factor": 2}, (2, 1, 16, 8, 4), # different size for H, W and D (2, 1, 32, 16, 8), ] conv_block = nn.Sequential( Conv[Conv.CONV, 3](1, 4, kernel_size=1), Conv[Conv.CONV, 3](4, 8, kernel_size=3, stride=1, padding=1) ) TEST_CASE_SUBPIXEL_CONV_BLOCK_EXTRA = [ {"dimensions": 3, "in_channels": 1, "scale_factor": 2, "conv_block": conv_block}, (2, 1, 16, 8, 4), # different size for H, W and D (2, 1, 32, 16, 8), ] TEST_CASE_SUBPIXEL.append(TEST_CASE_SUBPIXEL_2D_EXTRA) TEST_CASE_SUBPIXEL.append(TEST_CASE_SUBPIXEL_3D_EXTRA) TEST_CASE_SUBPIXEL.append(TEST_CASE_SUBPIXEL_CONV_BLOCK_EXTRA) # add every test back with the pad/pool sequential component omitted for tests in list(TEST_CASE_SUBPIXEL): args: dict = tests[0] # type: ignore args = dict(args) args["apply_pad_pool"] = False TEST_CASE_SUBPIXEL.append([args, tests[1], tests[2]]) if __name__ == "__main__": unittest.main()
[ 2, 15069, 12131, 532, 33448, 25000, 20185, 42727, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 198, 11748, 555, 715, 395, 198, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 6738, 11507, 1143, 1330, 11507, 1143, 198, 198, 6738, 937, 1872, 13, 3262, 5225, 1330, 5418, 62, 14171, 198, 6738, 937, 1872, 13, 3262, 5225, 13, 27372, 1330, 3834, 32515, 52, 862, 1403, 198, 6738, 937, 1872, 13, 3262, 5225, 13, 75, 6962, 13, 22584, 1749, 1330, 34872, 198, 198, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 796, 17635, 198, 1640, 11111, 287, 2837, 7, 16, 11, 642, 2599, 198, 220, 220, 220, 329, 5391, 287, 2837, 7, 16, 11, 604, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 5766, 287, 2837, 7, 16, 11, 513, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1332, 62, 7442, 796, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19779, 27740, 5736, 1298, 5391, 11, 366, 259, 62, 354, 8961, 1298, 11111, 11, 366, 9888, 62, 31412, 1298, 5766, 5512, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17, 11, 11111, 11, 1635, 26933, 23, 60, 1635, 5391, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 357, 17, 11, 11111, 11, 1635, 26933, 23, 1635, 5766, 60, 1635, 5391, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2361, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 43001, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 13, 33295, 7, 9288, 62, 7442, 8, 198, 198, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 62, 17, 35, 62, 13918, 3861, 796, 685, 198, 220, 220, 220, 19779, 27740, 5736, 1298, 362, 11, 366, 259, 62, 354, 8961, 1298, 362, 11, 366, 9888, 62, 31412, 1298, 513, 5512, 198, 220, 220, 220, 357, 17, 11, 362, 11, 807, 11, 604, 828, 220, 1303, 1180, 2546, 329, 367, 290, 370, 198, 220, 220, 220, 357, 17, 11, 362, 11, 1987, 11, 1105, 828, 198, 60, 198, 198, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 62, 18, 35, 62, 13918, 3861, 796, 685, 198, 220, 220, 220, 19779, 27740, 5736, 1298, 513, 11, 366, 259, 62, 354, 8961, 1298, 352, 11, 366, 9888, 62, 31412, 1298, 362, 5512, 198, 220, 220, 220, 357, 17, 11, 352, 11, 1467, 11, 807, 11, 604, 828, 220, 1303, 1180, 2546, 329, 367, 11, 370, 290, 360, 198, 220, 220, 220, 357, 17, 11, 352, 11, 3933, 11, 1467, 11, 807, 828, 198, 60, 198, 198, 42946, 62, 9967, 796, 299, 77, 13, 44015, 1843, 7, 198, 220, 220, 220, 34872, 58, 3103, 85, 13, 10943, 53, 11, 513, 16151, 16, 11, 604, 11, 9720, 62, 7857, 28, 16, 828, 34872, 58, 3103, 85, 13, 10943, 53, 11, 513, 16151, 19, 11, 807, 11, 9720, 62, 7857, 28, 18, 11, 33769, 28, 16, 11, 24511, 28, 16, 8, 198, 8, 198, 198, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 62, 10943, 53, 62, 9148, 11290, 62, 13918, 3861, 796, 685, 198, 220, 220, 220, 19779, 27740, 5736, 1298, 513, 11, 366, 259, 62, 354, 8961, 1298, 352, 11, 366, 9888, 62, 31412, 1298, 362, 11, 366, 42946, 62, 9967, 1298, 3063, 62, 9967, 5512, 198, 220, 220, 220, 357, 17, 11, 352, 11, 1467, 11, 807, 11, 604, 828, 220, 1303, 1180, 2546, 329, 367, 11, 370, 290, 360, 198, 220, 220, 220, 357, 17, 11, 352, 11, 3933, 11, 1467, 11, 807, 828, 198, 60, 198, 198, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 13, 33295, 7, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 62, 17, 35, 62, 13918, 3861, 8, 198, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 13, 33295, 7, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 62, 18, 35, 62, 13918, 3861, 8, 198, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 13, 33295, 7, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 62, 10943, 53, 62, 9148, 11290, 62, 13918, 3861, 8, 628, 198, 2, 751, 790, 1332, 736, 351, 262, 14841, 14, 7742, 35582, 7515, 22532, 198, 1640, 5254, 287, 1351, 7, 51, 6465, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 2599, 198, 220, 220, 220, 26498, 25, 8633, 796, 5254, 58, 15, 60, 220, 1303, 2099, 25, 8856, 198, 220, 220, 220, 26498, 796, 8633, 7, 22046, 8, 198, 220, 220, 220, 26498, 14692, 39014, 62, 15636, 62, 7742, 8973, 796, 10352, 198, 220, 220, 220, 43001, 62, 34, 11159, 62, 50, 10526, 47, 10426, 3698, 13, 33295, 26933, 22046, 11, 5254, 58, 16, 4357, 5254, 58, 17, 11907, 8, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.393909
985
from staticfg import CFGBuilder userCfg = CFGBuilder().build_from_file('user.py', './auction/user.py') bidCfg = CFGBuilder().build_from_file('bid.py', './auction/bid.py') auctionCfg = CFGBuilder().build_from_file('auction.py','./auction/auction.py') #auctionEventCfg = CFGBuilder().build_from_file('auction_event.py','./auction/auction_event.py') bidCfg.build_visual('bidCfg', 'pdf') auctionCfg.build_visual('auctionCfg', 'pdf') #auctionEventCfg.build_visual('auctionEventCfg.pdf', 'pdf')
[ 6738, 9037, 40616, 1330, 18551, 4579, 3547, 263, 198, 198, 7220, 34, 40616, 796, 18551, 4579, 3547, 263, 22446, 11249, 62, 6738, 62, 7753, 10786, 7220, 13, 9078, 3256, 705, 19571, 559, 596, 14, 7220, 13, 9078, 11537, 198, 14065, 34, 40616, 796, 18551, 4579, 3547, 263, 22446, 11249, 62, 6738, 62, 7753, 10786, 14065, 13, 9078, 3256, 705, 19571, 559, 596, 14, 14065, 13, 9078, 11537, 198, 559, 596, 34, 40616, 796, 18551, 4579, 3547, 263, 22446, 11249, 62, 6738, 62, 7753, 10786, 559, 596, 13, 9078, 3256, 4458, 14, 559, 596, 14, 559, 596, 13, 9078, 11537, 198, 198, 2, 559, 596, 9237, 34, 40616, 796, 18551, 4579, 3547, 263, 22446, 11249, 62, 6738, 62, 7753, 10786, 559, 596, 62, 15596, 13, 9078, 3256, 4458, 14, 559, 596, 14, 559, 596, 62, 15596, 13, 9078, 11537, 198, 198, 14065, 34, 40616, 13, 11249, 62, 41464, 10786, 14065, 34, 40616, 3256, 705, 12315, 11537, 198, 559, 596, 34, 40616, 13, 11249, 62, 41464, 10786, 559, 596, 34, 40616, 3256, 705, 12315, 11537, 198, 2, 559, 596, 9237, 34, 40616, 13, 11249, 62, 41464, 10786, 559, 596, 9237, 34, 40616, 13, 12315, 3256, 705, 12315, 11537, 198 ]
2.497462
197
total_budget = 0 while True: destination = input() if destination == "End": break minimal_budget = float(input()) while True: command = input() if command == "End": break money = float(command) total_budget += money if total_budget >= minimal_budget: print(f"Going to {destination}!") total_budget = 0 break
[ 23350, 62, 37315, 796, 657, 201, 198, 201, 198, 4514, 6407, 25, 201, 198, 220, 220, 220, 10965, 796, 5128, 3419, 201, 198, 220, 220, 220, 611, 10965, 6624, 366, 12915, 1298, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2270, 201, 198, 220, 220, 220, 10926, 62, 37315, 796, 12178, 7, 15414, 28955, 201, 198, 220, 220, 220, 981, 6407, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 3141, 796, 5128, 3419, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 3141, 6624, 366, 12915, 1298, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 201, 198, 220, 220, 220, 220, 220, 220, 220, 1637, 796, 12178, 7, 21812, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 37315, 15853, 1637, 201, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2472, 62, 37315, 18189, 10926, 62, 37315, 25, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 69, 1, 27404, 284, 1391, 16520, 1883, 92, 2474, 8, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2472, 62, 37315, 796, 657, 201, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 201, 198 ]
2.075829
211
from footmark.regioninfo import RegionInfo
[ 6738, 2366, 4102, 13, 36996, 10951, 1330, 17718, 12360, 628 ]
4.4
10
from __future__ import absolute_import, division, print_function import os import json from glue.core import Subset DISPATCH = {} def save_page(page, page_number, label, subset): """ Convert a tab of a glue session into a D3PO page :param page: Tuple of data viewers to save :param label: Tab label """ result = {} # layout settings result['grid'] = {'nRows': 1, 'nColumns': len(page)} result['name'] = str(label) result['caption'] = 'Generated by Glue' # style settings d = page[0]._data[0] unselected = dict(opacity=d.style.alpha, size=d.style.markersize / 2, color=d.style.color) result['markerStyle'] = dict(unselected=unselected) if subset is not None: s = subset.style selected = dict(opacity=s.alpha, size=s.markersize / 2, color=s.color) result['markerStyle']['selected'] = selected result['selection'] = {'type': 'booleanColumn', 'columnName': 'selection_%i' % page_number} result['histogramStyle'] = result['markerStyle'] # save each plot result['plots'] = list(map(save_plot, page, range(len(page)))) return result def save_scatter(plot, index): """ Convert a single glue scatter plot to a D3PO plot :param plot: Glue scatter plot :class:`~glue.viewers.scatter.qt.ScatterViewer` :param index: 1D index of plot on the page :type index: int :rtype: json-serializable dict """ result = save_plot_base(plot, index) result['type'] = 'scatter' result['xAxis'] = dict(columnName=plot.state.x_att.label, range=[float(plot.state.x_min), float(plot.state.x_max)]) result['yAxis'] = dict(columnName=plot.state.y_att.label, range=[float(plot.state.y_min), float(plot.state.y_max)]) # XXX log scales return result def save_histogram(plot, index): """ Convert a single histogram to a D3PO plot :param plot: Glue histogram :type plot: :class:`~glue.viewers.histogram.qt.HistogramViewer` :param index: 1D index of plot on the page :type index: int :rtype: json-serializable dict """ result = save_plot_base(plot, index) result['type'] = 'histogram' result['xAxis'] = dict(columnName=plot.state.x_att.label, bins=int(plot.state.hist_n_bin), range=[float(plot.state.hist_x_min), float(plot.state.hist_x_max)]) # XXX normed, cumultive, log return result def stage_subsets(application): """ Return a tuple of the subset to use for each stage/tab, or None if the tab has no subset If more than one subset is used per stage/tab, returns None """ result = [] for page in application.viewers: subset = None for viewer in page: for layer_artist in viewer.layers: if not layer_artist.visible: continue s = layer_artist.layer if not isinstance(s, Subset): continue if subset is not None and s is not subset: return None if subset is None: subset = s result.append(subset) return tuple(result) def can_save_d3po(application): """ Check whether an application can be exported to D3PO. Raises an exception if not """ dc = application.session.data_collection if len(dc) != 1: raise ValueError("D3PO Export only supports a single dataset") for tab in application.viewers: for viewer in tab: if not isinstance(viewer, tuple(DISPATCH.keys())): raise ValueError("D3PO Export only supports scatter " "and histogram plots") if sum(len(tab) for tab in application.viewers) == 0: raise ValueError("D3PO Export requires at least one scatterplot " "or histogram") if stage_subsets(application) is None: raise ValueError("D3PO Export restricted to 0 or 1 subsets visible " "in each tab") def make_data_file(data, subsets, path): """ Create the data.csv file, given Data and tuple of subsets """ from astropy.table import Table, Column data_path = os.path.join(path, 'data.csv') t = Table([data[c] for c in data.components], names=[c.label for c in data.components]) for i, subset in enumerate(subsets): if subset is None: continue c = Column(data=subset.to_mask().astype('i'), name='selection_%i' % i) t.add_column(c) t.write(data_path, format='ascii', delimiter=',') def save_d3po(application, path, launch=True): """Save a Glue session to a D3PO bundle. Currently, this has the following restrictions: - The Glue session must have only one dataset open, and 0 or 1 subsets - Only scatter plots or histograms are present - At least one plot is present :param application: Glue appication to save :param path: Path to directory to save in. Will be created if needed """ if os.path.exists(path) and not os.path.isdir(path): os.unlink(path) if not os.path.exists(path): os.mkdir(path) data = application.session.data_collection[0] subsets = stage_subsets(application) viewers = application.viewers # data.csv make_data_file(data, subsets, path) # states.json result = {} result['filename'] = 'data.csv' # XXX don't think this is needed? result['title'] = "Glue export of %s" % data.label result['states'] = list(map(save_page, application.viewers, range(len(viewers)), application.tab_names, subsets)) state_path = os.path.join(path, 'states.json') with open(state_path, 'w') as outfile: json.dump(result, outfile, indent=2, sort_keys=True) # index.html html_path = os.path.join(path, 'index.html') with open(html_path, 'w') as outfile: outfile.write(HTML) # show the result if launch: launch_d3po(path) def launch_d3po(path): """Start a server to view an exported D3PO bundle, and open a browser. :param path: The TLD of the bundle """ from glue.external.six.moves.socketserver import TCPServer from glue.external.six.moves.SimpleHTTPServer import SimpleHTTPRequestHandler from random import randrange from socket import error import webbrowser from threading import Thread os.chdir(path) while True: try: PORT = randrange(8000, 9000) server = TCPServer(("", PORT), SimpleHTTPRequestHandler, False) server.allow_reuse_address = True server.server_bind() break except error: # port already taken pass print('Serving D3PO on port 0.0.0.0:%i' % PORT) server.server_activate() thread = Thread(target=server.serve_forever) thread.setDaemon(True) # do not prevent shutdown thread.start() webbrowser.open('http://0.0.0.0:%i' % PORT) HTML = """ <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <link rel="stylesheet" type="text/css" href="http://d3po.org/static/css/style.css"> <link rel="stylesheet" type="text/css" href="http://d3po.org/static/css/d3po.css"> <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:100,200,300,400,700' rel='stylesheet' type='text/css'> <style> #footer { position: fixed; bottom: 0; right: 0; } </style> <!-- not to be confused with Planet Telex --> <!-- Javscript dependencies --> <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> <script src="http://d3po.org/static/js/util.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script src="http://d3po.org/static/js/d3po.js"></script> <script src="http://d3po.org/static/js/d3po.init.js"></script> </head> <body> <div id="svg"><svg></svg></div> <div id="controls"> <ul class="navigation"> </ul> </div> <div id="caption"></div> <div id="footer"> More information: <a href="http://d3po.org">d3po.org</a> </div> <script type="text/javascript"> $(document).ready(function() { initialize('states.json', 'data.csv'); } ); </script> </body> </html> """ try: from glue.viewers.scatter.qt import ScatterViewer from glue.viewers.histogram.qt import HistogramViewer except ImportError: pass else: DISPATCH[ScatterViewer] = save_scatter DISPATCH[HistogramViewer] = save_histogram
[ 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 11, 7297, 11, 3601, 62, 8818, 198, 198, 11748, 28686, 198, 11748, 33918, 198, 198, 6738, 22749, 13, 7295, 1330, 3834, 2617, 628, 198, 26288, 47, 11417, 796, 23884, 628, 198, 4299, 3613, 62, 7700, 7, 7700, 11, 2443, 62, 17618, 11, 6167, 11, 24637, 2599, 198, 220, 220, 220, 37227, 38240, 257, 7400, 286, 257, 22749, 6246, 656, 257, 360, 18, 16402, 2443, 628, 220, 220, 220, 1058, 17143, 2443, 25, 309, 29291, 286, 1366, 10209, 284, 3613, 198, 220, 220, 220, 1058, 17143, 6167, 25, 16904, 6167, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1255, 796, 23884, 628, 220, 220, 220, 1303, 12461, 6460, 198, 220, 220, 220, 1255, 17816, 25928, 20520, 796, 1391, 6, 77, 49, 1666, 10354, 352, 11, 705, 77, 39470, 82, 10354, 18896, 7, 7700, 38165, 198, 220, 220, 220, 1255, 17816, 3672, 20520, 796, 965, 7, 18242, 8, 198, 220, 220, 220, 1255, 17816, 6888, 1159, 20520, 796, 705, 8645, 515, 416, 2671, 518, 6, 628, 220, 220, 220, 1303, 3918, 6460, 198, 220, 220, 220, 288, 796, 2443, 58, 15, 4083, 62, 7890, 58, 15, 60, 198, 220, 220, 220, 555, 34213, 796, 8633, 7, 404, 4355, 28, 67, 13, 7635, 13, 26591, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2546, 28, 67, 13, 7635, 13, 4102, 364, 1096, 1220, 362, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 28, 67, 13, 7635, 13, 8043, 8, 198, 220, 220, 220, 1255, 17816, 4102, 263, 21466, 20520, 796, 8633, 7, 403, 34213, 28, 403, 34213, 8, 628, 220, 220, 220, 611, 24637, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 264, 796, 24637, 13, 7635, 198, 220, 220, 220, 220, 220, 220, 220, 6163, 796, 8633, 7, 404, 4355, 28, 82, 13, 26591, 11, 2546, 28, 82, 13, 4102, 364, 1096, 1220, 362, 11, 3124, 28, 82, 13, 8043, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 17816, 4102, 263, 21466, 6, 7131, 6, 34213, 20520, 796, 6163, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 17816, 49283, 20520, 796, 1391, 6, 4906, 10354, 705, 2127, 21052, 39470, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28665, 5376, 10354, 705, 49283, 62, 4, 72, 6, 4064, 2443, 62, 17618, 92, 198, 220, 220, 220, 1255, 17816, 10034, 21857, 21466, 20520, 796, 1255, 17816, 4102, 263, 21466, 20520, 628, 220, 220, 220, 1303, 3613, 1123, 7110, 198, 220, 220, 220, 1255, 17816, 489, 1747, 20520, 796, 1351, 7, 8899, 7, 21928, 62, 29487, 11, 2443, 11, 2837, 7, 11925, 7, 7700, 35514, 628, 220, 220, 220, 1441, 1255, 628, 628, 198, 4299, 3613, 62, 1416, 1436, 7, 29487, 11, 6376, 2599, 198, 220, 220, 220, 37227, 38240, 257, 2060, 22749, 41058, 7110, 284, 257, 360, 18, 16402, 7110, 628, 220, 220, 220, 1058, 17143, 7110, 25, 2671, 518, 41058, 7110, 198, 220, 220, 220, 1058, 4871, 25, 63, 93, 4743, 518, 13, 1177, 364, 13, 1416, 1436, 13, 39568, 13, 3351, 1436, 7680, 263, 63, 198, 220, 220, 220, 1058, 17143, 6376, 25, 352, 35, 6376, 286, 7110, 319, 262, 2443, 198, 220, 220, 220, 1058, 4906, 6376, 25, 493, 628, 220, 220, 220, 1058, 81, 4906, 25, 33918, 12, 46911, 13821, 8633, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1255, 796, 3613, 62, 29487, 62, 8692, 7, 29487, 11, 6376, 8, 198, 220, 220, 220, 1255, 17816, 4906, 20520, 796, 705, 1416, 1436, 6, 198, 220, 220, 220, 1255, 17816, 87, 31554, 271, 20520, 796, 8633, 7, 28665, 5376, 28, 29487, 13, 5219, 13, 87, 62, 1078, 13, 18242, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2837, 41888, 22468, 7, 29487, 13, 5219, 13, 87, 62, 1084, 828, 12178, 7, 29487, 13, 5219, 13, 87, 62, 9806, 8, 12962, 198, 220, 220, 220, 1255, 17816, 88, 31554, 271, 20520, 796, 8633, 7, 28665, 5376, 28, 29487, 13, 5219, 13, 88, 62, 1078, 13, 18242, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2837, 41888, 22468, 7, 29487, 13, 5219, 13, 88, 62, 1084, 828, 12178, 7, 29487, 13, 5219, 13, 88, 62, 9806, 8, 12962, 198, 220, 220, 220, 1303, 27713, 2604, 16252, 198, 220, 220, 220, 1441, 1255, 628, 198, 4299, 3613, 62, 10034, 21857, 7, 29487, 11, 6376, 2599, 198, 220, 220, 220, 37227, 38240, 257, 2060, 1554, 21857, 284, 257, 360, 18, 16402, 7110, 628, 220, 220, 220, 1058, 17143, 7110, 25, 2671, 518, 1554, 21857, 198, 220, 220, 220, 1058, 4906, 7110, 25, 1058, 4871, 25, 63, 93, 4743, 518, 13, 1177, 364, 13, 10034, 21857, 13, 39568, 13, 13749, 21857, 7680, 263, 63, 628, 220, 220, 220, 1058, 17143, 6376, 25, 352, 35, 6376, 286, 7110, 319, 262, 2443, 198, 220, 220, 220, 1058, 4906, 6376, 25, 493, 628, 220, 220, 220, 1058, 81, 4906, 25, 33918, 12, 46911, 13821, 8633, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1255, 796, 3613, 62, 29487, 62, 8692, 7, 29487, 11, 6376, 8, 198, 220, 220, 220, 1255, 17816, 4906, 20520, 796, 705, 10034, 21857, 6, 198, 220, 220, 220, 1255, 17816, 87, 31554, 271, 20520, 796, 8633, 7, 28665, 5376, 28, 29487, 13, 5219, 13, 87, 62, 1078, 13, 18242, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 41701, 28, 600, 7, 29487, 13, 5219, 13, 10034, 62, 77, 62, 8800, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2837, 41888, 22468, 7, 29487, 13, 5219, 13, 10034, 62, 87, 62, 1084, 828, 12178, 7, 29487, 13, 5219, 13, 10034, 62, 87, 62, 9806, 8, 12962, 198, 220, 220, 220, 1303, 27713, 2593, 276, 11, 10973, 586, 425, 11, 2604, 198, 220, 220, 220, 1441, 1255, 628, 198, 4299, 3800, 62, 7266, 28709, 7, 31438, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 8229, 257, 46545, 286, 262, 24637, 284, 779, 329, 1123, 3800, 14, 8658, 11, 198, 220, 220, 220, 393, 6045, 611, 262, 7400, 468, 645, 24637, 628, 220, 220, 220, 1002, 517, 621, 530, 24637, 318, 973, 583, 3800, 14, 8658, 11, 5860, 6045, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1255, 796, 17635, 198, 220, 220, 220, 329, 2443, 287, 3586, 13, 1177, 364, 25, 198, 220, 220, 220, 220, 220, 220, 220, 24637, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 329, 19091, 287, 2443, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 7679, 62, 49016, 287, 19091, 13, 75, 6962, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 7679, 62, 49016, 13, 23504, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 264, 796, 7679, 62, 49016, 13, 29289, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 82, 11, 3834, 2617, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 24637, 318, 407, 6045, 290, 264, 318, 407, 24637, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 24637, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24637, 796, 264, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 33295, 7, 7266, 2617, 8, 198, 220, 220, 220, 1441, 46545, 7, 20274, 8, 628, 198, 4299, 460, 62, 21928, 62, 67, 18, 7501, 7, 31438, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 6822, 1771, 281, 3586, 460, 307, 29050, 284, 360, 18, 16402, 13, 628, 220, 220, 220, 7567, 2696, 281, 6631, 611, 407, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 30736, 796, 3586, 13, 29891, 13, 7890, 62, 43681, 628, 220, 220, 220, 611, 18896, 7, 17896, 8, 14512, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 35, 18, 16402, 36472, 691, 6971, 257, 2060, 27039, 4943, 628, 220, 220, 220, 329, 7400, 287, 3586, 13, 1177, 364, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 19091, 287, 7400, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 1177, 263, 11, 46545, 7, 26288, 47, 11417, 13, 13083, 28955, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 35, 18, 16402, 36472, 691, 6971, 41058, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 392, 1554, 21857, 21528, 4943, 198, 220, 220, 220, 611, 2160, 7, 11925, 7, 8658, 8, 329, 7400, 287, 3586, 13, 1177, 364, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 35, 18, 16402, 36472, 4433, 379, 1551, 530, 41058, 29487, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 273, 1554, 21857, 4943, 628, 220, 220, 220, 611, 3800, 62, 7266, 28709, 7, 31438, 8, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 35, 18, 16402, 36472, 10770, 284, 657, 393, 352, 6352, 1039, 7424, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 259, 1123, 7400, 4943, 628, 198, 4299, 787, 62, 7890, 62, 7753, 7, 7890, 11, 6352, 1039, 11, 3108, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 13610, 262, 1366, 13, 40664, 2393, 11, 1813, 6060, 290, 46545, 286, 6352, 1039, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 6468, 28338, 13, 11487, 1330, 8655, 11, 29201, 628, 220, 220, 220, 1366, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 6978, 11, 705, 7890, 13, 40664, 11537, 628, 220, 220, 220, 256, 796, 8655, 26933, 7890, 58, 66, 60, 329, 269, 287, 1366, 13, 5589, 3906, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3891, 41888, 66, 13, 18242, 329, 269, 287, 1366, 13, 5589, 3906, 12962, 628, 220, 220, 220, 329, 1312, 11, 24637, 287, 27056, 378, 7, 7266, 28709, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 24637, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 220, 220, 220, 220, 269, 796, 29201, 7, 7890, 28, 7266, 2617, 13, 1462, 62, 27932, 22446, 459, 2981, 10786, 72, 33809, 1438, 11639, 49283, 62, 4, 72, 6, 4064, 1312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 256, 13, 2860, 62, 28665, 7, 66, 8, 628, 220, 220, 220, 256, 13, 13564, 7, 7890, 62, 6978, 11, 5794, 11639, 292, 979, 72, 3256, 46728, 2676, 28, 3256, 11537, 628, 198, 4299, 3613, 62, 67, 18, 7501, 7, 31438, 11, 3108, 11, 4219, 28, 17821, 2599, 198, 220, 220, 220, 37227, 16928, 257, 2671, 518, 6246, 284, 257, 360, 18, 16402, 18537, 13, 628, 220, 220, 220, 16888, 11, 428, 468, 262, 1708, 8733, 25, 198, 220, 220, 220, 532, 383, 2671, 518, 6246, 1276, 423, 691, 530, 27039, 1280, 11, 290, 657, 393, 352, 6352, 1039, 198, 220, 220, 220, 532, 5514, 41058, 21528, 393, 1554, 26836, 389, 1944, 198, 220, 220, 220, 532, 1629, 1551, 530, 7110, 318, 1944, 628, 220, 220, 220, 1058, 17143, 3586, 25, 2671, 518, 598, 3299, 284, 3613, 198, 220, 220, 220, 1058, 17143, 3108, 25, 10644, 284, 8619, 284, 3613, 287, 13, 2561, 307, 2727, 611, 2622, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 28686, 13, 6978, 13, 1069, 1023, 7, 6978, 8, 290, 407, 28686, 13, 6978, 13, 9409, 343, 7, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 403, 8726, 7, 6978, 8, 628, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 28686, 13, 28015, 15908, 7, 6978, 8, 628, 220, 220, 220, 1366, 796, 3586, 13, 29891, 13, 7890, 62, 43681, 58, 15, 60, 198, 220, 220, 220, 6352, 1039, 796, 3800, 62, 7266, 28709, 7, 31438, 8, 198, 220, 220, 220, 10209, 796, 3586, 13, 1177, 364, 628, 220, 220, 220, 1303, 1366, 13, 40664, 198, 220, 220, 220, 787, 62, 7890, 62, 7753, 7, 7890, 11, 6352, 1039, 11, 3108, 8, 628, 220, 220, 220, 1303, 2585, 13, 17752, 198, 220, 220, 220, 1255, 796, 23884, 198, 220, 220, 220, 1255, 17816, 34345, 20520, 796, 705, 7890, 13, 40664, 6, 220, 1303, 27713, 836, 470, 892, 428, 318, 2622, 30, 198, 220, 220, 220, 1255, 17816, 7839, 20520, 796, 366, 9861, 518, 10784, 286, 4064, 82, 1, 4064, 1366, 13, 18242, 198, 220, 220, 220, 1255, 17816, 27219, 20520, 796, 1351, 7, 8899, 7, 21928, 62, 7700, 11, 3586, 13, 1177, 364, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2837, 7, 11925, 7, 1177, 364, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3586, 13, 8658, 62, 14933, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6352, 1039, 4008, 628, 220, 220, 220, 1181, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 6978, 11, 705, 27219, 13, 17752, 11537, 198, 220, 220, 220, 351, 1280, 7, 5219, 62, 6978, 11, 705, 86, 11537, 355, 503, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 33918, 13, 39455, 7, 20274, 11, 503, 7753, 11, 33793, 28, 17, 11, 3297, 62, 13083, 28, 17821, 8, 628, 220, 220, 220, 1303, 6376, 13, 6494, 198, 220, 220, 220, 27711, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 6978, 11, 705, 9630, 13, 6494, 11537, 198, 220, 220, 220, 351, 1280, 7, 6494, 62, 6978, 11, 705, 86, 11537, 355, 503, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 503, 7753, 13, 13564, 7, 28656, 8, 628, 220, 220, 220, 1303, 905, 262, 1255, 198, 220, 220, 220, 611, 4219, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4219, 62, 67, 18, 7501, 7, 6978, 8, 628, 198, 4299, 4219, 62, 67, 18, 7501, 7, 6978, 2599, 198, 220, 220, 220, 37227, 10434, 257, 4382, 284, 1570, 281, 29050, 360, 18, 16402, 18537, 11, 290, 1280, 257, 6444, 13, 628, 220, 220, 220, 1058, 17143, 3108, 25, 383, 309, 11163, 286, 262, 18537, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 22749, 13, 22615, 13, 19412, 13, 76, 5241, 13, 82, 11603, 18497, 1330, 17283, 3705, 18497, 198, 220, 220, 220, 422, 22749, 13, 22615, 13, 19412, 13, 76, 5241, 13, 26437, 6535, 28820, 18497, 1330, 17427, 40717, 18453, 25060, 198, 220, 220, 220, 422, 4738, 1330, 43720, 9521, 198, 220, 220, 220, 422, 17802, 1330, 4049, 198, 220, 220, 220, 1330, 3992, 40259, 198, 220, 220, 220, 422, 4704, 278, 1330, 14122, 628, 220, 220, 220, 28686, 13, 354, 15908, 7, 6978, 8, 628, 220, 220, 220, 981, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 350, 9863, 796, 43720, 9521, 7, 33942, 11, 50138, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4382, 796, 17283, 3705, 18497, 7, 7203, 1600, 350, 9863, 828, 17427, 40717, 18453, 25060, 11, 10352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4382, 13, 12154, 62, 260, 1904, 62, 21975, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4382, 13, 15388, 62, 21653, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 4049, 25, 220, 1303, 2493, 1541, 2077, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1208, 628, 220, 220, 220, 3601, 10786, 11838, 278, 360, 18, 16402, 319, 2493, 657, 13, 15, 13, 15, 13, 15, 25, 4, 72, 6, 4064, 350, 9863, 8, 198, 220, 220, 220, 4382, 13, 15388, 62, 39022, 3419, 628, 220, 220, 220, 4704, 796, 14122, 7, 16793, 28, 15388, 13, 2655, 303, 62, 754, 332, 8, 198, 220, 220, 220, 4704, 13, 2617, 26531, 7966, 7, 17821, 8, 220, 1303, 466, 407, 2948, 18325, 198, 220, 220, 220, 4704, 13, 9688, 3419, 198, 220, 220, 220, 3992, 40259, 13, 9654, 10786, 4023, 1378, 15, 13, 15, 13, 15, 13, 15, 25, 4, 72, 6, 4064, 350, 9863, 8, 628, 198, 198, 28656, 796, 37227, 198, 27, 0, 18227, 4177, 56, 11401, 27711, 29, 198, 198, 27, 6494, 29, 198, 27, 2256, 29, 198, 27, 28961, 34534, 316, 2625, 40477, 12, 23, 1, 11037, 198, 198, 27, 8726, 823, 2625, 47720, 25473, 1, 2099, 2625, 5239, 14, 25471, 1, 13291, 2625, 4023, 1378, 67, 18, 7501, 13, 2398, 14, 12708, 14, 25471, 14, 7635, 13, 25471, 5320, 198, 27, 8726, 823, 2625, 47720, 25473, 1, 2099, 2625, 5239, 14, 25471, 1, 13291, 2625, 4023, 1378, 67, 18, 7501, 13, 2398, 14, 12708, 14, 25471, 14, 67, 18, 7501, 13, 25471, 5320, 198, 27, 8726, 13291, 11639, 4023, 1378, 10331, 82, 13, 13297, 499, 271, 13, 785, 14, 25471, 30, 17989, 28, 7416, 10, 50, 504, 10, 2964, 25, 3064, 11, 2167, 11, 6200, 11, 7029, 11, 9879, 6, 823, 11639, 47720, 25473, 6, 2099, 11639, 5239, 14, 25471, 44167, 198, 198, 27, 7635, 29, 198, 2, 5898, 263, 1391, 198, 9150, 25, 5969, 26, 198, 22487, 25, 657, 26, 198, 3506, 25, 657, 26, 198, 92, 198, 3556, 7635, 29, 198, 27, 28112, 407, 284, 307, 10416, 351, 11397, 1665, 2588, 14610, 198, 198, 27, 28112, 49247, 12048, 20086, 14610, 198, 27, 12048, 12351, 2625, 4023, 1378, 67, 18, 8457, 13, 2398, 14, 67, 18, 13, 85, 18, 13, 1084, 13, 8457, 1, 34534, 316, 2625, 40477, 12, 23, 23984, 12048, 29, 198, 27, 12048, 12351, 2625, 4023, 1378, 67, 18, 7501, 13, 2398, 14, 12708, 14, 8457, 14, 22602, 13, 8457, 23984, 12048, 29, 198, 27, 12048, 12351, 2625, 1003, 1228, 897, 13, 13297, 499, 271, 13, 785, 14, 1228, 897, 14, 8019, 82, 14, 73, 22766, 14, 16, 13, 940, 13, 17, 14, 73, 22766, 13, 1084, 13, 8457, 23984, 12048, 29, 198, 27, 12048, 12351, 2625, 4023, 1378, 67, 18, 7501, 13, 2398, 14, 12708, 14, 8457, 14, 67, 18, 7501, 13, 8457, 23984, 12048, 29, 198, 27, 12048, 12351, 2625, 4023, 1378, 67, 18, 7501, 13, 2398, 14, 12708, 14, 8457, 14, 67, 18, 7501, 13, 15003, 13, 8457, 23984, 12048, 29, 198, 3556, 2256, 29, 198, 198, 27, 2618, 29, 198, 27, 7146, 4686, 2625, 21370, 70, 22039, 21370, 70, 12240, 21370, 70, 12240, 7146, 29, 198, 27, 7146, 4686, 2625, 13716, 82, 5320, 198, 27, 377, 1398, 2625, 28341, 7065, 5320, 198, 3556, 377, 29, 198, 3556, 7146, 29, 198, 27, 7146, 4686, 2625, 6888, 1159, 23984, 7146, 29, 198, 198, 27, 7146, 4686, 2625, 5898, 263, 5320, 198, 5167, 1321, 25, 1279, 64, 13291, 2625, 4023, 1378, 67, 18, 7501, 13, 2398, 5320, 67, 18, 7501, 13, 2398, 3556, 64, 29, 198, 3556, 7146, 29, 198, 198, 27, 12048, 2099, 2625, 5239, 14, 37495, 5320, 198, 3, 7, 22897, 737, 1493, 7, 8818, 3419, 1391, 198, 36733, 1096, 10786, 27219, 13, 17752, 3256, 705, 7890, 13, 40664, 24036, 198, 92, 198, 1776, 198, 3556, 12048, 29, 198, 3556, 2618, 29, 198, 3556, 6494, 29, 198, 37811, 198, 198, 28311, 25, 198, 220, 220, 220, 422, 22749, 13, 1177, 364, 13, 1416, 1436, 13, 39568, 1330, 1446, 1436, 7680, 263, 198, 220, 220, 220, 422, 22749, 13, 1177, 364, 13, 10034, 21857, 13, 39568, 1330, 5590, 21857, 7680, 263, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 1208, 198, 17772, 25, 198, 220, 220, 220, 13954, 47, 11417, 58, 3351, 1436, 7680, 263, 60, 796, 3613, 62, 1416, 1436, 198, 220, 220, 220, 13954, 47, 11417, 58, 13749, 21857, 7680, 263, 60, 796, 3613, 62, 10034, 21857, 198 ]
2.368608
3,657
print('Crie sua P.A. de 10 termos') n1 = int(input('Digite o primeiro termo da P.A.: ')) r = int(input('Digite a razo: ')) termo = n1 c = 1 print('A P.A. (', end='') while c <= 10: print('{}'.format(termo), end='') print(', ' if c < 10 else '', end='') termo += r c += 1 print(')')
[ 4798, 10786, 34, 5034, 424, 64, 350, 13, 32, 13, 390, 838, 3381, 418, 11537, 198, 198, 77, 16, 796, 493, 7, 15414, 10786, 19511, 578, 267, 6994, 7058, 3381, 78, 12379, 350, 13, 32, 11207, 705, 4008, 198, 81, 796, 493, 7, 15414, 10786, 19511, 578, 257, 374, 44299, 25, 705, 4008, 198, 4354, 78, 796, 299, 16, 198, 66, 796, 352, 198, 4798, 10786, 32, 350, 13, 32, 13, 220, 357, 3256, 886, 28, 7061, 8, 198, 4514, 269, 19841, 838, 25, 198, 220, 220, 220, 3601, 10786, 90, 92, 4458, 18982, 7, 4354, 78, 828, 886, 28, 7061, 8, 198, 220, 220, 220, 3601, 7, 3256, 705, 611, 269, 1279, 838, 2073, 705, 3256, 886, 28, 7061, 8, 198, 220, 220, 220, 3381, 78, 15853, 374, 198, 220, 220, 220, 269, 15853, 352, 198, 4798, 10786, 8, 11537, 628 ]
2.119718
142
from __future__ import unicode_literals import codecs import logging try: from http.client import HTTPConnection, HTTPSConnection except ImportError: # pylint: disable=import-error from httplib import HTTPConnection, HTTPSConnection try: from urllib.parse import urlparse except ImportError: # pylint: disable=import-error from urlparse import urlparse from .constants import ( UNLIMITED_REDIRECTS, ) from .cursors import Cursor from ._ephemeral import EphemeralRqlited as _EphemeralRqlited from .extensions import PARSE_DECLTYPES, PARSE_COLNAMES
[ 198, 6738, 11593, 37443, 834, 1330, 28000, 1098, 62, 17201, 874, 198, 198, 11748, 40481, 82, 198, 11748, 18931, 198, 198, 28311, 25, 198, 220, 220, 220, 422, 2638, 13, 16366, 1330, 14626, 32048, 11, 38288, 32048, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 1303, 279, 2645, 600, 25, 15560, 28, 11748, 12, 18224, 198, 220, 220, 220, 422, 1841, 489, 571, 1330, 14626, 32048, 11, 38288, 32048, 198, 198, 28311, 25, 198, 220, 220, 220, 422, 2956, 297, 571, 13, 29572, 1330, 19016, 29572, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 1303, 279, 2645, 600, 25, 15560, 28, 11748, 12, 18224, 198, 220, 220, 220, 422, 19016, 29572, 1330, 19016, 29572, 198, 198, 6738, 764, 9979, 1187, 1330, 357, 198, 220, 220, 220, 4725, 43, 3955, 22061, 62, 22083, 40, 23988, 50, 11, 198, 8, 198, 198, 6738, 764, 66, 1834, 669, 1330, 327, 21471, 198, 6738, 47540, 538, 39557, 282, 1330, 4551, 39557, 282, 49, 13976, 863, 355, 4808, 13807, 39557, 282, 49, 13976, 863, 198, 6738, 764, 2302, 5736, 1330, 29463, 5188, 62, 41374, 43, 9936, 47, 1546, 11, 29463, 5188, 62, 25154, 45, 29559, 628 ]
3.015544
193
price = float(input()) puzzles = int(input()) dolls = int(input()) bears = int(input()) minions = int(input()) trucks = int(input()) total_toys = puzzles + dolls + bears + minions + trucks price_puzzles = puzzles * 2.6 price_dolls = dolls * 3 price_bears = bears * 4.1 price_minions = minions * 8.2 price_trucks = trucks * 2 total_price = price_puzzles + price_dolls + price_bears + price_minions + price_trucks if total_toys >= 50: total_price = total_price - (total_price * 0.25) rent = total_price * 0.1 total_price = total_price - rent if total_price >= price: print(f"Yes! {(total_price - price):.2f} lv left.") else: print(f"Not enough money! {(price - total_price):.2f} lv needed.")
[ 20888, 796, 12178, 7, 15414, 28955, 201, 198, 201, 198, 79, 4715, 829, 796, 493, 7, 15414, 28955, 201, 198, 67, 33421, 796, 493, 7, 15414, 28955, 201, 198, 65, 4127, 796, 493, 7, 15414, 28955, 201, 198, 1084, 507, 796, 493, 7, 15414, 28955, 201, 198, 83, 622, 4657, 796, 493, 7, 15414, 28955, 201, 198, 201, 198, 23350, 62, 83, 19417, 796, 24367, 1343, 36062, 1343, 13062, 1343, 22811, 1343, 13960, 201, 198, 201, 198, 20888, 62, 79, 4715, 829, 796, 24367, 1635, 362, 13, 21, 201, 198, 20888, 62, 67, 33421, 796, 36062, 1635, 513, 201, 198, 20888, 62, 65, 4127, 796, 13062, 1635, 604, 13, 16, 201, 198, 20888, 62, 1084, 507, 796, 22811, 1635, 807, 13, 17, 201, 198, 20888, 62, 83, 622, 4657, 796, 13960, 1635, 362, 201, 198, 201, 198, 23350, 62, 20888, 796, 2756, 62, 79, 4715, 829, 1343, 2756, 62, 67, 33421, 1343, 2756, 62, 65, 4127, 1343, 2756, 62, 1084, 507, 1343, 2756, 62, 83, 622, 4657, 201, 198, 201, 198, 361, 2472, 62, 83, 19417, 18189, 2026, 25, 201, 198, 220, 220, 220, 2472, 62, 20888, 796, 2472, 62, 20888, 532, 357, 23350, 62, 20888, 1635, 657, 13, 1495, 8, 201, 198, 201, 198, 1156, 796, 2472, 62, 20888, 1635, 657, 13, 16, 201, 198, 23350, 62, 20888, 796, 2472, 62, 20888, 532, 5602, 201, 198, 201, 198, 361, 2472, 62, 20888, 18189, 2756, 25, 201, 198, 220, 220, 220, 3601, 7, 69, 1, 5297, 0, 1391, 7, 23350, 62, 20888, 532, 2756, 2599, 13, 17, 69, 92, 300, 85, 1364, 19570, 201, 198, 17772, 25, 201, 198, 220, 220, 220, 3601, 7, 69, 1, 3673, 1576, 1637, 0, 1391, 7, 20888, 532, 2472, 62, 20888, 2599, 13, 17, 69, 92, 300, 85, 2622, 19570, 201, 198 ]
2.473154
298
# vim: tabstop=4 shiftwidth=4 softtabstop=4 # -*- encoding: utf-8 -*- # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """ Utils for testing the API service. """ import datetime import json ADMIN_TOKEN = '4562138218392831' MEMBER_TOKEN = '4562138218392832'
[ 2, 43907, 25, 7400, 11338, 28, 19, 6482, 10394, 28, 19, 2705, 8658, 11338, 28, 19, 198, 2, 532, 9, 12, 21004, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 2, 198, 2, 220, 220, 220, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 345, 743, 198, 2, 220, 220, 220, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 921, 743, 7330, 198, 2, 220, 220, 220, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 220, 220, 220, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 220, 220, 220, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 42881, 198, 2, 220, 220, 220, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 4091, 262, 198, 2, 220, 220, 220, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 11247, 198, 2, 220, 220, 220, 739, 262, 13789, 13, 198, 37811, 198, 18274, 4487, 329, 4856, 262, 7824, 2139, 13, 198, 37811, 198, 198, 11748, 4818, 8079, 198, 11748, 33918, 198, 198, 2885, 23678, 62, 10468, 43959, 796, 705, 2231, 5237, 1485, 6469, 1507, 2670, 2078, 3132, 6, 198, 44, 28952, 62, 10468, 43959, 796, 705, 2231, 5237, 1485, 6469, 1507, 2670, 2078, 2624, 6, 628 ]
3.054475
257
import datetime from flask_wtf import FlaskForm from wtforms import ( StringField, TextAreaField, DateTimeField, HiddenField, PasswordField, ) from wtforms.validators import DataRequired, ValidationError, Email, EqualTo
[ 11748, 4818, 8079, 198, 6738, 42903, 62, 86, 27110, 1330, 46947, 8479, 198, 6738, 266, 83, 23914, 1330, 357, 198, 220, 220, 220, 10903, 15878, 11, 198, 220, 220, 220, 8255, 30547, 15878, 11, 198, 220, 220, 220, 7536, 7575, 15878, 11, 198, 220, 220, 220, 20458, 15878, 11, 198, 220, 220, 220, 30275, 15878, 11, 198, 8, 198, 6738, 266, 83, 23914, 13, 12102, 2024, 1330, 6060, 37374, 11, 3254, 24765, 12331, 11, 9570, 11, 28701, 2514, 628, 628, 198 ]
3.012346
81
# -*- coding: utf-8 -*- """Proiect.ipynb Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/1TR1Frf0EX4PtFZkLlVdGtMTINqhoQwRw """ # Importarea librariilor import numpy as np import pandas as pd # pandas pentru citirea fisierelor from sklearn import preprocessing from sklearn import svm # importarea modelului from sklearn.feature_extraction.text import TfidfVectorizer # modelarea datelor pentru a obtine valori numerice din text from sklearn.metrics import classification_report, confusion_matrix # Incarcarea datelor train_labels = pd.read_csv('train_labels.txt', sep='\t', header=None, engine='python') train_labels = train_labels.to_numpy() # convertim data frame-ul intr-un vector train_labels = train_labels[:,1] # pastram doar etichetele train_samples = pd.read_csv('train_samples.txt', sep='\t', header=None, engine='python') train_samples = train_samples.to_numpy() train_samples = train_samples[:,1] # pastram doar cuvintele validation_samples = pd.read_csv('validation_samples.txt', sep='\t', header=None, engine='python') validation_samples = validation_samples.to_numpy() validation_samples = validation_samples[:,1] # salvam cuvintele validation_labels = pd.read_csv('validation_labels.txt', sep='\t', header=None, engine='python') validation_labels = validation_labels.to_numpy() validation_labels = validation_labels[:,1] # pastram doar etichetele test_samples = pd.read_csv('test_samples.txt', sep='\t', header=None, engine='python') test_samples = test_samples.to_numpy() label = test_samples[:,0] # salvam etichetele test_samples = test_samples[:,1] # salvam cuvintele # Modelarea datelor vectorizer = TfidfVectorizer() training_features = vectorizer.fit_transform(train_samples) validation_features = vectorizer.transform(validation_samples) testing_features = vectorizer.transform(test_samples) # Normalizarea datelor norm_train, norm_test = normalize_data(training_features, testing_features) norm_validation, _ = normalize_data(validation_features, validation_features) # Aplicam modelul SVM model_svm = svm.SVC(kernel='linear', C=23, gamma=110) # definim modelul model_svm.fit(norm_train, train_labels) # procesul de invatare test_predictions = model_svm.predict(norm_test) # predictie pe datele de test print("Classification report: ") print(classification_report(validation_labels, model_svm.predict(norm_validation))) print("Confusion matrix: ") print(confusion_matrix(validation_labels, model_svm.predict(norm_validation))) # Exportarea datelor in format CSV test_export = {'id':label,'label':test_predictions} data_f = pd.DataFrame(test_export) data_f.to_csv('test_submission.csv',index=False)
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 37811, 2964, 72, 478, 13, 541, 2047, 65, 198, 198, 38062, 4142, 7560, 416, 1623, 4820, 2870, 13, 198, 198, 20556, 2393, 318, 5140, 379, 198, 220, 220, 220, 3740, 1378, 4033, 397, 13, 34033, 13, 13297, 13, 785, 14, 19472, 14, 16, 5446, 16, 6732, 69, 15, 6369, 19, 47, 83, 37, 57, 74, 43, 75, 53, 67, 38, 83, 13752, 1268, 80, 8873, 48, 86, 49, 86, 198, 37811, 198, 198, 2, 17267, 20337, 300, 2889, 2743, 346, 273, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 19798, 292, 355, 279, 67, 1303, 19798, 292, 28145, 622, 15433, 557, 64, 277, 271, 494, 2411, 273, 198, 198, 6738, 1341, 35720, 1330, 662, 36948, 198, 6738, 1341, 35720, 1330, 264, 14761, 1303, 1330, 20337, 2746, 377, 9019, 198, 6738, 1341, 35720, 13, 30053, 62, 2302, 7861, 13, 5239, 1330, 309, 69, 312, 69, 38469, 7509, 1303, 2746, 20337, 3128, 4685, 28145, 622, 257, 909, 83, 500, 1188, 10145, 5470, 501, 16278, 2420, 198, 6738, 1341, 35720, 13, 4164, 10466, 1330, 17923, 62, 13116, 11, 10802, 62, 6759, 8609, 198, 198, 2, 3457, 5605, 20337, 3128, 4685, 198, 27432, 62, 23912, 1424, 796, 279, 67, 13, 961, 62, 40664, 10786, 27432, 62, 23912, 1424, 13, 14116, 3256, 41767, 11639, 59, 83, 3256, 13639, 28, 14202, 11, 3113, 11639, 29412, 11537, 198, 27432, 62, 23912, 1424, 796, 4512, 62, 23912, 1424, 13, 1462, 62, 77, 32152, 3419, 1303, 10385, 320, 1366, 5739, 12, 377, 9913, 12, 403, 15879, 198, 27432, 62, 23912, 1424, 796, 4512, 62, 23912, 1424, 58, 45299, 16, 60, 1303, 1613, 859, 466, 283, 2123, 14234, 46813, 198, 198, 27432, 62, 82, 12629, 796, 279, 67, 13, 961, 62, 40664, 10786, 27432, 62, 82, 12629, 13, 14116, 3256, 41767, 11639, 59, 83, 3256, 13639, 28, 14202, 11, 3113, 11639, 29412, 11537, 198, 27432, 62, 82, 12629, 796, 4512, 62, 82, 12629, 13, 1462, 62, 77, 32152, 3419, 198, 27432, 62, 82, 12629, 796, 4512, 62, 82, 12629, 58, 45299, 16, 60, 1303, 1613, 859, 466, 283, 269, 14795, 600, 11129, 198, 198, 12102, 341, 62, 82, 12629, 796, 279, 67, 13, 961, 62, 40664, 10786, 12102, 341, 62, 82, 12629, 13, 14116, 3256, 41767, 11639, 59, 83, 3256, 13639, 28, 14202, 11, 3113, 11639, 29412, 11537, 198, 12102, 341, 62, 82, 12629, 796, 21201, 62, 82, 12629, 13, 1462, 62, 77, 32152, 3419, 198, 12102, 341, 62, 82, 12629, 796, 21201, 62, 82, 12629, 58, 45299, 16, 60, 1303, 24143, 321, 269, 14795, 600, 11129, 198, 198, 12102, 341, 62, 23912, 1424, 796, 279, 67, 13, 961, 62, 40664, 10786, 12102, 341, 62, 23912, 1424, 13, 14116, 3256, 41767, 11639, 59, 83, 3256, 13639, 28, 14202, 11, 3113, 11639, 29412, 11537, 198, 12102, 341, 62, 23912, 1424, 796, 21201, 62, 23912, 1424, 13, 1462, 62, 77, 32152, 3419, 198, 12102, 341, 62, 23912, 1424, 796, 21201, 62, 23912, 1424, 58, 45299, 16, 60, 1303, 1613, 859, 466, 283, 2123, 14234, 46813, 198, 198, 9288, 62, 82, 12629, 796, 279, 67, 13, 961, 62, 40664, 10786, 9288, 62, 82, 12629, 13, 14116, 3256, 41767, 11639, 59, 83, 3256, 13639, 28, 14202, 11, 3113, 11639, 29412, 11537, 198, 9288, 62, 82, 12629, 796, 1332, 62, 82, 12629, 13, 1462, 62, 77, 32152, 3419, 198, 18242, 796, 1332, 62, 82, 12629, 58, 45299, 15, 60, 1303, 24143, 321, 2123, 14234, 46813, 198, 9288, 62, 82, 12629, 796, 1332, 62, 82, 12629, 58, 45299, 16, 60, 1303, 24143, 321, 269, 14795, 600, 11129, 628, 198, 2, 9104, 20337, 3128, 4685, 198, 31364, 7509, 796, 309, 69, 312, 69, 38469, 7509, 3419, 198, 198, 34409, 62, 40890, 796, 15879, 7509, 13, 11147, 62, 35636, 7, 27432, 62, 82, 12629, 8, 198, 198, 12102, 341, 62, 40890, 796, 15879, 7509, 13, 35636, 7, 12102, 341, 62, 82, 12629, 8, 198, 198, 33407, 62, 40890, 796, 15879, 7509, 13, 35636, 7, 9288, 62, 82, 12629, 8, 198, 198, 2, 14435, 528, 20337, 3128, 4685, 198, 27237, 62, 27432, 11, 2593, 62, 9288, 796, 3487, 1096, 62, 7890, 7, 34409, 62, 40890, 11, 4856, 62, 40890, 8, 198, 27237, 62, 12102, 341, 11, 4808, 796, 3487, 1096, 62, 7890, 7, 12102, 341, 62, 40890, 11, 21201, 62, 40890, 8, 198, 198, 2, 317, 489, 291, 321, 2746, 377, 311, 15996, 198, 19849, 62, 82, 14761, 796, 264, 14761, 13, 50, 15922, 7, 33885, 11639, 29127, 3256, 327, 28, 1954, 11, 34236, 28, 11442, 8, 1303, 2730, 320, 2746, 377, 198, 19849, 62, 82, 14761, 13, 11147, 7, 27237, 62, 27432, 11, 4512, 62, 23912, 1424, 8, 1303, 386, 728, 377, 390, 800, 265, 533, 198, 9288, 62, 28764, 9278, 796, 2746, 62, 82, 14761, 13, 79, 17407, 7, 27237, 62, 9288, 8, 1303, 4331, 494, 613, 3128, 293, 390, 1332, 198, 198, 4798, 7203, 9487, 2649, 989, 25, 366, 8, 198, 4798, 7, 4871, 2649, 62, 13116, 7, 12102, 341, 62, 23912, 1424, 11, 2746, 62, 82, 14761, 13, 79, 17407, 7, 27237, 62, 12102, 341, 22305, 198, 198, 4798, 7203, 18546, 4241, 17593, 25, 366, 8, 198, 4798, 7, 10414, 4241, 62, 6759, 8609, 7, 12102, 341, 62, 23912, 1424, 11, 2746, 62, 82, 14761, 13, 79, 17407, 7, 27237, 62, 12102, 341, 22305, 198, 198, 2, 36472, 20337, 3128, 4685, 287, 5794, 44189, 198, 9288, 62, 39344, 796, 1391, 6, 312, 10354, 18242, 4032, 18242, 10354, 9288, 62, 28764, 9278, 92, 198, 7890, 62, 69, 796, 279, 67, 13, 6601, 19778, 7, 9288, 62, 39344, 8, 198, 7890, 62, 69, 13, 1462, 62, 40664, 10786, 9288, 62, 7266, 3411, 13, 40664, 3256, 9630, 28, 25101, 8 ]
2.858351
946
from .logger import Logger from .logger_supervised import LoggerSupervised
[ 6738, 764, 6404, 1362, 1330, 5972, 1362, 198, 6738, 764, 6404, 1362, 62, 16668, 16149, 1330, 5972, 1362, 12442, 16149, 198 ]
3.571429
21
from __future__ import annotations import collections import inspect from dataclasses import dataclass from enum import Enum from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union from flytekit.common import constants as _common_constants from flytekit.common.exceptions.user import FlyteValidationException, FlyteValueException from flytekit.core.base_task import PythonTask from flytekit.core.class_based_resolver import ClassStorageTaskResolver from flytekit.core.condition import ConditionalSection from flytekit.core.context_manager import ( BranchEvalMode, CompilationState, ExecutionState, FlyteContext, FlyteContextManager, FlyteEntities, ) from flytekit.core.interface import ( Interface, transform_inputs_to_parameters, transform_interface_to_typed_interface, transform_signature_to_interface, ) from flytekit.core.launch_plan import LaunchPlan from flytekit.core.node import Node from flytekit.core.promise import ( NodeOutput, Promise, VoidPromise, binding_from_python_std, create_and_link_node, create_native_named_tuple, create_task_output, translate_inputs_to_literals, ) from flytekit.core.python_auto_container import PythonAutoContainerTask from flytekit.core.reference_entity import ReferenceEntity, WorkflowReference from flytekit.core.type_engine import TypeEngine from flytekit.loggers import logger from flytekit.models import interface as _interface_models from flytekit.models import literals as _literal_models from flytekit.models.core import workflow as _workflow_model GLOBAL_START_NODE = Node( id=_common_constants.GLOBAL_INPUT_NODE_ID, metadata=None, bindings=[], upstream_nodes=[], flyte_entity=None, ) def construct_input_promises(inputs: List[str]): return { input_name: Promise(var=input_name, val=NodeOutput(node=GLOBAL_START_NODE, var=input_name)) for input_name in inputs } def get_promise(binding_data: _literal_models.BindingData, outputs_cache: Dict[Node, Dict[str, Promise]]) -> Promise: """ This is a helper function that will turn a binding into a Promise object, using a lookup map. Please see get_promise_map for the rest of the details. """ if binding_data.promise is not None: if not isinstance(binding_data.promise, NodeOutput): raise FlyteValidationException( f"Binding data Promises have to be of the NodeOutput type {type(binding_data.promise)} found" ) # b.var is the name of the input to the task # binding_data.promise.var is the name of the upstream node's output we want return outputs_cache[binding_data.promise.node][binding_data.promise.var] elif binding_data.scalar is not None: return Promise(var="placeholder", val=_literal_models.Literal(scalar=binding_data.scalar)) elif binding_data.collection is not None: literals = [] for bd in binding_data.collection.bindings: p = get_promise(bd, outputs_cache) literals.append(p.val) return Promise( var="placeholder", val=_literal_models.Literal(collection=_literal_models.LiteralCollection(literals=literals)), ) elif binding_data.map is not None: literals = {} for k, bd in binding_data.map.bindings.items(): p = get_promise(bd, outputs_cache) literals[k] = p.val return Promise( var="placeholder", val=_literal_models.Literal(map=_literal_models.LiteralMap(literals=literals)) ) raise FlyteValidationException("Binding type unrecognized.") def get_promise_map( bindings: List[_literal_models.Binding], outputs_cache: Dict[Node, Dict[str, Promise]] ) -> Dict[str, Promise]: """ Local execution of imperatively defined workflows is done node by node. This function will fill in the node's entity's input arguments, which are specified using the bindings list, and a map of nodes to its outputs. Basically this takes the place of propeller in resolving bindings, pulling in outputs from previously completed nodes and filling in the necessary inputs. """ entity_kwargs = {} for b in bindings: entity_kwargs[b.var] = get_promise(b.binding, outputs_cache) return entity_kwargs class WorkflowBase(object): def __repr__(self): return ( f"WorkflowBase - {self._name} && " f"Inputs ({len(self._python_interface.inputs)}): {self._python_interface.inputs} && " f"Outputs ({len(self._python_interface.outputs)}): {self._python_interface.outputs} && " f"Output bindings: {self._output_bindings} && " ) def __call__(self, *args, **kwargs): """ The call pattern for Workflows is close to, but not exactly, the call pattern for Tasks. For local execution, it goes __call__ -> _local_execute -> execute From execute, different things happen for the two Workflow styles. For PythonFunctionWorkflows, the Python function is run, for the ImperativeWorkflow, each node is run one at a time. """ if len(args) > 0: raise AssertionError("Only Keyword Arguments are supported for Workflow executions") ctx = FlyteContextManager.current_context() # Get default agruements and override with kwargs passed in input_kwargs = self.python_interface.default_inputs_as_kwargs input_kwargs.update(kwargs) # The first condition is compilation. if ctx.compilation_state is not None: return create_and_link_node(ctx, entity=self, interface=self.python_interface, **input_kwargs) # This condition is hit when this workflow (self) is being called as part of a parent's workflow local run. # The context specifying the local workflow execution has already been set. elif ( ctx.execution_state is not None and ctx.execution_state.mode == ExecutionState.Mode.LOCAL_WORKFLOW_EXECUTION ): if ctx.execution_state.branch_eval_mode == BranchEvalMode.BRANCH_SKIPPED: if self.python_interface and self.python_interface.output_tuple_name: variables = [k for k in self.python_interface.outputs.keys()] output_tuple = collections.namedtuple(self.python_interface.output_tuple_name, variables) nones = [None for _ in self.python_interface.outputs.keys()] return output_tuple(*nones) else: return None # We are already in a local execution, just continue the execution context return self._local_execute(ctx, **input_kwargs) # Last is starting a local workflow execution else: # Run some sanity checks # Even though the _local_execute call generally expects inputs to be Promises, we don't have to do the # conversion here in this loop. The reason is because we don't prevent users from specifying inputs # as direct scalars, which means there's another Promise-generating loop inside _local_execute too for k, v in input_kwargs.items(): if k not in self.interface.inputs: raise ValueError(f"Received unexpected keyword argument {k}") if isinstance(v, Promise): raise ValueError(f"Received a promise for a workflow call, when expecting a native value for {k}") with FlyteContextManager.with_context( ctx.with_execution_state( ctx.new_execution_state().with_params(mode=ExecutionState.Mode.LOCAL_WORKFLOW_EXECUTION) ) ) as child_ctx: result = self._local_execute(child_ctx, **input_kwargs) expected_outputs = len(self.python_interface.outputs) if expected_outputs == 0: if result is None or isinstance(result, VoidPromise): return None else: raise Exception(f"Workflow local execution expected 0 outputs but something received {result}") if (1 < expected_outputs == len(result)) or (result is not None and expected_outputs == 1): return create_native_named_tuple(ctx, result, self.python_interface) raise ValueError("expected outputs and actual outputs do not match") def execute(self, **kwargs): raise Exception("Should not be called") def _local_execute(self, ctx: FlyteContext, **kwargs) -> Union[Tuple[Promise], Promise, VoidPromise]: # This is done to support the invariant that Workflow local executions always work with Promise objects # holding Flyte literal values. Even in a wf, a user can call a sub-workflow with a Python native value. for k, v in kwargs.items(): if not isinstance(v, Promise): t = self.python_interface.inputs[k] kwargs[k] = Promise(var=k, val=TypeEngine.to_literal(ctx, v, t, self.interface.inputs[k].type)) # The output of this will always be a combination of Python native values and Promises containing Flyte # Literals. function_outputs = self.execute(**kwargs) # First handle the empty return case. # A workflow function may return a task that doesn't return anything # def wf(): # return t1() # or it may not return at all # def wf(): # t1() # In the former case we get the task's VoidPromise, in the latter we get None if isinstance(function_outputs, VoidPromise) or function_outputs is None: if len(self.python_interface.outputs) != 0: raise FlyteValueException( function_outputs, f"{function_outputs} received but interface has {len(self.python_interface.outputs)} outputs.", ) return VoidPromise(self.name) # Because we should've already returned in the above check, we just raise an error here. if len(self.python_interface.outputs) == 0: raise FlyteValueException( function_outputs, f"{function_outputs} received but should've been VoidPromise or None." ) expected_output_names = list(self.python_interface.outputs.keys()) if len(expected_output_names) == 1: # Here we have to handle the fact that the wf could've been declared with a typing.NamedTuple of # length one. That convention is used for naming outputs - and single-length-NamedTuples are # particularly troublesome but elegant handling of them is not a high priority # Again, we're using the output_tuple_name as a proxy. if self.python_interface.output_tuple_name and isinstance(function_outputs, tuple): wf_outputs_as_map = {expected_output_names[0]: function_outputs[0]} else: wf_outputs_as_map = {expected_output_names[0]: function_outputs} else: wf_outputs_as_map = {expected_output_names[i]: function_outputs[i] for i, _ in enumerate(function_outputs)} # Basically we need to repackage the promises coming from the tasks into Promises that match the workflow's # interface. We do that by extracting out the literals, and creating new Promises wf_outputs_as_literal_dict = translate_inputs_to_literals( ctx, wf_outputs_as_map, flyte_interface_types=self.interface.outputs, native_types=self.python_interface.outputs, ) # Recreate new promises that use the workflow's output names. new_promises = [Promise(var, wf_outputs_as_literal_dict[var]) for var in expected_output_names] return create_task_output(new_promises, self.python_interface) class ImperativeWorkflow(WorkflowBase): def __repr__(self): return super().__repr__() + f"Nodes ({len(self.compilation_state.nodes)}): {self.compilation_state.nodes}" def execute(self, **kwargs): """ Called by _local_execute. This function is how local execution for imperative workflows runs. Because when an entity is added using the add_entity function, all inputs to that entity should've been already declared, we can just iterate through the nodes in order and we shouldn't run into any dependency issues. That is, we force the user to declare entities already in a topological sort. To keep track of outputs, we create a map to start things off, filled in only with the workflow inputs (if any). As things are run, their outputs are stored in this map. After all nodes are run, we fill in workflow level outputs the same way as any other previous node. """ if not self.ready(): raise FlyteValidationException(f"Workflow not ready, wf is currently {self}") # Create a map that holds the outputs of each node. intermediate_node_outputs = {GLOBAL_START_NODE: {}} # type: Dict[Node, Dict[str, Promise]] # Start things off with the outputs of the global input node, i.e. the inputs to the workflow. # _local_execute should've already ensured that all the values in kwargs are Promise objects for k, v in kwargs.items(): intermediate_node_outputs[GLOBAL_START_NODE][k] = v # Next iterate through the nodes in order. for node in self.compilation_state.nodes: if node not in intermediate_node_outputs.keys(): intermediate_node_outputs[node] = {} # Retrieve the entity from the node, and call it by looking up the promises the node's bindings require, # and then fill them in using the node output tracker map we have. entity = node.flyte_entity entity_kwargs = get_promise_map(node.bindings, intermediate_node_outputs) # Handle the calling and outputs of each node's entity results = entity(**entity_kwargs) expected_output_names = list(entity.python_interface.outputs.keys()) if isinstance(results, VoidPromise) or results is None: continue # pragma: no cover # Move along, nothing to assign # Because we should've already returned in the above check, we just raise an Exception here. if len(entity.python_interface.outputs) == 0: raise FlyteValueException(results, f"{results} received but should've been VoidPromise or None.") # if there's only one output, if len(expected_output_names) == 1: if entity.python_interface.output_tuple_name and isinstance(results, tuple): intermediate_node_outputs[node][expected_output_names[0]] = results[0] else: intermediate_node_outputs[node][expected_output_names[0]] = results else: if len(results) != len(expected_output_names): raise FlyteValueException(results, f"Different lengths {results} {expected_output_names}") for idx, r in enumerate(results): intermediate_node_outputs[node][expected_output_names[idx]] = r # The rest of this function looks like the above but now we're doing it for the workflow as a whole rather # than just one node at a time. if len(self.python_interface.outputs) == 0: return VoidPromise(self.name) # The values that we return below from the output have to be pulled by fulfilling all of the # workflow's output bindings. # The return style here has to match what 1) what the workflow would've returned had it been declared # functionally, and 2) what a user would return in mock function. That is, if it's a tuple, then it # should be a tuple here, if it's a one element named tuple, then we do a one-element non-named tuple, # if it's a single element then we return a single element if len(self.output_bindings) == 1: # Again use presence of output_tuple_name to understand that we're dealing with a one-element # named tuple if self.python_interface.output_tuple_name: return (get_promise(self.output_bindings[0].binding, intermediate_node_outputs),) # Just a normal single element return get_promise(self.output_bindings[0].binding, intermediate_node_outputs) return tuple([get_promise(b.binding, intermediate_node_outputs) for b in self.output_bindings]) def add_entity(self, entity: Union[PythonTask, LaunchPlan, WorkflowBase], **kwargs) -> Node: """ Anytime you add an entity, all the inputs to the entity must be bound. """ # circular import from flytekit.core.node_creation import create_node ctx = FlyteContext.current_context() if ctx.compilation_state is not None: raise Exception("Can't already be compiling") with FlyteContextManager.with_context(ctx.with_compilation_state(self.compilation_state)) as ctx: n = create_node(entity=entity, **kwargs) # Every time an entity is added, mark it as used. The above function though will gather all the input # values but we're only interested in the ones that are Promises so let's filter for those. # There's probably a way to clean this up, maybe key off of the name instead of value? all_input_values = get_input_values(kwargs) for input_value in filter(lambda x: isinstance(x, Promise), all_input_values): if input_value in self._unbound_inputs: self._unbound_inputs.remove(input_value) return n def add_workflow_input(self, input_name: str, python_type: Type) -> Interface: """ Adds an input to the workflow. """ if input_name in self._inputs: raise FlyteValidationException(f"Input {input_name} has already been specified for wf {self.name}.") self._python_interface = self._python_interface.with_inputs(extra_inputs={input_name: python_type}) self._interface = transform_interface_to_typed_interface(self._python_interface) self._inputs[input_name] = Promise(var=input_name, val=NodeOutput(node=GLOBAL_START_NODE, var=input_name)) self._unbound_inputs.add(self._inputs[input_name]) return self._inputs[input_name] def add_workflow_output( self, output_name: str, p: Union[Promise, List[Promise], Dict[str, Promise]], python_type: Optional[Type] = None ): """ Add an output with the given name from the given node output. """ if output_name in self._python_interface.outputs: raise FlyteValidationException(f"Output {output_name} already exists in workflow {self.name}") if python_type is None: if type(p) == list or type(p) == dict: raise FlyteValidationException( f"If specifying a list or dict of Promises, you must specify the python_type type for {output_name}" f" starting with the container type (e.g. List[int]" ) python_type = p.ref.node.flyte_entity.python_interface.outputs[p.var] logger.debug(f"Inferring python type for wf output {output_name} from Promise provided {python_type}") flyte_type = TypeEngine.to_literal_type(python_type=python_type) ctx = FlyteContext.current_context() if ctx.compilation_state is not None: raise Exception("Can't already be compiling") with FlyteContextManager.with_context(ctx.with_compilation_state(self.compilation_state)) as ctx: b = binding_from_python_std( ctx, output_name, expected_literal_type=flyte_type, t_value=p, t_value_type=python_type ) self._output_bindings.append(b) self._python_interface = self._python_interface.with_outputs(extra_outputs={output_name: python_type}) self._interface = transform_interface_to_typed_interface(self._python_interface) def add_task(self, task: PythonTask, **kwargs) -> Node: return self.add_entity(task, **kwargs) def add_launch_plan(self, launch_plan: LaunchPlan, **kwargs) -> Node: return self.add_entity(launch_plan, **kwargs) def add_subwf(self, sub_wf: WorkflowBase, **kwargs) -> Node: return self.add_entity(sub_wf, **kwargs) def ready(self) -> bool: """ This function returns whether or not the workflow is in a ready state, which means * Has at least one node * All workflow inputs are bound These conditions assume that all nodes and workflow i/o changes were done with the functions above, which do additional checking. """ if len(self.compilation_state.nodes) == 0: return False if len(self._unbound_inputs) > 0: return False return True class PythonFunctionWorkflow(WorkflowBase, ClassStorageTaskResolver): """ Please read :std:ref:`flyte:divedeep-workflows` first for a high-level understanding of what workflows are in Flyte. This Python object represents a workflow defined by a function and decorated with the :py:func:`@workflow <flytekit.workflow>` decorator. Please see notes on that object for additional information. """ def compile(self, **kwargs): """ Supply static Python native values in the kwargs if you want them to be used in the compilation. This mimics a 'closure' in the traditional sense of the word. """ ctx = FlyteContextManager.current_context() self._input_parameters = transform_inputs_to_parameters(ctx, self.python_interface) all_nodes = [] prefix = f"{ctx.compilation_state.prefix}-{self.short_name}-" if ctx.compilation_state is not None else "" with FlyteContextManager.with_context( ctx.with_compilation_state(CompilationState(prefix=prefix, task_resolver=self)) ) as comp_ctx: # Construct the default input promise bindings, but then override with the provided inputs, if any input_kwargs = construct_input_promises([k for k in self.interface.inputs.keys()]) input_kwargs.update(kwargs) workflow_outputs = self._workflow_function(**input_kwargs) all_nodes.extend(comp_ctx.compilation_state.nodes) # This little loop was added as part of the task resolver change. The task resolver interface itself is # more or less stateless (the future-proofing get_all_tasks function notwithstanding). However the # implementation of the TaskResolverMixin that this workflow class inherits from (ClassStorageTaskResolver) # does store state. This loop adds Tasks that are defined within the body of the workflow to the workflow # object itself. for n in comp_ctx.compilation_state.nodes: if isinstance(n.flyte_entity, PythonAutoContainerTask) and n.flyte_entity.task_resolver == self: logger.debug(f"WF {self.name} saving task {n.flyte_entity.name}") self.add(n.flyte_entity) # Iterate through the workflow outputs bindings = [] output_names = list(self.interface.outputs.keys()) # The reason the length 1 case is separate is because the one output might be a list. We don't want to # iterate through the list here, instead we should let the binding creation unwrap it and make a binding # collection/map out of it. if len(output_names) == 1: if isinstance(workflow_outputs, tuple): if len(workflow_outputs) != 1: raise AssertionError( f"The Workflow specification indicates only one return value, received {len(workflow_outputs)}" ) if self.python_interface.output_tuple_name is None: raise AssertionError( "Outputs specification for Workflow does not define a tuple, but return value is a tuple" ) workflow_outputs = workflow_outputs[0] t = self.python_interface.outputs[output_names[0]] b = binding_from_python_std( ctx, output_names[0], self.interface.outputs[output_names[0]].type, workflow_outputs, t, ) bindings.append(b) elif len(output_names) > 1: if not isinstance(workflow_outputs, tuple): raise AssertionError("The Workflow specification indicates multiple return values, received only one") if len(output_names) != len(workflow_outputs): raise Exception(f"Length mismatch {len(output_names)} vs {len(workflow_outputs)}") for i, out in enumerate(output_names): if isinstance(workflow_outputs[i], ConditionalSection): raise AssertionError("A Conditional block (if-else) should always end with an `else_()` clause") t = self.python_interface.outputs[out] b = binding_from_python_std( ctx, out, self.interface.outputs[out].type, workflow_outputs[i], t, ) bindings.append(b) # Save all the things necessary to create an SdkWorkflow, except for the missing project and domain self._nodes = all_nodes self._output_bindings = bindings if not output_names: return None if len(output_names) == 1: return bindings[0] return tuple(bindings) def execute(self, **kwargs): """ This function is here only to try to streamline the pattern between workflows and tasks. Since tasks call execute from dispatch_execute which is in _local_execute, workflows should also call an execute inside _local_execute. This makes mocking cleaner. """ return self._workflow_function(**kwargs) def workflow( _workflow_function=None, failure_policy: Optional[WorkflowFailurePolicy] = None, interruptible: Optional[bool] = False, ): """ This decorator declares a function to be a Flyte workflow. Workflows are declarative entities that construct a DAG of tasks using the data flow between tasks. Unlike a task, the function body of a workflow is evaluated at serialization-time (aka compile-time). This is because while we can determine the entire structure of a task by looking at the function's signature, workflows need to run through the function itself because the body of the function is what expresses the workflow structure. It's also important to note that, local execution notwithstanding, it is not evaluated again when the workflow runs on Flyte. That is, workflows should not call non-Flyte entities since they are only run once (again, this is with respect to the platform, local runs notwithstanding). Please see the :std:doc:`cookbook:sphx_glr_auto_core_flyte_basics_basic_workflow.py` for more usage examples. :param _workflow_function: This argument is implicitly passed and represents the decorated function. :param failure_policy: Use the options in flytekit.WorkflowFailurePolicy :param interruptible: Whether or not tasks launched from this workflow are by default interruptible """ if _workflow_function: return wrapper(_workflow_function) else: return wrapper class ReferenceWorkflow(ReferenceEntity, PythonFunctionWorkflow): """ A reference workflow is a pointer to a workflow that already exists on your Flyte installation. This object will not initiate a network call to Admin, which is why the user is asked to provide the expected interface. If at registration time the interface provided causes an issue with compilation, an error will be returned. """ def reference_workflow( project: str, domain: str, name: str, version: str, ) -> Callable[[Callable[..., Any]], ReferenceWorkflow]: """ A reference workflow is a pointer to a workflow that already exists on your Flyte installation. This object will not initiate a network call to Admin, which is why the user is asked to provide the expected interface. If at registration time the interface provided causes an issue with compilation, an error will be returned. """ return wrapper
[ 6738, 11593, 37443, 834, 1330, 37647, 198, 198, 11748, 17268, 198, 11748, 10104, 198, 6738, 4818, 330, 28958, 1330, 4818, 330, 31172, 198, 6738, 33829, 1330, 2039, 388, 198, 6738, 19720, 1330, 4377, 11, 4889, 540, 11, 360, 713, 11, 7343, 11, 32233, 11, 309, 29291, 11, 5994, 11, 4479, 198, 198, 6738, 6129, 660, 15813, 13, 11321, 1330, 38491, 355, 4808, 11321, 62, 9979, 1187, 198, 6738, 6129, 660, 15813, 13, 11321, 13, 1069, 11755, 13, 7220, 1330, 13575, 660, 7762, 24765, 16922, 11, 13575, 660, 11395, 16922, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 8692, 62, 35943, 1330, 11361, 25714, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 4871, 62, 3106, 62, 411, 14375, 1330, 5016, 31425, 25714, 4965, 14375, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 31448, 1330, 9724, 1859, 16375, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 22866, 62, 37153, 1330, 357, 198, 220, 220, 220, 20551, 36, 2100, 19076, 11, 198, 220, 220, 220, 3082, 10520, 9012, 11, 198, 220, 220, 220, 37497, 9012, 11, 198, 220, 220, 220, 13575, 660, 21947, 11, 198, 220, 220, 220, 13575, 660, 21947, 13511, 11, 198, 220, 220, 220, 13575, 660, 14539, 871, 11, 198, 8, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 39994, 1330, 357, 198, 220, 220, 220, 26491, 11, 198, 220, 220, 220, 6121, 62, 15414, 82, 62, 1462, 62, 17143, 7307, 11, 198, 220, 220, 220, 6121, 62, 39994, 62, 1462, 62, 774, 9124, 62, 39994, 11, 198, 220, 220, 220, 6121, 62, 12683, 1300, 62, 1462, 62, 39994, 11, 198, 8, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 35681, 62, 11578, 1330, 21225, 20854, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 17440, 1330, 19081, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 16963, 786, 1330, 357, 198, 220, 220, 220, 19081, 26410, 11, 198, 220, 220, 220, 34920, 11, 198, 220, 220, 220, 18331, 24129, 786, 11, 198, 220, 220, 220, 12765, 62, 6738, 62, 29412, 62, 19282, 11, 198, 220, 220, 220, 2251, 62, 392, 62, 8726, 62, 17440, 11, 198, 220, 220, 220, 2251, 62, 30191, 62, 13190, 62, 83, 29291, 11, 198, 220, 220, 220, 2251, 62, 35943, 62, 22915, 11, 198, 220, 220, 220, 15772, 62, 15414, 82, 62, 1462, 62, 17201, 874, 11, 198, 8, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 29412, 62, 23736, 62, 34924, 1330, 11361, 27722, 29869, 25714, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 35790, 62, 26858, 1330, 20984, 32398, 11, 5521, 11125, 26687, 198, 6738, 6129, 660, 15813, 13, 7295, 13, 4906, 62, 18392, 1330, 5994, 13798, 198, 6738, 6129, 660, 15813, 13, 6404, 5355, 1330, 49706, 198, 6738, 6129, 660, 15813, 13, 27530, 1330, 7071, 355, 4808, 39994, 62, 27530, 198, 6738, 6129, 660, 15813, 13, 27530, 1330, 4187, 874, 355, 4808, 18250, 1691, 62, 27530, 198, 6738, 6129, 660, 15813, 13, 27530, 13, 7295, 1330, 30798, 355, 4808, 1818, 11125, 62, 19849, 198, 198, 8763, 9864, 1847, 62, 2257, 7227, 62, 45, 16820, 796, 19081, 7, 198, 220, 220, 220, 4686, 28, 62, 11321, 62, 9979, 1187, 13, 8763, 9864, 1847, 62, 1268, 30076, 62, 45, 16820, 62, 2389, 11, 198, 220, 220, 220, 20150, 28, 14202, 11, 198, 220, 220, 220, 34111, 41888, 4357, 198, 220, 220, 220, 28717, 62, 77, 4147, 41888, 4357, 198, 220, 220, 220, 6129, 660, 62, 26858, 28, 14202, 11, 198, 8, 628, 628, 198, 198, 4299, 5678, 62, 15414, 62, 16963, 2696, 7, 15414, 82, 25, 7343, 58, 2536, 60, 2599, 198, 220, 220, 220, 1441, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 3672, 25, 34920, 7, 7785, 28, 15414, 62, 3672, 11, 1188, 28, 19667, 26410, 7, 17440, 28, 8763, 9864, 1847, 62, 2257, 7227, 62, 45, 16820, 11, 1401, 28, 15414, 62, 3672, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 329, 5128, 62, 3672, 287, 17311, 198, 220, 220, 220, 1782, 628, 198, 4299, 651, 62, 16963, 786, 7, 30786, 62, 7890, 25, 4808, 18250, 1691, 62, 27530, 13, 33, 6020, 6601, 11, 23862, 62, 23870, 25, 360, 713, 58, 19667, 11, 360, 713, 58, 2536, 11, 34920, 11907, 8, 4613, 34920, 25, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 770, 318, 257, 31904, 2163, 326, 481, 1210, 257, 12765, 656, 257, 34920, 2134, 11, 1262, 257, 35847, 3975, 13, 4222, 766, 198, 220, 220, 220, 651, 62, 16963, 786, 62, 8899, 329, 262, 1334, 286, 262, 3307, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 12765, 62, 7890, 13, 16963, 786, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 30786, 62, 7890, 13, 16963, 786, 11, 19081, 26410, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13575, 660, 7762, 24765, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 33, 6020, 1366, 10335, 2696, 423, 284, 307, 286, 262, 19081, 26410, 2099, 1391, 4906, 7, 30786, 62, 7890, 13, 16963, 786, 38165, 1043, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 275, 13, 7785, 318, 262, 1438, 286, 262, 5128, 284, 262, 4876, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 12765, 62, 7890, 13, 16963, 786, 13, 7785, 318, 262, 1438, 286, 262, 28717, 10139, 338, 5072, 356, 765, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 23862, 62, 23870, 58, 30786, 62, 7890, 13, 16963, 786, 13, 17440, 7131, 30786, 62, 7890, 13, 16963, 786, 13, 7785, 60, 198, 220, 220, 220, 1288, 361, 12765, 62, 7890, 13, 1416, 282, 283, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 34920, 7, 7785, 2625, 5372, 13829, 1600, 1188, 28, 62, 18250, 1691, 62, 27530, 13, 43, 270, 1691, 7, 1416, 282, 283, 28, 30786, 62, 7890, 13, 1416, 282, 283, 4008, 198, 220, 220, 220, 1288, 361, 12765, 62, 7890, 13, 43681, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4187, 874, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 329, 275, 67, 287, 12765, 62, 7890, 13, 43681, 13, 21653, 654, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 796, 651, 62, 16963, 786, 7, 17457, 11, 23862, 62, 23870, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4187, 874, 13, 33295, 7, 79, 13, 2100, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 34920, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1401, 2625, 5372, 13829, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1188, 28, 62, 18250, 1691, 62, 27530, 13, 43, 270, 1691, 7, 43681, 28, 62, 18250, 1691, 62, 27530, 13, 43, 270, 1691, 36307, 7, 17201, 874, 28, 17201, 874, 36911, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 1288, 361, 12765, 62, 7890, 13, 8899, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4187, 874, 796, 23884, 198, 220, 220, 220, 220, 220, 220, 220, 329, 479, 11, 275, 67, 287, 12765, 62, 7890, 13, 8899, 13, 21653, 654, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 279, 796, 651, 62, 16963, 786, 7, 17457, 11, 23862, 62, 23870, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4187, 874, 58, 74, 60, 796, 279, 13, 2100, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 34920, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1401, 2625, 5372, 13829, 1600, 1188, 28, 62, 18250, 1691, 62, 27530, 13, 43, 270, 1691, 7, 8899, 28, 62, 18250, 1691, 62, 27530, 13, 43, 270, 1691, 13912, 7, 17201, 874, 28, 17201, 874, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 5298, 13575, 660, 7762, 24765, 16922, 7203, 33, 6020, 2099, 43483, 1143, 19570, 628, 198, 4299, 651, 62, 16963, 786, 62, 8899, 7, 198, 220, 220, 220, 34111, 25, 7343, 29795, 18250, 1691, 62, 27530, 13, 33, 6020, 4357, 23862, 62, 23870, 25, 360, 713, 58, 19667, 11, 360, 713, 58, 2536, 11, 34920, 11907, 198, 8, 4613, 360, 713, 58, 2536, 11, 34920, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 10714, 9706, 286, 11071, 9404, 5447, 670, 44041, 318, 1760, 10139, 416, 10139, 13, 770, 2163, 481, 6070, 287, 262, 10139, 338, 198, 220, 220, 220, 9312, 338, 5128, 7159, 11, 543, 389, 7368, 1262, 262, 34111, 1351, 11, 290, 257, 3975, 286, 13760, 284, 663, 23862, 13, 198, 220, 220, 220, 20759, 428, 2753, 262, 1295, 286, 44408, 6051, 287, 31038, 34111, 11, 10427, 287, 23862, 422, 4271, 5668, 198, 220, 220, 220, 13760, 290, 12591, 287, 262, 3306, 17311, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 9312, 62, 46265, 22046, 796, 23884, 198, 220, 220, 220, 329, 275, 287, 34111, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9312, 62, 46265, 22046, 58, 65, 13, 7785, 60, 796, 651, 62, 16963, 786, 7, 65, 13, 30786, 11, 23862, 62, 23870, 8, 628, 220, 220, 220, 1441, 9312, 62, 46265, 22046, 628, 198, 4871, 5521, 11125, 14881, 7, 15252, 2599, 628, 220, 220, 220, 825, 11593, 260, 1050, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 12468, 11125, 14881, 532, 1391, 944, 13557, 3672, 92, 11405, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 20560, 82, 37913, 11925, 7, 944, 13557, 29412, 62, 39994, 13, 15414, 82, 38165, 2599, 1391, 944, 13557, 29412, 62, 39994, 13, 15414, 82, 92, 11405, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 26410, 82, 37913, 11925, 7, 944, 13557, 29412, 62, 39994, 13, 22915, 82, 38165, 2599, 1391, 944, 13557, 29412, 62, 39994, 13, 22915, 82, 92, 11405, 366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 26410, 34111, 25, 1391, 944, 13557, 22915, 62, 21653, 654, 92, 11405, 366, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 825, 11593, 13345, 834, 7, 944, 11, 1635, 22046, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 383, 869, 3912, 329, 5521, 44041, 318, 1969, 284, 11, 475, 407, 3446, 11, 262, 869, 3912, 329, 309, 6791, 13, 1114, 1957, 9706, 11, 198, 220, 220, 220, 220, 220, 220, 220, 340, 2925, 628, 220, 220, 220, 220, 220, 220, 220, 11593, 13345, 834, 4613, 4808, 12001, 62, 41049, 4613, 12260, 628, 220, 220, 220, 220, 220, 220, 220, 3574, 12260, 11, 1180, 1243, 1645, 329, 262, 734, 5521, 11125, 12186, 13, 1114, 11361, 22203, 12468, 44041, 11, 262, 11361, 198, 220, 220, 220, 220, 220, 220, 220, 2163, 318, 1057, 11, 329, 262, 28185, 876, 12468, 11125, 11, 1123, 10139, 318, 1057, 530, 379, 257, 640, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 22046, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2195, 861, 295, 12331, 7203, 10049, 7383, 4775, 20559, 2886, 389, 4855, 329, 5521, 11125, 30632, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 796, 13575, 660, 21947, 13511, 13, 14421, 62, 22866, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3497, 4277, 556, 622, 3196, 290, 20957, 351, 479, 86, 22046, 3804, 287, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 46265, 22046, 796, 2116, 13, 29412, 62, 39994, 13, 12286, 62, 15414, 82, 62, 292, 62, 46265, 22046, 198, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 46265, 22046, 13, 19119, 7, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 717, 4006, 318, 23340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 269, 17602, 13, 5589, 10520, 62, 5219, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2251, 62, 392, 62, 8726, 62, 17440, 7, 49464, 11, 9312, 28, 944, 11, 7071, 28, 944, 13, 29412, 62, 39994, 11, 12429, 15414, 62, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 4006, 318, 2277, 618, 428, 30798, 357, 944, 8, 318, 852, 1444, 355, 636, 286, 257, 2560, 338, 30798, 1957, 1057, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 4732, 31577, 262, 1957, 30798, 9706, 468, 1541, 587, 900, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 13, 18558, 1009, 62, 5219, 318, 407, 6045, 290, 269, 17602, 13, 18558, 1009, 62, 5219, 13, 14171, 6624, 37497, 9012, 13, 19076, 13, 29701, 1847, 62, 33249, 3697, 3913, 62, 6369, 2943, 35354, 198, 220, 220, 220, 220, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 269, 17602, 13, 18558, 1009, 62, 5219, 13, 1671, 3702, 62, 18206, 62, 14171, 6624, 20551, 36, 2100, 19076, 13, 11473, 1565, 3398, 62, 18831, 31444, 1961, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 29412, 62, 39994, 290, 2116, 13, 29412, 62, 39994, 13, 22915, 62, 83, 29291, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9633, 796, 685, 74, 329, 479, 287, 2116, 13, 29412, 62, 39994, 13, 22915, 82, 13, 13083, 3419, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 83, 29291, 796, 17268, 13, 13190, 83, 29291, 7, 944, 13, 29412, 62, 39994, 13, 22915, 62, 83, 29291, 62, 3672, 11, 9633, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1729, 274, 796, 685, 14202, 329, 4808, 287, 2116, 13, 29412, 62, 39994, 13, 22915, 82, 13, 13083, 3419, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 5072, 62, 83, 29291, 46491, 77, 1952, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 775, 389, 1541, 287, 257, 1957, 9706, 11, 655, 2555, 262, 9706, 4732, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 12001, 62, 41049, 7, 49464, 11, 12429, 15414, 62, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 4586, 318, 3599, 257, 1957, 30798, 9706, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 5660, 617, 34182, 8794, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3412, 996, 262, 4808, 12001, 62, 41049, 869, 4143, 13423, 17311, 284, 307, 10335, 2696, 11, 356, 836, 470, 423, 284, 466, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 11315, 994, 287, 428, 9052, 13, 383, 1738, 318, 780, 356, 836, 470, 2948, 2985, 422, 31577, 17311, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 355, 1277, 16578, 945, 11, 543, 1724, 612, 338, 1194, 34920, 12, 8612, 803, 9052, 2641, 4808, 12001, 62, 41049, 1165, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 479, 11, 410, 287, 5128, 62, 46265, 22046, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 479, 407, 287, 2116, 13, 39994, 13, 15414, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 69, 1, 3041, 6471, 10059, 21179, 4578, 1391, 74, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 85, 11, 34920, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 69, 1, 3041, 6471, 257, 6991, 329, 257, 30798, 869, 11, 618, 12451, 257, 6868, 1988, 329, 1391, 74, 92, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 351, 13575, 660, 21947, 13511, 13, 4480, 62, 22866, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 13, 4480, 62, 18558, 1009, 62, 5219, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 13, 3605, 62, 18558, 1009, 62, 5219, 22446, 4480, 62, 37266, 7, 14171, 28, 23002, 1009, 9012, 13, 19076, 13, 29701, 1847, 62, 33249, 3697, 3913, 62, 6369, 2943, 35354, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 355, 1200, 62, 49464, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 2116, 13557, 12001, 62, 41049, 7, 9410, 62, 49464, 11, 12429, 15414, 62, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2938, 62, 22915, 82, 796, 18896, 7, 944, 13, 29412, 62, 39994, 13, 22915, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2938, 62, 22915, 82, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1255, 318, 6045, 393, 318, 39098, 7, 20274, 11, 18331, 24129, 786, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7, 69, 1, 12468, 11125, 1957, 9706, 2938, 657, 23862, 475, 1223, 2722, 1391, 20274, 92, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 357, 16, 1279, 2938, 62, 22915, 82, 6624, 18896, 7, 20274, 4008, 393, 357, 20274, 318, 407, 6045, 290, 2938, 62, 22915, 82, 6624, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2251, 62, 30191, 62, 13190, 62, 83, 29291, 7, 49464, 11, 1255, 11, 2116, 13, 29412, 62, 39994, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7203, 40319, 23862, 290, 4036, 23862, 466, 407, 2872, 4943, 628, 220, 220, 220, 825, 12260, 7, 944, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7203, 19926, 407, 307, 1444, 4943, 628, 220, 220, 220, 825, 4808, 12001, 62, 41049, 7, 944, 11, 269, 17602, 25, 13575, 660, 21947, 11, 12429, 46265, 22046, 8, 4613, 4479, 58, 51, 29291, 58, 24129, 786, 4357, 34920, 11, 18331, 24129, 786, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 318, 1760, 284, 1104, 262, 25275, 415, 326, 5521, 11125, 1957, 30632, 1464, 670, 351, 34920, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4769, 13575, 660, 18875, 3815, 13, 3412, 287, 257, 266, 69, 11, 257, 2836, 460, 869, 257, 850, 12, 1818, 11125, 351, 257, 11361, 6868, 1988, 13, 198, 220, 220, 220, 220, 220, 220, 220, 329, 479, 11, 410, 287, 479, 86, 22046, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 85, 11, 34920, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 796, 2116, 13, 29412, 62, 39994, 13, 15414, 82, 58, 74, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 86, 22046, 58, 74, 60, 796, 34920, 7, 7785, 28, 74, 11, 1188, 28, 6030, 13798, 13, 1462, 62, 18250, 1691, 7, 49464, 11, 410, 11, 256, 11, 2116, 13, 39994, 13, 15414, 82, 58, 74, 4083, 4906, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 5072, 286, 428, 481, 1464, 307, 257, 6087, 286, 11361, 6868, 3815, 290, 10335, 2696, 7268, 13575, 660, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 17667, 874, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2163, 62, 22915, 82, 796, 2116, 13, 41049, 7, 1174, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 3274, 5412, 262, 6565, 1441, 1339, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 317, 30798, 2163, 743, 1441, 257, 4876, 326, 1595, 470, 1441, 1997, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 825, 266, 69, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 1441, 256, 16, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 393, 340, 743, 407, 1441, 379, 477, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 825, 266, 69, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 256, 16, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 554, 262, 1966, 1339, 356, 651, 262, 4876, 338, 18331, 24129, 786, 11, 287, 262, 6846, 356, 651, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 8818, 62, 22915, 82, 11, 18331, 24129, 786, 8, 393, 2163, 62, 22915, 82, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 29412, 62, 39994, 13, 22915, 82, 8, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13575, 660, 11395, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2163, 62, 22915, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 90, 8818, 62, 22915, 82, 92, 2722, 475, 7071, 468, 1391, 11925, 7, 944, 13, 29412, 62, 39994, 13, 22915, 82, 38165, 23862, 33283, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 18331, 24129, 786, 7, 944, 13, 3672, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 4362, 356, 815, 1053, 1541, 4504, 287, 262, 2029, 2198, 11, 356, 655, 5298, 281, 4049, 994, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 29412, 62, 39994, 13, 22915, 82, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13575, 660, 11395, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2163, 62, 22915, 82, 11, 277, 1, 90, 8818, 62, 22915, 82, 92, 2722, 475, 815, 1053, 587, 18331, 24129, 786, 393, 6045, 526, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 220, 220, 220, 220, 2938, 62, 22915, 62, 14933, 796, 1351, 7, 944, 13, 29412, 62, 39994, 13, 22915, 82, 13, 13083, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40319, 62, 22915, 62, 14933, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3423, 356, 423, 284, 5412, 262, 1109, 326, 262, 266, 69, 714, 1053, 587, 6875, 351, 257, 19720, 13, 45, 2434, 51, 29291, 286, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4129, 530, 13, 1320, 9831, 318, 973, 329, 19264, 23862, 532, 290, 2060, 12, 13664, 12, 45, 2434, 47247, 2374, 389, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3573, 35778, 475, 19992, 9041, 286, 606, 318, 407, 257, 1029, 8475, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6521, 11, 356, 821, 1262, 262, 5072, 62, 83, 29291, 62, 3672, 355, 257, 15741, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 29412, 62, 39994, 13, 22915, 62, 83, 29291, 62, 3672, 290, 318, 39098, 7, 8818, 62, 22915, 82, 11, 46545, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 69, 62, 22915, 82, 62, 292, 62, 8899, 796, 1391, 40319, 62, 22915, 62, 14933, 58, 15, 5974, 2163, 62, 22915, 82, 58, 15, 48999, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 69, 62, 22915, 82, 62, 292, 62, 8899, 796, 1391, 40319, 62, 22915, 62, 14933, 58, 15, 5974, 2163, 62, 22915, 82, 92, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 69, 62, 22915, 82, 62, 292, 62, 8899, 796, 1391, 40319, 62, 22915, 62, 14933, 58, 72, 5974, 2163, 62, 22915, 82, 58, 72, 60, 329, 1312, 11, 4808, 287, 27056, 378, 7, 8818, 62, 22915, 82, 38165, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 20759, 356, 761, 284, 1128, 441, 496, 262, 10497, 2406, 422, 262, 8861, 656, 10335, 2696, 326, 2872, 262, 30798, 338, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 7071, 13, 775, 466, 326, 416, 37895, 503, 262, 4187, 874, 11, 290, 4441, 649, 10335, 2696, 198, 220, 220, 220, 220, 220, 220, 220, 266, 69, 62, 22915, 82, 62, 292, 62, 18250, 1691, 62, 11600, 796, 15772, 62, 15414, 82, 62, 1462, 62, 17201, 874, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 266, 69, 62, 22915, 82, 62, 292, 62, 8899, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6129, 660, 62, 39994, 62, 19199, 28, 944, 13, 39994, 13, 22915, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6868, 62, 19199, 28, 944, 13, 29412, 62, 39994, 13, 22915, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 30009, 378, 649, 10497, 326, 779, 262, 30798, 338, 5072, 3891, 13, 198, 220, 220, 220, 220, 220, 220, 220, 649, 62, 16963, 2696, 796, 685, 24129, 786, 7, 7785, 11, 266, 69, 62, 22915, 82, 62, 292, 62, 18250, 1691, 62, 11600, 58, 7785, 12962, 329, 1401, 287, 2938, 62, 22915, 62, 14933, 60, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 2251, 62, 35943, 62, 22915, 7, 3605, 62, 16963, 2696, 11, 2116, 13, 29412, 62, 39994, 8, 628, 198, 4871, 28185, 876, 12468, 11125, 7, 12468, 11125, 14881, 2599, 628, 220, 220, 220, 825, 11593, 260, 1050, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2208, 22446, 834, 260, 1050, 834, 3419, 1343, 277, 1, 45, 4147, 37913, 11925, 7, 944, 13, 5589, 10520, 62, 5219, 13, 77, 4147, 38165, 2599, 1391, 944, 13, 5589, 10520, 62, 5219, 13, 77, 4147, 36786, 628, 220, 220, 220, 825, 12260, 7, 944, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 34099, 416, 4808, 12001, 62, 41049, 13, 770, 2163, 318, 703, 1957, 9706, 329, 23602, 670, 44041, 4539, 13, 4362, 618, 281, 198, 220, 220, 220, 220, 220, 220, 220, 9312, 318, 2087, 1262, 262, 751, 62, 26858, 2163, 11, 477, 17311, 284, 326, 9312, 815, 1053, 587, 1541, 6875, 11, 356, 198, 220, 220, 220, 220, 220, 220, 220, 460, 655, 11629, 378, 832, 262, 13760, 287, 1502, 290, 356, 6584, 470, 1057, 656, 597, 20203, 2428, 13, 1320, 318, 11, 356, 2700, 198, 220, 220, 220, 220, 220, 220, 220, 262, 2836, 284, 13627, 12066, 1541, 287, 257, 1353, 2770, 3297, 13, 1675, 1394, 2610, 286, 23862, 11, 356, 2251, 257, 3975, 284, 198, 220, 220, 220, 220, 220, 220, 220, 923, 1243, 572, 11, 5901, 287, 691, 351, 262, 30798, 17311, 357, 361, 597, 737, 1081, 1243, 389, 1057, 11, 511, 23862, 389, 8574, 198, 220, 220, 220, 220, 220, 220, 220, 287, 428, 3975, 13, 198, 220, 220, 220, 220, 220, 220, 220, 2293, 477, 13760, 389, 1057, 11, 356, 6070, 287, 30798, 1241, 23862, 262, 976, 835, 355, 597, 584, 2180, 10139, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 2116, 13, 1493, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13575, 660, 7762, 24765, 16922, 7, 69, 1, 12468, 11125, 407, 3492, 11, 266, 69, 318, 3058, 1391, 944, 92, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 13610, 257, 3975, 326, 6622, 262, 23862, 286, 1123, 10139, 13, 198, 220, 220, 220, 220, 220, 220, 220, 19898, 62, 17440, 62, 22915, 82, 796, 1391, 8763, 9864, 1847, 62, 2257, 7227, 62, 45, 16820, 25, 1391, 11709, 220, 1303, 2099, 25, 360, 713, 58, 19667, 11, 360, 713, 58, 2536, 11, 34920, 11907, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 7253, 1243, 572, 351, 262, 23862, 286, 262, 3298, 5128, 10139, 11, 1312, 13, 68, 13, 262, 17311, 284, 262, 30798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4808, 12001, 62, 41049, 815, 1053, 1541, 30169, 326, 477, 262, 3815, 287, 479, 86, 22046, 389, 34920, 5563, 198, 220, 220, 220, 220, 220, 220, 220, 329, 479, 11, 410, 287, 479, 86, 22046, 13, 23814, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19898, 62, 17440, 62, 22915, 82, 58, 8763, 9864, 1847, 62, 2257, 7227, 62, 45, 16820, 7131, 74, 60, 796, 410, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 7406, 11629, 378, 832, 262, 13760, 287, 1502, 13, 198, 220, 220, 220, 220, 220, 220, 220, 329, 10139, 287, 2116, 13, 5589, 10520, 62, 5219, 13, 77, 4147, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 10139, 407, 287, 19898, 62, 17440, 62, 22915, 82, 13, 13083, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19898, 62, 17440, 62, 22915, 82, 58, 17440, 60, 796, 23884, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4990, 30227, 262, 9312, 422, 262, 10139, 11, 290, 869, 340, 416, 2045, 510, 262, 10497, 262, 10139, 338, 34111, 2421, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 290, 788, 6070, 606, 287, 1262, 262, 10139, 5072, 30013, 3975, 356, 423, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9312, 796, 10139, 13, 12254, 660, 62, 26858, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9312, 62, 46265, 22046, 796, 651, 62, 16963, 786, 62, 8899, 7, 17440, 13, 21653, 654, 11, 19898, 62, 17440, 62, 22915, 82, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 33141, 262, 4585, 290, 23862, 286, 1123, 10139, 338, 9312, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2482, 796, 9312, 7, 1174, 26858, 62, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2938, 62, 22915, 62, 14933, 796, 1351, 7, 26858, 13, 29412, 62, 39994, 13, 22915, 82, 13, 13083, 28955, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 43420, 11, 18331, 24129, 786, 8, 393, 2482, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 220, 1303, 23864, 2611, 25, 645, 3002, 1303, 10028, 1863, 11, 2147, 284, 8333, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4362, 356, 815, 1053, 1541, 4504, 287, 262, 2029, 2198, 11, 356, 655, 5298, 281, 35528, 994, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 26858, 13, 29412, 62, 39994, 13, 22915, 82, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13575, 660, 11395, 16922, 7, 43420, 11, 277, 1, 90, 43420, 92, 2722, 475, 815, 1053, 587, 18331, 24129, 786, 393, 6045, 19570, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 612, 338, 691, 530, 5072, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 40319, 62, 22915, 62, 14933, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 9312, 13, 29412, 62, 39994, 13, 22915, 62, 83, 29291, 62, 3672, 290, 318, 39098, 7, 43420, 11, 46545, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19898, 62, 17440, 62, 22915, 82, 58, 17440, 7131, 40319, 62, 22915, 62, 14933, 58, 15, 11907, 796, 2482, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19898, 62, 17440, 62, 22915, 82, 58, 17440, 7131, 40319, 62, 22915, 62, 14933, 58, 15, 11907, 796, 2482, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 43420, 8, 14512, 18896, 7, 40319, 62, 22915, 62, 14933, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13575, 660, 11395, 16922, 7, 43420, 11, 277, 1, 40341, 20428, 1391, 43420, 92, 1391, 40319, 62, 22915, 62, 14933, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 4686, 87, 11, 374, 287, 27056, 378, 7, 43420, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19898, 62, 17440, 62, 22915, 82, 58, 17440, 7131, 40319, 62, 22915, 62, 14933, 58, 312, 87, 11907, 796, 374, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 1334, 286, 428, 2163, 3073, 588, 262, 2029, 475, 783, 356, 821, 1804, 340, 329, 262, 30798, 355, 257, 2187, 2138, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 621, 655, 530, 10139, 379, 257, 640, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 29412, 62, 39994, 13, 22915, 82, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 18331, 24129, 786, 7, 944, 13, 3672, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 3815, 326, 356, 1441, 2174, 422, 262, 5072, 423, 284, 307, 5954, 416, 26187, 477, 286, 262, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 30798, 338, 5072, 34111, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 1441, 3918, 994, 468, 284, 2872, 644, 352, 8, 644, 262, 30798, 561, 1053, 4504, 550, 340, 587, 6875, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 48410, 11, 290, 362, 8, 644, 257, 2836, 561, 1441, 287, 15290, 2163, 13, 1320, 318, 11, 611, 340, 338, 257, 46545, 11, 788, 340, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 815, 307, 257, 46545, 994, 11, 611, 340, 338, 257, 530, 5002, 3706, 46545, 11, 788, 356, 466, 257, 530, 12, 30854, 1729, 12, 13190, 46545, 11, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 611, 340, 338, 257, 2060, 5002, 788, 356, 1441, 257, 2060, 5002, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 22915, 62, 21653, 654, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 6521, 779, 4931, 286, 5072, 62, 83, 29291, 62, 3672, 284, 1833, 326, 356, 821, 7219, 351, 257, 530, 12, 30854, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3706, 46545, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 29412, 62, 39994, 13, 22915, 62, 83, 29291, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 357, 1136, 62, 16963, 786, 7, 944, 13, 22915, 62, 21653, 654, 58, 15, 4083, 30786, 11, 19898, 62, 17440, 62, 22915, 82, 828, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2329, 257, 3487, 2060, 5002, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 651, 62, 16963, 786, 7, 944, 13, 22915, 62, 21653, 654, 58, 15, 4083, 30786, 11, 19898, 62, 17440, 62, 22915, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 46545, 26933, 1136, 62, 16963, 786, 7, 65, 13, 30786, 11, 19898, 62, 17440, 62, 22915, 82, 8, 329, 275, 287, 2116, 13, 22915, 62, 21653, 654, 12962, 628, 220, 220, 220, 825, 751, 62, 26858, 7, 944, 11, 9312, 25, 4479, 58, 37906, 25714, 11, 21225, 20854, 11, 5521, 11125, 14881, 4357, 12429, 46265, 22046, 8, 4613, 19081, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 4377, 2435, 345, 751, 281, 9312, 11, 477, 262, 17311, 284, 262, 9312, 1276, 307, 5421, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 18620, 1330, 198, 220, 220, 220, 220, 220, 220, 220, 422, 6129, 660, 15813, 13, 7295, 13, 17440, 62, 38793, 1330, 2251, 62, 17440, 628, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 796, 13575, 660, 21947, 13, 14421, 62, 22866, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 269, 17602, 13, 5589, 10520, 62, 5219, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7203, 6090, 470, 1541, 307, 33393, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 351, 13575, 660, 21947, 13511, 13, 4480, 62, 22866, 7, 49464, 13, 4480, 62, 5589, 10520, 62, 5219, 7, 944, 13, 5589, 10520, 62, 5219, 4008, 355, 269, 17602, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 299, 796, 2251, 62, 17440, 7, 26858, 28, 26858, 11, 12429, 46265, 22046, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3887, 640, 281, 9312, 318, 2087, 11, 1317, 340, 355, 973, 13, 383, 2029, 2163, 996, 481, 6431, 477, 262, 5128, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3815, 475, 356, 821, 691, 4609, 287, 262, 3392, 326, 389, 10335, 2696, 523, 1309, 338, 8106, 329, 883, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1318, 338, 2192, 257, 835, 284, 3424, 428, 510, 11, 3863, 1994, 572, 286, 262, 1438, 2427, 286, 1988, 30, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 15414, 62, 27160, 796, 651, 62, 15414, 62, 27160, 7, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 5128, 62, 8367, 287, 8106, 7, 50033, 2124, 25, 318, 39098, 7, 87, 11, 34920, 828, 477, 62, 15414, 62, 27160, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 5128, 62, 8367, 287, 2116, 13557, 403, 7784, 62, 15414, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 403, 7784, 62, 15414, 82, 13, 28956, 7, 15414, 62, 8367, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 299, 628, 220, 220, 220, 825, 751, 62, 1818, 11125, 62, 15414, 7, 944, 11, 5128, 62, 3672, 25, 965, 11, 21015, 62, 4906, 25, 5994, 8, 4613, 26491, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 34333, 281, 5128, 284, 262, 30798, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5128, 62, 3672, 287, 2116, 13557, 15414, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13575, 660, 7762, 24765, 16922, 7, 69, 1, 20560, 1391, 15414, 62, 3672, 92, 468, 1541, 587, 7368, 329, 266, 69, 1391, 944, 13, 3672, 92, 19570, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 29412, 62, 39994, 796, 2116, 13557, 29412, 62, 39994, 13, 4480, 62, 15414, 82, 7, 26086, 62, 15414, 82, 34758, 15414, 62, 3672, 25, 21015, 62, 4906, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 39994, 796, 6121, 62, 39994, 62, 1462, 62, 774, 9124, 62, 39994, 7, 944, 13557, 29412, 62, 39994, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 15414, 82, 58, 15414, 62, 3672, 60, 796, 34920, 7, 7785, 28, 15414, 62, 3672, 11, 1188, 28, 19667, 26410, 7, 17440, 28, 8763, 9864, 1847, 62, 2257, 7227, 62, 45, 16820, 11, 1401, 28, 15414, 62, 3672, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 403, 7784, 62, 15414, 82, 13, 2860, 7, 944, 13557, 15414, 82, 58, 15414, 62, 3672, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 15414, 82, 58, 15414, 62, 3672, 60, 628, 220, 220, 220, 825, 751, 62, 1818, 11125, 62, 22915, 7, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 11, 5072, 62, 3672, 25, 965, 11, 279, 25, 4479, 58, 24129, 786, 11, 7343, 58, 24129, 786, 4357, 360, 713, 58, 2536, 11, 34920, 60, 4357, 21015, 62, 4906, 25, 32233, 58, 6030, 60, 796, 6045, 198, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3060, 281, 5072, 351, 262, 1813, 1438, 422, 262, 1813, 10139, 5072, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 5072, 62, 3672, 287, 2116, 13557, 29412, 62, 39994, 13, 22915, 82, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13575, 660, 7762, 24765, 16922, 7, 69, 1, 26410, 1391, 22915, 62, 3672, 92, 1541, 7160, 287, 30798, 1391, 944, 13, 3672, 92, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 611, 21015, 62, 4906, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2099, 7, 79, 8, 6624, 1351, 393, 2099, 7, 79, 8, 6624, 8633, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 13575, 660, 7762, 24765, 16922, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 1532, 31577, 257, 1351, 393, 8633, 286, 10335, 2696, 11, 345, 1276, 11986, 262, 21015, 62, 4906, 2099, 329, 1391, 22915, 62, 3672, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 3599, 351, 262, 9290, 2099, 357, 68, 13, 70, 13, 7343, 58, 600, 30866, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 21015, 62, 4906, 796, 279, 13, 5420, 13, 17440, 13, 12254, 660, 62, 26858, 13, 29412, 62, 39994, 13, 22915, 82, 58, 79, 13, 7785, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7, 69, 1, 818, 2232, 1806, 21015, 2099, 329, 266, 69, 5072, 1391, 22915, 62, 3672, 92, 422, 34920, 2810, 1391, 29412, 62, 4906, 92, 4943, 628, 220, 220, 220, 220, 220, 220, 220, 6129, 660, 62, 4906, 796, 5994, 13798, 13, 1462, 62, 18250, 1691, 62, 4906, 7, 29412, 62, 4906, 28, 29412, 62, 4906, 8, 628, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 796, 13575, 660, 21947, 13, 14421, 62, 22866, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 269, 17602, 13, 5589, 10520, 62, 5219, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7203, 6090, 470, 1541, 307, 33393, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 351, 13575, 660, 21947, 13511, 13, 4480, 62, 22866, 7, 49464, 13, 4480, 62, 5589, 10520, 62, 5219, 7, 944, 13, 5589, 10520, 62, 5219, 4008, 355, 269, 17602, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 796, 12765, 62, 6738, 62, 29412, 62, 19282, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 11, 5072, 62, 3672, 11, 2938, 62, 18250, 1691, 62, 4906, 28, 12254, 660, 62, 4906, 11, 256, 62, 8367, 28, 79, 11, 256, 62, 8367, 62, 4906, 28, 29412, 62, 4906, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 22915, 62, 21653, 654, 13, 33295, 7, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 29412, 62, 39994, 796, 2116, 13557, 29412, 62, 39994, 13, 4480, 62, 22915, 82, 7, 26086, 62, 22915, 82, 34758, 22915, 62, 3672, 25, 21015, 62, 4906, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 39994, 796, 6121, 62, 39994, 62, 1462, 62, 774, 9124, 62, 39994, 7, 944, 13557, 29412, 62, 39994, 8, 628, 220, 220, 220, 825, 751, 62, 35943, 7, 944, 11, 4876, 25, 11361, 25714, 11, 12429, 46265, 22046, 8, 4613, 19081, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 2860, 62, 26858, 7, 35943, 11, 12429, 46265, 22046, 8, 628, 220, 220, 220, 825, 751, 62, 35681, 62, 11578, 7, 944, 11, 4219, 62, 11578, 25, 21225, 20854, 11, 12429, 46265, 22046, 8, 4613, 19081, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 2860, 62, 26858, 7, 35681, 62, 11578, 11, 12429, 46265, 22046, 8, 628, 220, 220, 220, 825, 751, 62, 7266, 86, 69, 7, 944, 11, 850, 62, 86, 69, 25, 5521, 11125, 14881, 11, 12429, 46265, 22046, 8, 4613, 19081, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 2860, 62, 26858, 7, 7266, 62, 86, 69, 11, 12429, 46265, 22046, 8, 628, 220, 220, 220, 825, 3492, 7, 944, 8, 4613, 20512, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2163, 5860, 1771, 393, 407, 262, 30798, 318, 287, 257, 3492, 1181, 11, 543, 1724, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 7875, 379, 1551, 530, 10139, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1635, 1439, 30798, 17311, 389, 5421, 628, 220, 220, 220, 220, 220, 220, 220, 2312, 3403, 7048, 326, 477, 13760, 290, 30798, 1312, 14, 78, 2458, 547, 1760, 351, 262, 5499, 2029, 11, 543, 198, 220, 220, 220, 220, 220, 220, 220, 466, 3224, 10627, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13, 5589, 10520, 62, 5219, 13, 77, 4147, 8, 6624, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 944, 13557, 403, 7784, 62, 15414, 82, 8, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10352, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 6407, 628, 198, 4871, 11361, 22203, 12468, 11125, 7, 12468, 11125, 14881, 11, 5016, 31425, 25714, 4965, 14375, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4222, 1100, 1058, 19282, 25, 5420, 25, 63, 12254, 660, 25, 67, 1572, 68, 538, 12, 1818, 44041, 63, 717, 329, 257, 1029, 12, 5715, 4547, 286, 644, 670, 44041, 389, 287, 13575, 660, 13, 198, 220, 220, 220, 770, 11361, 2134, 6870, 257, 30798, 220, 5447, 416, 257, 2163, 290, 24789, 351, 262, 198, 220, 220, 220, 1058, 9078, 25, 20786, 25, 63, 31, 1818, 11125, 1279, 12254, 660, 15813, 13, 1818, 11125, 29, 63, 11705, 1352, 13, 4222, 766, 4710, 319, 326, 2134, 329, 3224, 1321, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 17632, 7, 944, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 22663, 9037, 11361, 6868, 3815, 287, 262, 479, 86, 22046, 611, 345, 765, 606, 284, 307, 973, 287, 262, 23340, 13, 770, 17007, 873, 198, 220, 220, 220, 220, 220, 220, 220, 257, 705, 17966, 6, 287, 262, 4569, 2565, 286, 262, 1573, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 796, 13575, 660, 21947, 13511, 13, 14421, 62, 22866, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 15414, 62, 17143, 7307, 796, 6121, 62, 15414, 82, 62, 1462, 62, 17143, 7307, 7, 49464, 11, 2116, 13, 29412, 62, 39994, 8, 198, 220, 220, 220, 220, 220, 220, 220, 477, 62, 77, 4147, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 21231, 796, 277, 1, 90, 49464, 13, 5589, 10520, 62, 5219, 13, 40290, 92, 12, 90, 944, 13, 19509, 62, 3672, 92, 21215, 611, 269, 17602, 13, 5589, 10520, 62, 5219, 318, 407, 6045, 2073, 13538, 628, 220, 220, 220, 220, 220, 220, 220, 351, 13575, 660, 21947, 13511, 13, 4480, 62, 22866, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 13, 4480, 62, 5589, 10520, 62, 5219, 7, 7293, 10520, 9012, 7, 40290, 28, 40290, 11, 4876, 62, 411, 14375, 28, 944, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 355, 552, 62, 49464, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 28407, 262, 4277, 5128, 6991, 34111, 11, 475, 788, 20957, 351, 262, 2810, 17311, 11, 611, 597, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 46265, 22046, 796, 5678, 62, 15414, 62, 16963, 2696, 26933, 74, 329, 479, 287, 2116, 13, 39994, 13, 15414, 82, 13, 13083, 3419, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5128, 62, 46265, 22046, 13, 19119, 7, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30798, 62, 22915, 82, 796, 2116, 13557, 1818, 11125, 62, 8818, 7, 1174, 15414, 62, 46265, 22046, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 477, 62, 77, 4147, 13, 2302, 437, 7, 5589, 62, 49464, 13, 5589, 10520, 62, 5219, 13, 77, 4147, 8, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 770, 1310, 9052, 373, 2087, 355, 636, 286, 262, 4876, 581, 14375, 1487, 13, 383, 4876, 581, 14375, 7071, 2346, 318, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 517, 393, 1342, 1181, 1203, 357, 1169, 2003, 12, 13288, 278, 651, 62, 439, 62, 83, 6791, 2163, 29951, 737, 2102, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 7822, 286, 262, 15941, 4965, 14375, 35608, 259, 326, 428, 30798, 1398, 10639, 896, 422, 357, 9487, 31425, 25714, 4965, 14375, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 857, 3650, 1181, 13, 770, 9052, 6673, 309, 6791, 326, 389, 5447, 1626, 262, 1767, 286, 262, 30798, 284, 262, 30798, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2134, 2346, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 299, 287, 552, 62, 49464, 13, 5589, 10520, 62, 5219, 13, 77, 4147, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 77, 13, 12254, 660, 62, 26858, 11, 11361, 27722, 29869, 25714, 8, 290, 299, 13, 12254, 660, 62, 26858, 13, 35943, 62, 411, 14375, 6624, 2116, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7, 69, 1, 48397, 1391, 944, 13, 3672, 92, 8914, 4876, 1391, 77, 13, 12254, 660, 62, 26858, 13, 3672, 92, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 2860, 7, 77, 13, 12254, 660, 62, 26858, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 40806, 378, 832, 262, 30798, 23862, 198, 220, 220, 220, 220, 220, 220, 220, 34111, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 14933, 796, 1351, 7, 944, 13, 39994, 13, 22915, 82, 13, 13083, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 383, 1738, 262, 4129, 352, 1339, 318, 4553, 318, 780, 262, 530, 5072, 1244, 307, 257, 1351, 13, 775, 836, 470, 765, 284, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 11629, 378, 832, 262, 1351, 994, 11, 2427, 356, 815, 1309, 262, 12765, 6282, 7379, 2416, 340, 290, 787, 257, 12765, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 4947, 14, 8899, 503, 286, 340, 13, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 22915, 62, 14933, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 1818, 11125, 62, 22915, 82, 11, 46545, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 1818, 11125, 62, 22915, 82, 8, 14512, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2195, 861, 295, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 464, 5521, 11125, 20855, 9217, 691, 530, 1441, 1988, 11, 2722, 1391, 11925, 7, 1818, 11125, 62, 22915, 82, 8, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13, 29412, 62, 39994, 13, 22915, 62, 83, 29291, 62, 3672, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2195, 861, 295, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 366, 26410, 82, 20855, 329, 5521, 11125, 857, 407, 8160, 257, 46545, 11, 475, 1441, 1988, 318, 257, 46545, 1, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30798, 62, 22915, 82, 796, 30798, 62, 22915, 82, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 796, 2116, 13, 29412, 62, 39994, 13, 22915, 82, 58, 22915, 62, 14933, 58, 15, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 796, 12765, 62, 6738, 62, 29412, 62, 19282, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5072, 62, 14933, 58, 15, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 39994, 13, 22915, 82, 58, 22915, 62, 14933, 58, 15, 60, 4083, 4906, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30798, 62, 22915, 82, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 34111, 13, 33295, 7, 65, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 18896, 7, 22915, 62, 14933, 8, 1875, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 407, 318, 39098, 7, 1818, 11125, 62, 22915, 82, 11, 46545, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2195, 861, 295, 12331, 7203, 464, 5521, 11125, 20855, 9217, 3294, 1441, 3815, 11, 2722, 691, 530, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 22915, 62, 14933, 8, 14512, 18896, 7, 1818, 11125, 62, 22915, 82, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 35528, 7, 69, 1, 24539, 46318, 1391, 11925, 7, 22915, 62, 14933, 38165, 3691, 1391, 11925, 7, 1818, 11125, 62, 22915, 82, 38165, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 1312, 11, 503, 287, 27056, 378, 7, 22915, 62, 14933, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 1818, 11125, 62, 22915, 82, 58, 72, 4357, 9724, 1859, 16375, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 2195, 861, 295, 12331, 7203, 32, 9724, 1859, 2512, 357, 361, 12, 17772, 8, 815, 1464, 886, 351, 281, 4600, 17772, 62, 3419, 63, 13444, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 796, 2116, 13, 29412, 62, 39994, 13, 22915, 82, 58, 448, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 275, 796, 12765, 62, 6738, 62, 29412, 62, 19282, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 269, 17602, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 503, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 39994, 13, 22915, 82, 58, 448, 4083, 4906, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 30798, 62, 22915, 82, 58, 72, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 34111, 13, 33295, 7, 65, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1303, 12793, 477, 262, 1243, 3306, 284, 2251, 281, 311, 34388, 12468, 11125, 11, 2845, 329, 262, 4814, 1628, 290, 7386, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 77, 4147, 796, 477, 62, 77, 4147, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 22915, 62, 21653, 654, 796, 34111, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 5072, 62, 14933, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 611, 18896, 7, 22915, 62, 14933, 8, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 34111, 58, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 46545, 7, 21653, 654, 8, 628, 220, 220, 220, 825, 12260, 7, 944, 11, 12429, 46265, 22046, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 770, 2163, 318, 994, 691, 284, 1949, 284, 4269, 1370, 262, 3912, 1022, 670, 44041, 290, 8861, 13, 4619, 8861, 198, 220, 220, 220, 220, 220, 220, 220, 869, 12260, 422, 27965, 62, 41049, 543, 318, 287, 4808, 12001, 62, 41049, 11, 670, 44041, 815, 635, 869, 281, 12260, 2641, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 12001, 62, 41049, 13, 770, 1838, 31202, 21723, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13557, 1818, 11125, 62, 8818, 7, 1174, 46265, 22046, 8, 628, 198, 4299, 30798, 7, 198, 220, 220, 220, 4808, 1818, 11125, 62, 8818, 28, 14202, 11, 198, 220, 220, 220, 5287, 62, 30586, 25, 32233, 58, 12468, 11125, 50015, 36727, 60, 796, 6045, 11, 198, 220, 220, 220, 11313, 856, 25, 32233, 58, 30388, 60, 796, 10352, 11, 198, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 770, 11705, 1352, 24183, 257, 2163, 284, 307, 257, 13575, 660, 30798, 13, 5521, 44041, 389, 2377, 283, 876, 12066, 326, 5678, 257, 360, 4760, 198, 220, 220, 220, 286, 8861, 1262, 262, 1366, 5202, 1022, 8861, 13, 628, 220, 220, 220, 12101, 257, 4876, 11, 262, 2163, 1767, 286, 257, 30798, 318, 16726, 379, 11389, 1634, 12, 2435, 357, 8130, 17632, 12, 2435, 737, 770, 318, 780, 198, 220, 220, 220, 981, 356, 460, 5004, 262, 2104, 4645, 286, 257, 4876, 416, 2045, 379, 262, 2163, 338, 9877, 11, 198, 220, 220, 220, 670, 44041, 761, 284, 1057, 832, 262, 2163, 2346, 780, 262, 1767, 286, 262, 2163, 318, 644, 27505, 262, 30798, 4645, 13, 198, 220, 220, 220, 632, 338, 635, 1593, 284, 3465, 326, 11, 1957, 9706, 29951, 11, 340, 318, 407, 16726, 757, 618, 262, 30798, 4539, 319, 13575, 660, 13, 198, 220, 220, 220, 1320, 318, 11, 670, 44041, 815, 407, 869, 1729, 12, 33771, 660, 12066, 1201, 484, 389, 691, 1057, 1752, 357, 17776, 11, 428, 318, 351, 2461, 284, 198, 220, 220, 220, 262, 3859, 11, 1957, 4539, 29951, 737, 628, 220, 220, 220, 4222, 766, 262, 1058, 19282, 25, 15390, 25, 63, 27916, 2070, 25, 82, 746, 87, 62, 4743, 81, 62, 23736, 62, 7295, 62, 12254, 660, 62, 12093, 873, 62, 35487, 62, 1818, 11125, 13, 9078, 63, 329, 517, 8748, 6096, 13, 628, 220, 220, 220, 1058, 17143, 4808, 1818, 11125, 62, 8818, 25, 770, 4578, 318, 31821, 3804, 290, 6870, 262, 24789, 2163, 13, 198, 220, 220, 220, 1058, 17143, 5287, 62, 30586, 25, 5765, 262, 3689, 287, 6129, 660, 15813, 13, 12468, 11125, 50015, 36727, 198, 220, 220, 220, 1058, 17143, 11313, 856, 25, 10127, 393, 407, 8861, 5611, 422, 428, 30798, 389, 416, 4277, 11313, 856, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 611, 4808, 1818, 11125, 62, 8818, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 29908, 28264, 1818, 11125, 62, 8818, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 29908, 628, 198, 4871, 20984, 12468, 11125, 7, 26687, 32398, 11, 11361, 22203, 12468, 11125, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 4941, 30798, 318, 257, 17562, 284, 257, 30798, 326, 1541, 7160, 319, 534, 13575, 660, 9988, 13, 770, 198, 220, 220, 220, 2134, 481, 407, 22118, 257, 3127, 869, 284, 32053, 11, 543, 318, 1521, 262, 2836, 318, 1965, 284, 2148, 262, 2938, 7071, 13, 198, 220, 220, 220, 1002, 379, 9352, 640, 262, 7071, 2810, 5640, 281, 2071, 351, 23340, 11, 281, 4049, 481, 307, 4504, 13, 198, 220, 220, 220, 37227, 628, 198, 4299, 4941, 62, 1818, 11125, 7, 198, 220, 220, 220, 1628, 25, 965, 11, 198, 220, 220, 220, 7386, 25, 965, 11, 198, 220, 220, 220, 1438, 25, 965, 11, 198, 220, 220, 220, 2196, 25, 965, 11, 198, 8, 4613, 4889, 540, 30109, 14134, 540, 58, 986, 11, 4377, 60, 4357, 20984, 12468, 11125, 5974, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 317, 4941, 30798, 318, 257, 17562, 284, 257, 30798, 326, 1541, 7160, 319, 534, 13575, 660, 9988, 13, 770, 198, 220, 220, 220, 2134, 481, 407, 22118, 257, 3127, 869, 284, 32053, 11, 543, 318, 1521, 262, 2836, 318, 1965, 284, 2148, 262, 2938, 7071, 13, 198, 220, 220, 220, 1002, 379, 9352, 640, 262, 7071, 2810, 5640, 281, 2071, 351, 23340, 11, 281, 4049, 481, 307, 4504, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 1441, 29908, 198 ]
2.592108
11,150
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Copyright 2018-2019, Mingkun Huang # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import numpy as np import torch from torch.autograd import Function, Variable from torch.nn import Module def forward_pass(log_probs, labels, blank): """ Computes probability of the forward variable alpha. Args: log_probs: Tensor of shape [T, U, V+1] labels: Labels of shape [B, U] blank: Index of the blank token. Returns: A tuple of the forward variable probabilities - alpha of shape [T, U] and the log likelihood of this forward step. """ T, U, _ = log_probs.shape alphas = np.zeros((T, U), dtype='f') for t in range(1, T): alphas[t, 0] = alphas[t - 1, 0] + log_probs[t - 1, 0, blank] for u in range(1, U): alphas[0, u] = alphas[0, u - 1] + log_probs[0, u - 1, labels[u - 1]] for t in range(1, T): for u in range(1, U): no_emit = alphas[t - 1, u] + log_probs[t - 1, u, blank] emit = alphas[t, u - 1] + log_probs[t, u - 1, labels[u - 1]] alphas[t, u] = np.logaddexp(emit, no_emit) loglike = alphas[T - 1, U - 1] + log_probs[T - 1, U - 1, blank] return alphas, loglike def backward_pass(log_probs, labels, blank): """ Computes probability of the backward variable beta. Args: log_probs: Tensor of shape [T, U, V+1] labels: Labels of shape [B, U] blank: Index of the blank token. Returns: A tuple of the backward variable probabilities - beta of shape [T, U] and the log likelihood of this backward step. """ T, U, _ = log_probs.shape betas = np.zeros((T, U), dtype='f') betas[T - 1, U - 1] = log_probs[T - 1, U - 1, blank] for t in reversed(range(T - 1)): betas[t, U - 1] = betas[t + 1, U - 1] + log_probs[t, U - 1, blank] for u in reversed(range(U - 1)): betas[T - 1, u] = betas[T - 1, u + 1] + log_probs[T - 1, u, labels[u]] for t in reversed(range(T - 1)): for u in reversed(range(U - 1)): no_emit = betas[t + 1, u] + log_probs[t, u, blank] emit = betas[t, u + 1] + log_probs[t, u, labels[u]] betas[t, u] = np.logaddexp(emit, no_emit) return betas, betas[0, 0] def compute_gradient(log_probs, alphas, betas, labels, blank, fastemit_lambda): """ Computes the gradients of the log_probs with respect to the log probability of this step occuring. Args: Args: log_probs: Tensor of shape [T, U, V+1] alphas: Tensor of shape [T, U] which represents the forward variable. betas: Tensor of shape [T, U] which represents the backward variable. labels: Labels of shape [B, U] blank: Index of the blank token. Returns: Gradients of shape [T, U, V+1] with respect to the forward log probability """ T, U, _ = log_probs.shape grads = np.full(log_probs.shape, -float("inf")) log_like = betas[0, 0] # == alphas[T - 1, U - 1] + betas[T - 1, U - 1] # // grad to last blank transition grads[T - 1, U - 1, blank] = alphas[T - 1, U - 1] grads[: T - 1, :, blank] = alphas[: T - 1, :] + betas[1:, :] # // grad to label transition for u, l in enumerate(labels): grads[:, u, l] = alphas[:, u] + betas[:, u + 1] grads = -np.exp(grads + log_probs - log_like) if fastemit_lambda > 0.0: for u, l in enumerate(labels): grads[:, u, l] = (1.0 + fastemit_lambda) * grads[:, u, l] return grads def fastemit_regularization(log_probs, labels, alphas, betas, blank, fastemit_lambda): """ Describes the computation of FastEmit regularization from the paper - [FastEmit: Low-latency Streaming ASR with Sequence-level Emission Regularization](https://arxiv.org/abs/2010.11148) Args: log_probs: Tensor of shape [T, U, V+1] labels: Unused. Labels of shape [B, U] alphas: Tensor of shape [T, U] which represents the forward variable. betas: Unused. Tensor of shape [T, U] which represents the backward variable. blank: Index of the blank token. fastemit_lambda: Float scaling factor for FastEmit regularization. Returns: The regularized negative log likelihood - lambda * P(At, u|x) """ # General calculation of the fastemit regularization alignments T, U, _ = log_probs.shape # alignment = np.zeros((T, U), dtype='float32') # # for t in range(0, T): # alignment[t, U - 1] = alphas[t, U - 1] + betas[t, U - 1] # # for t in range(0, T): # for u in range(0, U - 1): # emit = alphas[t, u] + log_probs[t, u, labels[u]] + betas[t, u + 1] # alignment[t, u] = emit # reg = fastemit_lambda * (alignment[T - 1, U - 1]) # The above is equivalent to below, without need of computing above # reg = fastemit_lambda * (alphas[T - 1, U - 1] + betas[T - 1, U - 1]) # The above is also equivalent to below, without need of computing the betas alignment matrix reg = fastemit_lambda * (alphas[T - 1, U - 1] + log_probs[T - 1, U - 1, blank]) return -reg def transduce(log_probs, labels, blank=0, fastemit_lambda=0.0): """ Args: log_probs: 3D array with shape [input len, output len + 1, vocab size] labels: 1D array with shape [output time steps] blank: Index of the blank token. fastemit_lambda: Float scaling factor for FastEmit regularization. Returns: float: The negative log-likelihood 3D array: Gradients with respect to the unnormalized input actications 2d arrays: Alphas matrix (TxU) 2d array: Betas matrix (TxU) """ alphas, ll_forward = forward_pass(log_probs, labels, blank) betas, ll_backward = backward_pass(log_probs, labels, blank) grads = compute_gradient(log_probs, alphas, betas, labels, blank, fastemit_lambda) return -ll_forward, grads, alphas, betas def transduce_batch(log_probs, labels, flen, glen, blank=0, fastemit_lambda=0.0): """ Compute the transducer loss of the batch. Args: log_probs: [B, T, U, V+1]. Activation matrix normalized with log-softmax. labels: [B, U+1] - ground truth labels with <SOS> padded as blank token in the beginning. flen: Length vector of the acoustic sequence. glen: Length vector of the target sequence. blank: Id of the blank token. fastemit_lambda: Float scaling factor for FastEmit regularization. Returns: Batch of transducer forward log probabilities (loss) and the gradients of the activation matrix. """ grads = np.zeros_like(log_probs) costs = [] for b in range(log_probs.shape[0]): t = int(flen[b]) u = int(glen[b]) + 1 ll, g, alphas, betas = transduce(log_probs[b, :t, :u, :], labels[b, : u - 1], blank, fastemit_lambda) grads[b, :t, :u, :] = g reg = fastemit_regularization( log_probs[b, :t, :u, :], labels[b, : u - 1], alphas, betas, blank, fastemit_lambda ) ll += reg costs.append(ll) return costs, grads if __name__ == '__main__': loss = RNNTLoss(fastemit_lambda=0.01) torch.manual_seed(0) acts = torch.randn(1, 2, 5, 3) labels = torch.tensor([[0, 2, 1, 2]], dtype=torch.int32) act_lens = torch.tensor([2], dtype=torch.int32) label_lens = torch.tensor([len(labels[0])], dtype=torch.int32) loss_val = loss(acts, labels, act_lens, label_lens)
[ 2, 15069, 357, 66, 8, 33448, 11, 15127, 23929, 44680, 6234, 13, 220, 1439, 2489, 10395, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 2, 198, 2, 15069, 2864, 12, 23344, 11, 26980, 28374, 31663, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 628, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 28034, 198, 6738, 28034, 13, 2306, 519, 6335, 1330, 15553, 11, 35748, 198, 6738, 28034, 13, 20471, 1330, 19937, 628, 628, 628, 198, 198, 4299, 2651, 62, 6603, 7, 6404, 62, 1676, 1443, 11, 14722, 11, 9178, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3082, 1769, 12867, 286, 262, 2651, 7885, 17130, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 1676, 1443, 25, 309, 22854, 286, 5485, 685, 51, 11, 471, 11, 569, 10, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 14722, 25, 3498, 1424, 286, 5485, 685, 33, 11, 471, 60, 198, 220, 220, 220, 220, 220, 220, 220, 9178, 25, 12901, 286, 262, 9178, 11241, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 317, 46545, 286, 262, 2651, 7885, 39522, 532, 17130, 286, 5485, 685, 51, 11, 471, 60, 198, 220, 220, 220, 220, 220, 220, 220, 290, 262, 2604, 14955, 286, 428, 2651, 2239, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 309, 11, 471, 11, 4808, 796, 2604, 62, 1676, 1443, 13, 43358, 198, 220, 220, 220, 435, 5902, 796, 45941, 13, 9107, 418, 19510, 51, 11, 471, 828, 288, 4906, 11639, 69, 11537, 628, 220, 220, 220, 329, 256, 287, 2837, 7, 16, 11, 309, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 435, 5902, 58, 83, 11, 657, 60, 796, 435, 5902, 58, 83, 532, 352, 11, 657, 60, 1343, 2604, 62, 1676, 1443, 58, 83, 532, 352, 11, 657, 11, 9178, 60, 628, 220, 220, 220, 329, 334, 287, 2837, 7, 16, 11, 471, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 435, 5902, 58, 15, 11, 334, 60, 796, 435, 5902, 58, 15, 11, 334, 532, 352, 60, 1343, 2604, 62, 1676, 1443, 58, 15, 11, 334, 532, 352, 11, 14722, 58, 84, 532, 352, 11907, 198, 220, 220, 220, 329, 256, 287, 2837, 7, 16, 11, 309, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 334, 287, 2837, 7, 16, 11, 471, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 645, 62, 368, 270, 796, 435, 5902, 58, 83, 532, 352, 11, 334, 60, 1343, 2604, 62, 1676, 1443, 58, 83, 532, 352, 11, 334, 11, 9178, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27588, 796, 435, 5902, 58, 83, 11, 334, 532, 352, 60, 1343, 2604, 62, 1676, 1443, 58, 83, 11, 334, 532, 352, 11, 14722, 58, 84, 532, 352, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 435, 5902, 58, 83, 11, 334, 60, 796, 45941, 13, 6404, 2860, 11201, 7, 368, 270, 11, 645, 62, 368, 270, 8, 628, 220, 220, 220, 2604, 2339, 796, 435, 5902, 58, 51, 532, 352, 11, 471, 532, 352, 60, 1343, 2604, 62, 1676, 1443, 58, 51, 532, 352, 11, 471, 532, 352, 11, 9178, 60, 198, 220, 220, 220, 1441, 435, 5902, 11, 2604, 2339, 628, 198, 4299, 19528, 62, 6603, 7, 6404, 62, 1676, 1443, 11, 14722, 11, 9178, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3082, 1769, 12867, 286, 262, 19528, 7885, 12159, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 1676, 1443, 25, 309, 22854, 286, 5485, 685, 51, 11, 471, 11, 569, 10, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 14722, 25, 3498, 1424, 286, 5485, 685, 33, 11, 471, 60, 198, 220, 220, 220, 220, 220, 220, 220, 9178, 25, 12901, 286, 262, 9178, 11241, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 317, 46545, 286, 262, 19528, 7885, 39522, 532, 12159, 286, 5485, 685, 51, 11, 471, 60, 198, 220, 220, 220, 220, 220, 220, 220, 290, 262, 2604, 14955, 286, 428, 19528, 2239, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 309, 11, 471, 11, 4808, 796, 2604, 62, 1676, 1443, 13, 43358, 198, 220, 220, 220, 731, 292, 796, 45941, 13, 9107, 418, 19510, 51, 11, 471, 828, 288, 4906, 11639, 69, 11537, 198, 220, 220, 220, 731, 292, 58, 51, 532, 352, 11, 471, 532, 352, 60, 796, 2604, 62, 1676, 1443, 58, 51, 532, 352, 11, 471, 532, 352, 11, 9178, 60, 628, 220, 220, 220, 329, 256, 287, 17687, 7, 9521, 7, 51, 532, 352, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 731, 292, 58, 83, 11, 471, 532, 352, 60, 796, 731, 292, 58, 83, 1343, 352, 11, 471, 532, 352, 60, 1343, 2604, 62, 1676, 1443, 58, 83, 11, 471, 532, 352, 11, 9178, 60, 628, 220, 220, 220, 329, 334, 287, 17687, 7, 9521, 7, 52, 532, 352, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 731, 292, 58, 51, 532, 352, 11, 334, 60, 796, 731, 292, 58, 51, 532, 352, 11, 334, 1343, 352, 60, 1343, 2604, 62, 1676, 1443, 58, 51, 532, 352, 11, 334, 11, 14722, 58, 84, 11907, 628, 220, 220, 220, 329, 256, 287, 17687, 7, 9521, 7, 51, 532, 352, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 329, 334, 287, 17687, 7, 9521, 7, 52, 532, 352, 8, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 645, 62, 368, 270, 796, 731, 292, 58, 83, 1343, 352, 11, 334, 60, 1343, 2604, 62, 1676, 1443, 58, 83, 11, 334, 11, 9178, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 27588, 796, 731, 292, 58, 83, 11, 334, 1343, 352, 60, 1343, 2604, 62, 1676, 1443, 58, 83, 11, 334, 11, 14722, 58, 84, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 731, 292, 58, 83, 11, 334, 60, 796, 45941, 13, 6404, 2860, 11201, 7, 368, 270, 11, 645, 62, 368, 270, 8, 628, 220, 220, 220, 1441, 731, 292, 11, 731, 292, 58, 15, 11, 657, 60, 628, 198, 4299, 24061, 62, 49607, 7, 6404, 62, 1676, 1443, 11, 435, 5902, 11, 731, 292, 11, 14722, 11, 9178, 11, 3049, 368, 270, 62, 50033, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3082, 1769, 262, 3915, 2334, 286, 262, 2604, 62, 1676, 1443, 351, 2461, 284, 262, 2604, 12867, 286, 428, 2239, 1609, 870, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 1676, 1443, 25, 309, 22854, 286, 5485, 685, 51, 11, 471, 11, 569, 10, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 435, 5902, 25, 309, 22854, 286, 5485, 685, 51, 11, 471, 60, 543, 6870, 262, 2651, 7885, 13, 198, 220, 220, 220, 220, 220, 220, 220, 731, 292, 25, 309, 22854, 286, 5485, 685, 51, 11, 471, 60, 543, 6870, 262, 19528, 7885, 13, 198, 220, 220, 220, 220, 220, 220, 220, 14722, 25, 3498, 1424, 286, 5485, 685, 33, 11, 471, 60, 198, 220, 220, 220, 220, 220, 220, 220, 9178, 25, 12901, 286, 262, 9178, 11241, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 17701, 2334, 286, 5485, 685, 51, 11, 471, 11, 569, 10, 16, 60, 351, 2461, 284, 262, 2651, 2604, 12867, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 309, 11, 471, 11, 4808, 796, 2604, 62, 1676, 1443, 13, 43358, 198, 220, 220, 220, 3915, 82, 796, 45941, 13, 12853, 7, 6404, 62, 1676, 1443, 13, 43358, 11, 532, 22468, 7203, 10745, 48774, 198, 220, 220, 220, 2604, 62, 2339, 796, 731, 292, 58, 15, 11, 657, 60, 220, 1303, 6624, 435, 5902, 58, 51, 532, 352, 11, 471, 532, 352, 60, 1343, 731, 292, 58, 51, 532, 352, 11, 471, 532, 352, 60, 628, 220, 220, 220, 1303, 3373, 3915, 284, 938, 9178, 6801, 198, 220, 220, 220, 3915, 82, 58, 51, 532, 352, 11, 471, 532, 352, 11, 9178, 60, 796, 435, 5902, 58, 51, 532, 352, 11, 471, 532, 352, 60, 198, 220, 220, 220, 3915, 82, 58, 25, 309, 532, 352, 11, 1058, 11, 9178, 60, 796, 435, 5902, 58, 25, 309, 532, 352, 11, 1058, 60, 1343, 731, 292, 58, 16, 45299, 1058, 60, 628, 220, 220, 220, 1303, 3373, 3915, 284, 6167, 6801, 198, 220, 220, 220, 329, 334, 11, 300, 287, 27056, 378, 7, 23912, 1424, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 3915, 82, 58, 45299, 334, 11, 300, 60, 796, 435, 5902, 58, 45299, 334, 60, 1343, 731, 292, 58, 45299, 334, 1343, 352, 60, 628, 220, 220, 220, 3915, 82, 796, 532, 37659, 13, 11201, 7, 2164, 5643, 1343, 2604, 62, 1676, 1443, 532, 2604, 62, 2339, 8, 628, 220, 220, 220, 611, 3049, 368, 270, 62, 50033, 1875, 657, 13, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 329, 334, 11, 300, 287, 27056, 378, 7, 23912, 1424, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3915, 82, 58, 45299, 334, 11, 300, 60, 796, 357, 16, 13, 15, 1343, 3049, 368, 270, 62, 50033, 8, 1635, 3915, 82, 58, 45299, 334, 11, 300, 60, 628, 220, 220, 220, 1441, 3915, 82, 628, 198, 4299, 3049, 368, 270, 62, 16338, 1634, 7, 6404, 62, 1676, 1443, 11, 14722, 11, 435, 5902, 11, 731, 292, 11, 9178, 11, 3049, 368, 270, 62, 50033, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 39373, 22090, 262, 29964, 286, 12549, 36, 2781, 3218, 1634, 422, 262, 3348, 532, 198, 220, 220, 220, 685, 22968, 36, 2781, 25, 7754, 12, 15460, 1387, 43124, 7054, 49, 351, 45835, 12, 5715, 2295, 1480, 23603, 1634, 16151, 5450, 1378, 283, 87, 452, 13, 2398, 14, 8937, 14, 10333, 13, 1157, 18294, 8, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 1676, 1443, 25, 309, 22854, 286, 5485, 685, 51, 11, 471, 11, 569, 10, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 14722, 25, 791, 1484, 13, 3498, 1424, 286, 5485, 685, 33, 11, 471, 60, 198, 220, 220, 220, 220, 220, 220, 220, 435, 5902, 25, 309, 22854, 286, 5485, 685, 51, 11, 471, 60, 543, 6870, 262, 2651, 7885, 13, 198, 220, 220, 220, 220, 220, 220, 220, 731, 292, 25, 791, 1484, 13, 309, 22854, 286, 5485, 685, 51, 11, 471, 60, 543, 6870, 262, 19528, 7885, 13, 198, 220, 220, 220, 220, 220, 220, 220, 9178, 25, 12901, 286, 262, 9178, 11241, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3049, 368, 270, 62, 50033, 25, 48436, 20796, 5766, 329, 12549, 36, 2781, 3218, 1634, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 383, 3218, 1143, 4633, 2604, 14955, 532, 37456, 1635, 350, 7, 2953, 11, 334, 91, 87, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 3611, 17952, 286, 262, 3049, 368, 270, 3218, 1634, 10548, 902, 198, 220, 220, 220, 309, 11, 471, 11, 4808, 796, 2604, 62, 1676, 1443, 13, 43358, 198, 220, 220, 220, 1303, 19114, 796, 45941, 13, 9107, 418, 19510, 51, 11, 471, 828, 288, 4906, 11639, 22468, 2624, 11537, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 329, 256, 287, 2837, 7, 15, 11, 309, 2599, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 19114, 58, 83, 11, 471, 532, 352, 60, 796, 435, 5902, 58, 83, 11, 471, 532, 352, 60, 1343, 731, 292, 58, 83, 11, 471, 532, 352, 60, 198, 220, 220, 220, 1303, 198, 220, 220, 220, 1303, 329, 256, 287, 2837, 7, 15, 11, 309, 2599, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 329, 334, 287, 2837, 7, 15, 11, 471, 532, 352, 2599, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 27588, 796, 435, 5902, 58, 83, 11, 334, 60, 1343, 2604, 62, 1676, 1443, 58, 83, 11, 334, 11, 14722, 58, 84, 11907, 1343, 731, 292, 58, 83, 11, 334, 1343, 352, 60, 198, 220, 220, 220, 1303, 220, 220, 220, 220, 220, 220, 220, 220, 19114, 58, 83, 11, 334, 60, 796, 27588, 198, 220, 220, 220, 1303, 842, 796, 3049, 368, 270, 62, 50033, 1635, 357, 282, 16747, 58, 51, 532, 352, 11, 471, 532, 352, 12962, 628, 220, 220, 220, 1303, 383, 2029, 318, 7548, 284, 2174, 11, 1231, 761, 286, 14492, 2029, 198, 220, 220, 220, 1303, 842, 796, 3049, 368, 270, 62, 50033, 1635, 357, 282, 5902, 58, 51, 532, 352, 11, 471, 532, 352, 60, 1343, 731, 292, 58, 51, 532, 352, 11, 471, 532, 352, 12962, 628, 220, 220, 220, 1303, 383, 2029, 318, 635, 7548, 284, 2174, 11, 1231, 761, 286, 14492, 262, 731, 292, 19114, 17593, 198, 220, 220, 220, 842, 796, 3049, 368, 270, 62, 50033, 1635, 357, 282, 5902, 58, 51, 532, 352, 11, 471, 532, 352, 60, 1343, 2604, 62, 1676, 1443, 58, 51, 532, 352, 11, 471, 532, 352, 11, 9178, 12962, 198, 220, 220, 220, 1441, 532, 2301, 628, 198, 4299, 1007, 646, 344, 7, 6404, 62, 1676, 1443, 11, 14722, 11, 9178, 28, 15, 11, 3049, 368, 270, 62, 50033, 28, 15, 13, 15, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 1676, 1443, 25, 513, 35, 7177, 351, 5485, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 685, 15414, 18896, 11, 5072, 18896, 1343, 352, 11, 12776, 397, 2546, 60, 198, 220, 220, 220, 220, 220, 220, 220, 14722, 25, 352, 35, 7177, 351, 5485, 685, 22915, 640, 4831, 60, 198, 220, 220, 220, 220, 220, 220, 220, 9178, 25, 12901, 286, 262, 9178, 11241, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3049, 368, 270, 62, 50033, 25, 48436, 20796, 5766, 329, 12549, 36, 2781, 3218, 1634, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 12178, 25, 383, 4633, 2604, 12, 2339, 11935, 198, 220, 220, 220, 220, 220, 220, 220, 513, 35, 7177, 25, 17701, 2334, 351, 2461, 284, 262, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 555, 11265, 1143, 5128, 719, 3736, 198, 220, 220, 220, 220, 220, 220, 220, 362, 67, 26515, 25, 978, 5902, 17593, 357, 46047, 52, 8, 198, 220, 220, 220, 220, 220, 220, 220, 362, 67, 7177, 25, 5147, 292, 17593, 357, 46047, 52, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 435, 5902, 11, 32660, 62, 11813, 796, 2651, 62, 6603, 7, 6404, 62, 1676, 1443, 11, 14722, 11, 9178, 8, 198, 220, 220, 220, 731, 292, 11, 32660, 62, 1891, 904, 796, 19528, 62, 6603, 7, 6404, 62, 1676, 1443, 11, 14722, 11, 9178, 8, 198, 220, 220, 220, 3915, 82, 796, 24061, 62, 49607, 7, 6404, 62, 1676, 1443, 11, 435, 5902, 11, 731, 292, 11, 14722, 11, 9178, 11, 3049, 368, 270, 62, 50033, 8, 198, 220, 220, 220, 1441, 532, 297, 62, 11813, 11, 3915, 82, 11, 435, 5902, 11, 731, 292, 628, 198, 4299, 1007, 646, 344, 62, 43501, 7, 6404, 62, 1676, 1443, 11, 14722, 11, 781, 268, 11, 1278, 268, 11, 9178, 28, 15, 11, 3049, 368, 270, 62, 50033, 28, 15, 13, 15, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3082, 1133, 262, 1007, 646, 2189, 2994, 286, 262, 15458, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 1676, 1443, 25, 685, 33, 11, 309, 11, 471, 11, 569, 10, 16, 4083, 13144, 341, 17593, 39279, 351, 2604, 12, 4215, 9806, 13, 198, 220, 220, 220, 220, 220, 220, 220, 14722, 25, 685, 33, 11, 471, 10, 16, 60, 532, 2323, 3872, 14722, 351, 1279, 50, 2640, 29, 44582, 355, 9178, 11241, 287, 262, 3726, 13, 198, 220, 220, 220, 220, 220, 220, 220, 781, 268, 25, 22313, 15879, 286, 262, 26071, 8379, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1278, 268, 25, 22313, 15879, 286, 262, 2496, 8379, 13, 198, 220, 220, 220, 220, 220, 220, 220, 9178, 25, 5121, 286, 262, 9178, 11241, 13, 198, 220, 220, 220, 220, 220, 220, 220, 3049, 368, 270, 62, 50033, 25, 48436, 20796, 5766, 329, 12549, 36, 2781, 3218, 1634, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 347, 963, 286, 1007, 646, 2189, 2651, 2604, 39522, 357, 22462, 8, 290, 262, 3915, 2334, 286, 262, 14916, 17593, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3915, 82, 796, 45941, 13, 9107, 418, 62, 2339, 7, 6404, 62, 1676, 1443, 8, 198, 220, 220, 220, 3484, 796, 17635, 198, 220, 220, 220, 329, 275, 287, 2837, 7, 6404, 62, 1676, 1443, 13, 43358, 58, 15, 60, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 256, 796, 493, 7, 2704, 268, 58, 65, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 334, 796, 493, 7, 4743, 268, 58, 65, 12962, 1343, 352, 628, 220, 220, 220, 220, 220, 220, 220, 32660, 11, 308, 11, 435, 5902, 11, 731, 292, 796, 1007, 646, 344, 7, 6404, 62, 1676, 1443, 58, 65, 11, 1058, 83, 11, 1058, 84, 11, 1058, 4357, 14722, 58, 65, 11, 1058, 334, 532, 352, 4357, 9178, 11, 3049, 368, 270, 62, 50033, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3915, 82, 58, 65, 11, 1058, 83, 11, 1058, 84, 11, 1058, 60, 796, 308, 628, 220, 220, 220, 220, 220, 220, 220, 842, 796, 3049, 368, 270, 62, 16338, 1634, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2604, 62, 1676, 1443, 58, 65, 11, 1058, 83, 11, 1058, 84, 11, 1058, 4357, 14722, 58, 65, 11, 1058, 334, 532, 352, 4357, 435, 5902, 11, 731, 292, 11, 9178, 11, 3049, 368, 270, 62, 50033, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 32660, 15853, 842, 198, 220, 220, 220, 220, 220, 220, 220, 3484, 13, 33295, 7, 297, 8, 198, 220, 220, 220, 1441, 3484, 11, 3915, 82, 628, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 2994, 796, 371, 6144, 14990, 793, 7, 7217, 368, 270, 62, 50033, 28, 15, 13, 486, 8, 628, 220, 220, 220, 28034, 13, 805, 723, 62, 28826, 7, 15, 8, 628, 220, 220, 220, 6529, 796, 28034, 13, 25192, 77, 7, 16, 11, 362, 11, 642, 11, 513, 8, 198, 220, 220, 220, 14722, 796, 28034, 13, 83, 22854, 26933, 58, 15, 11, 362, 11, 352, 11, 362, 60, 4357, 288, 4906, 28, 13165, 354, 13, 600, 2624, 8, 198, 220, 220, 220, 719, 62, 75, 641, 796, 28034, 13, 83, 22854, 26933, 17, 4357, 288, 4906, 28, 13165, 354, 13, 600, 2624, 8, 198, 220, 220, 220, 6167, 62, 75, 641, 796, 28034, 13, 83, 22854, 26933, 11925, 7, 23912, 1424, 58, 15, 12962, 4357, 288, 4906, 28, 13165, 354, 13, 600, 2624, 8, 628, 220, 220, 220, 2994, 62, 2100, 796, 2994, 7, 8656, 11, 14722, 11, 719, 62, 75, 641, 11, 6167, 62, 75, 641, 8, 198 ]
2.423562
3,565
import numpy as np import math from dataset_specifications.dataset import Dataset
[ 11748, 299, 32152, 355, 45941, 198, 11748, 10688, 198, 198, 6738, 27039, 62, 16684, 6637, 13, 19608, 292, 316, 1330, 16092, 292, 316, 628, 198 ]
3.4
25
#!/usr/bin/env python import time from package.oss.cov_json import get_json_report from package.oss.init import initialization from package.tool.summarize_jsons import summarize_jsons from package.util.setting import TestPlatform if __name__ == "__main__": report_coverage()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 11748, 640, 198, 198, 6738, 5301, 13, 793, 13, 66, 709, 62, 17752, 1330, 651, 62, 17752, 62, 13116, 198, 6738, 5301, 13, 793, 13, 15003, 1330, 37588, 198, 6738, 5301, 13, 25981, 13, 16345, 3876, 1096, 62, 8457, 684, 1330, 35743, 62, 8457, 684, 198, 6738, 5301, 13, 22602, 13, 33990, 1330, 6208, 37148, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 989, 62, 1073, 1857, 3419, 198 ]
3.252874
87
import numpy as np from sklearn.linear_model import LogisticRegression from .models import User from .twitter import vectorize_tweet def predict_user(user1_name, user2_name, tweet_text): """ Determine and return which user is more likely to say a given Tweet. Example: predict_user('ausen', 'elonmusk', 'Lambda School Rocks!') Returns 1 corresponding to 1st user passed in, or 0 for second. """ user1 = User.query.filter(User.name == user1_name).one() user2 = User.query.filter(User.name == user2_name).one() user1_vect = np.array([tweet.vect for tweet in user1.tweets]) user2_vect = np.array([tweet.vect for tweet in user2.tweets]) vects = np.vstack([user1_vect, user2_vect]) labels = np.concatenate([np.ones(len(user1.tweets)), np.zeros(len(user2.tweets))]) log_reg = LogisticRegression().fit(vects, labels) # We've done the model fitting, now to predict... hypo_tweet_vect = vectorize_tweet(tweet_text) return log_reg.predict(np.array(hypo_tweet_vect).reshape(1,-1))
[ 11748, 299, 32152, 355, 45941, 198, 6738, 1341, 35720, 13, 29127, 62, 19849, 1330, 5972, 2569, 8081, 2234, 198, 6738, 764, 27530, 1330, 11787, 198, 6738, 764, 6956, 1330, 15879, 1096, 62, 83, 7277, 628, 198, 4299, 4331, 62, 7220, 7, 7220, 16, 62, 3672, 11, 2836, 17, 62, 3672, 11, 6126, 62, 5239, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 45559, 3810, 290, 1441, 543, 2836, 318, 517, 1884, 284, 910, 257, 1813, 18752, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 17934, 25, 4331, 62, 7220, 10786, 8717, 268, 3256, 705, 417, 261, 14664, 74, 3256, 705, 43, 4131, 6814, 3961, 34243, 0, 11537, 198, 220, 220, 220, 16409, 352, 11188, 284, 352, 301, 2836, 3804, 287, 11, 393, 657, 329, 1218, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2836, 16, 796, 11787, 13, 22766, 13, 24455, 7, 12982, 13, 3672, 6624, 2836, 16, 62, 3672, 737, 505, 3419, 198, 220, 220, 220, 2836, 17, 796, 11787, 13, 22766, 13, 24455, 7, 12982, 13, 3672, 6624, 2836, 17, 62, 3672, 737, 505, 3419, 198, 220, 220, 220, 2836, 16, 62, 303, 310, 796, 45941, 13, 18747, 26933, 83, 7277, 13, 303, 310, 329, 6126, 287, 2836, 16, 13, 83, 732, 1039, 12962, 198, 220, 220, 220, 2836, 17, 62, 303, 310, 796, 45941, 13, 18747, 26933, 83, 7277, 13, 303, 310, 329, 6126, 287, 2836, 17, 13, 83, 732, 1039, 12962, 628, 220, 220, 220, 1569, 310, 82, 796, 45941, 13, 85, 25558, 26933, 7220, 16, 62, 303, 310, 11, 2836, 17, 62, 303, 310, 12962, 198, 220, 220, 220, 14722, 796, 45941, 13, 1102, 9246, 268, 378, 26933, 37659, 13, 1952, 7, 11925, 7, 7220, 16, 13, 83, 732, 1039, 36911, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 45941, 13, 9107, 418, 7, 11925, 7, 7220, 17, 13, 83, 732, 1039, 4008, 12962, 198, 220, 220, 220, 2604, 62, 2301, 796, 5972, 2569, 8081, 2234, 22446, 11147, 7, 303, 310, 82, 11, 14722, 8, 198, 220, 220, 220, 1303, 775, 1053, 1760, 262, 2746, 15830, 11, 783, 284, 4331, 986, 198, 220, 220, 220, 5328, 78, 62, 83, 7277, 62, 303, 310, 796, 15879, 1096, 62, 83, 7277, 7, 83, 7277, 62, 5239, 8, 198, 220, 220, 220, 1441, 2604, 62, 2301, 13, 79, 17407, 7, 37659, 13, 18747, 7, 36362, 78, 62, 83, 7277, 62, 303, 310, 737, 3447, 1758, 7, 16, 12095, 16, 4008, 198 ]
2.477958
431
#!/usr/bin/env python # -*- coding: utf-8 -*- # This file is part of groupthink. # https://github.com/emanuelfeld/groupthink # This project is in the public domain within the United States. # Additionally, the Government of the District of Columbia waives # copyright and related rights in the work worldwide through the CC0 1.0 # Universal public domain dedication. __version__ = '1.0.0' # NOQA
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 770, 2393, 318, 636, 286, 1448, 14925, 13, 198, 2, 3740, 1378, 12567, 13, 785, 14, 8463, 2731, 16265, 14, 8094, 14925, 198, 198, 2, 770, 1628, 318, 287, 262, 1171, 7386, 1626, 262, 1578, 1829, 13, 198, 2, 12032, 11, 262, 5070, 286, 262, 5665, 286, 9309, 2082, 1083, 198, 2, 6634, 290, 3519, 2489, 287, 262, 670, 8688, 832, 262, 12624, 15, 352, 13, 15, 198, 2, 14499, 1171, 7386, 22445, 13, 628, 198, 834, 9641, 834, 796, 705, 16, 13, 15, 13, 15, 6, 220, 1303, 8005, 48, 32, 198 ]
3.398305
118
# sys import os import sys import numpy as np import random import pickle import json # torch import torch import torch.nn as nn from torchvision import datasets, transforms # operation from . import tools
[ 2, 25064, 198, 11748, 28686, 198, 11748, 25064, 198, 11748, 299, 32152, 355, 45941, 198, 11748, 4738, 198, 11748, 2298, 293, 198, 11748, 33918, 198, 2, 28034, 198, 11748, 28034, 198, 11748, 28034, 13, 20471, 355, 299, 77, 198, 6738, 28034, 10178, 1330, 40522, 11, 31408, 198, 198, 2, 4905, 198, 6738, 764, 1330, 4899, 628 ]
3.714286
56
# Generated by Django 4.0.2 on 2022-03-02 03:29 from django.conf import settings from django.db import migrations, models import django.db.models.deletion
[ 2, 2980, 515, 416, 37770, 604, 13, 15, 13, 17, 319, 33160, 12, 3070, 12, 2999, 7643, 25, 1959, 198, 198, 6738, 42625, 14208, 13, 10414, 1330, 6460, 198, 6738, 42625, 14208, 13, 9945, 1330, 15720, 602, 11, 4981, 198, 11748, 42625, 14208, 13, 9945, 13, 27530, 13, 2934, 1616, 295, 628 ]
3.019231
52
import os import subprocess import time import grpc import tests.rpc.proto.schema_registry_pb2 as pb2 import tests.rpc.proto.schema_registry_pb2_grpc as pb2_grpc from tests.common.postgres import PostgresConfig EXE = os.getenv('SCHEMA_REGISTRY_EXE') or 'schema-registry'
[ 11748, 28686, 198, 11748, 850, 14681, 198, 11748, 640, 198, 198, 11748, 1036, 14751, 198, 11748, 5254, 13, 81, 14751, 13, 1676, 1462, 13, 15952, 2611, 62, 2301, 4592, 62, 40842, 17, 355, 279, 65, 17, 198, 11748, 5254, 13, 81, 14751, 13, 1676, 1462, 13, 15952, 2611, 62, 2301, 4592, 62, 40842, 17, 62, 2164, 14751, 355, 279, 65, 17, 62, 2164, 14751, 198, 6738, 5254, 13, 11321, 13, 7353, 34239, 1330, 2947, 34239, 16934, 198, 198, 6369, 36, 796, 28686, 13, 1136, 24330, 10786, 50, 3398, 27630, 62, 31553, 1797, 40405, 62, 6369, 36, 11537, 393, 705, 15952, 2611, 12, 2301, 4592, 6, 628 ]
2.584906
106
""" When a routing policy is set with an empty condition, it should be loaded correctly and should route all the requests to a correct backend. """ from urllib.parse import urlparse import pytest from packaging.version import Version # noqa # pylint: disable=unused-import from testsuite import TESTED_VERSION, rawobj # noqa # pylint: disable=unused-import from testsuite.echoed_request import EchoedRequest pytestmark = [ pytest.mark.skipif("TESTED_VERSION < Version('2.11')"), pytest.mark.issue("https://issues.redhat.com/browse/THREESCALE-6415")] def test_routing_policy_without_header(api_client, private_base_url): """ Sends a request and asserts, that the routing policy is active and the requests is routed to the correct backend (httpbin) """ parsed_url = urlparse(private_base_url("httpbin")) response = api_client().get("/get") assert response.status_code == 200 echoed_request = EchoedRequest.create(response) assert echoed_request.headers["Host"] == parsed_url.hostname
[ 37811, 198, 2215, 257, 28166, 2450, 318, 900, 351, 281, 6565, 4006, 11, 340, 815, 307, 9639, 9380, 290, 815, 6339, 477, 198, 1169, 7007, 284, 257, 3376, 30203, 13, 198, 37811, 198, 6738, 2956, 297, 571, 13, 29572, 1330, 19016, 29572, 198, 11748, 12972, 9288, 198, 198, 6738, 16846, 13, 9641, 1330, 10628, 220, 1303, 645, 20402, 1303, 279, 2645, 600, 25, 15560, 28, 403, 1484, 12, 11748, 198, 6738, 1332, 2385, 578, 1330, 43001, 1961, 62, 43717, 11, 8246, 26801, 220, 1303, 645, 20402, 1303, 279, 2645, 600, 25, 15560, 28, 403, 1484, 12, 11748, 198, 6738, 1332, 2385, 578, 13, 30328, 276, 62, 25927, 1330, 21455, 276, 18453, 198, 198, 9078, 9288, 4102, 796, 685, 198, 220, 220, 220, 12972, 9288, 13, 4102, 13, 48267, 361, 7203, 51, 6465, 1961, 62, 43717, 1279, 10628, 10786, 17, 13, 1157, 11537, 12340, 198, 220, 220, 220, 12972, 9288, 13, 4102, 13, 21949, 7203, 5450, 1378, 37165, 13, 445, 5183, 13, 785, 14, 25367, 325, 14, 4221, 2200, 1546, 34, 21358, 12, 2414, 1314, 4943, 60, 628, 628, 198, 4299, 1332, 62, 81, 13660, 62, 30586, 62, 19419, 62, 25677, 7, 15042, 62, 16366, 11, 2839, 62, 8692, 62, 6371, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 311, 2412, 257, 2581, 290, 29348, 11, 326, 262, 28166, 2450, 318, 4075, 290, 262, 198, 220, 220, 220, 7007, 318, 42101, 284, 262, 3376, 30203, 357, 4023, 8800, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 44267, 62, 6371, 796, 19016, 29572, 7, 19734, 62, 8692, 62, 6371, 7203, 4023, 8800, 48774, 198, 220, 220, 220, 2882, 796, 40391, 62, 16366, 22446, 1136, 7203, 14, 1136, 4943, 198, 220, 220, 220, 6818, 2882, 13, 13376, 62, 8189, 6624, 939, 628, 220, 220, 220, 22211, 62, 25927, 796, 21455, 276, 18453, 13, 17953, 7, 26209, 8, 198, 220, 220, 220, 6818, 22211, 62, 25927, 13, 50145, 14692, 17932, 8973, 6624, 44267, 62, 6371, 13, 4774, 3672, 198 ]
3.145897
329
# Copyright (c) 2014 Mirantis Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or # implied. # See the License for the specific language governing permissions and # limitations under the License. from oslo.config import cfg import oslo.messaging from ceilometer import plugin from ceilometer import sample OPTS = [ cfg.StrOpt('sahara_control_exchange', default='sahara', help="Exchange name for Data Processing notifications."), ] cfg.CONF.register_opts(OPTS) SERVICE = 'sahara'
[ 2, 15069, 357, 66, 8, 1946, 7381, 20836, 3457, 13, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 366, 34156, 15341, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 366, 1921, 3180, 1, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 198, 2, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 628, 198, 6738, 28686, 5439, 13, 11250, 1330, 30218, 70, 198, 11748, 28686, 5439, 13, 37348, 3039, 198, 198, 6738, 2906, 346, 15635, 1330, 13877, 198, 6738, 2906, 346, 15635, 1330, 6291, 628, 198, 3185, 4694, 796, 685, 198, 220, 220, 220, 30218, 70, 13, 13290, 27871, 10786, 82, 993, 3301, 62, 13716, 62, 1069, 3803, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4277, 11639, 82, 993, 3301, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 3109, 3803, 1438, 329, 6060, 28403, 19605, 526, 828, 198, 60, 198, 198, 37581, 13, 10943, 37, 13, 30238, 62, 404, 912, 7, 3185, 4694, 8, 198, 35009, 27389, 796, 705, 82, 993, 3301, 6, 628 ]
3.190141
284
import os import time from selenium.webdriver.support.select import Select from Data.parameters import Data from get_dir import pwd from reuse_func import GetData
[ 11748, 28686, 198, 11748, 640, 198, 198, 6738, 384, 11925, 1505, 13, 12384, 26230, 13, 11284, 13, 19738, 1330, 9683, 198, 198, 6738, 6060, 13, 17143, 7307, 1330, 6060, 198, 6738, 651, 62, 15908, 1330, 279, 16993, 198, 6738, 32349, 62, 20786, 1330, 3497, 6601, 628, 628 ]
3.574468
47
import contextlib import ctypes import json import os import shutil import struct import subprocess import sys import tempfile from datetime import datetime, timedelta, timezone from enum import Enum, auto from hashlib import pbkdf2_hmac from .aes import ( aes_cbc_decrypt_bytes, aes_gcm_decrypt_and_verify_bytes, unpad_pkcs7, ) from .compat import compat_b64decode, compat_cookiejar_Cookie from .minicurses import MultilinePrinter, QuietMultilinePrinter from .utils import Popen, YoutubeDLCookieJar, error_to_str, expand_path try: import sqlite3 SQLITE_AVAILABLE = True except ImportError: # although sqlite3 is part of the standard library, it is possible to compile python without # sqlite support. See: https://github.com/yt-dlp/yt-dlp/issues/544 SQLITE_AVAILABLE = False try: import secretstorage SECRETSTORAGE_AVAILABLE = True except ImportError: SECRETSTORAGE_AVAILABLE = False SECRETSTORAGE_UNAVAILABLE_REASON = ( 'as the `secretstorage` module is not installed. ' 'Please install by running `python3 -m pip install secretstorage`.') except Exception as _err: SECRETSTORAGE_AVAILABLE = False SECRETSTORAGE_UNAVAILABLE_REASON = f'as the `secretstorage` module could not be initialized. {_err}' CHROMIUM_BASED_BROWSERS = {'brave', 'chrome', 'chromium', 'edge', 'opera', 'vivaldi'} SUPPORTED_BROWSERS = CHROMIUM_BASED_BROWSERS | {'firefox', 'safari'} class MacChromeCookieDecryptor(ChromeCookieDecryptor): def decrypt(self, encrypted_value): version = encrypted_value[:3] ciphertext = encrypted_value[3:] if version == b'v10': self._cookie_counts['v10'] += 1 if self._v10_key is None: self._logger.warning('cannot decrypt v10 cookies: no key found', only_once=True) return None return _decrypt_aes_cbc(ciphertext, self._v10_key, self._logger) else: self._cookie_counts['other'] += 1 # other prefixes are considered 'old data' which were stored as plaintext # https://chromium.googlesource.com/chromium/src/+/refs/heads/main/components/os_crypt/os_crypt_mac.mm return encrypted_value class WindowsChromeCookieDecryptor(ChromeCookieDecryptor): def _extract_safari_cookies(profile, logger): if profile is not None: logger.error('safari does not support profiles') if sys.platform != 'darwin': raise ValueError(f'unsupported platform: {sys.platform}') cookies_path = os.path.expanduser('~/Library/Cookies/Cookies.binarycookies') if not os.path.isfile(cookies_path): logger.debug('Trying secondary cookie location') cookies_path = os.path.expanduser('~/Library/Containers/com.apple.Safari/Data/Library/Cookies/Cookies.binarycookies') if not os.path.isfile(cookies_path): raise FileNotFoundError('could not find safari cookies database') with open(cookies_path, 'rb') as f: cookies_data = f.read() jar = parse_safari_cookies(cookies_data, logger=logger) logger.info(f'Extracted {len(jar)} cookies from safari') return jar class ParserError(Exception): pass class DataParser: def __init__(self, data, logger): self._data = data self.cursor = 0 self._logger = logger def parse_safari_cookies(data, jar=None, logger=YDLLogger()): """ References: - https://github.com/libyal/dtformats/blob/main/documentation/Safari%20Cookies.asciidoc - this data appears to be out of date but the important parts of the database structure is the same - there are a few bytes here and there which are skipped during parsing """ if jar is None: jar = YoutubeDLCookieJar() page_sizes, body_start = _parse_safari_cookies_header(data, logger) p = DataParser(data[body_start:], logger) for page_size in page_sizes: _parse_safari_cookies_page(p.read_bytes(page_size), jar, logger) p.skip_to_end('footer') return jar SUPPORTED_KEYRINGS = _LinuxKeyring.__members__.keys() def _get_linux_desktop_environment(env): """ https://chromium.googlesource.com/chromium/src/+/refs/heads/main/base/nix/xdg_util.cc GetDesktopEnvironment """ xdg_current_desktop = env.get('XDG_CURRENT_DESKTOP', None) desktop_session = env.get('DESKTOP_SESSION', None) if xdg_current_desktop is not None: xdg_current_desktop = xdg_current_desktop.split(':')[0].strip() if xdg_current_desktop == 'Unity': if desktop_session is not None and 'gnome-fallback' in desktop_session: return _LinuxDesktopEnvironment.GNOME else: return _LinuxDesktopEnvironment.UNITY elif xdg_current_desktop == 'GNOME': return _LinuxDesktopEnvironment.GNOME elif xdg_current_desktop == 'X-Cinnamon': return _LinuxDesktopEnvironment.CINNAMON elif xdg_current_desktop == 'KDE': return _LinuxDesktopEnvironment.KDE elif xdg_current_desktop == 'Pantheon': return _LinuxDesktopEnvironment.PANTHEON elif xdg_current_desktop == 'XFCE': return _LinuxDesktopEnvironment.XFCE elif desktop_session is not None: if desktop_session in ('mate', 'gnome'): return _LinuxDesktopEnvironment.GNOME elif 'kde' in desktop_session: return _LinuxDesktopEnvironment.KDE elif 'xfce' in desktop_session: return _LinuxDesktopEnvironment.XFCE else: if 'GNOME_DESKTOP_SESSION_ID' in env: return _LinuxDesktopEnvironment.GNOME elif 'KDE_FULL_SESSION' in env: return _LinuxDesktopEnvironment.KDE return _LinuxDesktopEnvironment.OTHER def _choose_linux_keyring(logger): """ https://chromium.googlesource.com/chromium/src/+/refs/heads/main/components/os_crypt/key_storage_util_linux.cc SelectBackend """ desktop_environment = _get_linux_desktop_environment(os.environ) logger.debug(f'detected desktop environment: {desktop_environment.name}') if desktop_environment == _LinuxDesktopEnvironment.KDE: linux_keyring = _LinuxKeyring.KWALLET elif desktop_environment == _LinuxDesktopEnvironment.OTHER: linux_keyring = _LinuxKeyring.BASICTEXT else: linux_keyring = _LinuxKeyring.GNOMEKEYRING return linux_keyring def _get_kwallet_network_wallet(logger): """ The name of the wallet used to store network passwords. https://chromium.googlesource.com/chromium/src/+/refs/heads/main/components/os_crypt/kwallet_dbus.cc KWalletDBus::NetworkWallet which does a dbus call to the following function: https://api.kde.org/frameworks/kwallet/html/classKWallet_1_1Wallet.html Wallet::NetworkWallet """ default_wallet = 'kdewallet' try: proc = Popen([ 'dbus-send', '--session', '--print-reply=literal', '--dest=org.kde.kwalletd5', '/modules/kwalletd5', 'org.kde.KWallet.networkWallet' ], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL) stdout, stderr = proc.communicate_or_kill() if proc.returncode != 0: logger.warning('failed to read NetworkWallet') return default_wallet else: network_wallet = stdout.decode('utf-8').strip() logger.debug(f'NetworkWallet = "{network_wallet}"') return network_wallet except Exception as e: logger.warning(f'exception while obtaining NetworkWallet: {e}') return default_wallet def _decrypt_windows_dpapi(ciphertext, logger): """ References: - https://docs.microsoft.com/en-us/windows/win32/api/dpapi/nf-dpapi-cryptunprotectdata """ from ctypes.wintypes import DWORD buffer = ctypes.create_string_buffer(ciphertext) blob_in = DATA_BLOB(ctypes.sizeof(buffer), buffer) blob_out = DATA_BLOB() ret = ctypes.windll.crypt32.CryptUnprotectData( ctypes.byref(blob_in), # pDataIn None, # ppszDataDescr: human readable description of pDataIn None, # pOptionalEntropy: salt? None, # pvReserved: must be NULL None, # pPromptStruct: information about prompts to display 0, # dwFlags ctypes.byref(blob_out) # pDataOut ) if not ret: logger.warning('failed to decrypt with DPAPI', only_once=True) return None result = ctypes.string_at(blob_out.pbData, blob_out.cbData) ctypes.windll.kernel32.LocalFree(blob_out.pbData) return result
[ 11748, 4732, 8019, 198, 11748, 269, 19199, 198, 11748, 33918, 198, 11748, 28686, 198, 11748, 4423, 346, 198, 11748, 2878, 198, 11748, 850, 14681, 198, 11748, 25064, 198, 11748, 20218, 7753, 198, 6738, 4818, 8079, 1330, 4818, 8079, 11, 28805, 12514, 11, 640, 11340, 198, 6738, 33829, 1330, 2039, 388, 11, 8295, 198, 6738, 12234, 8019, 1330, 279, 65, 74, 7568, 17, 62, 71, 20285, 198, 198, 6738, 764, 64, 274, 1330, 357, 198, 220, 220, 220, 257, 274, 62, 66, 15630, 62, 12501, 6012, 62, 33661, 11, 198, 220, 220, 220, 257, 274, 62, 70, 11215, 62, 12501, 6012, 62, 392, 62, 332, 1958, 62, 33661, 11, 198, 220, 220, 220, 8593, 324, 62, 79, 74, 6359, 22, 11, 198, 8, 198, 6738, 764, 5589, 265, 1330, 8330, 62, 65, 2414, 12501, 1098, 11, 8330, 62, 44453, 9491, 62, 34, 18055, 198, 6738, 764, 1084, 291, 46998, 1330, 7854, 346, 500, 6836, 3849, 11, 37355, 15205, 346, 500, 6836, 3849, 198, 6738, 764, 26791, 1330, 8099, 268, 11, 27431, 35, 5639, 18055, 47511, 11, 4049, 62, 1462, 62, 2536, 11, 4292, 62, 6978, 198, 198, 28311, 25, 198, 220, 220, 220, 1330, 44161, 578, 18, 198, 220, 220, 220, 16363, 12709, 62, 10116, 32, 4146, 17534, 796, 6407, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 1303, 3584, 44161, 578, 18, 318, 636, 286, 262, 3210, 5888, 11, 340, 318, 1744, 284, 17632, 21015, 1231, 198, 220, 220, 220, 1303, 44161, 578, 1104, 13, 4091, 25, 3740, 1378, 12567, 13, 785, 14, 20760, 12, 25404, 79, 14, 20760, 12, 25404, 79, 14, 37165, 14, 47576, 198, 220, 220, 220, 16363, 12709, 62, 10116, 32, 4146, 17534, 796, 10352, 628, 198, 28311, 25, 198, 220, 220, 220, 1330, 3200, 35350, 198, 220, 220, 220, 10729, 26087, 2257, 1581, 11879, 62, 10116, 32, 4146, 17534, 796, 6407, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 10729, 26087, 2257, 1581, 11879, 62, 10116, 32, 4146, 17534, 796, 10352, 198, 220, 220, 220, 10729, 26087, 2257, 1581, 11879, 62, 52, 4535, 11731, 4146, 17534, 62, 2200, 36033, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 292, 262, 4600, 21078, 35350, 63, 8265, 318, 407, 6589, 13, 705, 198, 220, 220, 220, 220, 220, 220, 220, 705, 5492, 2721, 416, 2491, 4600, 29412, 18, 532, 76, 7347, 2721, 3200, 35350, 63, 2637, 8, 198, 16341, 35528, 355, 4808, 8056, 25, 198, 220, 220, 220, 10729, 26087, 2257, 1581, 11879, 62, 10116, 32, 4146, 17534, 796, 10352, 198, 220, 220, 220, 10729, 26087, 2257, 1581, 11879, 62, 52, 4535, 11731, 4146, 17534, 62, 2200, 36033, 796, 277, 6, 292, 262, 4600, 21078, 35350, 63, 8265, 714, 407, 307, 23224, 13, 1391, 62, 8056, 92, 6, 628, 198, 3398, 33676, 41796, 62, 33, 42827, 62, 11473, 22845, 4877, 796, 1391, 6, 65, 5758, 3256, 705, 46659, 3256, 705, 28663, 1505, 3256, 705, 14907, 3256, 705, 3575, 64, 3256, 705, 85, 452, 37566, 6, 92, 198, 40331, 15490, 1961, 62, 11473, 22845, 4877, 796, 32567, 2662, 41796, 62, 33, 42827, 62, 11473, 22845, 4877, 930, 1391, 6, 6495, 12792, 3256, 705, 49585, 2743, 6, 92, 628, 628, 628, 628, 628, 628, 628, 198, 4871, 4100, 1925, 5998, 34, 18055, 10707, 6012, 273, 7, 1925, 5998, 34, 18055, 10707, 6012, 273, 2599, 628, 220, 220, 220, 825, 42797, 7, 944, 11, 19365, 62, 8367, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2196, 796, 19365, 62, 8367, 58, 25, 18, 60, 198, 220, 220, 220, 220, 220, 220, 220, 38012, 5239, 796, 19365, 62, 8367, 58, 18, 47715, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2196, 6624, 275, 6, 85, 940, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 44453, 62, 9127, 82, 17816, 85, 940, 20520, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2116, 13557, 85, 940, 62, 2539, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 6404, 1362, 13, 43917, 10786, 66, 34574, 42797, 410, 940, 14746, 25, 645, 1994, 1043, 3256, 691, 62, 27078, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 628, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 12501, 6012, 62, 64, 274, 62, 66, 15630, 7, 66, 10803, 5239, 11, 2116, 13557, 85, 940, 62, 2539, 11, 2116, 13557, 6404, 1362, 8, 628, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 44453, 62, 9127, 82, 17816, 847, 20520, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 584, 21231, 274, 389, 3177, 705, 727, 1366, 6, 543, 547, 8574, 355, 8631, 5239, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 3740, 1378, 28663, 1505, 13, 2188, 519, 829, 1668, 13, 785, 14, 28663, 1505, 14, 10677, 28404, 14, 5420, 82, 14, 16600, 14, 12417, 14, 5589, 3906, 14, 418, 62, 29609, 14, 418, 62, 29609, 62, 20285, 13, 3020, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 19365, 62, 8367, 628, 198, 4871, 3964, 1925, 5998, 34, 18055, 10707, 6012, 273, 7, 1925, 5998, 34, 18055, 10707, 6012, 273, 2599, 628, 198, 4299, 4808, 2302, 974, 62, 49585, 2743, 62, 27916, 444, 7, 13317, 11, 49706, 2599, 198, 220, 220, 220, 611, 7034, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 18224, 10786, 49585, 2743, 857, 407, 1104, 16545, 11537, 198, 220, 220, 220, 611, 25064, 13, 24254, 14512, 705, 27455, 5404, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 7, 69, 6, 403, 15999, 3859, 25, 1391, 17597, 13, 24254, 92, 11537, 628, 220, 220, 220, 14746, 62, 6978, 796, 28686, 13, 6978, 13, 11201, 392, 7220, 10786, 93, 14, 23377, 14, 28937, 444, 14, 28937, 444, 13, 39491, 27916, 444, 11537, 628, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 4468, 576, 7, 27916, 444, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 10786, 51, 14992, 9233, 19751, 4067, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 14746, 62, 6978, 796, 28686, 13, 6978, 13, 11201, 392, 7220, 10786, 93, 14, 23377, 14, 4264, 50221, 14, 785, 13, 18040, 13, 50, 1878, 2743, 14, 6601, 14, 23377, 14, 28937, 444, 14, 28937, 444, 13, 39491, 27916, 444, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 28686, 13, 6978, 13, 4468, 576, 7, 27916, 444, 62, 6978, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 9220, 3673, 21077, 12331, 10786, 24089, 407, 1064, 1932, 2743, 14746, 6831, 11537, 628, 220, 220, 220, 351, 1280, 7, 27916, 444, 62, 6978, 11, 705, 26145, 11537, 355, 277, 25, 198, 220, 220, 220, 220, 220, 220, 220, 14746, 62, 7890, 796, 277, 13, 961, 3419, 628, 220, 220, 220, 17379, 796, 21136, 62, 49585, 2743, 62, 27916, 444, 7, 27916, 444, 62, 7890, 11, 49706, 28, 6404, 1362, 8, 198, 220, 220, 220, 49706, 13, 10951, 7, 69, 6, 11627, 20216, 1391, 11925, 7, 9491, 38165, 14746, 422, 1932, 2743, 11537, 198, 220, 220, 220, 1441, 17379, 628, 198, 4871, 23042, 263, 12331, 7, 16922, 2599, 198, 220, 220, 220, 1208, 628, 198, 4871, 6060, 46677, 25, 198, 220, 220, 220, 825, 11593, 15003, 834, 7, 944, 11, 1366, 11, 49706, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 7890, 796, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13, 66, 21471, 796, 657, 198, 220, 220, 220, 220, 220, 220, 220, 2116, 13557, 6404, 1362, 796, 49706, 628, 628, 628, 198, 4299, 21136, 62, 49585, 2743, 62, 27916, 444, 7, 7890, 11, 17379, 28, 14202, 11, 49706, 28, 35755, 3069, 519, 1362, 3419, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 31458, 25, 198, 220, 220, 220, 220, 220, 220, 220, 532, 3740, 1378, 12567, 13, 785, 14, 8019, 88, 282, 14, 28664, 687, 1381, 14, 2436, 672, 14, 12417, 14, 22897, 341, 14, 50, 1878, 2743, 4, 1238, 28937, 444, 13, 292, 979, 312, 420, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 428, 1366, 3568, 284, 307, 503, 286, 3128, 475, 262, 1593, 3354, 286, 262, 6831, 4645, 318, 262, 976, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 532, 612, 389, 257, 1178, 9881, 994, 290, 612, 543, 389, 26684, 1141, 32096, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 17379, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 17379, 796, 27431, 35, 5639, 18055, 47511, 3419, 198, 220, 220, 220, 2443, 62, 82, 4340, 11, 1767, 62, 9688, 796, 4808, 29572, 62, 49585, 2743, 62, 27916, 444, 62, 25677, 7, 7890, 11, 49706, 8, 198, 220, 220, 220, 279, 796, 6060, 46677, 7, 7890, 58, 2618, 62, 9688, 25, 4357, 49706, 8, 198, 220, 220, 220, 329, 2443, 62, 7857, 287, 2443, 62, 82, 4340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 29572, 62, 49585, 2743, 62, 27916, 444, 62, 7700, 7, 79, 13, 961, 62, 33661, 7, 7700, 62, 7857, 828, 17379, 11, 49706, 8, 198, 220, 220, 220, 279, 13, 48267, 62, 1462, 62, 437, 10786, 5898, 263, 11537, 198, 220, 220, 220, 1441, 17379, 628, 628, 198, 40331, 15490, 1961, 62, 20373, 49, 20754, 796, 4808, 19314, 9218, 1806, 13, 834, 30814, 834, 13, 13083, 3419, 628, 198, 4299, 4808, 1136, 62, 23289, 62, 41375, 62, 38986, 7, 24330, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3740, 1378, 28663, 1505, 13, 2188, 519, 829, 1668, 13, 785, 14, 28663, 1505, 14, 10677, 28404, 14, 5420, 82, 14, 16600, 14, 12417, 14, 8692, 14, 77, 844, 14, 24954, 70, 62, 22602, 13, 535, 198, 220, 220, 220, 3497, 36881, 31441, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2124, 67, 70, 62, 14421, 62, 41375, 796, 17365, 13, 1136, 10786, 55, 35, 38, 62, 34, 39237, 62, 30910, 42, 35222, 3256, 6045, 8, 198, 220, 220, 220, 11364, 62, 29891, 796, 17365, 13, 1136, 10786, 30910, 42, 35222, 62, 50, 47621, 3256, 6045, 8, 198, 220, 220, 220, 611, 2124, 67, 70, 62, 14421, 62, 41375, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2124, 67, 70, 62, 14421, 62, 41375, 796, 2124, 67, 70, 62, 14421, 62, 41375, 13, 35312, 7, 10354, 11537, 58, 15, 4083, 36311, 3419, 628, 220, 220, 220, 220, 220, 220, 220, 611, 2124, 67, 70, 62, 14421, 62, 41375, 6624, 705, 35955, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 11364, 62, 29891, 318, 407, 6045, 290, 705, 4593, 462, 12, 7207, 1891, 6, 287, 11364, 62, 29891, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 16630, 13649, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 4944, 9050, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2124, 67, 70, 62, 14421, 62, 41375, 6624, 705, 16630, 13649, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 16630, 13649, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2124, 67, 70, 62, 14421, 62, 41375, 6624, 705, 55, 12, 34, 21920, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 34, 1268, 45, 2390, 1340, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2124, 67, 70, 62, 14421, 62, 41375, 6624, 705, 42, 7206, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 42, 7206, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2124, 67, 70, 62, 14421, 62, 41375, 6624, 705, 47, 415, 37060, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 47, 1565, 10970, 1340, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 2124, 67, 70, 62, 14421, 62, 41375, 6624, 705, 55, 4851, 36, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 55, 4851, 36, 198, 220, 220, 220, 1288, 361, 11364, 62, 29891, 318, 407, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 11364, 62, 29891, 287, 19203, 9830, 3256, 705, 4593, 462, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 16630, 13649, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 74, 2934, 6, 287, 11364, 62, 29891, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 42, 7206, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 26152, 344, 6, 287, 11364, 62, 29891, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 55, 4851, 36, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 16630, 13649, 62, 30910, 42, 35222, 62, 50, 47621, 62, 2389, 6, 287, 17365, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 16630, 13649, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 705, 42, 7206, 62, 37, 9994, 62, 50, 47621, 6, 287, 17365, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 42, 7206, 198, 220, 220, 220, 1441, 4808, 19314, 36881, 31441, 13, 31858, 628, 198, 4299, 4808, 6679, 577, 62, 23289, 62, 2539, 1806, 7, 6404, 1362, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3740, 1378, 28663, 1505, 13, 2188, 519, 829, 1668, 13, 785, 14, 28663, 1505, 14, 10677, 28404, 14, 5420, 82, 14, 16600, 14, 12417, 14, 5589, 3906, 14, 418, 62, 29609, 14, 2539, 62, 35350, 62, 22602, 62, 23289, 13, 535, 198, 220, 220, 220, 9683, 7282, 437, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 11364, 62, 38986, 796, 4808, 1136, 62, 23289, 62, 41375, 62, 38986, 7, 418, 13, 268, 2268, 8, 198, 220, 220, 220, 49706, 13, 24442, 7, 69, 1549, 316, 11197, 11364, 2858, 25, 1391, 41375, 62, 38986, 13, 3672, 92, 11537, 198, 220, 220, 220, 611, 11364, 62, 38986, 6624, 4808, 19314, 36881, 31441, 13, 42, 7206, 25, 198, 220, 220, 220, 220, 220, 220, 220, 32639, 62, 2539, 1806, 796, 4808, 19314, 9218, 1806, 13, 42, 54, 1847, 28882, 198, 220, 220, 220, 1288, 361, 11364, 62, 38986, 6624, 4808, 19314, 36881, 31441, 13, 31858, 25, 198, 220, 220, 220, 220, 220, 220, 220, 32639, 62, 2539, 1806, 796, 4808, 19314, 9218, 1806, 13, 33, 1921, 18379, 13918, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 32639, 62, 2539, 1806, 796, 4808, 19314, 9218, 1806, 13, 16630, 13649, 20373, 49, 2751, 198, 220, 220, 220, 1441, 32639, 62, 2539, 1806, 628, 198, 4299, 4808, 1136, 62, 74, 44623, 62, 27349, 62, 44623, 7, 6404, 1362, 2599, 198, 220, 220, 220, 37227, 383, 1438, 286, 262, 13008, 973, 284, 3650, 3127, 21442, 13, 628, 220, 220, 220, 3740, 1378, 28663, 1505, 13, 2188, 519, 829, 1668, 13, 785, 14, 28663, 1505, 14, 10677, 28404, 14, 5420, 82, 14, 16600, 14, 12417, 14, 5589, 3906, 14, 418, 62, 29609, 14, 74, 44623, 62, 9945, 385, 13, 535, 198, 220, 220, 220, 509, 47152, 11012, 385, 3712, 26245, 47152, 198, 220, 220, 220, 543, 857, 257, 288, 10885, 869, 284, 262, 1708, 2163, 25, 198, 220, 220, 220, 3740, 1378, 15042, 13, 74, 2934, 13, 2398, 14, 19298, 19653, 14, 74, 44623, 14, 6494, 14, 4871, 42, 47152, 62, 16, 62, 16, 47152, 13, 6494, 198, 220, 220, 220, 37249, 3712, 26245, 47152, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4277, 62, 44623, 796, 705, 74, 67, 413, 282, 1616, 6, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 13834, 796, 8099, 268, 26933, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 9945, 385, 12, 21280, 3256, 705, 438, 29891, 3256, 705, 438, 4798, 12, 47768, 28, 18250, 1691, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 438, 16520, 28, 2398, 13, 74, 2934, 13, 74, 44623, 67, 20, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 31051, 18170, 14, 74, 44623, 67, 20, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2398, 13, 74, 2934, 13, 42, 47152, 13, 27349, 47152, 6, 198, 220, 220, 220, 220, 220, 220, 220, 16589, 14367, 448, 28, 7266, 14681, 13, 47, 4061, 36, 11, 336, 1082, 81, 28, 7266, 14681, 13, 39345, 33991, 8, 628, 220, 220, 220, 220, 220, 220, 220, 14367, 448, 11, 336, 1082, 81, 796, 13834, 13, 10709, 5344, 62, 273, 62, 12728, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 611, 13834, 13, 7783, 8189, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 47904, 284, 1100, 7311, 47152, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 4277, 62, 44623, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3127, 62, 44623, 796, 14367, 448, 13, 12501, 1098, 10786, 40477, 12, 23, 27691, 36311, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 24442, 7, 69, 6, 26245, 47152, 796, 45144, 27349, 62, 44623, 36786, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 3127, 62, 44623, 198, 220, 220, 220, 2845, 35528, 355, 304, 25, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 7, 69, 6, 1069, 4516, 981, 16727, 7311, 47152, 25, 1391, 68, 92, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4277, 62, 44623, 628, 628, 628, 628, 628, 198, 4299, 4808, 12501, 6012, 62, 28457, 62, 26059, 15042, 7, 66, 10803, 5239, 11, 49706, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 31458, 25, 198, 220, 220, 220, 220, 220, 220, 220, 532, 3740, 1378, 31628, 13, 40485, 13, 785, 14, 268, 12, 385, 14, 28457, 14, 5404, 2624, 14, 15042, 14, 26059, 15042, 14, 77, 69, 12, 26059, 15042, 12, 29609, 403, 35499, 7890, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 269, 19199, 13, 86, 600, 9497, 1330, 29652, 12532, 628, 220, 220, 220, 11876, 796, 269, 19199, 13, 17953, 62, 8841, 62, 22252, 7, 66, 10803, 5239, 8, 198, 220, 220, 220, 44812, 62, 259, 796, 42865, 62, 9148, 9864, 7, 310, 9497, 13, 7857, 1659, 7, 22252, 828, 11876, 8, 198, 220, 220, 220, 44812, 62, 448, 796, 42865, 62, 9148, 9864, 3419, 198, 220, 220, 220, 1005, 796, 269, 19199, 13, 7972, 297, 13, 29609, 2624, 13, 23919, 3118, 35499, 6601, 7, 198, 220, 220, 220, 220, 220, 220, 220, 269, 19199, 13, 1525, 5420, 7, 2436, 672, 62, 259, 828, 220, 1303, 279, 6601, 818, 198, 220, 220, 220, 220, 220, 220, 220, 6045, 11, 220, 1303, 279, 862, 89, 6601, 24564, 81, 25, 1692, 31744, 6764, 286, 279, 6601, 818, 198, 220, 220, 220, 220, 220, 220, 220, 6045, 11, 220, 1303, 279, 30719, 14539, 28338, 25, 8268, 30, 198, 220, 220, 220, 220, 220, 220, 220, 6045, 11, 220, 1303, 279, 85, 4965, 8520, 25, 1276, 307, 15697, 198, 220, 220, 220, 220, 220, 220, 220, 6045, 11, 220, 1303, 279, 24129, 457, 44909, 25, 1321, 546, 36454, 284, 3359, 198, 220, 220, 220, 220, 220, 220, 220, 657, 11, 220, 1303, 43756, 40053, 198, 220, 220, 220, 220, 220, 220, 220, 269, 19199, 13, 1525, 5420, 7, 2436, 672, 62, 448, 8, 220, 1303, 279, 6601, 7975, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 611, 407, 1005, 25, 198, 220, 220, 220, 220, 220, 220, 220, 49706, 13, 43917, 10786, 47904, 284, 42797, 351, 27704, 17614, 3256, 691, 62, 27078, 28, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6045, 628, 220, 220, 220, 1255, 796, 269, 19199, 13, 8841, 62, 265, 7, 2436, 672, 62, 448, 13, 40842, 6601, 11, 44812, 62, 448, 13, 21101, 6601, 8, 198, 220, 220, 220, 269, 19199, 13, 7972, 297, 13, 33885, 2624, 13, 14565, 11146, 7, 2436, 672, 62, 448, 13, 40842, 6601, 8, 198, 220, 220, 220, 1441, 1255, 628, 628, 628, 628 ]
2.44234
3,538
import os import pytest from hgtools import managers def touch(filename): with open(filename, 'a'): pass
[ 11748, 28686, 198, 198, 11748, 12972, 9288, 198, 198, 6738, 289, 13655, 10141, 1330, 11663, 628, 628, 628, 198, 4299, 3638, 7, 34345, 2599, 198, 220, 220, 220, 351, 1280, 7, 34345, 11, 705, 64, 6, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1208, 198 ]
2.659574
47
#coding:utf8 ''' Created on 2013-8-21 @author: lan (www.9miao.com) ''' import itertools import datetime def safeunicode(obj, encoding='utf-8'): r""" Converts any given object to unicode string. >>> safeunicode('hello') u'hello' >>> safeunicode(2) u'2' >>> safeunicode('\xe1\x88\xb4') u'\u1234' """ t = type(obj) if t is unicode: return obj elif t is str: return obj.decode(encoding) elif t in [int, float, bool]: return unicode(obj) elif hasattr(obj, '__unicode__') or isinstance(obj, unicode): return unicode(obj) else: return str(obj).decode(encoding) def safestr(obj, encoding='utf-8'): r""" Converts any given object to utf-8 encoded string. >>> safestr('hello') 'hello' >>> safestr(u'\u1234') '\xe1\x88\xb4' >>> safestr(2) '2' """ if isinstance(obj, unicode): return obj.encode(encoding) elif isinstance(obj, str): return obj elif hasattr(obj, 'next'): # iterator return itertools.imap(safestr, obj) else: return str(obj) def sqlify(obj): """ converts `obj` to its proper SQL version >>> sqlify(None) 'NULL' >>> sqlify(True) "'t'" >>> sqlify(3) '3' """ # because `1 == True and hash(1) == hash(True)` # we have to do this the hard way... if obj is None: return 'NULL' elif obj is True: return "'t'" elif obj is False: return "'f'" elif datetime and isinstance(obj, datetime.datetime): return repr(obj.isoformat()) else: if isinstance(obj, unicode): obj = obj.encode('utf8') return repr(obj) def sqllist(lst): """ Converts the arguments for use in something like a WHERE clause. >>> sqllist(['a', 'b']) 'a, b' >>> sqllist('a') 'a' >>> sqllist(u'abc') u'abc' """ if isinstance(lst, basestring): return lst else: return ', '.join(lst) def _sqllist(values): """ >>> _sqllist([1, 2, 3]) <sql: '(1, 2, 3)'> """ items = [] items.append('(') for i, v in enumerate(values): if i != 0: items.append(', ') items.append(sqlparam(v)) items.append(')') return SQLQuery(items) def sqlquote(a): """ Ensures `a` is quoted properly for use in a SQL query. >>> 'WHERE x = ' + sqlquote(True) + ' AND y = ' + sqlquote(3) <sql: "WHERE x = 't' AND y = 3"> >>> 'WHERE x = ' + sqlquote(True) + ' AND y IN ' + sqlquote([2, 3]) <sql: "WHERE x = 't' AND y IN (2, 3)"> """ if isinstance(a, list): return _sqllist(a) else: return sqlparam(a).sqlquery() def _interpolate(sformat): """ Takes a format string and returns a list of 2-tuples of the form (boolean, string) where boolean says whether string should be evaled or not. from <http://lfw.org/python/Itpl.py> (public domain, Ka-Ping Yee) """ from tokenize import tokenprog tokenprog = tokenprog namechars = "abcdefghijklmnopqrstuvwxyz" \ "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_"; chunks = [] pos = 0 while 1: dollar = sformat.find("$", pos) if dollar < 0: break nextchar = sformat[dollar + 1] if nextchar == "{": chunks.append((0, sformat[pos:dollar])) pos, level = dollar + 2, 1 while level: match, pos = matchorfail(sformat, pos) tstart, tend = match.regs[3] token = sformat[tstart:tend] if token == "{": level = level + 1 elif token == "}": level = level - 1 chunks.append((1, sformat[dollar + 2:pos - 1])) elif nextchar in namechars: chunks.append((0, sformat[pos:dollar])) match, pos = matchorfail(sformat, dollar + 1) while pos < len(sformat): if sformat[pos] == "." and \ pos + 1 < len(sformat) and sformat[pos + 1] in namechars: match, pos = matchorfail(sformat, pos + 1) elif sformat[pos] in "([": pos, level = pos + 1, 1 while level: match, pos = matchorfail(sformat, pos) tstart, tend = match.regs[3] token = sformat[tstart:tend] if token[0] in "([": level = level + 1 elif token[0] in ")]": level = level - 1 else: break chunks.append((1, sformat[dollar + 1:pos])) else: chunks.append((0, sformat[pos:dollar + 1])) pos = dollar + 1 + (nextchar == "$") if pos < len(sformat): chunks.append((0, sformat[pos:])) return chunks def sqlwhere(dictionary, grouping=' AND '): """ Converts a `dictionary` to an SQL WHERE clause `SQLQuery`. >>> sqlwhere({'cust_id': 2, 'order_id':3}) <sql: 'order_id = 3 AND cust_id = 2'> >>> sqlwhere({'cust_id': 2, 'order_id':3}, grouping=', ') <sql: 'order_id = 3, cust_id = 2'> >>> sqlwhere({'a': 'a', 'b': 'b'}).query() 'a = %s AND b = %s' """ return SQLQuery.join([k + ' = ' + sqlparam(v) for k, v in dictionary.items()], grouping) def reparam(string_, dictionary): """ Takes a string and a dictionary and interpolates the string using values from the dictionary. Returns an `SQLQuery` for the result. >>> reparam("s = $s", dict(s=True)) <sql: "s = 't'"> >>> reparam("s IN $s", dict(s=[1, 2])) <sql: 's IN (1, 2)'> """ dictionary = dictionary.copy() # eval mucks with it result = [] for live, chunk in _interpolate(string_): if live: v = eval(chunk, dictionary) result.append(sqlquote(v)) else: result.append(chunk) return SQLQuery.join(result, '') sqlparam = SQLParam sqlproducer = SQLProducer()
[ 2, 66, 7656, 25, 40477, 23, 198, 7061, 6, 198, 41972, 319, 2211, 12, 23, 12, 2481, 198, 198, 31, 9800, 25, 26992, 357, 2503, 13, 24, 76, 13481, 13, 785, 8, 198, 7061, 6, 198, 11748, 340, 861, 10141, 198, 11748, 4818, 8079, 628, 198, 4299, 3338, 46903, 1098, 7, 26801, 11, 21004, 11639, 40477, 12, 23, 6, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 1482, 24040, 597, 1813, 2134, 284, 28000, 1098, 4731, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 3338, 46903, 1098, 10786, 31373, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 334, 6, 31373, 6, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 3338, 46903, 1098, 7, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 334, 6, 17, 6, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 3338, 46903, 1098, 10786, 59, 27705, 16, 59, 87, 3459, 59, 30894, 19, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 334, 6, 59, 84, 1065, 2682, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 256, 796, 2099, 7, 26801, 8, 198, 220, 220, 220, 611, 256, 318, 28000, 1098, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 26181, 198, 220, 220, 220, 1288, 361, 256, 318, 965, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 26181, 13, 12501, 1098, 7, 12685, 7656, 8, 198, 220, 220, 220, 1288, 361, 256, 287, 685, 600, 11, 12178, 11, 20512, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 28000, 1098, 7, 26801, 8, 198, 220, 220, 220, 1288, 361, 468, 35226, 7, 26801, 11, 705, 834, 46903, 1098, 834, 11537, 393, 318, 39098, 7, 26801, 11, 28000, 1098, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 28000, 1098, 7, 26801, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 965, 7, 26801, 737, 12501, 1098, 7, 12685, 7656, 8, 198, 220, 220, 220, 220, 198, 4299, 33630, 81, 7, 26801, 11, 21004, 11639, 40477, 12, 23, 6, 2599, 198, 220, 220, 220, 374, 37811, 198, 220, 220, 220, 1482, 24040, 597, 1813, 2134, 284, 3384, 69, 12, 23, 30240, 4731, 13, 220, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 33630, 81, 10786, 31373, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31373, 6, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 33630, 81, 7, 84, 6, 59, 84, 1065, 2682, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 705, 59, 27705, 16, 59, 87, 3459, 59, 30894, 19, 6, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 33630, 81, 7, 17, 8, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 318, 39098, 7, 26801, 11, 28000, 1098, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 26181, 13, 268, 8189, 7, 12685, 7656, 8, 198, 220, 220, 220, 1288, 361, 318, 39098, 7, 26801, 11, 965, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 26181, 198, 220, 220, 220, 1288, 361, 468, 35226, 7, 26801, 11, 705, 19545, 6, 2599, 1303, 41313, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 340, 861, 10141, 13, 320, 499, 7, 49585, 395, 81, 11, 26181, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 965, 7, 26801, 8, 198, 220, 220, 220, 220, 198, 4299, 44161, 1958, 7, 26801, 2599, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 26161, 4600, 26801, 63, 284, 663, 1774, 16363, 2196, 628, 220, 220, 220, 220, 220, 220, 220, 13163, 44161, 1958, 7, 14202, 8, 198, 220, 220, 220, 220, 220, 220, 220, 705, 33991, 6, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 44161, 1958, 7, 17821, 8, 198, 220, 220, 220, 220, 220, 220, 220, 24018, 83, 29653, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 44161, 1958, 7, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 705, 18, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 780, 4600, 16, 6624, 6407, 290, 12234, 7, 16, 8, 6624, 12234, 7, 17821, 8, 63, 198, 220, 220, 220, 1303, 356, 423, 284, 466, 428, 262, 1327, 835, 986, 628, 220, 220, 220, 611, 26181, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 705, 33991, 6, 198, 220, 220, 220, 1288, 361, 26181, 318, 6407, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 24018, 83, 29653, 198, 220, 220, 220, 1288, 361, 26181, 318, 10352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 24018, 69, 29653, 198, 220, 220, 220, 1288, 361, 4818, 8079, 290, 318, 39098, 7, 26801, 11, 4818, 8079, 13, 19608, 8079, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 41575, 7, 26801, 13, 26786, 18982, 28955, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 26801, 11, 28000, 1098, 2599, 26181, 796, 26181, 13, 268, 8189, 10786, 40477, 23, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 41575, 7, 26801, 8, 198, 220, 220, 220, 220, 198, 4299, 19862, 297, 396, 7, 75, 301, 2599, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1482, 24040, 262, 7159, 329, 779, 287, 1223, 588, 257, 33411, 13444, 13, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 19862, 297, 396, 7, 17816, 64, 3256, 705, 65, 6, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 705, 64, 11, 275, 6, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 19862, 297, 396, 10786, 64, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 705, 64, 6, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 19862, 297, 396, 7, 84, 6, 39305, 11537, 198, 220, 220, 220, 220, 220, 220, 220, 334, 6, 39305, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 318, 39098, 7, 75, 301, 11, 1615, 395, 1806, 2599, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 300, 301, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 46083, 45302, 22179, 7, 75, 301, 8, 198, 220, 220, 220, 220, 198, 4299, 4808, 31166, 297, 396, 7, 27160, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 4808, 31166, 297, 396, 26933, 16, 11, 362, 11, 513, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1279, 25410, 25, 29513, 16, 11, 362, 11, 513, 33047, 29, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 3709, 796, 17635, 198, 220, 220, 220, 3709, 13, 33295, 10786, 10786, 8, 198, 220, 220, 220, 329, 1312, 11, 410, 287, 27056, 378, 7, 27160, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1312, 14512, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3709, 13, 33295, 7, 3256, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 3709, 13, 33295, 7, 25410, 17143, 7, 85, 4008, 198, 220, 220, 220, 3709, 13, 33295, 10786, 8, 11537, 198, 220, 220, 220, 1441, 16363, 20746, 7, 23814, 8, 198, 220, 220, 220, 220, 198, 4299, 44161, 22708, 7, 64, 2599, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 48221, 942, 4600, 64, 63, 318, 10947, 6105, 329, 779, 287, 257, 16363, 12405, 13, 628, 220, 220, 220, 220, 220, 220, 220, 13163, 705, 47357, 2124, 796, 705, 1343, 44161, 22708, 7, 17821, 8, 1343, 705, 5357, 331, 796, 705, 1343, 44161, 22708, 7, 18, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1279, 25410, 25, 366, 47357, 2124, 796, 705, 83, 6, 5357, 331, 796, 513, 5320, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 705, 47357, 2124, 796, 705, 1343, 44161, 22708, 7, 17821, 8, 1343, 705, 5357, 331, 3268, 705, 1343, 44161, 22708, 26933, 17, 11, 513, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 1279, 25410, 25, 366, 47357, 2124, 796, 705, 83, 6, 5357, 331, 3268, 357, 17, 11, 513, 8, 5320, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 611, 318, 39098, 7, 64, 11, 1351, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 4808, 31166, 297, 396, 7, 64, 8, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 44161, 17143, 7, 64, 737, 25410, 22766, 3419, 198, 220, 220, 220, 220, 198, 4299, 4808, 3849, 16104, 378, 7, 82, 18982, 2599, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 33687, 257, 5794, 4731, 290, 5860, 257, 1351, 286, 362, 12, 28047, 2374, 286, 262, 1296, 198, 220, 220, 220, 357, 2127, 21052, 11, 4731, 8, 810, 25131, 1139, 1771, 4731, 815, 307, 819, 3021, 198, 220, 220, 220, 393, 407, 13, 628, 220, 220, 220, 422, 1279, 4023, 1378, 1652, 86, 13, 2398, 14, 29412, 14, 1026, 489, 13, 9078, 29, 357, 11377, 7386, 11, 11611, 12, 49806, 575, 1453, 8, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 422, 11241, 1096, 1330, 11241, 1676, 70, 198, 220, 220, 220, 220, 198, 220, 220, 220, 11241, 1676, 70, 796, 11241, 1676, 70, 628, 220, 220, 220, 1438, 354, 945, 796, 366, 39305, 4299, 456, 2926, 41582, 10295, 404, 80, 81, 301, 14795, 86, 5431, 89, 1, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 366, 24694, 32988, 17511, 23852, 42, 31288, 45, 3185, 48, 49, 2257, 52, 30133, 34278, 57, 486, 1954, 2231, 3134, 4531, 62, 8172, 198, 220, 220, 220, 22716, 796, 17635, 198, 220, 220, 220, 1426, 796, 657, 628, 220, 220, 220, 981, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 8872, 796, 264, 18982, 13, 19796, 7203, 3, 1600, 1426, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 8872, 1279, 657, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 1306, 10641, 796, 264, 18982, 58, 22569, 1343, 352, 60, 628, 220, 220, 220, 220, 220, 220, 220, 611, 1306, 10641, 6624, 45144, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22716, 13, 33295, 19510, 15, 11, 264, 18982, 58, 1930, 25, 22569, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1426, 11, 1241, 796, 8872, 1343, 362, 11, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 1241, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2872, 11, 1426, 796, 2872, 24263, 603, 7, 82, 18982, 11, 1426, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 9688, 11, 4327, 796, 2872, 13, 2301, 82, 58, 18, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 796, 264, 18982, 58, 83, 9688, 25, 83, 437, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 11241, 6624, 45144, 1298, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1241, 796, 1241, 1343, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 11241, 6624, 366, 92, 1298, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1241, 796, 1241, 532, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22716, 13, 33295, 19510, 16, 11, 264, 18982, 58, 22569, 1343, 362, 25, 1930, 532, 352, 60, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 1306, 10641, 287, 1438, 354, 945, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22716, 13, 33295, 19510, 15, 11, 264, 18982, 58, 1930, 25, 22569, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2872, 11, 1426, 796, 2872, 24263, 603, 7, 82, 18982, 11, 8872, 1343, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 1426, 1279, 18896, 7, 82, 18982, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 264, 18982, 58, 1930, 60, 6624, 366, 526, 290, 3467, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1426, 1343, 352, 1279, 18896, 7, 82, 18982, 8, 290, 264, 18982, 58, 1930, 1343, 352, 60, 287, 1438, 354, 945, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2872, 11, 1426, 796, 2872, 24263, 603, 7, 82, 18982, 11, 1426, 1343, 352, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 264, 18982, 58, 1930, 60, 287, 366, 26933, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1426, 11, 1241, 796, 1426, 1343, 352, 11, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 981, 1241, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2872, 11, 1426, 796, 2872, 24263, 603, 7, 82, 18982, 11, 1426, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 256, 9688, 11, 4327, 796, 2872, 13, 2301, 82, 58, 18, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 11241, 796, 264, 18982, 58, 83, 9688, 25, 83, 437, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 11241, 58, 15, 60, 287, 366, 26933, 1298, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1241, 796, 1241, 1343, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 11241, 58, 15, 60, 287, 366, 15437, 1298, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1241, 796, 1241, 532, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2270, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22716, 13, 33295, 19510, 16, 11, 264, 18982, 58, 22569, 1343, 352, 25, 1930, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22716, 13, 33295, 19510, 15, 11, 264, 18982, 58, 1930, 25, 22569, 1343, 352, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1426, 796, 8872, 1343, 352, 1343, 357, 19545, 10641, 6624, 17971, 4943, 628, 220, 220, 220, 611, 1426, 1279, 18896, 7, 82, 18982, 2599, 220, 198, 220, 220, 220, 220, 220, 220, 220, 22716, 13, 33295, 19510, 15, 11, 264, 18982, 58, 1930, 47715, 4008, 198, 220, 220, 220, 1441, 22716, 198, 198, 4299, 44161, 3003, 7, 67, 14188, 11, 36115, 11639, 5357, 705, 2599, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1482, 24040, 257, 4600, 67, 14188, 63, 284, 281, 16363, 33411, 13444, 4600, 17861, 20746, 44646, 198, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 44161, 3003, 15090, 6, 66, 436, 62, 312, 10354, 362, 11, 705, 2875, 62, 312, 10354, 18, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 1279, 25410, 25, 705, 2875, 62, 312, 796, 513, 5357, 9378, 62, 312, 796, 362, 44167, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 44161, 3003, 15090, 6, 66, 436, 62, 312, 10354, 362, 11, 705, 2875, 62, 312, 10354, 18, 5512, 36115, 28, 3256, 705, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1279, 25410, 25, 705, 2875, 62, 312, 796, 513, 11, 9378, 62, 312, 796, 362, 44167, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 44161, 3003, 15090, 6, 64, 10354, 705, 64, 3256, 705, 65, 10354, 705, 65, 6, 92, 737, 22766, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 705, 64, 796, 4064, 82, 5357, 275, 796, 4064, 82, 6, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1441, 16363, 20746, 13, 22179, 26933, 74, 1343, 705, 796, 705, 1343, 44161, 17143, 7, 85, 8, 329, 479, 11, 410, 287, 22155, 13, 23814, 3419, 4357, 36115, 8, 198, 220, 220, 220, 220, 198, 4299, 1128, 41158, 7, 8841, 62, 11, 22155, 2599, 220, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 33687, 257, 4731, 290, 257, 22155, 290, 39555, 689, 262, 4731, 198, 220, 220, 220, 1262, 3815, 422, 262, 22155, 13, 16409, 281, 4600, 17861, 20746, 63, 329, 262, 1255, 13, 628, 220, 220, 220, 220, 220, 220, 220, 13163, 1128, 41158, 7203, 82, 796, 720, 82, 1600, 8633, 7, 82, 28, 17821, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1279, 25410, 25, 366, 82, 796, 705, 83, 6, 5320, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1128, 41158, 7203, 82, 3268, 720, 82, 1600, 8633, 7, 82, 41888, 16, 11, 362, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1279, 25410, 25, 705, 82, 3268, 357, 16, 11, 362, 33047, 29, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 22155, 796, 22155, 13, 30073, 3419, 1303, 5418, 285, 6238, 351, 340, 198, 220, 220, 220, 1255, 796, 17635, 198, 220, 220, 220, 329, 2107, 11, 16058, 287, 4808, 3849, 16104, 378, 7, 8841, 62, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 611, 2107, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 410, 796, 5418, 7, 354, 2954, 11, 22155, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 33295, 7, 25410, 22708, 7, 85, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 33295, 7, 354, 2954, 8, 198, 220, 220, 220, 1441, 16363, 20746, 13, 22179, 7, 20274, 11, 10148, 8, 198, 198, 25410, 17143, 796, 220, 16363, 22973, 198, 220, 220, 220, 220, 198, 25410, 18230, 2189, 796, 16363, 11547, 2189, 3419, 628, 198, 220, 220, 220, 220 ]
1.964053
3,227
""" Django settings for dddppp project. Generated by 'django-admin startproject' using Django 1.8.2. For more information on this file, see https://docs.djangoproject.com/en/1.8/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.8/ref/settings/ """ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) import os import pkg_resources import pwd PROJECT_NAME = 'dddppp' # Enforce a valid POSIX environment # Get missing environment variables via call to pwd.getpwuid(...) _PW_CACHE = None _PW_MAP = { 'LOGNAME': 'pw_name', 'USER': 'pw_name', 'USERNAME': 'pw_name', 'UID': 'pw_uid', 'GID': 'pw_gid', 'HOME': 'pw_dir', 'SHELL': 'pw_shell', } for _missing_env in set(_PW_MAP).difference(os.environ): if _PW_CACHE is None: _PW_CACHE = pwd.getpwuid(os.getuid()) os.environ[_missing_env] = str(getattr(_PW_CACHE, _PW_MAP[_missing_env])) del _PW_CACHE, _PW_MAP, pwd BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'nfd_lvt=&k#h#$a^_l09j#5%s=mg+0aw=@t84ry$&rps43c33+' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = [ 'localhost', ] # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'dddp', 'dddp.server', 'dddp.accounts', 'dddppp.slides', ] for (requirement, pth) in [ ('django-extensions', 'django_extensions'), ]: try: pkg_resources.get_distribution(requirement) except ( pkg_resources.DistributionNotFound, pkg_resources.VersionConflict, ): continue INSTALLED_APPS.append(pth) MIDDLEWARE_CLASSES = [ 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', #'django.middleware.security.SecurityMiddleware', ] ROOT_URLCONF = 'dddppp.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'dddppp.wsgi.application' # Database # https://docs.djangoproject.com/en/1.8/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': os.environ.get('PGDATABASE', PROJECT_NAME), 'USER': os.environ.get('PGUSER', os.environ['LOGNAME']), 'PASSWORD': os.environ.get('DJANGO_DATABASE_PASSWORD', ''), 'HOST': os.environ.get('PGHOST', ''), 'PORT': os.environ.get('PGPORT', ''), } } # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/ LANGUAGE_CODE = 'en-au' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.8/howto/static-files/ STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'static') STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage' # django-secure # see: https://github.com/carljm/django-secure/ for more options SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') #SECURE_SSL_REDIRECT = True SECURE_CONTENT_TYPE_NOSNIFF = True SECURE_FRAME_DENY = True SESSION_COOKIE_SECURE = True SESSION_COOKIE_HTTPONLY = True DDDPPP_CONTENT_TYPES = [] PROJ_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
[ 37811, 198, 35, 73, 14208, 6460, 329, 288, 1860, 381, 79, 1628, 13, 198, 198, 8645, 515, 416, 705, 28241, 14208, 12, 28482, 923, 16302, 6, 1262, 37770, 352, 13, 23, 13, 17, 13, 198, 198, 1890, 517, 1321, 319, 428, 2393, 11, 766, 198, 5450, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 16, 13, 23, 14, 4852, 873, 14, 33692, 14, 198, 198, 1890, 262, 1336, 1351, 286, 6460, 290, 511, 3815, 11, 766, 198, 5450, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 16, 13, 23, 14, 5420, 14, 33692, 14, 198, 37811, 198, 198, 2, 10934, 13532, 2641, 262, 1628, 588, 428, 25, 28686, 13, 6978, 13, 22179, 7, 33, 11159, 62, 34720, 11, 2644, 8, 198, 11748, 28686, 198, 11748, 279, 10025, 62, 37540, 198, 11748, 279, 16993, 198, 198, 31190, 23680, 62, 20608, 796, 705, 1860, 67, 381, 79, 6, 198, 198, 2, 2039, 3174, 257, 4938, 28069, 10426, 2858, 198, 2, 3497, 4814, 2858, 9633, 2884, 869, 284, 279, 16993, 13, 1136, 79, 86, 27112, 7, 23029, 198, 62, 47, 54, 62, 34, 2246, 13909, 796, 6045, 198, 62, 47, 54, 62, 33767, 796, 1391, 198, 220, 220, 220, 705, 25294, 20608, 10354, 705, 79, 86, 62, 3672, 3256, 198, 220, 220, 220, 705, 29904, 10354, 705, 79, 86, 62, 3672, 3256, 198, 220, 220, 220, 705, 29904, 20608, 10354, 705, 79, 86, 62, 3672, 3256, 198, 220, 220, 220, 705, 27586, 10354, 705, 79, 86, 62, 27112, 3256, 198, 220, 220, 220, 705, 38, 2389, 10354, 705, 79, 86, 62, 70, 312, 3256, 198, 220, 220, 220, 705, 39069, 10354, 705, 79, 86, 62, 15908, 3256, 198, 220, 220, 220, 705, 9693, 23304, 10354, 705, 79, 86, 62, 29149, 3256, 198, 92, 198, 1640, 4808, 45688, 62, 24330, 287, 900, 28264, 47, 54, 62, 33767, 737, 26069, 1945, 7, 418, 13, 268, 2268, 2599, 198, 220, 220, 220, 611, 4808, 47, 54, 62, 34, 2246, 13909, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4808, 47, 54, 62, 34, 2246, 13909, 796, 279, 16993, 13, 1136, 79, 86, 27112, 7, 418, 13, 1136, 27112, 28955, 198, 220, 220, 220, 28686, 13, 268, 2268, 29795, 45688, 62, 24330, 60, 796, 965, 7, 1136, 35226, 28264, 47, 54, 62, 34, 2246, 13909, 11, 4808, 47, 54, 62, 33767, 29795, 45688, 62, 24330, 60, 4008, 198, 12381, 4808, 47, 54, 62, 34, 2246, 13909, 11, 4808, 47, 54, 62, 33767, 11, 279, 16993, 198, 198, 33, 11159, 62, 34720, 796, 28686, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 15908, 3672, 7, 418, 13, 6978, 13, 397, 2777, 776, 7, 834, 7753, 834, 22305, 628, 198, 2, 12029, 12, 9688, 2478, 6460, 532, 48092, 4674, 329, 3227, 198, 2, 4091, 3740, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 16, 13, 23, 14, 4919, 1462, 14, 2934, 1420, 434, 14, 9122, 4868, 14, 198, 198, 2, 10729, 4261, 9050, 39410, 25, 1394, 262, 3200, 1994, 973, 287, 3227, 3200, 0, 198, 23683, 26087, 62, 20373, 796, 705, 77, 16344, 62, 6780, 83, 28, 5, 74, 2, 71, 29953, 64, 61, 62, 75, 2931, 73, 2, 20, 4, 82, 28, 11296, 10, 15, 707, 28, 31, 83, 5705, 563, 3, 5, 81, 862, 3559, 66, 2091, 10, 6, 198, 198, 2, 10729, 4261, 9050, 39410, 25, 836, 470, 1057, 351, 14257, 2900, 319, 287, 3227, 0, 198, 30531, 796, 6407, 198, 198, 7036, 3913, 1961, 62, 39, 10892, 50, 796, 685, 198, 220, 220, 220, 705, 36750, 3256, 198, 60, 628, 198, 2, 15678, 6770, 198, 198, 38604, 7036, 1961, 62, 2969, 3705, 796, 685, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 28482, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 11299, 19199, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 82, 6202, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 37348, 1095, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 12708, 16624, 3256, 198, 220, 220, 220, 705, 1860, 26059, 3256, 198, 220, 220, 220, 705, 1860, 26059, 13, 15388, 3256, 198, 220, 220, 220, 705, 1860, 26059, 13, 23317, 82, 3256, 198, 220, 220, 220, 705, 1860, 67, 381, 79, 13, 6649, 1460, 3256, 198, 60, 198, 198, 1640, 357, 8897, 24615, 11, 279, 400, 8, 287, 685, 198, 220, 220, 220, 19203, 28241, 14208, 12, 2302, 5736, 3256, 705, 28241, 14208, 62, 2302, 5736, 33809, 198, 5974, 198, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 279, 10025, 62, 37540, 13, 1136, 62, 17080, 3890, 7, 8897, 24615, 8, 198, 220, 220, 220, 2845, 357, 198, 220, 220, 220, 220, 220, 220, 220, 279, 10025, 62, 37540, 13, 20344, 3890, 3673, 21077, 11, 198, 220, 220, 220, 220, 220, 220, 220, 279, 10025, 62, 37540, 13, 14815, 18546, 13758, 11, 198, 220, 220, 220, 15179, 198, 220, 220, 220, 220, 220, 220, 220, 2555, 198, 220, 220, 220, 40589, 7036, 1961, 62, 2969, 3705, 13, 33295, 7, 79, 400, 8, 198, 198, 44, 2389, 35, 2538, 33746, 62, 31631, 1546, 796, 685, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 82, 6202, 13, 27171, 1574, 13, 36044, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 27171, 1574, 13, 11321, 13, 17227, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 27171, 1574, 13, 6359, 41871, 13, 34, 27891, 69, 7680, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 27171, 1574, 13, 47649, 3299, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 27171, 1574, 13, 36044, 47649, 3299, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 37348, 1095, 13, 27171, 1574, 13, 12837, 34621, 1574, 3256, 198, 220, 220, 220, 705, 28241, 14208, 13, 27171, 1574, 13, 12976, 73, 5430, 13, 55, 19778, 29046, 34621, 1574, 3256, 198, 220, 220, 220, 1303, 6, 28241, 14208, 13, 27171, 1574, 13, 12961, 13, 24074, 34621, 1574, 3256, 198, 60, 198, 198, 13252, 2394, 62, 4261, 5639, 1340, 37, 796, 705, 1860, 67, 381, 79, 13, 6371, 82, 6, 198, 198, 51, 3620, 6489, 29462, 796, 685, 198, 220, 220, 220, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 31098, 10619, 10354, 705, 28241, 14208, 13, 28243, 13, 1891, 2412, 13, 28241, 14208, 13, 35, 73, 14208, 12966, 17041, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 34720, 50, 10354, 685, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 705, 24805, 62, 34720, 50, 10354, 6407, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 3185, 51, 11053, 10354, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 22866, 62, 14681, 669, 10354, 685, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28241, 14208, 13, 28243, 13, 22866, 62, 14681, 669, 13, 24442, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28241, 14208, 13, 28243, 13, 22866, 62, 14681, 669, 13, 25927, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 18439, 13, 22866, 62, 14681, 669, 13, 18439, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 28241, 14208, 13, 3642, 822, 13, 37348, 1095, 13, 22866, 62, 14681, 669, 13, 37348, 1095, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 16589, 198, 220, 220, 220, 220, 220, 220, 220, 8964, 198, 220, 220, 220, 8964, 198, 60, 198, 198, 19416, 18878, 62, 2969, 31484, 6234, 796, 705, 1860, 67, 381, 79, 13, 18504, 12397, 13, 31438, 6, 628, 198, 2, 24047, 198, 2, 3740, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 16, 13, 23, 14, 5420, 14, 33692, 31113, 19608, 18826, 198, 198, 35, 1404, 6242, 1921, 1546, 796, 1391, 198, 220, 220, 220, 705, 12286, 10354, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 26808, 8881, 10354, 705, 28241, 14208, 13, 9945, 13, 1891, 2412, 13, 7353, 34239, 13976, 62, 13764, 22163, 70, 17, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 705, 20608, 10354, 28686, 13, 268, 2268, 13, 1136, 10786, 6968, 35, 1404, 6242, 11159, 3256, 21965, 23680, 62, 20608, 828, 198, 220, 220, 220, 220, 220, 220, 220, 705, 29904, 10354, 28686, 13, 268, 2268, 13, 1136, 10786, 6968, 29904, 3256, 28686, 13, 268, 2268, 17816, 25294, 20608, 20520, 828, 198, 220, 220, 220, 220, 220, 220, 220, 705, 47924, 54, 12532, 10354, 28686, 13, 268, 2268, 13, 1136, 10786, 35028, 1565, 11230, 62, 35, 1404, 6242, 11159, 62, 47924, 54, 12532, 3256, 10148, 828, 198, 220, 220, 220, 220, 220, 220, 220, 705, 39, 10892, 10354, 28686, 13, 268, 2268, 13, 1136, 10786, 6968, 39, 10892, 3256, 10148, 828, 198, 220, 220, 220, 220, 220, 220, 220, 705, 15490, 10354, 28686, 13, 268, 2268, 13, 1136, 10786, 6968, 15490, 3256, 10148, 828, 198, 220, 220, 220, 1782, 198, 92, 628, 198, 2, 4037, 1634, 198, 2, 3740, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 16, 13, 23, 14, 4852, 873, 14, 72, 1507, 77, 14, 198, 198, 43, 15567, 52, 11879, 62, 34, 16820, 796, 705, 268, 12, 559, 6, 198, 198, 34694, 62, 57, 11651, 796, 705, 17429, 6, 198, 198, 19108, 62, 40, 1507, 45, 796, 6407, 198, 198, 19108, 62, 43, 940, 45, 796, 6407, 198, 198, 19108, 62, 51, 57, 796, 6407, 628, 198, 2, 36125, 3696, 357, 49155, 11, 11933, 11, 5382, 8, 198, 2, 3740, 1378, 31628, 13, 28241, 648, 404, 305, 752, 13, 785, 14, 268, 14, 16, 13, 23, 14, 4919, 1462, 14, 12708, 12, 16624, 14, 198, 198, 35744, 2149, 62, 21886, 796, 31051, 12708, 14, 6, 198, 35744, 2149, 62, 13252, 2394, 796, 28686, 13, 6978, 13, 22179, 7, 33, 11159, 62, 34720, 11, 705, 12708, 11537, 198, 198, 35744, 2149, 46700, 1546, 62, 2257, 1581, 11879, 796, 705, 1929, 270, 23397, 786, 13, 28241, 14208, 13, 38, 13344, 5124, 8409, 45442, 25876, 31425, 6, 198, 198, 2, 42625, 14208, 12, 22390, 198, 2, 766, 25, 3740, 1378, 12567, 13, 785, 14, 66, 7063, 73, 76, 14, 28241, 14208, 12, 22390, 14, 329, 517, 3689, 198, 23683, 11335, 62, 31190, 34278, 62, 31127, 62, 37682, 1137, 796, 19203, 40717, 62, 55, 62, 13775, 39743, 1961, 62, 4805, 26631, 3256, 705, 5450, 11537, 198, 2, 23683, 11335, 62, 31127, 62, 22083, 40, 23988, 796, 6407, 198, 23683, 11335, 62, 37815, 3525, 62, 25216, 62, 45, 2640, 45, 29267, 796, 6407, 198, 23683, 11335, 62, 10913, 10067, 62, 41819, 56, 796, 6407, 198, 50, 47621, 62, 34, 15308, 10008, 62, 23683, 11335, 796, 6407, 198, 50, 47621, 62, 34, 15308, 10008, 62, 40717, 1340, 11319, 796, 6407, 198, 198, 16458, 6322, 10246, 62, 37815, 3525, 62, 9936, 47, 1546, 796, 17635, 198, 31190, 41, 62, 13252, 2394, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 418, 13, 6978, 13, 22179, 7, 418, 13, 6978, 13, 15908, 3672, 7, 834, 7753, 834, 828, 705, 492, 6, 4008, 198 ]
2.267116
1,928
#!/usr/bin/env python from setuptools import setup import os __doc__ = """ Command line tool and library wrappers around iwlist and /etc/network/interfaces. """ install_requires = [ 'setuptools', 'pbkdf2', ] try: import argparse except: install_requires.append('argparse') version = '1.0.0' setup( name='wifi', version=version, author='Rocky Meza, Gavin Wahl', author_email='[email protected]', description=__doc__, long_description=read('README.rst'), packages=['wifi'], scripts=['bin/wifi'], test_suite='tests', platforms=["Debian"], license='BSD', install_requires=install_requires, classifiers=[ "License :: OSI Approved :: BSD License", "Topic :: System :: Networking", "Operating System :: POSIX :: Linux", "Environment :: Console", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", ], data_files=[ ('/etc/bash_completion.d/', ['extras/wifi-completion.bash']), ] )
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 6738, 900, 37623, 10141, 1330, 9058, 198, 11748, 28686, 198, 198, 834, 15390, 834, 796, 37227, 198, 21575, 1627, 2891, 290, 5888, 7917, 11799, 1088, 1312, 86, 4868, 290, 198, 14, 14784, 14, 27349, 14, 3849, 32186, 13, 198, 37811, 628, 198, 198, 17350, 62, 47911, 796, 685, 198, 220, 220, 220, 705, 2617, 37623, 10141, 3256, 198, 220, 220, 220, 705, 40842, 74, 7568, 17, 3256, 198, 60, 198, 28311, 25, 198, 220, 220, 220, 1330, 1822, 29572, 198, 16341, 25, 198, 220, 220, 220, 2721, 62, 47911, 13, 33295, 10786, 853, 29572, 11537, 198, 198, 9641, 796, 705, 16, 13, 15, 13, 15, 6, 198, 198, 40406, 7, 198, 220, 220, 220, 1438, 11639, 86, 22238, 3256, 198, 220, 220, 220, 2196, 28, 9641, 11, 198, 220, 220, 220, 1772, 11639, 19665, 88, 2185, 4496, 11, 30857, 370, 15668, 3256, 198, 220, 220, 220, 1772, 62, 12888, 11639, 10823, 88, 1326, 4496, 31, 14816, 13, 785, 3256, 198, 220, 220, 220, 6764, 28, 834, 15390, 834, 11, 198, 220, 220, 220, 890, 62, 11213, 28, 961, 10786, 15675, 11682, 13, 81, 301, 33809, 198, 220, 220, 220, 10392, 28, 17816, 86, 22238, 6, 4357, 198, 220, 220, 220, 14750, 28, 17816, 8800, 14, 86, 22238, 6, 4357, 198, 220, 220, 220, 1332, 62, 2385, 578, 11639, 41989, 3256, 198, 220, 220, 220, 9554, 28, 14692, 16587, 666, 33116, 198, 220, 220, 220, 5964, 11639, 21800, 3256, 198, 220, 220, 220, 2721, 62, 47911, 28, 17350, 62, 47911, 11, 198, 220, 220, 220, 1398, 13350, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 366, 34156, 7904, 7294, 40, 20010, 1079, 7904, 347, 10305, 13789, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 33221, 7904, 4482, 7904, 7311, 278, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 18843, 803, 4482, 7904, 28069, 10426, 7904, 7020, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 31441, 7904, 24371, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 362, 13, 21, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 362, 13, 22, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 366, 15167, 2229, 15417, 7904, 11361, 7904, 513, 13, 18, 1600, 198, 220, 220, 220, 16589, 198, 220, 220, 220, 1366, 62, 16624, 41888, 198, 220, 220, 220, 220, 220, 220, 220, 19203, 14, 14784, 14, 41757, 62, 785, 24547, 13, 67, 14, 3256, 37250, 2302, 8847, 14, 86, 22238, 12, 785, 24547, 13, 41757, 20520, 828, 198, 220, 220, 220, 2361, 198, 8, 198 ]
2.479303
459
# Copyright 2019 Province of British Columbia # # Licensed under the Apache License, Version 2.0 (the 'License'); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an 'AS IS' BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """API endpoints for managing an Org resource.""" from flask import request from flask_restplus import Namespace, Resource, cors from auth_api import status as http_status from auth_api.exceptions import BusinessException from auth_api.jwt_wrapper import JWTWrapper from auth_api.schemas import ProductSubscriptionSchema from auth_api.schemas import utils as schema_utils from auth_api.services import Product as ProductService from auth_api.tracer import Tracer from auth_api.utils.roles import Role from auth_api.utils.util import cors_preflight API = Namespace('products', description='Endpoints for products management') TRACER = Tracer.get_instance() _JWT = JWTWrapper.get_instance()
[ 2, 15069, 220, 13130, 22783, 286, 3517, 9309, 198, 2, 198, 2, 49962, 739, 262, 24843, 13789, 11, 10628, 362, 13, 15, 357, 1169, 705, 34156, 24036, 198, 2, 345, 743, 407, 779, 428, 2393, 2845, 287, 11846, 351, 262, 13789, 13, 198, 2, 921, 743, 7330, 257, 4866, 286, 262, 13789, 379, 198, 2, 198, 2, 220, 220, 220, 220, 2638, 1378, 2503, 13, 43073, 13, 2398, 14, 677, 4541, 14, 43, 2149, 24290, 12, 17, 13, 15, 198, 2, 198, 2, 17486, 2672, 416, 9723, 1099, 393, 4987, 284, 287, 3597, 11, 3788, 198, 2, 9387, 739, 262, 13789, 318, 9387, 319, 281, 705, 1921, 3180, 6, 29809, 1797, 11, 198, 2, 42881, 34764, 11015, 6375, 7102, 49828, 11053, 3963, 15529, 509, 12115, 11, 2035, 4911, 393, 17142, 13, 198, 2, 4091, 262, 13789, 329, 262, 2176, 3303, 15030, 21627, 290, 198, 2, 11247, 739, 262, 13789, 13, 198, 37811, 17614, 886, 13033, 329, 11149, 281, 1471, 70, 8271, 526, 15931, 198, 198, 6738, 42903, 1330, 2581, 198, 6738, 42903, 62, 2118, 9541, 1330, 28531, 10223, 11, 20857, 11, 269, 669, 198, 198, 6738, 6284, 62, 15042, 1330, 3722, 355, 2638, 62, 13376, 198, 6738, 6284, 62, 15042, 13, 1069, 11755, 1330, 7320, 16922, 198, 6738, 6284, 62, 15042, 13, 73, 46569, 62, 48553, 1330, 449, 54, 34551, 430, 2848, 198, 6738, 6284, 62, 15042, 13, 1416, 4411, 292, 1330, 8721, 7004, 33584, 27054, 2611, 198, 6738, 6284, 62, 15042, 13, 1416, 4411, 292, 1330, 3384, 4487, 355, 32815, 62, 26791, 198, 6738, 6284, 62, 15042, 13, 30416, 1330, 8721, 355, 8721, 16177, 198, 6738, 6284, 62, 15042, 13, 2213, 11736, 1330, 833, 11736, 198, 6738, 6284, 62, 15042, 13, 26791, 13, 305, 829, 1330, 20934, 198, 6738, 6284, 62, 15042, 13, 26791, 13, 22602, 1330, 269, 669, 62, 3866, 22560, 628, 198, 17614, 796, 28531, 10223, 10786, 29498, 3256, 6764, 11639, 12915, 13033, 329, 3186, 4542, 11537, 198, 5446, 2246, 1137, 796, 833, 11736, 13, 1136, 62, 39098, 3419, 198, 62, 41, 39386, 796, 449, 54, 34551, 430, 2848, 13, 1136, 62, 39098, 3419, 628 ]
3.698276
348
import logging from collections import Counter from django.core.management.base import BaseCommand from django.db.models import Q from TWLight.applications.models import Application from TWLight.resources.models import Partner from TWLight.applications.signals import Reminder from TWLight.users.models import Editor logger = logging.getLogger(__name__)
[ 11748, 18931, 198, 6738, 17268, 1330, 15034, 198, 6738, 42625, 14208, 13, 7295, 13, 27604, 13, 8692, 1330, 7308, 21575, 198, 6738, 42625, 14208, 13, 9945, 13, 27530, 1330, 1195, 198, 198, 6738, 17306, 15047, 13, 1324, 677, 602, 13, 27530, 1330, 15678, 198, 6738, 17306, 15047, 13, 37540, 13, 27530, 1330, 35532, 198, 6738, 17306, 15047, 13, 1324, 677, 602, 13, 12683, 874, 1330, 3982, 5540, 198, 6738, 17306, 15047, 13, 18417, 13, 27530, 1330, 12058, 198, 198, 6404, 1362, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628 ]
3.83871
93
# pvtrace is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # pvtrace is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. import numpy as np from external.transformations import translation_matrix, rotation_matrix import external.transformations as tf from Trace import Photon from Geometry import Box, Cylinder, FinitePlane, transform_point, transform_direction, rotation_matrix_from_vector_alignment, norm from Materials import Spectrum
[ 2, 279, 85, 40546, 318, 1479, 3788, 26, 345, 460, 17678, 4163, 340, 290, 14, 273, 13096, 198, 2, 340, 739, 262, 2846, 286, 262, 22961, 3611, 5094, 13789, 355, 3199, 416, 198, 2, 262, 3232, 10442, 5693, 26, 2035, 2196, 513, 286, 262, 13789, 11, 393, 198, 2, 357, 265, 534, 3038, 8, 597, 1568, 2196, 13, 198, 2, 220, 198, 2, 279, 85, 40546, 318, 9387, 287, 262, 2911, 326, 340, 481, 307, 4465, 11, 198, 2, 475, 42881, 15529, 34764, 56, 26, 1231, 772, 262, 17142, 18215, 286, 198, 2, 34482, 3398, 1565, 5603, 25382, 393, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 13, 220, 4091, 262, 198, 2, 22961, 3611, 5094, 13789, 329, 517, 3307, 13, 198, 2, 220, 198, 2, 921, 815, 423, 2722, 257, 4866, 286, 262, 22961, 3611, 5094, 13789, 198, 2, 1863, 351, 428, 1430, 13, 220, 1002, 407, 11, 766, 1279, 4023, 1378, 2503, 13, 41791, 13, 2398, 14, 677, 4541, 15913, 13, 198, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 7097, 13, 35636, 602, 1330, 11059, 62, 6759, 8609, 11, 13179, 62, 6759, 8609, 198, 11748, 7097, 13, 35636, 602, 355, 48700, 198, 6738, 34912, 1330, 5919, 261, 198, 6738, 2269, 15748, 1330, 8315, 11, 327, 2645, 5540, 11, 4463, 578, 3646, 1531, 11, 6121, 62, 4122, 11, 6121, 62, 37295, 11, 13179, 62, 6759, 8609, 62, 6738, 62, 31364, 62, 282, 16747, 11, 2593, 198, 6738, 24310, 1330, 27217, 628, 220, 220, 220, 220, 198 ]
3.815261
249
"""Embedded DSL for assembling logic circuits. Embedded domain-specific combinator library for assembling abstract definitions of logic circuits and synthesizing circuits from those definitions. """ from __future__ import annotations from typing import Sequence import doctest from parts import parts from circuit import op, gate, circuit, signature def not_(self): """ >>> results = [] >>> for x in [0, 1]: ... bit.circuit(circuit()) ... b = output(input(x).not_()) ... results.append(int(b) == bit.circuit().evaluate([x])[0]) >>> all(results) True """ return bit.operation(op.not_, self) def __invert__(self): """ >>> results = [] >>> for x in [0, 1]: ... bit.circuit(circuit()) ... b = output(~input(x)) ... results.append(int(b) == bit.circuit().evaluate([x])[0]) >>> all(results) True """ return bit.operation(op.not_, self) def __rsub__(self, other): """ >>> results = [] >>> for x in [0, 1]: ... bit.circuit(circuit()) ... b = output(1 - input(x)) ... results.append(int(b) == bit.circuit().evaluate([x])[0]) >>> all(results) True >>> bit.circuit(circuit()) >>> 2 - input(0) Traceback (most recent call last): ... ValueError: can only subtract a bit from the integer 1 """ if other == 1: return bit.operation(op.not_, self) raise ValueError('can only subtract a bit from the integer 1') def and_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).and_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.and_, self, other) def __and__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) & input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.and_, self, other) def __rand__(self, other): """ >>> bit.circuit(circuit()) >>> b = 0 & constant(1) >>> b.value 0 """ return self & (constant(other) if isinstance(other, int) else other) def nimp(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).nimp(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nimp_, self, other) def nimp_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).nimp_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nimp_, self, other) def __gt__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) > input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return self.nimp(other) def nif(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).nif(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nif_, self, other) def nif_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).nif_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nif_, self, other) def __lt__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) < input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return self.nif(other) def xor(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).xor(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.xor_, self, other) def xor_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).xor_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.xor_, self, other) def __xor__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) ^ input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.xor_, self, other) def __rxor__(self, other): """ >>> bit.circuit(circuit()) >>> b = 1 ^ constant(0) >>> b.value 1 """ return self ^ (constant(other) if isinstance(other, int) else other) def or_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).or_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.or_, self, other) def __or__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) | input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.or_, self, other) def __ror__(self, other): """ >>> bit.circuit(circuit()) >>> b = 1 | constant(0) >>> b.value 1 """ return self | (constant(other) if isinstance(other, int) else other) def nor(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).nor(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nor_, self, other) def nor_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).nor_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nor_, self, other) def __mod__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) % input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nor_, self, other) def xnor(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).xnor(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.xnor_, self, other) def xnor_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).xnor_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.xnor_, self, other) def __eq__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) == input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.xnor_, self, other) def if_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).if_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.if_, self, other) def __ge__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) >= input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.if_, self, other) def imp(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).imp(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.imp_, self, other) def imp_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).imp_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.imp_, self, other) def __le__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) <= input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.imp_, self, other) def nand(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).nand(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nand_, self, other) def nand_(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x).nand_(input(y))) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nand_, self, other) def __matmul__(self, other): """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... b = output(input(x) @ input(y)) ... results.append(int(b) == bit.circuit().evaluate([x,y])[0]) >>> all(results) True """ return bit.operation(op.nand_, self, other) class constant(bit): """Bit that is designated as a constant input.""" class input(bit): """Bit that is designated as a variable input.""" class input_one(input): """Bit that is designated as a variable input from one source.""" class input_two(input): """Bit that is designated as a variable input from a second source.""" class output(bit): """ Bit that is designated an output. >>> bit.circuit(circuit()) >>> b0 = output(input(1).not_()) >>> b1 = output(b0.not_()) >>> b2 = output(b0) >>> [b0.value, b1.value, b2.value] [0, 1, 0] """ class bits_type(int): # pylint: disable=R0903 """ Class for representing an input or output type of a function decorated for automated synthesis. """ class bits(list): """ Class for representing a vector of abstract bits. """ def __new__(cls, argument = None) -> bits: """ Return bits object given the supplied argument. """ return bits_type(argument)\ if isinstance(argument, int) else\ list.__new__(cls, argument) def __int__(self: bits) -> int: """ >>> bit.circuit(circuit()) >>> xs = constants([0, 0, 0]) >>> ys = outputs(xs.not_()) >>> int(ys) 7 """ return sum(int(b)*(2**i) for (i, b) in zip(range(len(self)), reversed(self))) def not_(self: bits) -> bits: """ >>> results = [] >>> for x in [0, 1]: ... bit.circuit(circuit()) ... xs = inputs([x, x, x]) ... ys = outputs(xs.not_()) ... ns = [int(y) for y in ys] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x])) >>> all(results) True """ return bits([x.not_() for x in self]) def __invert__(self: bits) -> bits: """ >>> results = [] >>> for x in [0, 1]: ... bit.circuit(circuit()) ... xs = inputs([x, x, x]) ... ys = outputs(~xs) ... ns = [int(y) for y in ys] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x])) >>> all(results) True """ return bits([x.not_() for x in self]) def and_(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.and_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.and_(y) for (x, y) in zip(self, other)]) def __and__(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs & ys) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.and_(y) for (x, y) in zip(self, other)]) def nimp(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.nimp(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nimp_(y) for (x, y) in zip(self, other)]) def nimp_(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.nimp_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nimp_(y) for (x, y) in zip(self, other)]) def __gt__(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs > ys) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nimp_(y) for (x, y) in zip(self, other)]) def nif(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.nif(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nif_(y) for (x, y) in zip(self, other)]) def nif_(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.nif_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nif_(y) for (x, y) in zip(self, other)]) def __lt__(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs < ys) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nif_(y) for (x, y) in zip(self, other)]) def xor(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.xor(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.xor_(y) for (x, y) in zip(self, other)]) def xor_(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.xor_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.xor_(y) for (x, y) in zip(self, other)]) def __xor__(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs ^ ys) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.xor_(y) for (x, y) in zip(self, other)]) def or_(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.or_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.or_(y) for (x, y) in zip(self, other)]) def __or__(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs | ys) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.or_(y) for (x, y) in zip(self, other)]) def nor(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.nor(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nor_(y) for (x, y) in zip(self, other)]) def nor_(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.nor_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nor_(y) for (x, y) in zip(self, other)]) def __mod__(self, other) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs % ys) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nor_(y) for (x, y) in zip(self, other)]) def xnor(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.xnor(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.xnor_(y) for (x, y) in zip(self, other)]) def xnor_(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.xnor_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.xnor_(y) for (x, y) in zip(self, other)]) def __eq__(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs == ys) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.xnor_(y) for (x, y) in zip(self, other)]) def if_(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.if_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.if_(y) for (x, y) in zip(self, other)]) def __ge__(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs >= ys) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.if_(y) for (x, y) in zip(self, other)]) def imp(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.imp(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.imp_(y) for (x, y) in zip(self, other)]) def imp_(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.imp_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.imp_(y) for (x, y) in zip(self, other)]) def __le__(self: bits, other: bits) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs <= ys) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.imp_(y) for (x, y) in zip(self, other)]) def nand(self: bits, other) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.nand(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nand_(y) for (x, y) in zip(self, other)]) def nand_(self: bits, other) -> bits: """ >>> results = [] >>> for (x, y) in [(0, 0), (0, 1), (1, 0), (1, 1)]: ... bit.circuit(circuit()) ... (xs, ys) = (inputs([x, x, x]), inputs([y, y, y])) ... zs = outputs(xs.nand_(ys)) ... ns = [int(z) for z in zs] ... c = bit.circuit() ... results.append(ns == c.evaluate([x, x, x, y, y, y])) >>> all(results) True """ return bits([x.nand_(y) for (x, y) in zip(self, other)]) def __rshift__(self: bits, other) -> bits: """ Overloaded operator: rotation and shift operations. >>> bit.circuit(circuit()) >>> bs = bits(map(bit, [1,1,1,1,0,0,0,0])) >>> bs = bs >> 3 >>> [b.value for b in bs] [0, 0, 0, 1, 1, 1, 1, 0] >>> bit.circuit(circuit()) >>> bs = bits(map(bit, [0,0,0,0,1,1,1,1])) >>> bs = bs >> {3} >>> [b.value for b in bs] [1, 1, 1, 0, 0, 0, 0, 1] """ if isinstance(other, set) and isinstance(list(other)[0], int): # Rotation. quantity = list(other)[0] return bits(self[len(self)-quantity:]) ** bits(self[0:len(self)-quantity]) else: # Shift return bits([constant(0)]*other) ** bits(self[0:len(self)-other]) def __lshift__(self: bits, other) -> bits: """ >>> bit.circuit(circuit()) >>> bs = bits(map(bit, [1,1,1,1,0,0,0,0])) >>> bs = bs << 3 >>> [b.value for b in bs] [1, 0, 0, 0, 0, 0, 0, 0] """ return bits(self[other:]) ** bits([constant(0) for _ in range(other)]) def __truediv__(self: bits, other) -> Sequence[bits]: """ >>> bit.circuit(circuit()) >>> bs = bits(map(bit, [1,1,1,1,0,0,0,0])) >>> bss = list(bs / 2) >>> ([b.value for b in bss[0]], [b.value for b in bss[1]]) ([1, 1, 1, 1], [0, 0, 0, 0]) >>> bit.circuit(circuit()) >>> bs = bits(map(bit, [1,1,1,1,0,0,0,0])) >>> bss = list(bs / {2}) >>> [[b.value for b in bs] for bs in bss] [[1, 1], [1, 1], [0, 0], [0, 0]] >>> bit.circuit(circuit()) >>> bs = bits(map(bit, [1,1,1,1,0,0,0,0])) >>> bss = list(bs / [1, 3, 4]) >>> [[b.value for b in bs] for bs in bss] [[1], [1, 1, 1], [0, 0, 0, 0]] """ if isinstance(other, list) and len(other) > 0 and isinstance(other[0], int): return map(bits, parts(self, length=other)) # Sequence of lengths. elif isinstance(other, set) and len(other) == 1 and isinstance(list(other)[0], int): return self / (len(self)//list(other)[0]) # Parts of length `other`. else: return map(bits, parts(self, other)) # Number of parts is `other`. def __add__(self: bits, other) -> bits: """Concatenation of bit vectors.""" result = list(self) result.extend(list(other)) return bits(result) def __pow__(self: bits, other) -> bits: """Concatenation of bit vectors.""" return self + other def constants(l): return bits(map(constant, l)) def inputs(l): return bits(map(input, l)) def outputs(l): return bits(map(output, l)) def synthesize(f): """ Decorator for automatically synthesizing a circuit from a function that takes only `bit` and/or `bits` objects as its arguments and returns an output of type `bit` or `bits`. >>> @synthesize ... def equal(x: bit, y: bit) -> bit: ... return (x & y) | ((1 - x) & (1 - y)) >>> xys = [bits([x, y]) for x in (0, 1) for y in (0, 1)] >>> [equal.circuit.evaluate(xy) for xy in xys] [[1], [0], [0], [1]] >>> @synthesize ... def conjunction(xy: bits(2)) -> bits(2): ... return (xy[0], xy[0] & xy[1]) >>> xys = [bits([x, y]) for x in (0, 1) for y in (0, 1)] >>> [conjunction.circuit.evaluate(xy) for xy in xys] [[0, 0], [0, 0], [1, 0], [1, 1]] >>> @synthesize ... def equal(x, y): ... return x & y Traceback (most recent call last): ... RuntimeError: automated circuit synthesis failed """ # Functions for determining types/signature from # the type annotation of the decorated function. type_in = lambda a: input(0) if a is bit else inputs([0] * a) type_out = lambda a: output if a is bit else outputs # For forward-compatibility with PEP 563. eval_ = lambda a: eval(a) if isinstance(a, str) else a # pylint: disable=W0123 try: # Construct the circuit and add it to the function as an attribute. bit.circuit(circuit()) args_in = { k: type_in(eval_(a)) for (k, a) in f.__annotations__.items() if k != 'return' } type_out(eval_(f.__annotations__['return']))(f(**args_in)) f.circuit = bit.circuit() except: raise RuntimeError('automated circuit synthesis failed') from None # Return the original function. return f if __name__ == "__main__": doctest.testmod() # pragma: no cover
[ 37811, 31567, 47238, 32643, 329, 40525, 9156, 24907, 13, 198, 198, 31567, 47238, 7386, 12, 11423, 1974, 20900, 5888, 329, 198, 34455, 1359, 12531, 17336, 286, 9156, 24907, 198, 392, 24983, 2890, 24907, 422, 883, 17336, 13, 198, 37811, 198, 198, 6738, 11593, 37443, 834, 1330, 37647, 198, 6738, 19720, 1330, 45835, 198, 11748, 10412, 395, 198, 6738, 3354, 1330, 3354, 198, 6738, 10349, 1330, 1034, 11, 8946, 11, 10349, 11, 9877, 628, 220, 220, 220, 825, 407, 41052, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 2124, 287, 685, 15, 11, 352, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 1662, 62, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 1662, 62, 11, 2116, 8, 628, 220, 220, 220, 825, 11593, 259, 1851, 834, 7, 944, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 2124, 287, 685, 15, 11, 352, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 93, 15414, 7, 87, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 1662, 62, 11, 2116, 8, 628, 220, 220, 220, 825, 11593, 3808, 549, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 2124, 287, 685, 15, 11, 352, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 16, 532, 5128, 7, 87, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 362, 532, 5128, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 34912, 1891, 357, 1712, 2274, 869, 938, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 220, 220, 220, 220, 11052, 12331, 25, 460, 691, 34128, 257, 1643, 422, 262, 18253, 352, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 584, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 1662, 62, 11, 2116, 8, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 11052, 12331, 10786, 5171, 691, 34128, 257, 1643, 422, 262, 18253, 352, 11537, 628, 220, 220, 220, 825, 290, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 392, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 392, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 392, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 1222, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 392, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 25192, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 796, 657, 1222, 6937, 7, 16, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 13, 8367, 198, 220, 220, 220, 220, 220, 220, 220, 657, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 1222, 357, 9979, 415, 7, 847, 8, 611, 318, 39098, 7, 847, 11, 493, 8, 2073, 584, 8, 628, 220, 220, 220, 825, 299, 11011, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 77, 11011, 7, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 77, 11011, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 299, 11011, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 77, 11011, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 77, 11011, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 13655, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 1875, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 77, 11011, 7, 847, 8, 628, 220, 220, 220, 825, 299, 361, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 77, 361, 7, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 77, 361, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 299, 361, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 77, 361, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 77, 361, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 2528, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 1279, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 13, 77, 361, 7, 847, 8, 628, 220, 220, 220, 825, 2124, 273, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 87, 273, 7, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 87, 273, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 2124, 273, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 87, 273, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 87, 273, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 87, 273, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 10563, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 87, 273, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 40914, 273, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 796, 220, 352, 10563, 6937, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 13, 8367, 198, 220, 220, 220, 220, 220, 220, 220, 352, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 10563, 357, 9979, 415, 7, 847, 8, 611, 318, 39098, 7, 847, 11, 493, 8, 2073, 584, 8, 628, 220, 220, 220, 825, 393, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 273, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 273, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 273, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 930, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 273, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 1472, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 796, 352, 930, 6937, 7, 15, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 13, 8367, 198, 220, 220, 220, 220, 220, 220, 220, 352, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 930, 357, 9979, 415, 7, 847, 8, 611, 318, 39098, 7, 847, 11, 493, 8, 2073, 584, 8, 628, 220, 220, 220, 825, 4249, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 13099, 7, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 13099, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 4249, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 13099, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 13099, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 4666, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 4064, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 13099, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 2124, 13099, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 87, 13099, 7, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 87, 13099, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 2124, 13099, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 87, 13099, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 87, 13099, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 27363, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 6624, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 87, 13099, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 611, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 361, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 361, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 469, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 18189, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 361, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 848, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 11011, 7, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 11011, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 848, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 11011, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 11011, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 293, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 19841, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 11011, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 299, 392, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 77, 392, 7, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 77, 392, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 299, 392, 41052, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 737, 77, 392, 41052, 15414, 7, 88, 22305, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 77, 392, 62, 11, 2116, 11, 584, 8, 628, 220, 220, 220, 825, 11593, 6759, 76, 377, 834, 7, 944, 11, 584, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 275, 796, 5072, 7, 15414, 7, 87, 8, 2488, 5128, 7, 88, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 600, 7, 65, 8, 6624, 1643, 13, 21170, 5013, 22446, 49786, 26933, 87, 11, 88, 12962, 58, 15, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1643, 13, 27184, 7, 404, 13, 77, 392, 62, 11, 2116, 11, 584, 8, 198, 198, 4871, 6937, 7, 2545, 2599, 198, 220, 220, 220, 37227, 13128, 326, 318, 11032, 355, 257, 6937, 5128, 526, 15931, 198, 198, 4871, 5128, 7, 2545, 2599, 198, 220, 220, 220, 37227, 13128, 326, 318, 11032, 355, 257, 7885, 5128, 526, 15931, 198, 198, 4871, 5128, 62, 505, 7, 15414, 2599, 198, 220, 220, 220, 37227, 13128, 326, 318, 11032, 355, 257, 7885, 5128, 422, 530, 2723, 526, 15931, 198, 198, 4871, 5128, 62, 11545, 7, 15414, 2599, 198, 220, 220, 220, 37227, 13128, 326, 318, 11032, 355, 257, 7885, 5128, 422, 257, 1218, 2723, 526, 15931, 198, 198, 4871, 5072, 7, 2545, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4722, 326, 318, 11032, 281, 5072, 13, 628, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 13163, 275, 15, 796, 5072, 7, 15414, 7, 16, 737, 1662, 62, 28955, 198, 220, 220, 220, 13163, 275, 16, 796, 5072, 7, 65, 15, 13, 1662, 62, 28955, 198, 220, 220, 220, 13163, 275, 17, 796, 5072, 7, 65, 15, 8, 198, 220, 220, 220, 13163, 685, 65, 15, 13, 8367, 11, 275, 16, 13, 8367, 11, 275, 17, 13, 8367, 60, 198, 220, 220, 220, 685, 15, 11, 352, 11, 657, 60, 198, 220, 220, 220, 37227, 198, 198, 4871, 10340, 62, 4906, 7, 600, 2599, 1303, 279, 2645, 600, 25, 15560, 28, 49, 2931, 3070, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5016, 329, 10200, 281, 5128, 393, 5072, 2099, 286, 257, 198, 220, 220, 220, 2163, 24789, 329, 16359, 21263, 13, 198, 220, 220, 220, 37227, 198, 198, 4871, 10340, 7, 4868, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 5016, 329, 10200, 257, 15879, 286, 12531, 10340, 13, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 825, 11593, 3605, 834, 7, 565, 82, 11, 4578, 796, 6045, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 8229, 10340, 2134, 1813, 262, 14275, 4578, 13, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 62, 4906, 7, 49140, 19415, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 49140, 11, 493, 8, 2073, 59, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1351, 13, 834, 3605, 834, 7, 565, 82, 11, 4578, 8, 628, 220, 220, 220, 825, 11593, 600, 834, 7, 944, 25, 10340, 8, 4613, 493, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2124, 82, 796, 38491, 26933, 15, 11, 657, 11, 657, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 331, 82, 796, 23862, 7, 34223, 13, 1662, 62, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 493, 7, 893, 8, 198, 220, 220, 220, 220, 220, 220, 220, 767, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2160, 7, 600, 7, 65, 27493, 7, 17, 1174, 72, 8, 329, 357, 72, 11, 275, 8, 287, 19974, 7, 9521, 7, 11925, 7, 944, 36911, 17687, 7, 944, 22305, 628, 220, 220, 220, 825, 407, 41052, 944, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 2124, 287, 685, 15, 11, 352, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2124, 82, 796, 17311, 26933, 87, 11, 2124, 11, 2124, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 331, 82, 796, 23862, 7, 34223, 13, 1662, 62, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 88, 8, 329, 331, 287, 331, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 1662, 62, 3419, 329, 2124, 287, 2116, 12962, 628, 220, 220, 220, 825, 11593, 259, 1851, 834, 7, 944, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 2124, 287, 685, 15, 11, 352, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2124, 82, 796, 17311, 26933, 87, 11, 2124, 11, 2124, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 331, 82, 796, 23862, 7, 93, 34223, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 88, 8, 329, 331, 287, 331, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 1662, 62, 3419, 329, 2124, 287, 2116, 12962, 628, 220, 220, 220, 825, 290, 41052, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 392, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 392, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 392, 834, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 1222, 331, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 392, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 299, 11011, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 77, 11011, 7, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 77, 11011, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 299, 11011, 41052, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 77, 11011, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 77, 11011, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 13655, 834, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 1875, 331, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 77, 11011, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 299, 361, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 77, 361, 7, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 77, 361, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 299, 361, 41052, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 77, 361, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 77, 361, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 2528, 834, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 1279, 331, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 77, 361, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 2124, 273, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 87, 273, 7, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 87, 273, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 2124, 273, 41052, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 87, 273, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 87, 273, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 87, 273, 834, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 10563, 331, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 87, 273, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 393, 41052, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 273, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 273, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 273, 834, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 930, 331, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 273, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 4249, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 13099, 7, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 13099, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 4249, 41052, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 13099, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 13099, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 4666, 834, 7, 944, 11, 584, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 4064, 331, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 13099, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 2124, 13099, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 87, 13099, 7, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 87, 13099, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 2124, 13099, 41052, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 87, 13099, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 87, 13099, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 27363, 834, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 6624, 331, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 87, 13099, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 611, 41052, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 361, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 361, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 469, 834, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 18189, 331, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 361, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 848, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 11011, 7, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 11011, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 848, 41052, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 11011, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 11011, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 293, 834, 7, 944, 25, 10340, 11, 584, 25, 10340, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 19841, 331, 82, 8, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 11011, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 299, 392, 7, 944, 25, 10340, 11, 584, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 77, 392, 7, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 77, 392, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 299, 392, 41052, 944, 25, 10340, 11, 584, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 2482, 796, 17635, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 329, 357, 87, 11, 331, 8, 287, 47527, 15, 11, 657, 828, 357, 15, 11, 352, 828, 357, 16, 11, 657, 828, 357, 16, 11, 352, 8, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 357, 34223, 11, 331, 82, 8, 796, 357, 15414, 82, 26933, 87, 11, 2124, 11, 2124, 46570, 17311, 26933, 88, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 1976, 82, 796, 23862, 7, 34223, 13, 77, 392, 41052, 893, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 36545, 796, 685, 600, 7, 89, 8, 329, 1976, 287, 1976, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 269, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 2644, 220, 220, 220, 220, 2482, 13, 33295, 7, 5907, 6624, 269, 13, 49786, 26933, 87, 11, 2124, 11, 2124, 11, 331, 11, 331, 11, 331, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 477, 7, 43420, 8, 198, 220, 220, 220, 220, 220, 220, 220, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 87, 13, 77, 392, 41052, 88, 8, 329, 357, 87, 11, 331, 8, 287, 19974, 7, 944, 11, 584, 8, 12962, 628, 220, 220, 220, 825, 11593, 81, 30846, 834, 7, 944, 25, 10340, 11, 584, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 3827, 14578, 10088, 25, 13179, 290, 6482, 4560, 13, 628, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 82, 796, 10340, 7, 8899, 7, 2545, 11, 685, 16, 11, 16, 11, 16, 11, 16, 11, 15, 11, 15, 11, 15, 11, 15, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 82, 796, 275, 82, 9609, 513, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 685, 65, 13, 8367, 329, 275, 287, 275, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 685, 15, 11, 657, 11, 657, 11, 352, 11, 352, 11, 352, 11, 352, 11, 657, 60, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 82, 796, 10340, 7, 8899, 7, 2545, 11, 685, 15, 11, 15, 11, 15, 11, 15, 11, 16, 11, 16, 11, 16, 11, 16, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 82, 796, 275, 82, 9609, 1391, 18, 92, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 685, 65, 13, 8367, 329, 275, 287, 275, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 352, 11, 352, 11, 657, 11, 657, 11, 657, 11, 657, 11, 352, 60, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 847, 11, 900, 8, 290, 318, 39098, 7, 4868, 7, 847, 38381, 15, 4357, 493, 2599, 1303, 371, 14221, 13, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 12040, 796, 1351, 7, 847, 38381, 15, 60, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 7, 944, 58, 11925, 7, 944, 13219, 40972, 414, 25, 12962, 12429, 10340, 7, 944, 58, 15, 25, 11925, 7, 944, 13219, 40972, 414, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 1303, 15576, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 26933, 9979, 415, 7, 15, 15437, 9, 847, 8, 12429, 10340, 7, 944, 58, 15, 25, 11925, 7, 944, 13219, 847, 12962, 628, 220, 220, 220, 825, 11593, 75, 30846, 834, 7, 944, 25, 10340, 11, 584, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 82, 796, 10340, 7, 8899, 7, 2545, 11, 685, 16, 11, 16, 11, 16, 11, 16, 11, 15, 11, 15, 11, 15, 11, 15, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 82, 796, 275, 82, 9959, 513, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 685, 65, 13, 8367, 329, 275, 287, 275, 82, 60, 198, 220, 220, 220, 220, 220, 220, 220, 685, 16, 11, 657, 11, 657, 11, 657, 11, 657, 11, 657, 11, 657, 11, 657, 60, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 7, 944, 58, 847, 25, 12962, 12429, 10340, 26933, 9979, 415, 7, 15, 8, 329, 4808, 287, 2837, 7, 847, 8, 12962, 628, 220, 220, 220, 825, 11593, 83, 21556, 452, 834, 7, 944, 25, 10340, 11, 584, 8, 4613, 45835, 58, 9895, 5974, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 82, 796, 10340, 7, 8899, 7, 2545, 11, 685, 16, 11, 16, 11, 16, 11, 16, 11, 15, 11, 15, 11, 15, 11, 15, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 824, 796, 1351, 7, 1443, 1220, 362, 8, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 29565, 65, 13, 8367, 329, 275, 287, 275, 824, 58, 15, 60, 4357, 685, 65, 13, 8367, 329, 275, 287, 275, 824, 58, 16, 11907, 8, 198, 220, 220, 220, 220, 220, 220, 220, 29565, 16, 11, 352, 11, 352, 11, 352, 4357, 685, 15, 11, 657, 11, 657, 11, 657, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 82, 796, 10340, 7, 8899, 7, 2545, 11, 685, 16, 11, 16, 11, 16, 11, 16, 11, 15, 11, 15, 11, 15, 11, 15, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 824, 796, 1351, 7, 1443, 1220, 1391, 17, 30072, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 16410, 65, 13, 8367, 329, 275, 287, 275, 82, 60, 329, 275, 82, 287, 275, 824, 60, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 16, 11, 352, 4357, 685, 16, 11, 352, 4357, 685, 15, 11, 657, 4357, 685, 15, 11, 657, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 82, 796, 10340, 7, 8899, 7, 2545, 11, 685, 16, 11, 16, 11, 16, 11, 16, 11, 15, 11, 15, 11, 15, 11, 15, 60, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 275, 824, 796, 1351, 7, 1443, 1220, 685, 16, 11, 513, 11, 604, 12962, 198, 220, 220, 220, 220, 220, 220, 220, 13163, 16410, 65, 13, 8367, 329, 275, 287, 275, 82, 60, 329, 275, 82, 287, 275, 824, 60, 198, 220, 220, 220, 220, 220, 220, 220, 16410, 16, 4357, 685, 16, 11, 352, 11, 352, 4357, 685, 15, 11, 657, 11, 657, 11, 657, 11907, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 220, 220, 220, 611, 318, 39098, 7, 847, 11, 1351, 8, 290, 18896, 7, 847, 8, 1875, 657, 290, 318, 39098, 7, 847, 58, 15, 4357, 493, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 3975, 7, 9895, 11, 3354, 7, 944, 11, 4129, 28, 847, 4008, 1303, 45835, 286, 20428, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 318, 39098, 7, 847, 11, 900, 8, 290, 18896, 7, 847, 8, 6624, 352, 290, 318, 39098, 7, 4868, 7, 847, 38381, 15, 4357, 493, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 1220, 357, 11925, 7, 944, 8, 1003, 4868, 7, 847, 38381, 15, 12962, 1303, 22349, 286, 4129, 4600, 847, 44646, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1441, 3975, 7, 9895, 11, 3354, 7, 944, 11, 584, 4008, 1303, 7913, 286, 3354, 318, 4600, 847, 44646, 628, 220, 220, 220, 825, 11593, 2860, 834, 7, 944, 25, 10340, 11, 584, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 9246, 268, 341, 286, 1643, 30104, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 796, 1351, 7, 944, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1255, 13, 2302, 437, 7, 4868, 7, 847, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 10340, 7, 20274, 8, 628, 220, 220, 220, 825, 11593, 79, 322, 834, 7, 944, 25, 10340, 11, 584, 8, 4613, 10340, 25, 198, 220, 220, 220, 220, 220, 220, 220, 37227, 3103, 9246, 268, 341, 286, 1643, 30104, 526, 15931, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 2116, 1343, 584, 198, 198, 4299, 38491, 7, 75, 2599, 198, 220, 220, 220, 1441, 10340, 7, 8899, 7, 9979, 415, 11, 300, 4008, 198, 198, 4299, 17311, 7, 75, 2599, 198, 220, 220, 220, 1441, 10340, 7, 8899, 7, 15414, 11, 300, 4008, 198, 198, 4299, 23862, 7, 75, 2599, 198, 220, 220, 220, 1441, 10340, 7, 8899, 7, 22915, 11, 300, 4008, 198, 198, 4299, 24983, 1096, 7, 69, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4280, 273, 1352, 329, 6338, 24983, 2890, 257, 10349, 422, 257, 198, 220, 220, 220, 2163, 326, 2753, 691, 4600, 2545, 63, 290, 14, 273, 4600, 9895, 63, 5563, 355, 663, 198, 220, 220, 220, 7159, 290, 5860, 281, 5072, 286, 2099, 4600, 2545, 63, 393, 4600, 9895, 44646, 628, 220, 220, 220, 13163, 2488, 1837, 429, 956, 1096, 198, 220, 220, 220, 2644, 825, 4961, 7, 87, 25, 1643, 11, 331, 25, 1643, 8, 4613, 1643, 25, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 1441, 357, 87, 1222, 331, 8, 930, 14808, 16, 532, 2124, 8, 1222, 357, 16, 532, 331, 4008, 198, 220, 220, 220, 13163, 2124, 893, 796, 685, 9895, 26933, 87, 11, 331, 12962, 329, 2124, 287, 357, 15, 11, 352, 8, 329, 331, 287, 357, 15, 11, 352, 15437, 198, 220, 220, 220, 13163, 685, 40496, 13, 21170, 5013, 13, 49786, 7, 5431, 8, 329, 2124, 88, 287, 2124, 893, 60, 198, 220, 220, 220, 16410, 16, 4357, 685, 15, 4357, 685, 15, 4357, 685, 16, 11907, 198, 220, 220, 220, 13163, 2488, 1837, 429, 956, 1096, 198, 220, 220, 220, 2644, 825, 17856, 7, 5431, 25, 10340, 7, 17, 4008, 4613, 10340, 7, 17, 2599, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 1441, 357, 5431, 58, 15, 4357, 2124, 88, 58, 15, 60, 1222, 2124, 88, 58, 16, 12962, 198, 220, 220, 220, 13163, 2124, 893, 796, 685, 9895, 26933, 87, 11, 331, 12962, 329, 2124, 287, 357, 15, 11, 352, 8, 329, 331, 287, 357, 15, 11, 352, 15437, 198, 220, 220, 220, 13163, 685, 1102, 73, 4575, 13, 21170, 5013, 13, 49786, 7, 5431, 8, 329, 2124, 88, 287, 2124, 893, 60, 198, 220, 220, 220, 16410, 15, 11, 657, 4357, 685, 15, 11, 657, 4357, 685, 16, 11, 657, 4357, 685, 16, 11, 352, 11907, 198, 220, 220, 220, 13163, 2488, 1837, 429, 956, 1096, 198, 220, 220, 220, 2644, 825, 4961, 7, 87, 11, 331, 2599, 198, 220, 220, 220, 2644, 220, 220, 220, 220, 1441, 2124, 1222, 331, 198, 220, 220, 220, 34912, 1891, 357, 1712, 2274, 869, 938, 2599, 198, 220, 220, 220, 220, 220, 2644, 198, 220, 220, 220, 43160, 12331, 25, 16359, 10349, 21263, 4054, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 40480, 329, 13213, 3858, 14, 12683, 1300, 422, 198, 220, 220, 220, 1303, 262, 2099, 23025, 286, 262, 24789, 2163, 13, 198, 220, 220, 220, 2099, 62, 259, 796, 37456, 257, 25, 5128, 7, 15, 8, 611, 257, 318, 1643, 2073, 17311, 26933, 15, 60, 1635, 257, 8, 198, 220, 220, 220, 2099, 62, 448, 796, 37456, 257, 25, 5072, 611, 257, 318, 1643, 2073, 23862, 628, 220, 220, 220, 1303, 1114, 2651, 12, 5589, 25901, 351, 350, 8905, 642, 5066, 13, 198, 220, 220, 220, 5418, 62, 796, 37456, 257, 25, 5418, 7, 64, 8, 611, 318, 39098, 7, 64, 11, 965, 8, 2073, 257, 1303, 279, 2645, 600, 25, 15560, 28, 54, 486, 1954, 628, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 28407, 262, 10349, 290, 751, 340, 284, 262, 2163, 355, 281, 11688, 13, 198, 220, 220, 220, 220, 220, 220, 220, 1643, 13, 21170, 5013, 7, 21170, 5013, 28955, 198, 220, 220, 220, 220, 220, 220, 220, 26498, 62, 259, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 479, 25, 2099, 62, 259, 7, 18206, 41052, 64, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 329, 357, 74, 11, 257, 8, 287, 277, 13, 834, 34574, 602, 834, 13, 23814, 3419, 611, 479, 14512, 705, 7783, 6, 198, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 2099, 62, 448, 7, 18206, 41052, 69, 13, 834, 34574, 602, 834, 17816, 7783, 20520, 4008, 7, 69, 7, 1174, 22046, 62, 259, 4008, 198, 220, 220, 220, 220, 220, 220, 220, 277, 13, 21170, 5013, 796, 1643, 13, 21170, 5013, 3419, 198, 220, 220, 220, 2845, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 43160, 12331, 10786, 2306, 296, 515, 10349, 21263, 4054, 11537, 422, 6045, 628, 220, 220, 220, 1303, 8229, 262, 2656, 2163, 13, 198, 220, 220, 220, 1441, 277, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 10412, 395, 13, 9288, 4666, 3419, 1303, 23864, 2611, 25, 645, 3002, 198 ]
1.908203
17,822
import discord import random from datetime import datetime import pandas as pd import matplotlib.pyplot as plt import csv
[ 11748, 36446, 201, 198, 11748, 4738, 201, 198, 6738, 4818, 8079, 1330, 4818, 8079, 201, 198, 11748, 19798, 292, 355, 279, 67, 201, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 201, 198, 11748, 269, 21370, 201, 198, 201, 198 ]
3.023256
43
#!/usr/bin/env python3 import os from setuptools import setup setup( name="fastnode2vec", version="0.0.5", author="Louis Abraham", license="MIT", author_email="[email protected]", description="Fast implementation of node2vec", long_description=read("README.md"), long_description_content_type="text/markdown", url="https://github.com/louisabraham/fastnode2vec", packages=["fastnode2vec"], install_requires=["numpy", "numba", "gensim", "click", "tqdm"], python_requires=">=3.6", entry_points={"console_scripts": ["fastnode2vec = fastnode2vec.cli:node2vec"]}, classifiers=["Topic :: Scientific/Engineering :: Artificial Intelligence"], )
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 198, 11748, 28686, 198, 6738, 900, 37623, 10141, 1330, 9058, 628, 198, 198, 40406, 7, 198, 220, 220, 220, 1438, 2625, 7217, 17440, 17, 35138, 1600, 198, 220, 220, 220, 2196, 2625, 15, 13, 15, 13, 20, 1600, 198, 220, 220, 220, 1772, 2625, 32117, 16660, 1600, 198, 220, 220, 220, 5964, 2625, 36393, 1600, 198, 220, 220, 220, 1772, 62, 12888, 2625, 75, 280, 271, 13, 397, 13220, 31, 40774, 13, 8310, 1600, 198, 220, 220, 220, 6764, 2625, 22968, 7822, 286, 10139, 17, 35138, 1600, 198, 220, 220, 220, 890, 62, 11213, 28, 961, 7203, 15675, 11682, 13, 9132, 12340, 198, 220, 220, 220, 890, 62, 11213, 62, 11299, 62, 4906, 2625, 5239, 14, 4102, 2902, 1600, 198, 220, 220, 220, 19016, 2625, 5450, 1378, 12567, 13, 785, 14, 75, 280, 271, 397, 13220, 14, 7217, 17440, 17, 35138, 1600, 198, 220, 220, 220, 10392, 28, 14692, 7217, 17440, 17, 35138, 33116, 198, 220, 220, 220, 2721, 62, 47911, 28, 14692, 77, 32152, 1600, 366, 77, 2178, 64, 1600, 366, 70, 641, 320, 1600, 366, 12976, 1600, 366, 83, 80, 36020, 33116, 198, 220, 220, 220, 21015, 62, 47911, 2625, 29, 28, 18, 13, 21, 1600, 198, 220, 220, 220, 5726, 62, 13033, 28, 4895, 41947, 62, 46521, 1298, 14631, 7217, 17440, 17, 35138, 796, 3049, 17440, 17, 35138, 13, 44506, 25, 17440, 17, 35138, 8973, 5512, 198, 220, 220, 220, 1398, 13350, 28, 14692, 33221, 7904, 22060, 14, 13798, 1586, 7904, 35941, 9345, 33116, 198, 8, 198 ]
2.696154
260
import os basedir = os.path.abspath(os.path.dirname(__file__)) config_by_name = dict( dev=DevelopmentConfig, test=TestingConfig, prod=ProductionConfig ) key = Config.SECRET_KEY
[ 11748, 28686, 198, 198, 3106, 343, 796, 28686, 13, 6978, 13, 397, 2777, 776, 7, 418, 13, 6978, 13, 15908, 3672, 7, 834, 7753, 834, 4008, 628, 628, 198, 198, 11250, 62, 1525, 62, 3672, 796, 8633, 7, 198, 220, 220, 220, 1614, 28, 41206, 16934, 11, 198, 220, 220, 220, 1332, 28, 44154, 16934, 11, 198, 220, 220, 220, 40426, 28, 35027, 16934, 198, 8, 198, 198, 2539, 796, 17056, 13, 23683, 26087, 62, 20373, 198 ]
2.545455
77
#!/usr/bin/env python import pwd from ansible.module_utils.basic import AnsibleModule if __name__ == "__main__": main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 198, 198, 11748, 279, 16993, 198, 6738, 9093, 856, 13, 21412, 62, 26791, 13, 35487, 1330, 28038, 856, 26796, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 1388, 3419, 198 ]
2.73913
46
"""Methods for working with ontologies and the OLS.""" from urllib.parse import quote_plus import requests OLS_API_ROOT = "http://www.ebi.ac.uk/ols/api" # Curie means something like CL:0000001 def _ontology_name(curie): """Get the name of the ontology from the curie, CL or UBERON for example.""" return curie.split(":")[0] def _ontology_value(curie): """Get the id component of the curie, 0000001 from CL:0000001 for example.""" return curie.split(":")[1] def _double_encode(url): """Double url encode a url. This is required by the OLS API.""" return quote_plus(quote_plus(url)) def _iri(curie): """Get the iri from a curie. This is a bit hopeful that they all map to purl.obolibrary.org""" if _ontology_name(curie) == "EFO": return f"http://www.ebi.ac.uk/efo/EFO_{_ontology_value(curie)}" return f"http://purl.obolibrary.org/obo/{_ontology_name(curie)}_{_ontology_value(curie)}" def _ontology_info_url(curie): """Get the to make a GET to to get information about an ontology term.""" # If the curie is empty, just return an empty string. This happens when there is no # valid ontology value. if not curie: return "" else: return f"{OLS_API_ROOT}/ontologies/{_ontology_name(curie)}/terms/{_double_encode(_iri(curie))}" def get_ontology_label(curie): """For a given curie like 'CL:1000413', get the label like 'endothelial cell of artery'""" url = _ontology_info_url(curie) if not url: return "" response = requests.get(url) if not response.ok: raise OntologyLookupError( f"Curie {curie} lookup failed, got status code {response.status_code}: {response.text}" ) return response.json()["label"] def lookup_candidate_term(label, ontology="cl", method="select"): """Lookup candidate terms for a label. This is useful when there is an existing label in a submitted dataset, and you want to find an appropriate ontology term. Args: label: the label to find ontology terms for ontology: the ontology to search in, cl or uberon or efo for example method: select or search. search provides much broader results Returns: list of (curie, label) tuples returned by OLS """ # using OLS REST API [https://www.ebi.ac.uk/ols/docs/api] url = f"{OLS_API_ROOT}/{method}?q={quote_plus(label)}&ontology={ontology.lower()}" response = requests.get(url) if not response.ok: raise OntologyLookupError( f"Label {label} lookup failed, got status code {response.status_code}: {response.text}" ) return [(r["obo_id"], r["label"]) for r in response.json()["response"]["docs"]]
[ 37811, 46202, 329, 1762, 351, 39585, 5823, 290, 262, 440, 6561, 526, 15931, 198, 6738, 2956, 297, 571, 13, 29572, 1330, 9577, 62, 9541, 198, 198, 11748, 7007, 198, 198, 3535, 50, 62, 17614, 62, 13252, 2394, 796, 366, 4023, 1378, 2503, 13, 1765, 72, 13, 330, 13, 2724, 14, 10220, 14, 15042, 1, 198, 198, 2, 4424, 494, 1724, 1223, 588, 7852, 25, 2388, 8298, 628, 198, 4299, 4808, 756, 1435, 62, 3672, 7, 22019, 494, 2599, 198, 220, 220, 220, 37227, 3855, 262, 1438, 286, 262, 39585, 1435, 422, 262, 1090, 494, 11, 7852, 393, 471, 13246, 1340, 329, 1672, 526, 15931, 198, 220, 220, 220, 1441, 1090, 494, 13, 35312, 7, 2404, 38381, 15, 60, 628, 198, 4299, 4808, 756, 1435, 62, 8367, 7, 22019, 494, 2599, 198, 220, 220, 220, 37227, 3855, 262, 4686, 7515, 286, 262, 1090, 494, 11, 17643, 8298, 422, 7852, 25, 2388, 8298, 329, 1672, 526, 15931, 198, 220, 220, 220, 1441, 1090, 494, 13, 35312, 7, 2404, 38381, 16, 60, 628, 198, 4299, 4808, 23352, 62, 268, 8189, 7, 6371, 2599, 198, 220, 220, 220, 37227, 25628, 19016, 37773, 257, 19016, 13, 770, 318, 2672, 416, 262, 440, 6561, 7824, 526, 15931, 198, 220, 220, 220, 1441, 9577, 62, 9541, 7, 22708, 62, 9541, 7, 6371, 4008, 628, 198, 4299, 4808, 14783, 7, 22019, 494, 2599, 198, 220, 220, 220, 37227, 3855, 262, 4173, 72, 422, 257, 1090, 494, 13, 770, 318, 257, 1643, 17836, 326, 484, 477, 3975, 284, 1308, 75, 13, 672, 349, 4115, 13, 2398, 37811, 198, 220, 220, 220, 611, 4808, 756, 1435, 62, 3672, 7, 22019, 494, 8, 6624, 366, 36, 6080, 1298, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 277, 1, 4023, 1378, 2503, 13, 1765, 72, 13, 330, 13, 2724, 14, 891, 78, 14, 36, 6080, 23330, 62, 756, 1435, 62, 8367, 7, 22019, 494, 8, 36786, 198, 220, 220, 220, 1441, 277, 1, 4023, 1378, 79, 6371, 13, 672, 349, 4115, 13, 2398, 14, 20391, 14, 90, 62, 756, 1435, 62, 3672, 7, 22019, 494, 38165, 23330, 62, 756, 1435, 62, 8367, 7, 22019, 494, 8, 36786, 628, 198, 198, 4299, 4808, 756, 1435, 62, 10951, 62, 6371, 7, 22019, 494, 2599, 198, 220, 220, 220, 37227, 3855, 262, 284, 787, 257, 17151, 284, 284, 651, 1321, 546, 281, 39585, 1435, 3381, 526, 15931, 628, 220, 220, 220, 1303, 1002, 262, 1090, 494, 318, 6565, 11, 655, 1441, 281, 6565, 4731, 13, 770, 4325, 618, 612, 318, 645, 198, 220, 220, 220, 1303, 4938, 39585, 1435, 1988, 13, 198, 220, 220, 220, 611, 407, 1090, 494, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 13538, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 277, 1, 90, 3535, 50, 62, 17614, 62, 13252, 2394, 92, 14, 756, 5823, 14, 90, 62, 756, 1435, 62, 3672, 7, 22019, 494, 38165, 14, 38707, 14, 90, 62, 23352, 62, 268, 8189, 28264, 14783, 7, 22019, 494, 4008, 36786, 628, 198, 4299, 651, 62, 756, 1435, 62, 18242, 7, 22019, 494, 2599, 198, 220, 220, 220, 37227, 1890, 257, 1813, 1090, 494, 588, 705, 5097, 25, 12825, 44103, 3256, 651, 262, 6167, 588, 705, 437, 313, 35566, 2685, 286, 37646, 6, 37811, 628, 220, 220, 220, 19016, 796, 4808, 756, 1435, 62, 10951, 62, 6371, 7, 22019, 494, 8, 628, 220, 220, 220, 611, 407, 19016, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 13538, 628, 220, 220, 220, 2882, 796, 7007, 13, 1136, 7, 6371, 8, 628, 220, 220, 220, 611, 407, 2882, 13, 482, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 9463, 1435, 8567, 929, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 26628, 494, 1391, 22019, 494, 92, 35847, 4054, 11, 1392, 3722, 2438, 1391, 26209, 13, 13376, 62, 8189, 38362, 1391, 26209, 13, 5239, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 1441, 2882, 13, 17752, 3419, 14692, 18242, 8973, 628, 198, 4299, 35847, 62, 46188, 20540, 62, 4354, 7, 18242, 11, 39585, 1435, 2625, 565, 1600, 2446, 2625, 19738, 1, 2599, 198, 220, 220, 220, 37227, 8567, 929, 4540, 2846, 329, 257, 6167, 13, 770, 318, 4465, 618, 612, 318, 281, 4683, 6167, 287, 257, 198, 220, 220, 220, 8948, 27039, 11, 290, 345, 765, 284, 1064, 281, 5035, 39585, 1435, 3381, 13, 628, 220, 220, 220, 943, 14542, 25, 198, 220, 220, 220, 220, 220, 6167, 25, 262, 6167, 284, 1064, 39585, 1435, 2846, 329, 198, 220, 220, 220, 220, 220, 39585, 1435, 25, 262, 39585, 1435, 284, 2989, 287, 11, 537, 393, 48110, 261, 393, 304, 6513, 329, 1672, 198, 220, 220, 220, 220, 220, 2446, 25, 2922, 393, 2989, 13, 2989, 3769, 881, 11622, 2482, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 1351, 286, 357, 22019, 494, 11, 6167, 8, 12777, 2374, 4504, 416, 440, 6561, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1303, 1262, 440, 6561, 30617, 7824, 685, 5450, 1378, 2503, 13, 1765, 72, 13, 330, 13, 2724, 14, 10220, 14, 31628, 14, 15042, 60, 198, 220, 220, 220, 19016, 796, 277, 1, 90, 3535, 50, 62, 17614, 62, 13252, 2394, 92, 14, 90, 24396, 92, 30, 80, 34758, 22708, 62, 9541, 7, 18242, 38165, 5, 756, 1435, 34758, 756, 1435, 13, 21037, 3419, 36786, 198, 220, 220, 220, 2882, 796, 7007, 13, 1136, 7, 6371, 8, 628, 220, 220, 220, 611, 407, 2882, 13, 482, 25, 198, 220, 220, 220, 220, 220, 220, 220, 5298, 9463, 1435, 8567, 929, 12331, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 277, 1, 33986, 1391, 18242, 92, 35847, 4054, 11, 1392, 3722, 2438, 1391, 26209, 13, 13376, 62, 8189, 38362, 1391, 26209, 13, 5239, 36786, 198, 220, 220, 220, 220, 220, 220, 220, 1267, 628, 220, 220, 220, 1441, 47527, 81, 14692, 20391, 62, 312, 33116, 374, 14692, 18242, 8973, 8, 329, 374, 287, 2882, 13, 17752, 3419, 14692, 26209, 1, 7131, 1, 31628, 8973, 60, 198 ]
2.658489
1,019
# Copyright (c) 2020, DjaoDjin inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # 1. Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import logging, re from collections import OrderedDict from django.db.models import F from django.http import Http404 from django.shortcuts import get_object_or_404 from extra_views.contrib.mixins import SearchableListMixin from rest_framework import generics from rest_framework.pagination import PageNumberPagination from rest_framework import response as http from ..compat import reverse from ..mixins import MatrixMixin from ..models import Answer, Matrix, EditableFilter from ..utils import (get_account_model, get_account_serializer, get_question_serializer) from .serializers import EditableFilterSerializer, MatrixSerializer LOGGER = logging.getLogger(__name__)
[ 2, 15069, 357, 66, 8, 12131, 11, 19307, 5488, 35, 18594, 753, 13, 198, 2, 1439, 2489, 10395, 13, 198, 2, 198, 2, 2297, 396, 3890, 290, 779, 287, 2723, 290, 13934, 5107, 11, 351, 393, 1231, 198, 2, 17613, 11, 389, 10431, 2810, 326, 262, 1708, 3403, 389, 1138, 25, 198, 2, 198, 2, 352, 13, 2297, 396, 2455, 507, 286, 2723, 2438, 1276, 12377, 262, 2029, 6634, 4003, 11, 198, 2, 220, 220, 220, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 13, 198, 2, 362, 13, 2297, 396, 2455, 507, 287, 13934, 1296, 1276, 22919, 262, 2029, 6634, 198, 2, 220, 220, 220, 4003, 11, 428, 1351, 286, 3403, 290, 262, 1708, 37592, 287, 262, 198, 2, 220, 220, 220, 10314, 290, 14, 273, 584, 5696, 2810, 351, 262, 6082, 13, 198, 2, 198, 2, 12680, 47466, 3180, 36592, 2389, 1961, 11050, 3336, 27975, 38162, 9947, 367, 15173, 4877, 5357, 27342, 9865, 3843, 20673, 198, 2, 366, 1921, 3180, 1, 5357, 15529, 7788, 32761, 6375, 8959, 49094, 34764, 11015, 11, 47783, 2751, 11, 21728, 5626, 40880, 198, 2, 5390, 11, 3336, 8959, 49094, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 5357, 376, 46144, 7473, 317, 16652, 2149, 37232, 198, 2, 33079, 48933, 15986, 13954, 48778, 1961, 13, 3268, 8005, 49261, 50163, 3336, 27975, 38162, 9947, 49707, 14418, 6375, 198, 2, 27342, 9865, 3843, 20673, 9348, 43031, 19146, 7473, 15529, 42242, 11, 3268, 17931, 23988, 11, 19387, 25256, 1847, 11, 38846, 11, 198, 2, 7788, 3620, 6489, 13153, 11, 6375, 7102, 5188, 10917, 3525, 12576, 29506, 25552, 357, 1268, 39149, 2751, 11, 21728, 5626, 40880, 5390, 11, 198, 2, 41755, 11335, 10979, 3963, 28932, 2257, 2043, 37780, 21090, 50, 6375, 49254, 26, 406, 18420, 3963, 23210, 11, 42865, 11, 6375, 4810, 19238, 29722, 26, 198, 2, 6375, 43949, 44180, 23255, 49, 8577, 24131, 8, 29630, 36, 5959, 7257, 2937, 1961, 5357, 6177, 15529, 3336, 15513, 3963, 43031, 25382, 11, 198, 2, 7655, 2767, 16879, 3268, 27342, 10659, 11, 19269, 18379, 43031, 25382, 11, 6375, 309, 9863, 357, 1268, 39149, 2751, 399, 7156, 43, 3528, 18310, 6375, 198, 2, 25401, 54, 24352, 8, 5923, 1797, 2751, 3268, 15529, 34882, 16289, 3963, 3336, 23210, 3963, 12680, 47466, 11, 45886, 16876, 198, 2, 5984, 29817, 1961, 3963, 3336, 28069, 11584, 25382, 3963, 13558, 3398, 29506, 11879, 13, 198, 198, 11748, 18931, 11, 302, 198, 6738, 17268, 1330, 14230, 1068, 35, 713, 198, 198, 6738, 42625, 14208, 13, 9945, 13, 27530, 1330, 376, 198, 6738, 42625, 14208, 13, 4023, 1330, 367, 29281, 26429, 198, 6738, 42625, 14208, 13, 19509, 23779, 1330, 651, 62, 15252, 62, 273, 62, 26429, 198, 6738, 3131, 62, 33571, 13, 3642, 822, 13, 19816, 1040, 1330, 11140, 540, 8053, 35608, 259, 198, 6738, 1334, 62, 30604, 1330, 1152, 873, 198, 6738, 1334, 62, 30604, 13, 79, 363, 1883, 1330, 7873, 15057, 47, 363, 1883, 198, 6738, 1334, 62, 30604, 1330, 2882, 355, 2638, 198, 198, 6738, 11485, 5589, 265, 1330, 9575, 198, 6738, 11485, 19816, 1040, 1330, 24936, 35608, 259, 198, 6738, 11485, 27530, 1330, 23998, 11, 24936, 11, 1717, 4674, 22417, 198, 6738, 11485, 26791, 1330, 357, 1136, 62, 23317, 62, 19849, 11, 651, 62, 23317, 62, 46911, 7509, 11, 198, 220, 220, 220, 651, 62, 25652, 62, 46911, 7509, 8, 198, 6738, 764, 46911, 11341, 1330, 1717, 4674, 22417, 32634, 7509, 11, 24936, 32634, 7509, 628, 198, 25294, 30373, 796, 18931, 13, 1136, 11187, 1362, 7, 834, 3672, 834, 8, 628, 628, 628, 628, 628 ]
3.503448
580
from __future__ import print_function import httplib2 import os import sys import pickle from apiclient import discovery from apiclient import errors from oauth2client import client from oauth2client import tools from oauth2client.file import Storage try: import argparse flags = argparse.ArgumentParser(parents=[tools.argparser]).parse_args() except ImportError: flags = None # If modifying these scopes, delete your previously saved credentials # at ~/.credentials/gmail-python-quickstart.json SCOPES = 'https://www.googleapis.com/auth/gmail.labels' CLIENT_SECRET_FILE = 'client_secret.json' APPLICATION_NAME = 'Inbox Organize' def get_credentials(): """Gets valid user credentials from storage. If nothing has been stored, or if the stored credentials are invalid, the OAuth2 flow is completed to obtain the new credentials. Returns: Credentials, the obtained credential. """ home_dir = os.path.expanduser('~') credential_dir = os.path.join(home_dir, '.credentials') if not os.path.exists(credential_dir): os.makedirs(credential_dir) credential_path = os.path.join(credential_dir, 'gmail-python-quickstart.json') store = Storage(credential_path) credentials = store.get() if not credentials or credentials.invalid: flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES) flow.user_agent = APPLICATION_NAME if flags: credentials = tools.run_flow(flow, store, flags) else: # Needed only for compatibility with Python 2.6 credentials = tools.run(flow, store) print('Storing credentials to ' + credential_path) return credentials if __name__ == '__main__': main()
[ 6738, 11593, 37443, 834, 1330, 3601, 62, 8818, 198, 11748, 1841, 489, 571, 17, 198, 11748, 28686, 198, 11748, 25064, 198, 198, 11748, 2298, 293, 198, 198, 6738, 2471, 291, 75, 1153, 1330, 9412, 198, 6738, 2471, 291, 75, 1153, 1330, 8563, 198, 6738, 267, 18439, 17, 16366, 1330, 5456, 198, 6738, 267, 18439, 17, 16366, 1330, 4899, 198, 6738, 267, 18439, 17, 16366, 13, 7753, 1330, 20514, 198, 198, 28311, 25, 198, 220, 220, 1330, 1822, 29572, 198, 220, 220, 9701, 796, 1822, 29572, 13, 28100, 1713, 46677, 7, 23743, 41888, 31391, 13, 853, 48610, 35944, 29572, 62, 22046, 3419, 198, 16341, 17267, 12331, 25, 198, 220, 220, 9701, 796, 6045, 198, 198, 2, 1002, 30620, 777, 629, 13920, 11, 12233, 534, 4271, 7448, 18031, 198, 2, 379, 39763, 66, 445, 14817, 14, 14816, 12, 29412, 12, 24209, 9688, 13, 17752, 198, 6173, 3185, 1546, 796, 705, 5450, 1378, 2503, 13, 13297, 499, 271, 13, 785, 14, 18439, 14, 14816, 13, 23912, 1424, 6, 198, 5097, 28495, 62, 23683, 26087, 62, 25664, 796, 705, 16366, 62, 21078, 13, 17752, 6, 198, 2969, 31484, 6234, 62, 20608, 796, 705, 818, 3524, 7221, 1096, 6, 198, 198, 4299, 651, 62, 66, 445, 14817, 33529, 198, 220, 220, 37227, 38, 1039, 4938, 2836, 18031, 422, 6143, 13, 628, 220, 220, 220, 1002, 2147, 468, 587, 8574, 11, 393, 611, 262, 8574, 18031, 389, 12515, 11, 198, 220, 220, 220, 262, 440, 30515, 17, 5202, 318, 5668, 284, 7330, 262, 649, 18031, 13, 628, 220, 220, 220, 16409, 25, 198, 220, 220, 220, 220, 220, 220, 220, 327, 445, 14817, 11, 262, 6492, 49920, 13, 198, 220, 220, 220, 37227, 198, 220, 220, 1363, 62, 15908, 796, 28686, 13, 6978, 13, 11201, 392, 7220, 10786, 93, 11537, 198, 220, 220, 49920, 62, 15908, 796, 28686, 13, 6978, 13, 22179, 7, 11195, 62, 15908, 11, 45302, 66, 445, 14817, 11537, 198, 220, 220, 611, 407, 28686, 13, 6978, 13, 1069, 1023, 7, 66, 445, 1843, 62, 15908, 2599, 198, 220, 220, 220, 220, 220, 28686, 13, 76, 4335, 17062, 7, 66, 445, 1843, 62, 15908, 8, 198, 220, 220, 49920, 62, 6978, 796, 28686, 13, 6978, 13, 22179, 7, 66, 445, 1843, 62, 15908, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 705, 14816, 12, 29412, 12, 24209, 9688, 13, 17752, 11537, 628, 220, 220, 3650, 796, 20514, 7, 66, 445, 1843, 62, 6978, 8, 198, 220, 220, 18031, 796, 3650, 13, 1136, 3419, 198, 220, 220, 611, 407, 18031, 393, 18031, 13, 259, 12102, 25, 198, 220, 220, 220, 220, 220, 5202, 796, 5456, 13, 11125, 62, 6738, 62, 16366, 2363, 8004, 7, 5097, 28495, 62, 23683, 26087, 62, 25664, 11, 6374, 3185, 1546, 8, 198, 220, 220, 220, 220, 220, 5202, 13, 7220, 62, 25781, 796, 39421, 6234, 62, 20608, 198, 220, 220, 220, 220, 220, 611, 9701, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 18031, 796, 4899, 13, 5143, 62, 11125, 7, 11125, 11, 3650, 11, 9701, 8, 198, 220, 220, 220, 220, 220, 2073, 25, 1303, 10664, 276, 691, 329, 17764, 351, 11361, 362, 13, 21, 198, 220, 220, 220, 220, 220, 220, 220, 220, 18031, 796, 4899, 13, 5143, 7, 11125, 11, 3650, 8, 198, 220, 220, 220, 220, 220, 3601, 10786, 1273, 3255, 18031, 284, 705, 1343, 49920, 62, 6978, 8, 198, 220, 220, 1441, 18031, 198, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 1388, 3419, 628 ]
2.94148
581
import numpy as np import sys ## ROCKSTAR ## halostruct1 = np.dtype([('id',np.int64), ('pos',np.float32,(6,)), ('corevel',np.float32,(3,)), ('bulkvel',np.float32,(3,)), ('m',np.float32), ('r',np.float32), ('child_r',np.float32), ('vmax_r',np.float32), ('mgrav',np.float32), ('vmax',np.float32), ('rvmax',np.float32), ('rs',np.float32), ('klypin_rs',np.float32), ('vrms',np.float32), ('J',np.float32,(3,)), ('energy',np.float32), ('spin',np.float32), ('alt_m',np.float32,(4,)), ('Xoff',np.float32), ('Voff',np.float32), ('b_to_a',np.float32), ('c_to_a',np.float32), ('A',np.float32,(3,)), ('b_to_a2',np.float32), ('c_to_a2',np.float32), ('A2',np.float32,(3,)), ('bullock_spin',np.float32), ('kin_to_pot',np.float32), ('m_pe_b',np.float32), ('m_pe_d',np.float32), ('dummy1',np.float32), ## ALIGNMENT ('num_p',np.int64), ('num_child_particles',np.int64), ('p_start',np.int64), ('desc',np.int64), ('flags',np.int64), ('n_core',np.int64), ('dummy2',np.float32), ## ALIGNMENT ('min_pos_err',np.float32), ('min_vel_err',np.float32), ('min_bulkvel_err',np.float32) ]) halostruct2 = np.dtype([('id',np.int64), ('pos',np.float32,(6,)), ('corevel',np.float32,(3,)), ('bulkvel',np.float32,(3,)), ('m',np.float32), ('r',np.float32), ('child_r',np.float32), ('vmax_r',np.float32), ('mgrav',np.float32), ('vmax',np.float32), ('rvmax',np.float32), ('rs',np.float32), ('klypin_rs',np.float32), ('vrms',np.float32), ('J',np.float32,(3,)), ('energy',np.float32), ('spin',np.float32), ('alt_m',np.float32,(4,)), ('Xoff',np.float32), ('Voff',np.float32), ('b_to_a',np.float32), ('c_to_a',np.float32), ('A',np.float32,(3,)), ('b_to_a2',np.float32), ('c_to_a2',np.float32), ('A2',np.float32,(3,)), ('bullock_spin',np.float32), ('kin_to_pot',np.float32), ('m_pe_b',np.float32), ('m_pe_d',np.float32), ('halfmass_radius',np.float32), #('dummy1',np.float32), ## ALIGNMENT ('num_p',np.int64), ('num_child_particles',np.int64), ('p_start',np.int64), ('desc',np.int64), ('flags',np.int64), ('n_core',np.int64), ('dummy2',np.float32), ## ALIGNMENT ('min_pos_err',np.float32), ('min_vel_err',np.float32), ('min_bulkvel_err',np.float32) ]) ## ROCKSTAR-GALAXIES ## halogalaxystruct1 = np.dtype([('id',np.int64), ('pos',np.float32,(6,)), ('corevel',np.float32,(3,)), ('bulkvel',np.float32,(3,)), ('m',np.float32), ('r',np.float32), ('child_r',np.float32), ('vmax_r',np.float32), ('mgrav',np.float32), ('vmax',np.float32), ('rvmax',np.float32), ('rs',np.float32), ('klypin_rs',np.float32), ('vrms',np.float32), ('J',np.float32,(3,)), ('energy',np.float32), ('spin',np.float32), ('alt_m',np.float32,(4,)), ('Xoff',np.float32), ('Voff',np.float32), ('b_to_a',np.float32), ('c_to_a',np.float32), ('A',np.float32,(3,)), ('b_to_a2',np.float32), ('c_to_a2',np.float32), ('A2',np.float32,(3,)), ('bullock_spin',np.float32), ('kin_to_pot',np.float32), ('m_pe_b',np.float32), ('m_pe_d',np.float32), ('dummy1',np.float32), ## ALIGNMENT ('num_p',np.int64), ('num_child_particles',np.int64), ('p_start',np.int64), ('desc',np.int64), ('flags',np.int64), ('n_core',np.int64), ('dummy2',np.float32), ## ALIGNMENT ('min_pos_err',np.float32), ('min_vel_err',np.float32), ('min_bulkvel_err',np.float32), ('type',np.int32), ('sm',np.float32), ('gas',np.float32), ('bh',np.float32), ('peak_density',np.float32), ('av_density',np.float32), ])
[ 11748, 299, 32152, 355, 45941, 198, 11748, 25064, 198, 198, 2235, 41320, 46678, 22492, 198, 14201, 455, 1356, 16, 796, 45941, 13, 67, 4906, 26933, 10786, 312, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1930, 3256, 37659, 13, 22468, 2624, 11, 7, 21, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 7295, 626, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 65, 12171, 626, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 76, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 81, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 9410, 62, 81, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 85, 9806, 62, 81, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 11296, 4108, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 85, 9806, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 81, 85, 9806, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 3808, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 74, 306, 11635, 62, 3808, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 37020, 907, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 41, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22554, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 39706, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 2501, 62, 76, 3256, 37659, 13, 22468, 2624, 11, 7, 19, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 55, 2364, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 53, 2364, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 65, 62, 1462, 62, 64, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 66, 62, 1462, 62, 64, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 32, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 65, 62, 1462, 62, 64, 17, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 66, 62, 1462, 62, 64, 17, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 32, 17, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 16308, 735, 62, 39706, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 5116, 62, 1462, 62, 13059, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 76, 62, 431, 62, 65, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 76, 62, 431, 62, 67, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 67, 13513, 16, 3256, 37659, 13, 22468, 2624, 828, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 8355, 16284, 10979, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22510, 62, 79, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22510, 62, 9410, 62, 3911, 2983, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 79, 62, 9688, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 20147, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 33152, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 77, 62, 7295, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 67, 13513, 17, 3256, 37659, 13, 22468, 2624, 828, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 8355, 16284, 10979, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1084, 62, 1930, 62, 8056, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1084, 62, 626, 62, 8056, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1084, 62, 65, 12171, 626, 62, 8056, 3256, 37659, 13, 22468, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33761, 198, 198, 14201, 455, 1356, 17, 796, 45941, 13, 67, 4906, 26933, 10786, 312, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1930, 3256, 37659, 13, 22468, 2624, 11, 7, 21, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 7295, 626, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 65, 12171, 626, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 76, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 81, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 9410, 62, 81, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 85, 9806, 62, 81, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 11296, 4108, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 85, 9806, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 81, 85, 9806, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 3808, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 74, 306, 11635, 62, 3808, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 37020, 907, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 41, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22554, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 39706, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 2501, 62, 76, 3256, 37659, 13, 22468, 2624, 11, 7, 19, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 55, 2364, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 53, 2364, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 65, 62, 1462, 62, 64, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 66, 62, 1462, 62, 64, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 32, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 65, 62, 1462, 62, 64, 17, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 66, 62, 1462, 62, 64, 17, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 32, 17, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 16308, 735, 62, 39706, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 5116, 62, 1462, 62, 13059, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 76, 62, 431, 62, 65, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 76, 62, 431, 62, 67, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 13959, 22208, 62, 42172, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10786, 67, 13513, 16, 3256, 37659, 13, 22468, 2624, 828, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 8355, 16284, 10979, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22510, 62, 79, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22510, 62, 9410, 62, 3911, 2983, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 79, 62, 9688, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 20147, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 33152, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 77, 62, 7295, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 67, 13513, 17, 3256, 37659, 13, 22468, 2624, 828, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 8355, 16284, 10979, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1084, 62, 1930, 62, 8056, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1084, 62, 626, 62, 8056, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1084, 62, 65, 12171, 626, 62, 8056, 3256, 37659, 13, 22468, 2624, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33761, 198, 198, 2235, 41320, 46678, 12, 38, 1847, 25922, 11015, 22492, 198, 71, 11794, 282, 6969, 7249, 16, 796, 45941, 13, 67, 4906, 26933, 10786, 312, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1930, 3256, 37659, 13, 22468, 2624, 11, 7, 21, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 7295, 626, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 65, 12171, 626, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 76, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 81, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 9410, 62, 81, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 85, 9806, 62, 81, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 11296, 4108, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 85, 9806, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 81, 85, 9806, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 3808, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 74, 306, 11635, 62, 3808, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 37020, 907, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 41, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22554, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 39706, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 2501, 62, 76, 3256, 37659, 13, 22468, 2624, 11, 7, 19, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 55, 2364, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 53, 2364, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 65, 62, 1462, 62, 64, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 66, 62, 1462, 62, 64, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 32, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 65, 62, 1462, 62, 64, 17, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 66, 62, 1462, 62, 64, 17, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 32, 17, 3256, 37659, 13, 22468, 2624, 11, 7, 18, 35751, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 16308, 735, 62, 39706, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 5116, 62, 1462, 62, 13059, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 76, 62, 431, 62, 65, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 76, 62, 431, 62, 67, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 67, 13513, 16, 3256, 37659, 13, 22468, 2624, 828, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 8355, 16284, 10979, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22510, 62, 79, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22510, 62, 9410, 62, 3911, 2983, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 79, 62, 9688, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 20147, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 33152, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 77, 62, 7295, 3256, 37659, 13, 600, 2414, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 67, 13513, 17, 3256, 37659, 13, 22468, 2624, 828, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22492, 8355, 16284, 10979, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1084, 62, 1930, 62, 8056, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1084, 62, 626, 62, 8056, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 1084, 62, 65, 12171, 626, 62, 8056, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 4906, 3256, 37659, 13, 600, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 5796, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 22649, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 34369, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 36729, 62, 43337, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 19203, 615, 62, 43337, 3256, 37659, 13, 22468, 2624, 828, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 33761, 628 ]
1.367942
4,941
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ics2entropiawiki Read an ics file with the entropia events and insert them in to the entropia homepage wiki. Example: $ ics2entropiawiki.py --config /etc/ics2entropiawiki/config.ini Inserts events not in the past to the "Termine" Wiki page and appends past events to the "Vergangene_Termine" Site """ import locale import configparser import re import requests from argparse import ArgumentParser from datetime import timedelta, datetime from ics import Calendar from mwclient import Site from dateutil.tz import tzlocal BOTWARNING = """ <!-- This text is automatically generated by the ics2entropiawiki bot, everything you write and everything you edit WILL BE OVERWRITTEN Dieser Text ist vom ics2entropiawiki bot automatisch generiert. Alles was hier manuell editiert, hinzugefgt wird WIRD BERSCHRIEBEN --> """ TABLE_HEADER = """ {| class="termine" border="1" cellspacing="0" cellpadding="5" width="100%" style="border-collapse:collapse;" ! style="width:250px;" | Datum !! style="width:50px;" | Zeit !! Ort !! Beschreibung\ """ ARCHIVE_TABLE_HEADER = """ {| class="termine" border="1" cellspacing="0" cellpadding="5" style="border-collapse:collapse;" width="100%" |width=15%|'''Datum''' |width=6%|'''Zeit''' |width=15%|'''Ort''' |width=69%|'''Beschreibung''' """ TABLE_FOOTER = ( "|}", "\n", "Weitere Links: [[Vorlage:Termine|Termine]] ", "([https://entropia.de/index.php?title=Vorlage:Termine&action=edit Bearbeiten]),", " [[Vorlage:Vergangene_Termine|Vergangene Termine]], [[Anfahrt]]" ) LINE_SEPARATOR = "|-\n" try: locale.setlocale(locale.LC_ALL, 'de_DE.utf8') except locale.Error: pass def append_past_events(past_events, wiki_user, wiki_pw, wiki_archive): """ Append the "new" past events to the wiki archive page :param past_events: the past events that were not added to the events page :type past_events: list :param wiki_user: bot user for the wiki :type wiki_user: str :param wiki_pw: password for the wiki user :type wiki_pw: str :param wiki_archive: archive page :type wiki_archive: str :return: None :rtype: None """ site = Site('entropia.de', path='/') site.login(wiki_user, wiki_pw) page = site.pages[wiki_archive] text = page.text().split('\n') last_table_position = 0 for event in past_events: year_header = "== {} ==".format(event.endtime.strftime('%Y')) for index, txtline in enumerate(text): if txtline == '|}': last_table_position = index if str(event) in text: continue if year_header in text: append_list = ( '\n' + LINE_SEPARATOR + str(event) ) text = text[:last_table_position]+[append_list, ]+text[last_table_position:] else: append_list = ( 3 * '\n' + year_header + ARCHIVE_TABLE_HEADER + '\n' + LINE_SEPARATOR + '\n' + str(event) + '\n|}' ) text = text[:last_table_position+1]+[append_list, ]+text[last_table_position+1:] page.save("\n".join(text)) def get_args(): """ Retrieve arguments from the command line, the config file respectively :return: Parsed arguments from command line, config file :rtype: list """ parser = ArgumentParser() parser.add_argument( "-c", "--config", default="/etc/ics2entropiawiki/config.ini", dest="configfile", help="Configuration file path", metavar="CONFIG" ) parser.add_argument( "-u", "--url", dest="ics_url", help="The URL under which the ICS-file can be retrieved", metavar="URL", ) parser.add_argument( "-f", "--file", dest="local_file", help="Local ics file", metavar="FILE" ) parser.add_argument( "--wiki-user", dest="wiki_user", help="Wiki user", metavar="WIKIUSER" ) parser.add_argument( "--wiki-password", dest="wiki_pw", help="Wiki user's password", metavar="WIKIPW" ) parser.add_argument( "--wiki-page", dest="wiki_page", help='Wiki page', metavar='WIKIPAGE' ) parser.add_argument( "--wiki-archive", dest="wiki_archive", help='Wiki archive', metavar='WIKIARCHIVE' ) parser.add_argument( "-d", "--debug", dest="debug", action="store_true", default=False ) args = parser.parse_args() configfile = args.configfile ics_url = args.ics_url file = args.local_file wiki = { 'user': args.wiki_user, 'pass': args.wiki_pw, 'page': args.wiki_page, 'archive': args.wiki_archive, } debug = args.debug if configfile: config = configparser.ConfigParser() config.read(configfile) try: ics_url = config["default"]["url"] wiki = config["wiki"] except KeyError as error: print("Please have a look at the sample config provided with the package") raise error return ics_url, file, wiki, debug def deradicalise_ical(ics): """ :param ics: input file :type ics: str :return: file with remove radicale_headers """ deradicalised = "" for line in ics.splitlines(): if 'X-RADICALE-NAME:' not in line: deradicalised += "\n"+line return deradicalised def main(): """ :return: None :rtype: None """ ics_url, file, wiki, debug = get_args() event_strings = [] past_events = [] if file: calendar = Calendar(deradicalise_ical(open(file).read())) else: ics_result = requests.get(ics_url) ics_result.encoding = 'utf-8' calendar = Calendar(deradicalise_ical(ics_result.text)) for event in sorted(calendar.events, key=lambda ev: ev.begin): event = EntropiaEvent(event) if not event.is_past_event: event_strings.append( "\n" + LINE_SEPARATOR + str(event) ) else: past_events.append(event) append_past_events(past_events, wiki['user'], wiki['pass'], wiki['archive']) termine = BOTWARNING + "\n" + TABLE_HEADER + "\n" + "".join(event_strings) + "\n" + "".join(TABLE_FOOTER) if debug: print(termine) site = Site('entropia.de', path='/') site.login(wiki['user'], wiki['pass']) page = site.pages[wiki['page']] if termine: page.save(termine, "Terminbot was here") page.purge() if __name__ == '__main__': main()
[ 2, 48443, 14629, 14, 8800, 14, 24330, 21015, 18, 198, 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 37811, 873, 17, 298, 1773, 544, 15466, 198, 198, 5569, 281, 220, 873, 2393, 351, 262, 920, 1773, 544, 2995, 290, 7550, 606, 287, 284, 262, 198, 298, 1773, 544, 34940, 22719, 13, 198, 198, 16281, 25, 628, 220, 220, 220, 220, 220, 220, 220, 720, 220, 873, 17, 298, 1773, 544, 15466, 13, 9078, 1377, 11250, 1220, 14784, 14, 873, 17, 298, 1773, 544, 15466, 14, 11250, 13, 5362, 198, 198, 44402, 82, 2995, 407, 287, 262, 1613, 284, 262, 366, 15156, 3810, 1, 13078, 2443, 290, 598, 2412, 1613, 198, 31534, 284, 262, 366, 53, 6422, 648, 1734, 62, 15156, 3810, 1, 14413, 198, 37811, 198, 11748, 36693, 198, 11748, 4566, 48610, 198, 11748, 302, 198, 11748, 7007, 198, 198, 6738, 1822, 29572, 1330, 45751, 46677, 198, 6738, 4818, 8079, 1330, 28805, 12514, 11, 4818, 8079, 198, 6738, 220, 873, 1330, 26506, 198, 6738, 285, 86, 16366, 1330, 14413, 198, 6738, 3128, 22602, 13, 22877, 1330, 256, 89, 12001, 198, 198, 33, 2394, 31502, 796, 37227, 198, 27, 28112, 198, 1212, 2420, 318, 6338, 7560, 416, 262, 220, 873, 17, 298, 1773, 544, 15466, 10214, 11, 2279, 345, 3551, 290, 2279, 345, 4370, 198, 54, 8267, 9348, 28729, 18564, 22470, 1677, 198, 35, 444, 263, 8255, 318, 83, 20918, 220, 873, 17, 298, 1773, 544, 15466, 10214, 3557, 265, 25308, 1152, 72, 861, 13, 1439, 274, 373, 13550, 582, 518, 297, 4370, 72, 861, 11, 289, 259, 89, 2217, 69, 13655, 266, 1447, 198, 54, 46833, 347, 4877, 3398, 7112, 30195, 1677, 198, 46904, 198, 37811, 198, 198, 38148, 62, 37682, 1137, 796, 37227, 198, 90, 91, 1398, 2625, 353, 3810, 1, 4865, 2625, 16, 1, 2685, 2777, 4092, 2625, 15, 1, 2685, 39231, 2625, 20, 1, 9647, 2625, 3064, 39658, 3918, 2625, 20192, 12, 26000, 7512, 25, 26000, 7512, 26033, 198, 0, 3918, 2625, 10394, 25, 9031, 8416, 26033, 930, 220, 16092, 388, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37867, 3918, 2625, 10394, 25, 1120, 8416, 26033, 930, 47447, 220, 37867, 31427, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37867, 30837, 354, 260, 571, 2150, 59, 198, 37811, 198, 198, 31315, 9306, 62, 38148, 62, 37682, 1137, 796, 37227, 198, 90, 91, 1398, 2625, 353, 3810, 1, 4865, 2625, 16, 1, 2685, 2777, 4092, 2625, 15, 1, 2685, 39231, 2625, 20, 1, 3918, 2625, 20192, 12, 26000, 7512, 25, 26000, 7512, 26033, 9647, 2625, 3064, 39658, 198, 91, 10394, 28, 1314, 4, 91, 7061, 6, 35, 21307, 7061, 6, 198, 91, 10394, 28, 21, 4, 91, 7061, 6, 36056, 270, 7061, 6, 198, 91, 10394, 28, 1314, 4, 91, 7061, 6, 5574, 83, 7061, 6, 198, 91, 10394, 28, 3388, 4, 91, 7061, 6, 33, 274, 354, 260, 571, 2150, 7061, 6, 198, 37811, 198, 198, 38148, 62, 6080, 2394, 1137, 796, 357, 198, 220, 220, 220, 366, 91, 92, 1600, 198, 220, 220, 220, 37082, 77, 1600, 198, 220, 220, 220, 366, 1135, 270, 567, 21691, 25, 16410, 53, 273, 75, 496, 25, 15156, 3810, 91, 15156, 3810, 11907, 33172, 198, 220, 220, 220, 366, 26933, 5450, 1378, 298, 1773, 544, 13, 2934, 14, 9630, 13, 10121, 30, 7839, 28, 53, 273, 75, 496, 25, 15156, 3810, 5, 2673, 28, 19312, 14732, 15357, 268, 12962, 553, 11, 198, 220, 220, 220, 366, 16410, 53, 273, 75, 496, 25, 53, 6422, 648, 1734, 62, 15156, 3810, 91, 53, 6422, 648, 1734, 3813, 3810, 60, 4357, 16410, 2025, 69, 993, 17034, 11907, 1, 198, 8, 198, 198, 24027, 62, 5188, 27082, 25633, 796, 366, 91, 12, 59, 77, 1, 198, 198, 28311, 25, 198, 220, 220, 220, 36693, 13, 2617, 17946, 1000, 7, 17946, 1000, 13, 5639, 62, 7036, 11, 705, 2934, 62, 7206, 13, 40477, 23, 11537, 198, 16341, 36693, 13, 12331, 25, 198, 220, 220, 220, 1208, 628, 198, 198, 4299, 24443, 62, 30119, 62, 31534, 7, 30119, 62, 31534, 11, 22719, 62, 7220, 11, 22719, 62, 79, 86, 11, 22719, 62, 17474, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 2034, 437, 262, 366, 3605, 1, 1613, 2995, 284, 262, 22719, 15424, 2443, 198, 220, 220, 220, 1058, 17143, 1613, 62, 31534, 25, 262, 1613, 2995, 326, 547, 407, 2087, 284, 262, 2995, 2443, 198, 220, 220, 220, 1058, 4906, 1613, 62, 31534, 25, 1351, 198, 220, 220, 220, 1058, 17143, 22719, 62, 7220, 25, 10214, 2836, 329, 262, 22719, 198, 220, 220, 220, 1058, 4906, 22719, 62, 7220, 25, 965, 198, 220, 220, 220, 1058, 17143, 22719, 62, 79, 86, 25, 9206, 329, 262, 22719, 2836, 198, 220, 220, 220, 1058, 4906, 22719, 62, 79, 86, 25, 965, 198, 220, 220, 220, 1058, 17143, 22719, 62, 17474, 25, 15424, 2443, 198, 220, 220, 220, 1058, 4906, 22719, 62, 17474, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 6045, 198, 220, 220, 220, 1058, 81, 4906, 25, 6045, 198, 220, 220, 220, 37227, 628, 220, 220, 220, 2524, 796, 14413, 10786, 298, 1773, 544, 13, 2934, 3256, 3108, 11639, 14, 11537, 198, 220, 220, 220, 2524, 13, 38235, 7, 15466, 62, 7220, 11, 22719, 62, 79, 86, 8, 198, 220, 220, 220, 2443, 796, 2524, 13, 31126, 58, 15466, 62, 17474, 60, 198, 220, 220, 220, 2420, 796, 2443, 13, 5239, 22446, 35312, 10786, 59, 77, 11537, 198, 220, 220, 220, 938, 62, 11487, 62, 9150, 796, 657, 198, 220, 220, 220, 329, 1785, 287, 1613, 62, 31534, 25, 198, 220, 220, 220, 220, 220, 220, 220, 614, 62, 25677, 796, 366, 855, 23884, 6624, 1911, 18982, 7, 15596, 13, 437, 2435, 13, 2536, 31387, 10786, 4, 56, 6, 4008, 628, 220, 220, 220, 220, 220, 220, 220, 329, 6376, 11, 256, 742, 1370, 287, 27056, 378, 7, 5239, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 256, 742, 1370, 6624, 705, 91, 92, 10354, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 938, 62, 11487, 62, 9150, 796, 6376, 628, 220, 220, 220, 220, 220, 220, 220, 611, 965, 7, 15596, 8, 287, 2420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2555, 628, 220, 220, 220, 220, 220, 220, 220, 611, 614, 62, 25677, 287, 2420, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24443, 62, 4868, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 59, 77, 6, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48920, 62, 5188, 27082, 25633, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 7, 15596, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 2420, 58, 25, 12957, 62, 11487, 62, 9150, 48688, 58, 33295, 62, 4868, 11, 2361, 10, 5239, 58, 12957, 62, 11487, 62, 9150, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 24443, 62, 4868, 796, 357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 513, 1635, 705, 59, 77, 6, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 614, 62, 25677, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5923, 3398, 9306, 62, 38148, 62, 37682, 1137, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 59, 77, 6, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48920, 62, 5188, 27082, 25633, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 59, 77, 6, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 7, 15596, 8, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 59, 77, 91, 92, 6, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2420, 796, 2420, 58, 25, 12957, 62, 11487, 62, 9150, 10, 16, 48688, 58, 33295, 62, 4868, 11, 2361, 10, 5239, 58, 12957, 62, 11487, 62, 9150, 10, 16, 47715, 628, 220, 220, 220, 2443, 13, 21928, 7203, 59, 77, 1911, 22179, 7, 5239, 4008, 628, 198, 4299, 651, 62, 22046, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4990, 30227, 7159, 422, 262, 3141, 1627, 11, 262, 4566, 2393, 8148, 198, 220, 220, 220, 1058, 7783, 25, 23042, 276, 7159, 422, 3141, 1627, 11, 4566, 2393, 198, 220, 220, 220, 1058, 81, 4906, 25, 1351, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 30751, 796, 45751, 46677, 3419, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 66, 1600, 366, 438, 11250, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 35922, 14784, 14, 873, 17, 298, 1773, 544, 15466, 14, 11250, 13, 5362, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2244, 2625, 11250, 7753, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 38149, 2393, 3108, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1138, 615, 283, 2625, 10943, 16254, 1, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 84, 1600, 366, 438, 6371, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2244, 2625, 873, 62, 6371, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 464, 10289, 739, 543, 262, 314, 7902, 12, 7753, 460, 307, 29517, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1138, 615, 283, 2625, 21886, 1600, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 69, 1600, 366, 438, 7753, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2244, 2625, 12001, 62, 7753, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 14565, 220, 873, 2393, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1138, 615, 283, 2625, 25664, 1, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 438, 15466, 12, 7220, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2244, 2625, 15466, 62, 7220, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 32603, 2836, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1138, 615, 283, 2625, 54, 18694, 40, 29904, 1, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 438, 15466, 12, 28712, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2244, 2625, 15466, 62, 79, 86, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 2625, 32603, 2836, 338, 9206, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1138, 615, 283, 2625, 54, 18694, 4061, 54, 1, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 438, 15466, 12, 7700, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2244, 2625, 15466, 62, 7700, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 32603, 2443, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1138, 615, 283, 11639, 54, 18694, 4061, 11879, 6, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 366, 438, 15466, 12, 17474, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2244, 2625, 15466, 62, 17474, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 1037, 11639, 32603, 15424, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 1138, 615, 283, 11639, 54, 18694, 40, 31315, 9306, 6, 198, 220, 220, 220, 1267, 198, 220, 220, 220, 30751, 13, 2860, 62, 49140, 7, 198, 220, 220, 220, 220, 220, 220, 220, 27444, 67, 1600, 366, 438, 24442, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2244, 2625, 24442, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 2223, 2625, 8095, 62, 7942, 1600, 198, 220, 220, 220, 220, 220, 220, 220, 4277, 28, 25101, 198, 220, 220, 220, 1267, 628, 220, 220, 220, 26498, 796, 30751, 13, 29572, 62, 22046, 3419, 198, 220, 220, 220, 4566, 7753, 796, 26498, 13, 11250, 7753, 198, 220, 220, 220, 220, 873, 62, 6371, 796, 26498, 13, 873, 62, 6371, 198, 220, 220, 220, 2393, 796, 26498, 13, 12001, 62, 7753, 198, 220, 220, 220, 22719, 796, 1391, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7220, 10354, 26498, 13, 15466, 62, 7220, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 6603, 10354, 26498, 13, 15466, 62, 79, 86, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 7700, 10354, 26498, 13, 15466, 62, 7700, 11, 198, 220, 220, 220, 220, 220, 220, 220, 705, 17474, 10354, 26498, 13, 15466, 62, 17474, 11, 198, 220, 220, 220, 1782, 198, 220, 220, 220, 14257, 796, 26498, 13, 24442, 628, 220, 220, 220, 611, 4566, 7753, 25, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 796, 4566, 48610, 13, 16934, 46677, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 4566, 13, 961, 7, 11250, 7753, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1949, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 873, 62, 6371, 796, 4566, 14692, 12286, 1, 7131, 1, 6371, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 22719, 796, 4566, 14692, 15466, 8973, 198, 220, 220, 220, 220, 220, 220, 220, 2845, 7383, 12331, 355, 4049, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3601, 7203, 5492, 423, 257, 804, 379, 262, 6291, 4566, 2810, 351, 262, 5301, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 5298, 4049, 628, 220, 220, 220, 1441, 220, 873, 62, 6371, 11, 2393, 11, 22719, 11, 14257, 628, 198, 4299, 4587, 324, 605, 786, 62, 605, 7, 873, 2599, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 17143, 220, 873, 25, 5128, 2393, 198, 220, 220, 220, 1058, 4906, 220, 873, 25, 965, 198, 220, 220, 220, 1058, 7783, 25, 2393, 351, 4781, 7702, 68, 62, 50145, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 4587, 324, 605, 1417, 796, 13538, 198, 220, 220, 220, 329, 1627, 287, 220, 873, 13, 35312, 6615, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 611, 705, 55, 12, 49, 2885, 20151, 36, 12, 20608, 32105, 407, 287, 1627, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 4587, 324, 605, 1417, 15853, 37082, 77, 1, 10, 1370, 628, 220, 220, 220, 1441, 4587, 324, 605, 1417, 628, 198, 4299, 1388, 33529, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 1058, 7783, 25, 6045, 198, 220, 220, 220, 1058, 81, 4906, 25, 6045, 198, 220, 220, 220, 37227, 198, 220, 220, 220, 220, 873, 62, 6371, 11, 2393, 11, 22719, 11, 14257, 796, 651, 62, 22046, 3419, 198, 220, 220, 220, 1785, 62, 37336, 796, 17635, 198, 220, 220, 220, 1613, 62, 31534, 796, 17635, 628, 220, 220, 220, 611, 2393, 25, 198, 220, 220, 220, 220, 220, 220, 220, 11845, 796, 26506, 7, 1082, 324, 605, 786, 62, 605, 7, 9654, 7, 7753, 737, 961, 3419, 4008, 198, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 873, 62, 20274, 796, 7007, 13, 1136, 7, 873, 62, 6371, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 873, 62, 20274, 13, 12685, 7656, 796, 705, 40477, 12, 23, 6, 198, 220, 220, 220, 220, 220, 220, 220, 11845, 796, 26506, 7, 1082, 324, 605, 786, 62, 605, 7, 873, 62, 20274, 13, 5239, 4008, 628, 220, 220, 220, 329, 1785, 287, 23243, 7, 9948, 9239, 13, 31534, 11, 1994, 28, 50033, 819, 25, 819, 13, 27471, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 1785, 796, 7232, 1773, 544, 9237, 7, 15596, 8, 198, 220, 220, 220, 220, 220, 220, 220, 611, 407, 1785, 13, 271, 62, 30119, 62, 15596, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1785, 62, 37336, 13, 33295, 7, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37082, 77, 1, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 48920, 62, 5188, 27082, 25633, 1343, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 965, 7, 15596, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1613, 62, 31534, 13, 33295, 7, 15596, 8, 628, 220, 220, 220, 24443, 62, 30119, 62, 31534, 7, 30119, 62, 31534, 11, 22719, 17816, 7220, 6, 4357, 22719, 17816, 6603, 6, 4357, 22719, 17816, 17474, 6, 12962, 198, 220, 220, 220, 3381, 500, 796, 347, 2394, 31502, 1343, 37082, 77, 1, 1343, 43679, 62, 37682, 1137, 1343, 37082, 77, 1, 1343, 366, 1911, 22179, 7, 15596, 62, 37336, 8, 1343, 37082, 77, 1, 1343, 366, 1911, 22179, 7, 38148, 62, 6080, 2394, 1137, 8, 198, 220, 220, 220, 611, 14257, 25, 198, 220, 220, 220, 220, 220, 220, 220, 3601, 7, 353, 3810, 8, 198, 220, 220, 220, 2524, 796, 14413, 10786, 298, 1773, 544, 13, 2934, 3256, 3108, 11639, 14, 11537, 198, 220, 220, 220, 2524, 13, 38235, 7, 15466, 17816, 7220, 6, 4357, 22719, 17816, 6603, 6, 12962, 198, 220, 220, 220, 2443, 796, 2524, 13, 31126, 58, 15466, 17816, 7700, 6, 11907, 198, 220, 220, 220, 611, 3381, 500, 25, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 13, 21928, 7, 353, 3810, 11, 366, 44798, 13645, 373, 994, 4943, 198, 220, 220, 220, 220, 220, 220, 220, 2443, 13, 14225, 469, 3419, 628, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 1388, 3419, 198 ]
2.181761
3,158
#!/bin/python3 import math import os import random import re import sys # Complete the rotLeft function below. if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') nd = input().split() n = int(nd[0]) d = int(nd[1]) a = list(map(int, input().rstrip().split())) result = rotLeft(a, d) fptr.write(' '.join(map(str, result))) fptr.write('\n') fptr.close()
[ 2, 48443, 8800, 14, 29412, 18, 201, 198, 201, 198, 11748, 10688, 201, 198, 11748, 28686, 201, 198, 11748, 4738, 201, 198, 11748, 302, 201, 198, 11748, 25064, 201, 198, 201, 198, 2, 13248, 262, 5724, 18819, 2163, 2174, 13, 201, 198, 201, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 201, 198, 220, 220, 220, 277, 20692, 796, 1280, 7, 418, 13, 268, 2268, 17816, 2606, 7250, 3843, 62, 34219, 6, 4357, 705, 86, 11537, 201, 198, 201, 198, 220, 220, 220, 299, 67, 796, 5128, 22446, 35312, 3419, 201, 198, 201, 198, 220, 220, 220, 299, 796, 493, 7, 358, 58, 15, 12962, 201, 198, 201, 198, 220, 220, 220, 288, 796, 493, 7, 358, 58, 16, 12962, 201, 198, 201, 198, 220, 220, 220, 257, 796, 1351, 7, 8899, 7, 600, 11, 5128, 22446, 81, 36311, 22446, 35312, 3419, 4008, 201, 198, 201, 198, 220, 220, 220, 1255, 796, 5724, 18819, 7, 64, 11, 288, 8, 201, 198, 201, 198, 220, 220, 220, 277, 20692, 13, 13564, 10786, 45302, 22179, 7, 8899, 7, 2536, 11, 1255, 22305, 201, 198, 220, 220, 220, 277, 20692, 13, 13564, 10786, 59, 77, 11537, 201, 198, 201, 198, 220, 220, 220, 277, 20692, 13, 19836, 3419, 201, 198 ]
2.109524
210
import os import cflearn import platform import unittest from cfdata.tabular import TabularDataset num_jobs = 0 if platform.system() == "Linux" else 2 logging_folder = "__test_zoo__" if __name__ == "__main__": unittest.main()
[ 11748, 28686, 198, 11748, 269, 27919, 1501, 198, 11748, 3859, 198, 11748, 555, 715, 395, 198, 198, 6738, 30218, 7890, 13, 8658, 934, 1330, 16904, 934, 27354, 292, 316, 198, 198, 22510, 62, 43863, 796, 657, 611, 3859, 13, 10057, 3419, 6624, 366, 19314, 1, 2073, 362, 198, 6404, 2667, 62, 43551, 796, 366, 834, 9288, 62, 89, 2238, 834, 1, 628, 198, 198, 361, 11593, 3672, 834, 6624, 366, 834, 12417, 834, 1298, 198, 220, 220, 220, 555, 715, 395, 13, 12417, 3419, 198 ]
2.764706
85
# # Data Structures: Linked List Merge Sort: The Conquer Step # Python Techdegree # # Created by Dulio Denis on 3/24/19. # Copyright (c) 2019 ddApps. All rights reserved. # ------------------------------------------------ from linked_list import Node, LinkedList def merge_sort(linked_list): ''' Sorts a linked list in ascending order. - Recuresively divide the linked list into sublists containing a single node - Repeatedly merge the sublists to produce sorted swublists until one remains Returns a sorted linked list. Runs in O(kn log n) time. ''' if linked_list.size() == 1: return linked_list elif linked_list.is_empty(): return linked_list left_half, right_half = split(linked_list) left = merge_sort(left_half) right = merge_sort(right_half) return merge(left, right) def split(linked_list): ''' Divide the unsorted list at the midpoint into sublists. Takes O(k log n) quasilinear time. ''' if linked_list == None or linked_list.head == None: left_half = linked_list right_half = None return left_half, right_half else: # non-empty linked lists size = linked_list.size() midpoint = size // 2 mid_node = linked_list.node_at_index(midpoint-1) left_half = linked_list right_half = LinkedList() right_half = mid_node.next_node mid_node.next_node = None return left_half, right_half def merge(left, right): ''' Merges two linked lists, sorting by data in nodes. Returns a new, merged list. Runs in O(n) linear time. ''' # Create a new linked list that contains nodes from # merging left and right merged = LinkedList() # Add a fake head that is discarded later to simplify code merged.add(0) # Set current to the head of the linked list current = merged.head # Obtain head nodes for left and right linked lists left_head = left.head right_head = right.head # Iterate over left and right until we reach the tail node # of either while left_head or right_head: # If the head node of the left is None, we're past the tail # Add the node from right to merged linkned list if left_head is None: current.next_node = right_head # Call next on right to set loop condition to False right_head = right_head.next_node # If the head node of right is None, we're past the tail # Add the tail node from left to merged linked list elif right_head is None: current.next_node = left_head # Call next on left to set loop condition to False left_head = left_head.next_node else: # Not at either tail node # Obtain node data to perform comparison operations left_data = left_head.data right_data = right_head.data # If data on left is less than right, set current to left node if left_data < right_data: current.next_node = left_head # Move left head to next node left_head = left_head.next_node # If data on left is greater than right, set current to right node else: current.next_node = right_head # Move right head to next node right_head = right_head.next_node # Move current to next node current = current.next_node # Discard fake head and set first merged node as head head = merged.head.next_node merged.head = head return merged l = LinkedList() l.add(10) l.add(2) l.add(44) l.add(15) l.add(200) print(l) sorted_linked_list = merge_sort(l) print(sorted_linked_list)
[ 2, 198, 2, 220, 6060, 32112, 942, 25, 7502, 276, 7343, 39407, 33947, 25, 383, 40963, 5012, 198, 2, 220, 11361, 9634, 16863, 198, 2, 198, 2, 220, 15622, 416, 42148, 952, 33089, 319, 513, 14, 1731, 14, 1129, 13, 198, 2, 220, 15069, 357, 66, 8, 13130, 49427, 48433, 13, 1439, 2489, 10395, 13, 198, 2, 20368, 1783, 198, 6738, 6692, 62, 4868, 1330, 19081, 11, 7502, 276, 8053, 198, 198, 4299, 20121, 62, 30619, 7, 25614, 62, 4868, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 311, 2096, 257, 6692, 1351, 287, 41988, 1502, 13, 198, 220, 220, 220, 532, 3311, 942, 2280, 14083, 262, 6692, 1351, 656, 850, 20713, 7268, 257, 2060, 10139, 198, 220, 220, 220, 532, 30558, 515, 306, 20121, 262, 850, 20713, 284, 4439, 23243, 1509, 549, 20713, 1566, 530, 3793, 198, 220, 220, 220, 16409, 257, 23243, 6692, 1351, 13, 628, 220, 220, 220, 44743, 287, 440, 7, 15418, 2604, 299, 8, 640, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 6692, 62, 4868, 13, 7857, 3419, 6624, 352, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6692, 62, 4868, 198, 220, 220, 220, 1288, 361, 6692, 62, 4868, 13, 271, 62, 28920, 33529, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 6692, 62, 4868, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1364, 62, 13959, 11, 826, 62, 13959, 796, 6626, 7, 25614, 62, 4868, 8, 198, 220, 220, 220, 1364, 796, 20121, 62, 30619, 7, 9464, 62, 13959, 8, 198, 220, 220, 220, 826, 796, 20121, 62, 30619, 7, 3506, 62, 13959, 8, 628, 220, 220, 220, 1441, 20121, 7, 9464, 11, 826, 8, 198, 198, 4299, 6626, 7, 25614, 62, 4868, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 46894, 262, 5576, 9741, 1351, 379, 262, 3095, 4122, 656, 850, 20713, 13, 198, 220, 220, 220, 33687, 440, 7, 74, 2604, 299, 8, 627, 292, 346, 259, 451, 640, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 611, 6692, 62, 4868, 6624, 6045, 393, 6692, 62, 4868, 13, 2256, 6624, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1364, 62, 13959, 796, 6692, 62, 4868, 198, 220, 220, 220, 220, 220, 220, 220, 826, 62, 13959, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1364, 62, 13959, 11, 826, 62, 13959, 198, 220, 220, 220, 2073, 25, 1303, 1729, 12, 28920, 6692, 8341, 198, 220, 220, 220, 220, 220, 220, 220, 2546, 796, 6692, 62, 4868, 13, 7857, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 3095, 4122, 796, 2546, 3373, 362, 198, 220, 220, 220, 220, 220, 220, 220, 3095, 62, 17440, 796, 6692, 62, 4868, 13, 17440, 62, 265, 62, 9630, 7, 13602, 4122, 12, 16, 8, 628, 220, 220, 220, 220, 220, 220, 220, 1364, 62, 13959, 796, 6692, 62, 4868, 198, 220, 220, 220, 220, 220, 220, 220, 826, 62, 13959, 796, 7502, 276, 8053, 3419, 198, 220, 220, 220, 220, 220, 220, 220, 826, 62, 13959, 796, 3095, 62, 17440, 13, 19545, 62, 17440, 198, 220, 220, 220, 220, 220, 220, 220, 3095, 62, 17440, 13, 19545, 62, 17440, 796, 6045, 198, 220, 220, 220, 220, 220, 220, 220, 1441, 1364, 62, 13959, 11, 826, 62, 13959, 198, 198, 4299, 20121, 7, 9464, 11, 826, 2599, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 4638, 3212, 734, 6692, 8341, 11, 29407, 416, 1366, 287, 13760, 13, 198, 220, 220, 220, 16409, 257, 649, 11, 23791, 1351, 13, 198, 220, 220, 220, 44743, 287, 440, 7, 77, 8, 14174, 640, 13, 198, 220, 220, 220, 705, 7061, 198, 220, 220, 220, 1303, 13610, 257, 649, 6692, 1351, 326, 4909, 13760, 422, 220, 198, 220, 220, 220, 1303, 35981, 1364, 290, 826, 220, 198, 220, 220, 220, 23791, 796, 7502, 276, 8053, 3419, 628, 220, 220, 220, 1303, 3060, 257, 8390, 1182, 326, 318, 25148, 1568, 284, 30276, 2438, 198, 220, 220, 220, 23791, 13, 2860, 7, 15, 8, 628, 220, 220, 220, 1303, 5345, 1459, 284, 262, 1182, 286, 262, 6692, 1351, 198, 220, 220, 220, 1459, 796, 23791, 13, 2256, 628, 220, 220, 220, 1303, 1835, 3153, 1182, 13760, 329, 1364, 290, 826, 6692, 8341, 198, 220, 220, 220, 1364, 62, 2256, 796, 1364, 13, 2256, 198, 220, 220, 220, 826, 62, 2256, 796, 826, 13, 2256, 628, 220, 220, 220, 1303, 40806, 378, 625, 1364, 290, 826, 1566, 356, 3151, 262, 7894, 10139, 220, 198, 220, 220, 220, 1303, 286, 2035, 198, 220, 220, 220, 981, 1364, 62, 2256, 393, 826, 62, 2256, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 262, 1182, 10139, 286, 262, 1364, 318, 6045, 11, 356, 821, 1613, 262, 7894, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3060, 262, 10139, 422, 826, 284, 23791, 2792, 2817, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 611, 1364, 62, 2256, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1459, 13, 19545, 62, 17440, 796, 826, 62, 2256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4889, 1306, 319, 826, 284, 900, 9052, 4006, 284, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 826, 62, 2256, 796, 826, 62, 2256, 13, 19545, 62, 17440, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 262, 1182, 10139, 286, 826, 318, 6045, 11, 356, 821, 1613, 262, 7894, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 3060, 262, 7894, 10139, 422, 1364, 284, 23791, 6692, 1351, 198, 220, 220, 220, 220, 220, 220, 220, 1288, 361, 826, 62, 2256, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1459, 13, 19545, 62, 17440, 796, 1364, 62, 2256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 4889, 1306, 319, 1364, 284, 900, 9052, 4006, 284, 10352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1364, 62, 2256, 796, 1364, 62, 2256, 13, 19545, 62, 17440, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1892, 379, 2035, 7894, 10139, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1835, 3153, 10139, 1366, 284, 1620, 7208, 4560, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1364, 62, 7890, 796, 1364, 62, 2256, 13, 7890, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 826, 62, 7890, 796, 826, 62, 2256, 13, 7890, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 1366, 319, 1364, 318, 1342, 621, 826, 11, 900, 1459, 284, 1364, 10139, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 1364, 62, 7890, 1279, 826, 62, 7890, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1459, 13, 19545, 62, 17440, 796, 1364, 62, 2256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10028, 1364, 1182, 284, 1306, 10139, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1364, 62, 2256, 796, 1364, 62, 2256, 13, 19545, 62, 17440, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 1002, 1366, 319, 1364, 318, 3744, 621, 826, 11, 900, 1459, 284, 826, 10139, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1459, 13, 19545, 62, 17440, 796, 826, 62, 2256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 10028, 826, 1182, 284, 1306, 10139, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 826, 62, 2256, 796, 826, 62, 2256, 13, 19545, 62, 17440, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 10028, 1459, 284, 1306, 10139, 198, 220, 220, 220, 220, 220, 220, 220, 1459, 796, 1459, 13, 19545, 62, 17440, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 8444, 446, 8390, 1182, 290, 900, 717, 23791, 10139, 355, 1182, 198, 220, 220, 220, 220, 220, 220, 220, 1182, 796, 23791, 13, 2256, 13, 19545, 62, 17440, 198, 220, 220, 220, 220, 220, 220, 220, 23791, 13, 2256, 796, 1182, 628, 220, 220, 220, 220, 220, 220, 220, 1441, 23791, 198, 198, 75, 796, 7502, 276, 8053, 3419, 198, 75, 13, 2860, 7, 940, 8, 198, 75, 13, 2860, 7, 17, 8, 198, 75, 13, 2860, 7, 2598, 8, 198, 75, 13, 2860, 7, 1314, 8, 198, 75, 13, 2860, 7, 2167, 8, 198, 4798, 7, 75, 8, 198, 82, 9741, 62, 25614, 62, 4868, 796, 20121, 62, 30619, 7, 75, 8, 198, 4798, 7, 82, 9741, 62, 25614, 62, 4868, 8, 198 ]
2.495088
1,527
# -*- coding: utf-8 -*- # Copyright (c) 2013 Ole Krause-Sparmann # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. import numpy import scipy import unittest import time from nearpy import Engine from nearpy.distances import CosineDistance from nearpy.hashes import RandomBinaryProjections, HashPermutations, HashPermutationMapper
[ 2, 532, 9, 12, 19617, 25, 3384, 69, 12, 23, 532, 9, 12, 198, 198, 2, 15069, 357, 66, 8, 2211, 30093, 21553, 1904, 12, 50, 1845, 9038, 198, 198, 2, 2448, 3411, 318, 29376, 7520, 11, 1479, 286, 3877, 11, 284, 597, 1048, 16727, 257, 4866, 198, 2, 286, 428, 3788, 290, 3917, 10314, 3696, 357, 1169, 366, 25423, 12340, 284, 1730, 198, 2, 287, 262, 10442, 1231, 17504, 11, 1390, 1231, 17385, 262, 2489, 198, 2, 284, 779, 11, 4866, 11, 13096, 11, 20121, 11, 7715, 11, 14983, 11, 850, 43085, 11, 290, 14, 273, 3677, 198, 2, 9088, 286, 262, 10442, 11, 290, 284, 8749, 6506, 284, 4150, 262, 10442, 318, 198, 2, 30760, 284, 466, 523, 11, 2426, 284, 262, 1708, 3403, 25, 198, 198, 2, 383, 2029, 6634, 4003, 290, 428, 7170, 4003, 2236, 307, 3017, 287, 198, 2, 477, 9088, 393, 8904, 16690, 286, 262, 10442, 13, 198, 198, 2, 3336, 47466, 3180, 36592, 2389, 1961, 366, 1921, 3180, 1600, 42881, 34764, 56, 3963, 15529, 509, 12115, 11, 7788, 32761, 6375, 198, 2, 8959, 49094, 11, 47783, 2751, 21728, 5626, 40880, 5390, 3336, 34764, 11015, 3963, 34482, 3398, 1565, 5603, 25382, 11, 198, 2, 376, 46144, 7473, 317, 16652, 2149, 37232, 33079, 48933, 5357, 44521, 1268, 10913, 2751, 12529, 13, 3268, 8005, 49261, 50163, 3336, 198, 2, 37195, 20673, 6375, 27975, 38162, 9947, 367, 15173, 4877, 9348, 43031, 19146, 7473, 15529, 47666, 3955, 11, 29506, 25552, 6375, 25401, 198, 2, 43031, 25382, 11, 7655, 2767, 16879, 3268, 3537, 40282, 3963, 27342, 10659, 11, 309, 9863, 6375, 25401, 54, 24352, 11, 5923, 1797, 2751, 16034, 11, 198, 2, 16289, 3963, 6375, 3268, 7102, 45, 24565, 13315, 3336, 47466, 6375, 3336, 23210, 6375, 25401, 5550, 1847, 20754, 3268, 198, 2, 3336, 47466, 13, 198, 198, 11748, 299, 32152, 198, 11748, 629, 541, 88, 198, 11748, 555, 715, 395, 198, 11748, 640, 198, 198, 6738, 1474, 9078, 1330, 7117, 198, 6738, 1474, 9078, 13, 17080, 1817, 1330, 10437, 500, 45767, 198, 198, 6738, 1474, 9078, 13, 71, 7465, 1330, 14534, 33, 3219, 16775, 507, 11, 21059, 5990, 21973, 602, 11, 21059, 5990, 76, 7094, 44, 11463, 198 ]
3.716667
360
from discord.ext import commands, tasks # Bot Commands Framework import traceback # import os import discord import r TOKEN = os.environ['DISCORD_BOT_TOKEN'] prefix = os.environ['DISCORD_BOT_PREFIX'] # # INITIAL_EXTENSIONS = [ 'cogs.eval', 'cogs.glchat', 'cogs.gladd', 'cogs.gldel' ] # ClientBot #MyBot if __name__ == '__main__': bot = MyBot(command_prefix=prefix,help_command=JapaneseHelpCommand()) # command_prefix e.g. !ping bot.run(TOKEN) # Bot
[ 6738, 36446, 13, 2302, 1330, 9729, 11, 8861, 1303, 18579, 49505, 25161, 198, 11748, 12854, 1891, 1303, 220, 198, 11748, 28686, 198, 11748, 36446, 198, 11748, 374, 198, 198, 10468, 43959, 796, 28686, 13, 268, 2268, 17816, 26288, 34, 12532, 62, 33, 2394, 62, 10468, 43959, 20520, 198, 40290, 796, 28686, 13, 268, 2268, 17816, 26288, 34, 12532, 62, 33, 2394, 62, 47, 31688, 10426, 20520, 1303, 198, 198, 2, 220, 198, 1268, 2043, 12576, 62, 13918, 16938, 11053, 796, 685, 198, 220, 220, 220, 705, 66, 18463, 13, 18206, 3256, 198, 220, 220, 220, 705, 66, 18463, 13, 4743, 17006, 3256, 198, 220, 220, 220, 705, 66, 18463, 13, 4743, 2860, 3256, 198, 220, 220, 220, 705, 66, 18463, 13, 70, 335, 417, 6, 198, 60, 198, 198, 2, 20985, 20630, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 198, 2, 3666, 20630, 198, 361, 11593, 3672, 834, 6624, 705, 834, 12417, 834, 10354, 198, 220, 220, 220, 10214, 796, 2011, 20630, 7, 21812, 62, 40290, 28, 40290, 11, 16794, 62, 21812, 28, 25324, 22087, 21575, 28955, 1303, 3141, 62, 40290, 304, 13, 70, 13, 5145, 13886, 198, 220, 220, 220, 10214, 13, 5143, 7, 10468, 43959, 8, 1303, 18579, 198 ]
2.392157
204
""" ================================================================= Spectral Unmixing ================================================================= Suhas Somnath, Rama K. Vasudevan, Stephen Jesse * Institute for Functional Imaging of Materials * Center for Nanophase Materials Sciences Oak Ridge National Laboratory, Oak Ridge TN 37831, USA In this notebook we load some spectral data, and perform basic data analysis, including: ======================================================================================== * KMeans Clustering * Non-negative Matrix Factorization * Principal Component Analysis Software Prerequisites: ======================= * Standard distribution of **Anaconda** (includes numpy, scipy, matplotlib and sci-kit learn) * **pycroscopy** : Though pycroscopy is mainly used here for plotting purposes only, it's true capabilities are realized through the ability to seamlessly perform these analyses on any imaging dataset (regardless of origin, size, complexity) and storing the results back into the same dataset among other things """ # Import packages # Ensure that this code works on both python 2 and python 3 from __future__ import division, print_function, absolute_import, unicode_literals # basic numeric computation: import numpy as np # The package used for creating and manipulating HDF5 files: import h5py # Plotting and visualization: import matplotlib.pyplot as plt # for downloading files: import wget import os # multivariate analysis: from sklearn.cluster import KMeans from sklearn.decomposition import NMF import subprocess import sys # Package for downloading online files: # finally import pycroscopy: try: import pycroscopy as px except ImportError: print('pycroscopy not found. Will install with pip.') import pip install('pycroscopy') import pycroscopy as px from pycroscopy.viz import cluster_utils ##################################################################################### # The Data # ======== # # In this example, we will work on a **Band Excitation Piezoresponse Force Microscopy (BE-PFM)** imaging dataset # acquired from advanced atomic force microscopes. In this dataset, a spectra was collected for each position in a two # dimensional grid of spatial locations. Thus, this is a three dimensional dataset that has been flattened to a two # dimensional matrix in accordance with the pycroscopy data format. # # Fortunately, all statistical analysis, machine learning, spectral unmixing algorithms, etc. only accept data that is # formatted in the same manner of [position x spectra] in a two dimensional matrix. # # We will be using an data file available on our GitHub project page by default. You are encouraged # to download this document as a Jupyter Notebook (button at the bottom of the page) and use your own data instead. # When using your own data, you can skip this cell and provide the path to your data using the variable - data_file_path data_file_path = 'temp_um.h5' # download the data file from Github: url = 'https://raw.githubusercontent.com/pycroscopy/pycroscopy/master/data/BELine_0004.h5' data_file_path = wget.download(url, data_file_path, bar=None) h5_file = h5py.File(data_file_path, mode='r+') print('Contents of data file:') print('----------------------') px.hdf_utils.print_tree(h5_file) print('----------------------') h5_meas_grp = h5_file['Measurement_000'] # Extracting some basic parameters: num_rows = px.hdf_utils.get_attr(h5_meas_grp, 'grid_num_rows') num_cols = px.hdf_utils.get_attr(h5_meas_grp, 'grid_num_cols') # Getting a reference to the main dataset: h5_main = px.PycroDataset(h5_meas_grp['Channel_000/Raw_Data']) px.hdf_utils.write_simple_attrs(h5_main, {'quantity': 'Deflection', 'units': 'V'}) # Extracting the X axis - vector of frequencies h5_spec_vals = px.hdf_utils.get_auxiliary_datasets(h5_main, 'Spectroscopic_Values')[-1] freq_vec = np.squeeze(h5_spec_vals.value) * 1E-3 print('Data currently of shape:', h5_main.shape) x_label = 'Frequency (kHz)' y_label = 'Amplitude (a.u.)' ##################################################################################### # 1. Singular Value Decomposition (SVD) # ===================================== # # SVD is an eigenvector decomposition that is defined statistically, and therefore typically produces # non-physical eigenvectors. Consequently, the interpretation of eigenvectors and abundance maps from # SVD requires care and caution in interpretation. Nonetheless, it is a good method for quickly # visualizing the major trends in the dataset since the resultant eigenvectors are sorted in descending # order of variance or importance. Furthermore, SVD is also very well suited for data cleaning through # the reconstruction of the dataset using only the first N (most significant) components. # # SVD results in three matrices: # # * V - Eigenvectors sorted by variance in descending order # * U - corresponding abundance maps # * S - Variance or importance of each of these components # # Advantage of pycroscopy: # ------------------------ # Notice that we are working with a complex valued dataset. Passing the complex values as is to SVD would result in # complex valued eigenvectors / endmembers as well as abundance maps. Complex valued abundance maps are not physical. # Thus, one would need to restructure the data such that it is real-valued only. # # One solution is to stack the real value followed by the magnitude of the imaginary component before passing to SVD. # After SVD, the real-valued eigenvectors would need to be treated as the concatenation of the real and imaginary # components. So, the eigenvectors would need to be restructured to get back the complex valued eigenvectors. # # **Pycroscopy handles all these data transformations (both for the source dataset and the eigenvectors) # automatically.** In general, pycroscopy handles compound / complex valued datasets everywhere possible # # Furthermore, while it is not discussed in this example, pycroscopy also writes back the results from SVD back to # the same source h5 file including all relevant links to the source dataset and other ancillary datasets decomposer = px.processing.svd_utils.SVD(h5_main, num_components=100) h5_svd_group = decomposer.compute() h5_u = h5_svd_group['U'] h5_v = h5_svd_group['V'] h5_s = h5_svd_group['S'] # Since the two spatial dimensions (x, y) have been collapsed to one, we need to reshape the abundance maps: abun_maps = np.reshape(h5_u[:, :25], (num_rows, num_cols, -1)) px.plot_utils.plot_map_stack(abun_maps, num_comps=9, title='SVD Abundance Maps', reverse_dims=True, color_bar_mode='single', cmap='inferno', title_yoffset=0.95) # Visualize the variance / statistical importance of each component: px.plot_utils.plot_scree(h5_s, title='Note the exponential drop of variance with number of components') # Visualize the eigenvectors: _ = px.plot_utils.plot_complex_spectra(h5_v[:9, :], x_label=x_label, y_label=y_label, title='SVD Eigenvectors', evenly_spaced=False) ##################################################################################### # 2. KMeans Clustering # ==================== # # KMeans clustering is a quick and easy method to determine the types of spectral responses present in the # data. It is not a decomposition method, but a basic clustering method. The user inputs the number of # clusters (sets) to partition the data into. The algorithm proceeds to find the optimal labeling # (ie., assignment of each spectra as belonging to the k<sup>th</sup> set) such that the within-cluster # sum of squares is minimized. # # Set the number of clusters below num_clusters = 4 estimator = px.processing.Cluster(h5_main, KMeans(n_clusters=num_clusters)) h5_kmeans_grp = estimator.compute(h5_main) h5_kmeans_labels = h5_kmeans_grp['Labels'] h5_kmeans_mean_resp = h5_kmeans_grp['Mean_Response'] cluster_utils.plot_cluster_h5_group(h5_kmeans_grp) ##################################################################################### # 3. Non-negative Matrix Factorization (NMF) # =========================================== # # NMF, or non-negative matrix factorization, is a method that is useful towards unmixing of spectral # data. It only works on data with positive real values. It operates by approximate determination of # factors (matrices) W and H, given a matrix V, as shown below # # .. image:: https://upload.wikimedia.org/wikipedia/commons/f/f9/NMF.png # # Unlike SVD and k-Means that can be applied to complex-valued datasets, NMF only works on non-negative datasets. # For illustrative purposes, we will only take the amplitude component of the spectral data num_comps = 4 # get the non-negative portion of the dataset data_mat = np.abs(h5_main) model = NMF(n_components=num_comps, init='random', random_state=0) model.fit(data_mat) fig, axis = plt.subplots(figsize=(5.5, 5)) px.plot_utils.plot_line_family(axis, freq_vec, model.components_, label_prefix='NMF Component #') axis.set_xlabel(x_label, fontsize=12) axis.set_ylabel(y_label, fontsize=12) axis.set_title('NMF Components', fontsize=14) axis.legend(bbox_to_anchor=[1.0, 1.0], fontsize=12) ##################################################################################### # Close and delete the h5_file h5_file.close() os.remove(data_file_path)
[ 37811, 198, 23926, 28, 198, 49738, 1373, 791, 19816, 278, 198, 23926, 28, 198, 198, 5606, 10134, 9995, 77, 776, 11, 371, 1689, 509, 13, 23663, 463, 1990, 272, 11, 7970, 18033, 198, 198, 9, 5136, 329, 44224, 48656, 286, 24310, 198, 9, 3337, 329, 18008, 2522, 589, 24310, 13473, 198, 198, 42426, 20614, 2351, 18643, 11, 9121, 20614, 29025, 45473, 3132, 11, 4916, 198, 198, 818, 428, 20922, 356, 3440, 617, 37410, 1366, 11, 290, 1620, 4096, 1366, 3781, 11, 1390, 25, 198, 23926, 4770, 2559, 198, 9, 509, 5308, 504, 1012, 436, 1586, 198, 9, 8504, 12, 31591, 24936, 27929, 1634, 198, 9, 32641, 35100, 14691, 198, 198, 25423, 3771, 34075, 25, 198, 4770, 1421, 18604, 198, 9, 8997, 6082, 286, 12429, 2025, 330, 13533, 1174, 357, 42813, 299, 32152, 11, 629, 541, 88, 11, 2603, 29487, 8019, 290, 20681, 12, 15813, 2193, 8, 198, 9, 12429, 9078, 19915, 1416, 11081, 1174, 1058, 7486, 12972, 19915, 1416, 11081, 318, 8384, 973, 994, 329, 29353, 4959, 691, 11, 340, 338, 2081, 9889, 198, 220, 389, 6939, 832, 262, 2694, 284, 33681, 1620, 777, 13523, 319, 597, 19560, 27039, 357, 2301, 14694, 198, 220, 286, 8159, 11, 2546, 11, 13357, 8, 290, 23069, 262, 2482, 736, 656, 262, 976, 27039, 1871, 584, 1243, 198, 198, 37811, 198, 198, 2, 17267, 10392, 198, 198, 2, 48987, 326, 428, 2438, 2499, 319, 1111, 21015, 362, 290, 21015, 513, 198, 6738, 11593, 37443, 834, 1330, 7297, 11, 3601, 62, 8818, 11, 4112, 62, 11748, 11, 28000, 1098, 62, 17201, 874, 198, 198, 2, 4096, 35575, 29964, 25, 198, 11748, 299, 32152, 355, 45941, 198, 198, 2, 383, 5301, 973, 329, 4441, 290, 29349, 5572, 37, 20, 3696, 25, 198, 11748, 289, 20, 9078, 198, 198, 2, 28114, 889, 290, 32704, 25, 198, 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 198, 2, 329, 22023, 3696, 25, 198, 11748, 266, 1136, 198, 11748, 28686, 198, 198, 2, 1963, 42524, 3781, 25, 198, 6738, 1341, 35720, 13, 565, 5819, 1330, 509, 5308, 504, 198, 6738, 1341, 35720, 13, 12501, 296, 9150, 1330, 28692, 37, 198, 11748, 850, 14681, 198, 11748, 25064, 198, 2, 15717, 329, 22023, 2691, 3696, 25, 198, 2, 3443, 1330, 12972, 19915, 1416, 11081, 25, 198, 28311, 25, 198, 220, 220, 220, 1330, 12972, 19915, 1416, 11081, 355, 279, 87, 198, 16341, 17267, 12331, 25, 198, 220, 220, 220, 3601, 10786, 9078, 19915, 1416, 11081, 407, 1043, 13, 220, 2561, 2721, 351, 7347, 2637, 8, 198, 220, 220, 220, 1330, 7347, 198, 220, 220, 220, 2721, 10786, 9078, 19915, 1416, 11081, 11537, 198, 220, 220, 220, 1330, 12972, 19915, 1416, 11081, 355, 279, 87, 198, 6738, 12972, 19915, 1416, 11081, 13, 85, 528, 1330, 13946, 62, 26791, 198, 198, 29113, 29113, 14468, 4242, 2, 198, 2, 383, 6060, 198, 2, 29335, 18604, 198, 2, 198, 2, 554, 428, 1672, 11, 356, 481, 670, 319, 257, 12429, 31407, 25268, 3780, 21690, 89, 382, 2777, 2591, 5221, 4527, 1416, 11081, 357, 12473, 12, 47, 23264, 8, 1174, 19560, 27039, 198, 2, 9477, 422, 6190, 17226, 2700, 21145, 13920, 13, 554, 428, 27039, 11, 257, 5444, 430, 373, 7723, 329, 1123, 2292, 287, 257, 734, 198, 2, 38517, 10706, 286, 21739, 7064, 13, 6660, 11, 428, 318, 257, 1115, 38517, 27039, 326, 468, 587, 45096, 284, 257, 734, 198, 2, 38517, 17593, 287, 10213, 351, 262, 12972, 19915, 1416, 11081, 1366, 5794, 13, 198, 2, 198, 2, 20525, 11, 477, 13905, 3781, 11, 4572, 4673, 11, 37410, 555, 19816, 278, 16113, 11, 3503, 13, 691, 2453, 1366, 326, 318, 198, 2, 39559, 287, 262, 976, 5642, 286, 685, 9150, 2124, 5444, 430, 60, 287, 257, 734, 38517, 17593, 13, 198, 2, 198, 2, 775, 481, 307, 1262, 281, 1366, 2393, 1695, 319, 674, 21722, 1628, 2443, 416, 4277, 13, 921, 389, 10085, 198, 2, 284, 4321, 428, 3188, 355, 257, 449, 929, 88, 353, 5740, 2070, 357, 16539, 379, 262, 4220, 286, 262, 2443, 8, 290, 779, 534, 898, 1366, 2427, 13, 198, 2, 1649, 1262, 534, 898, 1366, 11, 345, 460, 14267, 428, 2685, 290, 2148, 262, 3108, 284, 534, 1366, 1262, 262, 7885, 532, 1366, 62, 7753, 62, 6978, 198, 198, 7890, 62, 7753, 62, 6978, 796, 705, 29510, 62, 388, 13, 71, 20, 6, 198, 2, 4321, 262, 1366, 2393, 422, 38994, 25, 198, 6371, 796, 705, 5450, 1378, 1831, 13, 12567, 43667, 13, 785, 14, 9078, 19915, 1416, 11081, 14, 9078, 19915, 1416, 11081, 14, 9866, 14, 7890, 14, 33, 3698, 500, 62, 830, 19, 13, 71, 20, 6, 198, 7890, 62, 7753, 62, 6978, 796, 266, 1136, 13, 15002, 7, 6371, 11, 1366, 62, 7753, 62, 6978, 11, 2318, 28, 14202, 8, 198, 198, 71, 20, 62, 7753, 796, 289, 20, 9078, 13, 8979, 7, 7890, 62, 7753, 62, 6978, 11, 4235, 11639, 81, 10, 11537, 198, 198, 4798, 10786, 15842, 286, 1366, 2393, 25, 11537, 198, 4798, 10786, 19351, 438, 11537, 198, 8416, 13, 71, 7568, 62, 26791, 13, 4798, 62, 21048, 7, 71, 20, 62, 7753, 8, 198, 4798, 10786, 19351, 438, 11537, 198, 198, 71, 20, 62, 1326, 292, 62, 2164, 79, 796, 289, 20, 62, 7753, 17816, 47384, 434, 62, 830, 20520, 198, 198, 2, 29677, 278, 617, 4096, 10007, 25, 198, 22510, 62, 8516, 796, 279, 87, 13, 71, 7568, 62, 26791, 13, 1136, 62, 35226, 7, 71, 20, 62, 1326, 292, 62, 2164, 79, 11, 705, 25928, 62, 22510, 62, 8516, 11537, 198, 22510, 62, 4033, 82, 796, 279, 87, 13, 71, 7568, 62, 26791, 13, 1136, 62, 35226, 7, 71, 20, 62, 1326, 292, 62, 2164, 79, 11, 705, 25928, 62, 22510, 62, 4033, 82, 11537, 198, 198, 2, 18067, 257, 4941, 284, 262, 1388, 27039, 25, 198, 71, 20, 62, 12417, 796, 279, 87, 13, 20519, 19915, 27354, 292, 316, 7, 71, 20, 62, 1326, 292, 62, 2164, 79, 17816, 29239, 62, 830, 14, 27369, 62, 6601, 6, 12962, 198, 8416, 13, 71, 7568, 62, 26791, 13, 13564, 62, 36439, 62, 1078, 3808, 7, 71, 20, 62, 12417, 11, 1391, 6, 40972, 414, 10354, 705, 7469, 1564, 3256, 705, 41667, 10354, 705, 53, 6, 30072, 198, 198, 2, 29677, 278, 262, 1395, 16488, 532, 15879, 286, 19998, 198, 71, 20, 62, 16684, 62, 12786, 796, 279, 87, 13, 71, 7568, 62, 26791, 13, 1136, 62, 14644, 28129, 62, 19608, 292, 1039, 7, 71, 20, 62, 12417, 11, 705, 49738, 45943, 16603, 62, 40161, 11537, 58, 12, 16, 60, 198, 19503, 80, 62, 35138, 796, 45941, 13, 16485, 1453, 2736, 7, 71, 20, 62, 16684, 62, 12786, 13, 8367, 8, 1635, 352, 36, 12, 18, 198, 198, 4798, 10786, 6601, 3058, 286, 5485, 25, 3256, 289, 20, 62, 12417, 13, 43358, 8, 198, 198, 87, 62, 18242, 796, 705, 37, 28707, 357, 44191, 33047, 198, 88, 62, 18242, 796, 705, 5840, 489, 3984, 357, 64, 13, 84, 2014, 6, 198, 198, 29113, 29113, 14468, 4242, 2, 198, 2, 352, 13, 5573, 934, 11052, 4280, 296, 9150, 357, 50, 8898, 8, 198, 2, 46111, 1421, 198, 2, 198, 2, 311, 8898, 318, 281, 304, 9324, 31364, 26969, 9150, 326, 318, 5447, 19941, 11, 290, 4361, 6032, 11073, 198, 2, 1729, 12, 42854, 304, 9324, 303, 5217, 13, 24982, 11, 262, 10794, 286, 304, 9324, 303, 5217, 290, 20038, 8739, 422, 198, 2, 311, 8898, 4433, 1337, 290, 13041, 287, 10794, 13, 27251, 11, 340, 318, 257, 922, 2446, 329, 2952, 198, 2, 5874, 2890, 262, 1688, 11257, 287, 262, 27039, 1201, 262, 43440, 304, 9324, 303, 5217, 389, 23243, 287, 31491, 198, 2, 1502, 286, 24198, 393, 6817, 13, 11399, 11, 311, 8898, 318, 635, 845, 880, 16662, 329, 1366, 12724, 832, 198, 2, 262, 25056, 286, 262, 27039, 1262, 691, 262, 717, 399, 357, 1712, 2383, 8, 6805, 13, 198, 2, 198, 2, 311, 8898, 2482, 287, 1115, 2603, 45977, 25, 198, 2, 198, 2, 1635, 569, 532, 412, 9324, 303, 5217, 23243, 416, 24198, 287, 31491, 1502, 198, 2, 1635, 471, 532, 11188, 20038, 8739, 198, 2, 1635, 311, 532, 15965, 590, 393, 6817, 286, 1123, 286, 777, 6805, 198, 2, 198, 2, 45318, 286, 12972, 19915, 1416, 11081, 25, 198, 2, 220, 22369, 198, 2, 17641, 326, 356, 389, 1762, 351, 257, 3716, 17560, 27039, 13, 46389, 262, 3716, 3815, 355, 318, 284, 311, 8898, 561, 1255, 287, 198, 2, 3716, 17560, 304, 9324, 303, 5217, 1220, 886, 30814, 355, 880, 355, 20038, 8739, 13, 19157, 17560, 20038, 8739, 389, 407, 3518, 13, 198, 2, 6660, 11, 530, 561, 761, 284, 1334, 5620, 262, 1366, 884, 326, 340, 318, 1103, 12, 39728, 691, 13, 198, 2, 198, 2, 1881, 4610, 318, 284, 8931, 262, 1103, 1988, 3940, 416, 262, 14735, 286, 262, 26726, 7515, 878, 6427, 284, 311, 8898, 13, 198, 2, 2293, 311, 8898, 11, 262, 1103, 12, 39728, 304, 9324, 303, 5217, 561, 761, 284, 307, 5716, 355, 262, 1673, 36686, 341, 286, 262, 1103, 290, 26726, 198, 2, 6805, 13, 1406, 11, 262, 304, 9324, 303, 5217, 561, 761, 284, 307, 27596, 1522, 284, 651, 736, 262, 3716, 17560, 304, 9324, 303, 5217, 13, 198, 2, 198, 2, 12429, 20519, 19915, 1416, 11081, 17105, 477, 777, 1366, 38226, 357, 16885, 329, 262, 2723, 27039, 290, 262, 304, 9324, 303, 5217, 8, 198, 2, 6338, 13, 1174, 220, 554, 2276, 11, 12972, 19915, 1416, 11081, 17105, 13061, 1220, 3716, 17560, 40522, 8347, 1744, 198, 2, 198, 2, 11399, 11, 981, 340, 318, 407, 6693, 287, 428, 1672, 11, 12972, 19915, 1416, 11081, 635, 6797, 736, 262, 2482, 422, 311, 8898, 736, 284, 198, 2, 262, 976, 2723, 289, 20, 2393, 1390, 477, 5981, 6117, 284, 262, 2723, 27039, 290, 584, 281, 66, 15856, 40522, 198, 198, 12501, 296, 1930, 263, 796, 279, 87, 13, 36948, 13, 82, 20306, 62, 26791, 13, 50, 8898, 7, 71, 20, 62, 12417, 11, 997, 62, 5589, 3906, 28, 3064, 8, 198, 71, 20, 62, 82, 20306, 62, 8094, 796, 26969, 1930, 263, 13, 5589, 1133, 3419, 198, 198, 71, 20, 62, 84, 796, 289, 20, 62, 82, 20306, 62, 8094, 17816, 52, 20520, 198, 71, 20, 62, 85, 796, 289, 20, 62, 82, 20306, 62, 8094, 17816, 53, 20520, 198, 71, 20, 62, 82, 796, 289, 20, 62, 82, 20306, 62, 8094, 17816, 50, 20520, 198, 198, 2, 4619, 262, 734, 21739, 15225, 357, 87, 11, 331, 8, 423, 587, 14707, 284, 530, 11, 356, 761, 284, 27179, 1758, 262, 20038, 8739, 25, 198, 397, 403, 62, 31803, 796, 45941, 13, 3447, 1758, 7, 71, 20, 62, 84, 58, 45299, 1058, 1495, 4357, 357, 22510, 62, 8516, 11, 997, 62, 4033, 82, 11, 532, 16, 4008, 198, 198, 8416, 13, 29487, 62, 26791, 13, 29487, 62, 8899, 62, 25558, 7, 397, 403, 62, 31803, 11, 997, 62, 785, 862, 28, 24, 11, 3670, 11639, 50, 8898, 2275, 917, 590, 20347, 3256, 9575, 62, 67, 12078, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 62, 5657, 62, 14171, 11639, 29762, 3256, 269, 8899, 11639, 10745, 24100, 3256, 3670, 62, 88, 28968, 28, 15, 13, 3865, 8, 628, 198, 2, 15612, 1096, 262, 24198, 1220, 13905, 6817, 286, 1123, 7515, 25, 198, 8416, 13, 29487, 62, 26791, 13, 29487, 62, 1416, 631, 7, 71, 20, 62, 82, 11, 3670, 11639, 6425, 262, 39682, 4268, 286, 24198, 351, 1271, 286, 6805, 11537, 198, 198, 2, 15612, 1096, 262, 304, 9324, 303, 5217, 25, 198, 62, 796, 279, 87, 13, 29487, 62, 26791, 13, 29487, 62, 41887, 62, 4443, 430, 7, 71, 20, 62, 85, 58, 25, 24, 11, 1058, 4357, 2124, 62, 18242, 28, 87, 62, 18242, 11, 331, 62, 18242, 28, 88, 62, 18242, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3670, 11639, 50, 8898, 412, 9324, 303, 5217, 3256, 21894, 62, 2777, 2286, 28, 25101, 8, 198, 198, 29113, 29113, 14468, 4242, 2, 198, 2, 362, 13, 509, 5308, 504, 1012, 436, 1586, 198, 2, 36658, 18604, 198, 2, 198, 2, 509, 5308, 504, 32966, 1586, 318, 257, 2068, 290, 2562, 2446, 284, 5004, 262, 3858, 286, 37410, 9109, 1944, 287, 262, 198, 2, 1366, 13, 632, 318, 407, 257, 26969, 9150, 2446, 11, 475, 257, 4096, 32966, 1586, 2446, 13, 383, 2836, 17311, 262, 1271, 286, 198, 2, 23163, 357, 28709, 8, 284, 18398, 262, 1366, 656, 13, 383, 11862, 15740, 284, 1064, 262, 16586, 27393, 198, 2, 357, 494, 1539, 16237, 286, 1123, 5444, 430, 355, 16686, 284, 262, 479, 27, 37330, 29, 400, 3556, 37330, 29, 900, 8, 884, 326, 262, 1626, 12, 565, 5819, 198, 2, 2160, 286, 24438, 318, 49491, 13, 198, 2, 198, 2, 5345, 262, 1271, 286, 23163, 2174, 198, 198, 22510, 62, 565, 13654, 796, 604, 198, 198, 395, 320, 1352, 796, 279, 87, 13, 36948, 13, 2601, 5819, 7, 71, 20, 62, 12417, 11, 509, 5308, 504, 7, 77, 62, 565, 13654, 28, 22510, 62, 565, 13654, 4008, 198, 71, 20, 62, 74, 1326, 504, 62, 2164, 79, 796, 3959, 1352, 13, 5589, 1133, 7, 71, 20, 62, 12417, 8, 198, 71, 20, 62, 74, 1326, 504, 62, 23912, 1424, 796, 289, 20, 62, 74, 1326, 504, 62, 2164, 79, 17816, 17822, 1424, 20520, 198, 71, 20, 62, 74, 1326, 504, 62, 32604, 62, 4363, 796, 289, 20, 62, 74, 1326, 504, 62, 2164, 79, 17816, 5308, 272, 62, 31077, 20520, 198, 198, 565, 5819, 62, 26791, 13, 29487, 62, 565, 5819, 62, 71, 20, 62, 8094, 7, 71, 20, 62, 74, 1326, 504, 62, 2164, 79, 8, 198, 198, 29113, 29113, 14468, 4242, 2, 198, 2, 513, 13, 8504, 12, 31591, 24936, 27929, 1634, 357, 32755, 37, 8, 198, 2, 46111, 2559, 855, 198, 2, 198, 2, 28692, 37, 11, 393, 1729, 12, 31591, 17593, 5766, 1634, 11, 318, 257, 2446, 326, 318, 4465, 3371, 555, 19816, 278, 286, 37410, 198, 2, 1366, 13, 632, 691, 2499, 319, 1366, 351, 3967, 1103, 3815, 13, 632, 14051, 416, 27665, 12123, 286, 198, 2, 5087, 357, 6759, 45977, 8, 370, 290, 367, 11, 1813, 257, 17593, 569, 11, 355, 3402, 2174, 198, 2, 198, 2, 11485, 2939, 3712, 3740, 1378, 25850, 13, 20763, 20626, 13, 2398, 14, 31266, 14, 9503, 684, 14, 69, 14, 69, 24, 14, 32755, 37, 13, 11134, 198, 2, 198, 2, 12101, 311, 8898, 290, 479, 12, 5308, 504, 326, 460, 307, 5625, 284, 3716, 12, 39728, 40522, 11, 28692, 37, 691, 2499, 319, 1729, 12, 31591, 40522, 13, 198, 2, 1114, 6406, 13260, 4959, 11, 356, 481, 691, 1011, 262, 37188, 7515, 286, 262, 37410, 1366, 198, 198, 22510, 62, 785, 862, 796, 604, 198, 198, 2, 651, 262, 1729, 12, 31591, 6903, 286, 262, 27039, 198, 7890, 62, 6759, 796, 45941, 13, 8937, 7, 71, 20, 62, 12417, 8, 198, 198, 19849, 796, 28692, 37, 7, 77, 62, 5589, 3906, 28, 22510, 62, 785, 862, 11, 2315, 11639, 25120, 3256, 4738, 62, 5219, 28, 15, 8, 198, 19849, 13, 11147, 7, 7890, 62, 6759, 8, 198, 198, 5647, 11, 16488, 796, 458, 83, 13, 7266, 489, 1747, 7, 5647, 7857, 16193, 20, 13, 20, 11, 642, 4008, 198, 8416, 13, 29487, 62, 26791, 13, 29487, 62, 1370, 62, 17989, 7, 22704, 11, 2030, 80, 62, 35138, 11, 2746, 13, 5589, 3906, 62, 11, 6167, 62, 40290, 11639, 32755, 37, 35100, 1303, 11537, 198, 22704, 13, 2617, 62, 87, 18242, 7, 87, 62, 18242, 11, 10369, 7857, 28, 1065, 8, 198, 22704, 13, 2617, 62, 2645, 9608, 7, 88, 62, 18242, 11, 10369, 7857, 28, 1065, 8, 198, 22704, 13, 2617, 62, 7839, 10786, 32755, 37, 36109, 3256, 10369, 7857, 28, 1415, 8, 198, 22704, 13, 1455, 437, 7, 65, 3524, 62, 1462, 62, 3702, 273, 41888, 16, 13, 15, 11, 352, 13, 15, 4357, 10369, 7857, 28, 1065, 8, 198, 198, 29113, 29113, 14468, 4242, 2, 198, 198, 2, 13872, 290, 12233, 262, 289, 20, 62, 7753, 198, 71, 20, 62, 7753, 13, 19836, 3419, 198, 418, 13, 28956, 7, 7890, 62, 7753, 62, 6978, 8, 198 ]
3.448859
2,718
import shutil from pathlib import Path from unittest import TestCase from unittest.mock import Mock from unittest.mock import patch from foliant.config.downloadfile import download_file from foliant.config.downloadfile import get_file_ext_from_url from foliant.config.downloadfile import get_file_name_from_url
[ 11748, 4423, 346, 198, 198, 6738, 3108, 8019, 1330, 10644, 198, 6738, 555, 715, 395, 1330, 6208, 20448, 198, 6738, 555, 715, 395, 13, 76, 735, 1330, 44123, 198, 6738, 555, 715, 395, 13, 76, 735, 1330, 8529, 198, 198, 6738, 5955, 3014, 13, 11250, 13, 15002, 7753, 1330, 4321, 62, 7753, 198, 6738, 5955, 3014, 13, 11250, 13, 15002, 7753, 1330, 651, 62, 7753, 62, 2302, 62, 6738, 62, 6371, 198, 6738, 5955, 3014, 13, 11250, 13, 15002, 7753, 1330, 651, 62, 7753, 62, 3672, 62, 6738, 62, 6371, 628, 628 ]
3.434783
92
import discord client = discord.Client() # # # # id # Text # 0 def getTargetChannelId() -> int: # () target_channel = {'id': 0, 'position': 99999999} # *********************************************************** # () category_id = 711238137598181396 # id target_category_name = client.get_channel(category_id).name # *********************************************************** # Text all_channels = client.get_guild(602423784946925568).text_channels # Text for channel in all_channels: # if str(channel.category) == target_category_name: # position # position(99999999) # position if target_channel['position'] > int(channel.position): target_channel['id'] = int(channel.id) target_channel['position'] = int(channel.position) # id return target_channel['id'] # botDiscord(bot) client.run('605042341715378176')
[ 11748, 36446, 198, 198, 16366, 796, 36446, 13, 11792, 3419, 220, 1303, 220, 628, 198, 2, 220, 628, 198, 2, 220, 628, 198, 2, 4686, 198, 2, 8255, 198, 2, 657, 198, 4299, 651, 21745, 29239, 7390, 3419, 4613, 493, 25, 198, 220, 220, 220, 1303, 7499, 198, 220, 220, 220, 2496, 62, 17620, 796, 1391, 6, 312, 10354, 657, 11, 705, 9150, 10354, 860, 24214, 17032, 92, 198, 220, 220, 220, 1303, 41906, 8412, 4557, 8162, 198, 220, 220, 220, 1303, 7499, 628, 220, 220, 220, 6536, 62, 312, 796, 9166, 1065, 2548, 1485, 2425, 4089, 1507, 1485, 4846, 220, 1303, 4686, 198, 220, 220, 220, 2496, 62, 22872, 62, 3672, 796, 5456, 13, 1136, 62, 17620, 7, 22872, 62, 312, 737, 3672, 628, 220, 220, 220, 1303, 41906, 8412, 4557, 8162, 198, 220, 220, 220, 1303, 8255, 198, 220, 220, 220, 477, 62, 354, 8961, 796, 5456, 13, 1136, 62, 70, 3547, 7, 1899, 1731, 1954, 3695, 39449, 3388, 13381, 3104, 737, 5239, 62, 354, 8961, 628, 220, 220, 220, 1303, 8255, 198, 220, 220, 220, 329, 6518, 287, 477, 62, 354, 8961, 25, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 220, 198, 220, 220, 220, 220, 220, 220, 220, 611, 965, 7, 17620, 13, 22872, 8, 6624, 2496, 62, 22872, 62, 3672, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2292, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2292, 7, 24214, 24214, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1303, 2292, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 2496, 62, 17620, 17816, 9150, 20520, 1875, 493, 7, 17620, 13, 9150, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 17620, 17816, 312, 20520, 796, 493, 7, 17620, 13, 312, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2496, 62, 17620, 17816, 9150, 20520, 796, 493, 7, 17620, 13, 9150, 8, 198, 220, 220, 220, 1303, 4686, 198, 220, 220, 220, 1441, 2496, 62, 17620, 17816, 312, 20520, 628, 198, 2, 10214, 15642, 585, 7, 13645, 8, 198, 16366, 13, 5143, 10786, 1899, 33580, 24409, 1558, 1314, 30695, 24096, 11537, 198 ]
2.515464
388
import matplotlib.pyplot as plt import numpy as np from fears.utils import results_manager, plotter, dir_manager import os suffix = '07212021_0001' data_folder = 'results_' + suffix exp_info_file = 'experiment_info_' + suffix + '.p' exp_folders,exp_info = results_manager.get_experiment_results(data_folder, exp_info_file) max_cells = exp_info.populations[0].max_cells n_sims = exp_info.n_sims k_abs = exp_info.slopes exp_folders.reverse() k_abs = np.flip(k_abs) fig,ax = plt.subplots(nrows=2,ncols=2,figsize=(4,4)) pop = exp_info.populations[0] ax = ax.reshape((len(k_abs),)) axnum = 0 tc_axes=[] drug_axes=[] for exp in exp_folders: k_abs_t = exp[exp.find('=')+1:] k_abs_t = float(k_abs_t) num = np.argwhere(k_abs == k_abs_t) num = num[0,0] # generate timecourse axes tcax = ax[axnum] # da = tcax.twinx() sim_files = os.listdir(path=exp) sim_files = sorted(sim_files) survive_count = 0 counts_total = None k=0 while k < len(sim_files): # for sim in sim_files: sim = sim_files[k] sim = exp + os.sep + sim data = results_manager.get_data(sim) dc = data[:,-1] data = data[:,0:-1] # data = data/np.max(data) data_t = data[-1,:] # check to see if any genotypes are at least 10% of the max cell count if any(data_t >= 1): survive_count += 1 if counts_total is None: counts_total = data else: counts_total += data # data = data/np.max(data) # exp_info.populations[num].counts_log_scale = True data = data/max_cells if k==0: drug_kwargs = {'alpha':0.7, 'color':'black', 'linewidth':2, 'label':'Drug Concentration ($\u03BC$M)' } tcax,drug_ax = plotter.plot_timecourse_to_axes(exp_info.populations[num], data, tcax, drug_curve=dc, drug_ax_sci_notation=True, drug_kwargs=drug_kwargs, legend_labels=False, grayscale=True, color='gray', linewidth=1, labelsize=12, alpha=0.7 ) drug_ax.set_ylabel('') drug_axes.append( drug_ax ) else: tcax,da = plotter.plot_timecourse_to_axes(exp_info.populations[num], data, tcax, grayscale=True, color='gray', legend_labels=False, linewidth=2, labelsize=12, alpha=0.2 ) # drug_ax.set_ylim(0,10**4) k+=1 if survive_count > 0: counts_avg = counts_total/survive_count # counts_avg = counts_avg/np.max(counts_avg) # counts_avg = counts_total counts_avg = counts_avg/np.max(counts_avg) tcax,temp = plotter.plot_timecourse_to_axes(exp_info.populations[num], counts_avg, tcax, labelsize=12) # t = np.arange(len(dc)) # t = t*exp_info.populations[0].timestep_scale/24 # da.plot(t,dc) tc_axes.append( tcax ) axnum+=1
[ 11748, 2603, 29487, 8019, 13, 9078, 29487, 355, 458, 83, 198, 11748, 299, 32152, 355, 45941, 198, 6738, 10251, 13, 26791, 1330, 2482, 62, 37153, 11, 7110, 353, 11, 26672, 62, 37153, 198, 11748, 28686, 198, 198, 37333, 844, 796, 705, 2998, 17, 10232, 2481, 62, 18005, 6, 198, 7890, 62, 43551, 796, 705, 43420, 62, 6, 1343, 35488, 198, 11201, 62, 10951, 62, 7753, 796, 705, 23100, 3681, 62, 10951, 62, 6, 1343, 35488, 1343, 45302, 79, 6, 198, 198, 11201, 62, 11379, 364, 11, 11201, 62, 10951, 796, 2482, 62, 37153, 13, 1136, 62, 23100, 3681, 62, 43420, 7, 7890, 62, 43551, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1033, 62, 10951, 62, 7753, 8, 198, 9806, 62, 46342, 796, 1033, 62, 10951, 13, 12924, 5768, 58, 15, 4083, 9806, 62, 46342, 198, 77, 62, 82, 12078, 796, 1033, 62, 10951, 13, 77, 62, 82, 12078, 198, 74, 62, 8937, 796, 1033, 62, 10951, 13, 6649, 13920, 198, 198, 11201, 62, 11379, 364, 13, 50188, 3419, 198, 74, 62, 8937, 796, 45941, 13, 2704, 541, 7, 74, 62, 8937, 8, 198, 198, 5647, 11, 897, 796, 458, 83, 13, 7266, 489, 1747, 7, 77, 8516, 28, 17, 11, 77, 4033, 82, 28, 17, 11, 5647, 7857, 16193, 19, 11, 19, 4008, 198, 198, 12924, 796, 1033, 62, 10951, 13, 12924, 5768, 58, 15, 60, 198, 198, 897, 796, 7877, 13, 3447, 1758, 19510, 11925, 7, 74, 62, 8937, 828, 4008, 198, 198, 897, 22510, 796, 657, 198, 23047, 62, 897, 274, 28, 21737, 198, 30349, 62, 897, 274, 28, 21737, 198, 198, 1640, 1033, 287, 1033, 62, 11379, 364, 25, 198, 220, 220, 220, 479, 62, 8937, 62, 83, 796, 1033, 58, 11201, 13, 19796, 10786, 28, 11537, 10, 16, 47715, 198, 220, 220, 220, 479, 62, 8937, 62, 83, 796, 12178, 7, 74, 62, 8937, 62, 83, 8, 198, 220, 220, 220, 997, 796, 45941, 13, 853, 3003, 7, 74, 62, 8937, 6624, 479, 62, 8937, 62, 83, 8, 198, 220, 220, 220, 997, 796, 997, 58, 15, 11, 15, 60, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 7716, 640, 17319, 34197, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37096, 897, 796, 7877, 58, 897, 22510, 60, 198, 220, 220, 220, 1303, 12379, 796, 37096, 897, 13, 4246, 28413, 3419, 198, 220, 220, 220, 220, 198, 220, 220, 220, 985, 62, 16624, 796, 28686, 13, 4868, 15908, 7, 6978, 28, 11201, 8, 198, 220, 220, 220, 985, 62, 16624, 796, 23243, 7, 14323, 62, 16624, 8, 198, 220, 220, 220, 7866, 62, 9127, 796, 657, 198, 220, 220, 220, 9853, 62, 23350, 796, 6045, 198, 220, 220, 220, 220, 198, 220, 220, 220, 479, 28, 15, 198, 220, 220, 220, 981, 479, 1279, 18896, 7, 14323, 62, 16624, 2599, 198, 220, 220, 220, 1303, 329, 985, 287, 985, 62, 16624, 25, 198, 220, 220, 220, 220, 220, 220, 220, 985, 796, 985, 62, 16624, 58, 74, 60, 198, 220, 220, 220, 220, 220, 220, 220, 985, 796, 1033, 1343, 28686, 13, 325, 79, 1343, 985, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 2482, 62, 37153, 13, 1136, 62, 7890, 7, 14323, 8, 198, 220, 220, 220, 220, 220, 220, 220, 30736, 796, 1366, 58, 25, 12095, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 1366, 58, 45299, 15, 21912, 16, 60, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1366, 796, 1366, 14, 37659, 13, 9806, 7, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 62, 83, 796, 1366, 58, 12, 16, 11, 47715, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2198, 284, 766, 611, 597, 2429, 13567, 389, 379, 1551, 838, 4, 286, 262, 3509, 2685, 954, 198, 220, 220, 220, 220, 220, 220, 220, 611, 597, 7, 7890, 62, 83, 18189, 352, 2599, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 7866, 62, 9127, 15853, 352, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 611, 9853, 62, 23350, 318, 6045, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9853, 62, 23350, 796, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9853, 62, 23350, 15853, 1366, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1366, 796, 1366, 14, 37659, 13, 9806, 7, 7890, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 1033, 62, 10951, 13, 12924, 5768, 58, 22510, 4083, 9127, 82, 62, 6404, 62, 9888, 796, 6407, 198, 220, 220, 220, 220, 220, 220, 220, 1366, 796, 1366, 14, 9806, 62, 46342, 198, 220, 220, 220, 220, 220, 220, 220, 611, 479, 855, 15, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2563, 62, 46265, 22046, 796, 1391, 6, 26591, 10354, 15, 13, 22, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 8043, 10354, 6, 13424, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 2815, 413, 5649, 10354, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 705, 18242, 10354, 6, 37943, 37613, 1358, 7198, 59, 84, 3070, 2749, 3, 44, 33047, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1782, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37096, 897, 11, 30349, 62, 897, 796, 7110, 353, 13, 29487, 62, 2435, 17319, 62, 1462, 62, 897, 274, 7, 11201, 62, 10951, 13, 12924, 5768, 58, 22510, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37096, 897, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2563, 62, 22019, 303, 28, 17896, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2563, 62, 897, 62, 36216, 62, 38983, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2563, 62, 46265, 22046, 28, 30349, 62, 46265, 22046, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8177, 62, 23912, 1424, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1036, 592, 38765, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 11639, 44605, 3256, 220, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9493, 413, 5649, 28, 16, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14722, 1096, 28, 1065, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17130, 28, 15, 13, 22, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2563, 62, 897, 13, 2617, 62, 2645, 9608, 7, 7061, 8, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 2563, 62, 897, 274, 13, 33295, 7, 2563, 62, 897, 1267, 198, 220, 220, 220, 220, 220, 220, 220, 2073, 25, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37096, 897, 11, 6814, 796, 7110, 353, 13, 29487, 62, 2435, 17319, 62, 1462, 62, 897, 274, 7, 11201, 62, 10951, 13, 12924, 5768, 58, 22510, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1366, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37096, 897, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1036, 592, 38765, 28, 17821, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 3124, 11639, 44605, 3256, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 8177, 62, 23912, 1424, 28, 25101, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9493, 413, 5649, 28, 17, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14722, 1096, 28, 1065, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 17130, 28, 15, 13, 17, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 1267, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 2563, 62, 897, 13, 2617, 62, 88, 2475, 7, 15, 11, 940, 1174, 19, 8, 198, 220, 220, 220, 220, 220, 220, 220, 479, 47932, 16, 198, 220, 220, 220, 220, 220, 220, 220, 220, 198, 220, 220, 220, 611, 7866, 62, 9127, 1875, 657, 25, 198, 220, 220, 220, 220, 220, 220, 220, 9853, 62, 615, 70, 796, 9853, 62, 23350, 14, 48846, 425, 62, 9127, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 9853, 62, 615, 70, 796, 9853, 62, 615, 70, 14, 37659, 13, 9806, 7, 9127, 82, 62, 615, 70, 8, 220, 198, 220, 220, 220, 220, 220, 220, 220, 1303, 9853, 62, 615, 70, 796, 9853, 62, 23350, 198, 220, 220, 220, 220, 220, 220, 220, 9853, 62, 615, 70, 796, 9853, 62, 615, 70, 14, 37659, 13, 9806, 7, 9127, 82, 62, 615, 70, 8, 198, 220, 220, 220, 220, 220, 220, 220, 37096, 897, 11, 29510, 796, 7110, 353, 13, 29487, 62, 2435, 17319, 62, 1462, 62, 897, 274, 7, 11201, 62, 10951, 13, 12924, 5768, 58, 22510, 4357, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 9853, 62, 615, 70, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 37096, 897, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 14722, 1096, 28, 1065, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 1303, 256, 796, 45941, 13, 283, 858, 7, 11925, 7, 17896, 4008, 198, 220, 220, 220, 1303, 256, 796, 256, 9, 11201, 62, 10951, 13, 12924, 5768, 58, 15, 4083, 16514, 395, 538, 62, 9888, 14, 1731, 198, 220, 220, 220, 1303, 12379, 13, 29487, 7, 83, 11, 17896, 8, 198, 220, 220, 220, 220, 198, 220, 220, 220, 37096, 62, 897, 274, 13, 33295, 7, 37096, 897, 1267, 198, 220, 220, 220, 7877, 22510, 47932, 16 ]
1.505858
2,902
from __future__ import absolute_import import types from collections import defaultdict from rpython.tool.ansi_print import AnsiLogger from rpython.tool.pairtype import pair from rpython.tool.error import (format_blocked_annotation_error, gather_error, source_lines) from rpython.flowspace.model import Variable, Constant, checkgraph from rpython.translator import simplify, transform from rpython.annotator import model as annmodel, signature from rpython.annotator.model import ( typeof, s_ImpossibleValue, SomeInstance, intersection, difference) from rpython.annotator.bookkeeper import Bookkeeper from rpython.rtyper.normalizecalls import perform_normalizations log = AnsiLogger("annrpython")
[ 6738, 11593, 37443, 834, 1330, 4112, 62, 11748, 198, 198, 11748, 3858, 198, 6738, 17268, 1330, 4277, 11600, 198, 198, 6738, 374, 29412, 13, 25981, 13, 504, 72, 62, 4798, 1330, 1052, 13396, 11187, 1362, 198, 6738, 374, 29412, 13, 25981, 13, 24874, 4906, 1330, 5166, 198, 6738, 374, 29412, 13, 25981, 13, 18224, 1330, 357, 18982, 62, 2436, 3543, 62, 1236, 14221, 62, 18224, 11, 198, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 220, 6431, 62, 18224, 11, 2723, 62, 6615, 8, 198, 6738, 374, 29412, 13, 44041, 10223, 13, 19849, 1330, 35748, 11, 20217, 11, 2198, 34960, 198, 6738, 374, 29412, 13, 7645, 41880, 1330, 30276, 11, 6121, 198, 6738, 374, 29412, 13, 34574, 1352, 1330, 2746, 355, 1529, 19849, 11, 9877, 198, 6738, 374, 29412, 13, 34574, 1352, 13, 19849, 1330, 357, 198, 220, 220, 220, 2099, 1659, 11, 264, 62, 26950, 4733, 11395, 11, 2773, 33384, 11, 16246, 11, 3580, 8, 198, 6738, 374, 29412, 13, 34574, 1352, 13, 2070, 13884, 1330, 4897, 13884, 198, 6738, 374, 29412, 13, 81, 774, 525, 13, 11265, 528, 721, 5691, 1330, 1620, 62, 11265, 4582, 198, 198, 6404, 796, 1052, 13396, 11187, 1362, 7203, 1236, 81, 29412, 4943, 628, 198 ]
3.325792
221
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # Generated file, DO NOT EDIT # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------------------------- from msrest.serialization import Model
[ 2, 16529, 1783, 10541, 198, 2, 15069, 357, 66, 8, 5413, 10501, 13, 1439, 2489, 10395, 13, 198, 2, 49962, 739, 262, 17168, 13789, 13, 4091, 13789, 13, 14116, 287, 262, 1628, 6808, 329, 5964, 1321, 13, 198, 2, 16529, 1783, 10541, 198, 2, 2980, 515, 2393, 11, 8410, 5626, 48483, 198, 2, 19179, 743, 2728, 11491, 4069, 290, 481, 307, 2626, 611, 262, 2438, 318, 16935, 515, 13, 198, 2, 16529, 1783, 10541, 628, 198, 6738, 13845, 2118, 13, 46911, 1634, 1330, 9104, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 628, 198 ]
5.971963
107
import abc from utils import LogMixin
[ 11748, 450, 66, 198, 6738, 3384, 4487, 1330, 5972, 35608, 259, 628, 198 ]
3.076923
13
load("//python:compile.bzl", "py_proto_compile", "py_grpc_compile") load("@grpc_py_deps//:requirements.bzl", "all_requirements")
[ 2220, 7203, 1003, 29412, 25, 5589, 576, 13, 65, 48274, 1600, 366, 9078, 62, 1676, 1462, 62, 5589, 576, 1600, 366, 9078, 62, 2164, 14751, 62, 5589, 576, 4943, 198, 2220, 7203, 31, 2164, 14751, 62, 9078, 62, 10378, 82, 1003, 25, 8897, 18883, 13, 65, 48274, 1600, 366, 439, 62, 8897, 18883, 4943 ]
2.37037
54